:root {
  --bg: #050505;
  --fg: #f8f7f2;
  --muted: #a4a39c;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.26);
  --panel: rgba(255, 255, 255, 0.035);
  --cyan: #7de8ff;
  --green: #b5ff6a;
  --max: 1180px;
  --pad: clamp(18px, 4vw, 52px);
  --sans: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Syne", var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--fg);
  background: var(--bg);
  cursor: auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  background: #000;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.loader img {
  object-fit: contain;
}

.loader-line {
  width: min(320px, 72vw);
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.loader-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  box-shadow: 0 0 20px #fff;
}

.loader p {
  margin: 0;
  font-family: var(--display);
  font-size: 48px;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: -50%;
  z-index: 10;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.8'/></svg>");
  animation: noise 0.7s steps(4) infinite;
}

@keyframes noise {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -2%); }
  75% { transform: translate(2%, 2%); }
  100% { transform: translate(0, 0); }
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.nav.is-scrolled {
  background: rgba(5, 5, 5, 0.74);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.nav nav,
.nav-right,
.lang-switch,
.actions,
.download-actions,
footer,
footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav nav {
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-right {
  gap: clamp(14px, 2vw, 24px);
}

.lang-switch {
  position: relative;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.lang-btn {
  min-width: 38px;
  height: 30px;
  padding: 0 8px;
  color: var(--muted);
  border: 0;
  border-radius: 4px;
  background: transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.is-active {
  color: #050505;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: clamp(26px, 7vw, 96px);
  padding: 108px var(--pad) 72px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 38%, rgba(125, 232, 255, 0.14), transparent 28%),
    radial-gradient(circle at 18% 75%, rgba(181, 255, 106, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 42%);
}

.hero-copy,
.phone,
.section,
.strip,
.download,
footer {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(58px, 12vw, 158px);
  line-height: 0.84;
  letter-spacing: 0;
}

.lead {
  max-width: 570px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.35;
}

.actions,
.download-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-points,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.hero-points {
  margin-top: 22px;
}

.hero-points span,
.pill-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.55);
}

.button.primary {
  color: #050505;
  background: #fff;
  border-color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.035);
}

.phone {
  width: min(380px, 78vw);
  justify-self: end;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #050505;
}

.scroll {
  position: absolute;
  left: var(--pad);
  bottom: 26px;
  z-index: 2;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.strip {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.strip div {
  min-height: 104px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.strip div:last-child {
  border-right: 0;
}

.strip strong,
.strip span {
  display: block;
}

.strip strong {
  margin-bottom: 8px;
  font-family: var(--display);
  font-size: 26px;
}

.strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section,
.download {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(74px, 10vw, 132px) var(--pad);
}

.section-head {
  max-width: 720px;
}

h2 {
  margin-bottom: 26px;
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 78px);
  line-height: 0.95;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card span {
  display: block;
  margin-bottom: 46px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.card p,
.download p {
  color: var(--muted);
  line-height: 1.65;
}

.section-head p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.7;
}

.section-split {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(74px, 10vw, 132px) var(--pad);
  border-top: 1px solid var(--line);
}

.showcase {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.report-board,
.insight-board,
.mini-phone,
.flow-grid article,
.privacy-grid article,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.report-board,
.insight-board {
  padding: clamp(18px, 3vw, 30px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.board-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.board-top span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.board-top strong {
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 104px);
  line-height: 0.8;
  color: var(--green);
}

.sleep-graph {
  height: 170px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  align-items: end;
  padding: 26px 0;
}

.sleep-graph span {
  min-height: 18px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, var(--cyan), rgba(125, 232, 255, 0.18));
}

.report-list,
.insight-list {
  display: grid;
  gap: 10px;
}

.report-list div,
.insight-list div {
  display: grid;
  gap: 5px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
}

.report-list b,
.insight-list b,
.flow-grid h3,
.privacy-grid h3 {
  font-size: 18px;
}

.report-list span,
.insight-list span,
.flow-grid p,
.privacy-grid p,
.faq p,
.mini-screen p,
.mini-screen li {
  color: var(--muted);
  line-height: 1.6;
}

.flow {
  border-top: 1px solid var(--line);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.flow-grid article {
  min-height: 250px;
  padding: 22px;
}

.flow-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.premium {
  grid-template-columns: minmax(280px, 410px) minmax(0, 1fr);
}

.mini-phone {
  width: min(410px, 100%);
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #080808;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.mini-screen {
  min-height: 520px;
  padding: 22px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(125, 232, 255, 0.13), transparent 26%),
    #050505;
}

.mini-status {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
}

.mini-status span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--line-strong);
}

.mini-screen h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.mini-meter {
  height: 10px;
  margin: 28px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mini-meter span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.mini-screen ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mini-screen li {
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.pill-row {
  margin-top: 26px;
}

.privacy-section {
  border-top: 1px solid var(--line);
}

.pricing {
  border-top: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.price-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.price-card.is-featured {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.price-card span,
.price-card strong,
.price-card p {
  display: block;
}

.price-card span {
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-card strong {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.9;
}

.price-card p {
  color: var(--muted);
  line-height: 1.6;
}

.documents-section {
  border-top: 1px solid var(--line);
}

.documents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.doc-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  text-decoration: none;
}

.doc-card:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.07);
}

.doc-card span,
.doc-card strong,
.doc-card p {
  display: block;
}

.doc-card span {
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.doc-card strong {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.05;
}

.doc-card p {
  color: var(--muted);
  line-height: 1.6;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}

.privacy-grid article {
  min-height: 190px;
  padding: 24px;
}

.faq {
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 38px;
}

.faq details {
  padding: 0;
  overflow: hidden;
}

.faq summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 20px 24px;
  font-weight: 800;
  cursor: pointer;
}

.faq summary::marker {
  color: var(--green);
}

.faq p {
  margin: 0;
  padding: 0 24px 22px;
  max-width: 800px;
}

.download {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(min(100%, 380px), 0.85fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.download > * {
  min-width: 0;
}

.download h2 {
  margin-bottom: 12px;
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(112px, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.download-panel {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.035);
}

.download-meta div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
}

.download-meta dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-meta dd {
  margin: 0;
  color: var(--fg);
  font-size: 15px;
  font-weight: 800;
}

.download-note {
  max-width: 720px;
  margin: 14px 0;
}

.download-warning {
  max-width: 760px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 184, 107, 0.34);
  border-radius: 8px;
  background: rgba(255, 184, 107, 0.08);
  color: var(--fg);
  font-size: 14px;
}

.release-notes {
  padding: 16px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(181, 255, 106, 0.045), rgba(125, 232, 255, 0.025));
}

.release-notes[open] {
  display: grid;
  gap: 12px;
}

.release-history-head,
.release-entry-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.release-history-head {
  justify-content: space-between;
  padding-bottom: 4px;
  cursor: pointer;
  list-style: none;
}

.release-history-head::-webkit-details-marker {
  display: none;
}

.release-history-head::after {
  content: "+";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 16px;
  line-height: 1;
}

.release-notes[open] .release-history-head::after {
  content: "-";
}

.release-history-head strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.release-history-head span,
.release-date {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.release-timeline {
  display: grid;
  gap: 0;
  max-height: 240px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 0 8px 0 0;
  margin: 0;
  list-style: none;
}

.release-timeline::-webkit-scrollbar {
  width: 6px;
}

.release-timeline::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(125, 232, 255, 0.28);
}

.release-entry {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 0 0 15px 22px;
}

.release-entry:last-child {
  padding-bottom: 0;
}

.release-entry::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 7px;
  bottom: -6px;
  width: 1px;
  background: var(--line);
}

.release-entry:last-child::before {
  display: none;
}

.release-entry::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(125, 232, 255, 0.42);
  border-radius: 50%;
  background: var(--bg);
}

.release-entry.is-latest::after {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 18px rgba(181, 255, 106, 0.28);
}

.release-entry:not(:last-child) .release-entry-top::after {
  content: "↓";
  margin-left: auto;
  color: var(--cyan);
  font-size: 14px;
  line-height: 1;
}

.release-version {
  color: var(--fg);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.release-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  border: 1px solid rgba(181, 255, 106, 0.42);
  border-radius: 999px;
  padding: 0 8px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.release-notes ul {
  display: grid;
  gap: 7px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.release-notes li,
.release-entry p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.release-entry p {
  margin: 0;
}

.release-notes li li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
}

.verify-file {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
}

.verify-file summary {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  color: var(--fg);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.verify-file p {
  margin: 0;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}

.verify-file span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.verify-file code {
  display: block;
  overflow-wrap: anywhere;
  color: var(--fg);
  font-size: 12px;
  line-height: 1.45;
}

.download-hash {
  max-width: 760px;
  margin: 0;
}

.download-hash span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.download-hash code {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow-wrap: anywhere;
  color: var(--fg);
  background: rgba(0,0,0,0.22);
  font-size: 12px;
  line-height: 1.5;
}

.bug-report {
  max-width: 760px;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(125, 232, 255, 0.06);
}

.bug-report strong,
.bug-report p,
.bug-report a {
  display: block;
}

.bug-report strong {
  margin-bottom: 8px;
  color: var(--fg);
  font-size: 15px;
}

.bug-report p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.bug-report-link {
  width: fit-content;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.bug-report-section {
  border-top: 1px solid var(--line);
}

footer {
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 28px var(--pad);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

footer div {
  gap: 18px;
  flex-wrap: wrap;
}

.legal-page {
  overflow-x: hidden;
}

.legal-table {
  table-layout: fixed;
}

.legal-table th,
.legal-table td {
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  body {
    cursor: auto;
  }

  .nav {
    align-items: flex-start;
  }

  .nav nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px 12px;
    max-width: min(250px, 58vw);
    font-size: 10px;
  }

  .nav-right {
    margin-left: auto;
    align-items: flex-end;
    gap: 8px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    overflow: hidden;
  }

  .hero > *,
  .hero-copy,
  .lead,
  .eyebrow,
  .hero-points span {
    min-width: 0;
    max-width: 100%;
  }

  .hero-copy,
  .actions,
  .hero-points,
  .phone {
    width: 100%;
    max-width: calc(100vw - (var(--pad) * 2));
  }

  .hero-copy,
  .hero-points {
    max-width: min(330px, calc(100vw - (var(--pad) * 2)));
  }

  .lead,
  .eyebrow,
  .hero-points span {
    overflow-wrap: anywhere;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(54px, 15vw, 68px);
  }

  .phone {
    justify-self: start;
    width: min(310px, 100%);
  }

  .strip,
  .grid,
  .download,
  .section-split,
  .flow-grid,
  .pricing-grid,
  .documents-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .download-actions {
    width: 100%;
  }

  .release-history-head,
  .release-entry-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .release-history-head::after {
    align-self: flex-end;
    margin-top: -28px;
  }

  .release-timeline {
    max-height: 190px;
  }

  .release-entry:not(:last-child) .release-entry-top::after {
    margin-left: 0;
  }

  .release-date,
  .release-version {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .download-meta {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section-split {
    padding-top: 74px;
  }

  .flow-grid article,
  .price-card,
  .doc-card,
  .privacy-grid article {
    min-height: auto;
  }

  .mini-screen {
    min-height: 430px;
  }

  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .legal-table td {
    padding-top: 0;
  }
}
