:root {
  --black: #050505;
  --ink: #111111;
  --ink-soft: #3a3734;
  --muted: #6e6a64;
  --line: #ded9d2;
  --line-dark: #1f1f1f;
  --paper: #f6f3ee;
  --paper-2: #ebe5dc;
  --white: #ffffff;
  --red: #d71916;
  --red-dark: #a80f0c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
  --max: 1180px;
  --soft-red: #fff2ef;
  --display-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
::selection { color: var(--white); background: var(--black); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  transition: top 160ms ease;
}
.skip-link:focus { top: 16px; }

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0,0,0,.68), rgba(0,0,0,0));
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, min-height 200ms ease, padding 200ms ease;
}
.topbar.scrolled {
  min-height: 62px;
  padding-top: 13px;
  padding-bottom: 13px;
  color: var(--ink);
  background: rgba(246, 243, 238, .94);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(0,0,0,.12);
}
.brand {
  justify-self: start;
  text-transform: uppercase;
  font-size: .95rem;
  font-weight: 950;
  letter-spacing: .18em;
}
.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
}
.nav a {
  position: relative;
  padding: 8px 0;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  opacity: .78;
}
.nav a:hover,
.nav a.active { opacity: 1; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav-cta {
  justify-self: end;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.nav-cta:hover { background: currentColor; color: var(--white); transform: translateY(-1px); }
.topbar:not(.scrolled) .nav-cta:hover { color: var(--black); background: var(--white); }
.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(110px, 14vh, 180px) clamp(18px, 4vw, 56px) clamp(44px, 8vh, 92px);
  color: var(--white);
  background: var(--black);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: brightness(1.02) contrast(1.08) saturate(1.08);
  transform: scale(1.015);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,.28) 45%, rgba(0,0,0,.16) 100%),
    linear-gradient(180deg, rgba(0,0,0,.34) 0%, rgba(0,0,0,.03) 48%, rgba(0,0,0,.52) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  display: grid;
  gap: 22px;
}
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .18em;
  color: var(--muted);
}
.eyebrow.light { color: rgba(255,255,255,.76); }
h1, h2, h3, p { margin-top: 0; }
h1,
.hero-content h1 {
  margin: 0;
  max-width: 980px;
  text-transform: uppercase;
  font-size: clamp(3.5rem, 10.7vw, 10.4rem);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 950;
}
.hero-text {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.83);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.68;
}
.hero-actions,
.button-row,
.input-button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 13px 17px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, opacity 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-light { color: var(--black); background: var(--white); border-color: var(--white); }
.btn-light:hover { background: transparent; color: var(--white); }
.btn-outline-light { color: var(--white); background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: var(--white); color: var(--black); }
.btn-red { color: var(--white); background: var(--red); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-dark { color: var(--white); background: var(--black); border-color: var(--black); }
.btn-dark:hover { background: var(--red); border-color: var(--red); }
.btn-line { color: var(--ink); background: transparent; border-color: var(--line-dark); }
.btn-line:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn.full { width: 100%; }

.section {
  width: min(var(--max), calc(100% - clamp(36px, 7vw, 96px)));
  margin: 0 auto;
  padding: clamp(70px, 11vw, 138px) 0;
}
.statement {
  width: 100%;
  max-width: none;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mono {
  margin: 0 auto;
  width: min(var(--max), 100%);
  text-transform: uppercase;
  font-size: clamp(1.65rem, 4.1vw, 5rem);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 950;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 480px);
  gap: clamp(36px, 7vw, 94px);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(300px, 480px) minmax(0, 1fr); }
.copy-block { display: grid; gap: 20px; }
.copy-block h2,
.section-heading h2,
.download-copy h2,
.contact-copy h2,
.webapp-panel h2 {
  margin: 0;
  max-width: 850px;
  text-transform: uppercase;
  font-size: clamp(2.45rem, 5.7vw, 6.1rem);
  line-height: .9;
  letter-spacing: -.062em;
  font-weight: 950;
}
.copy-block p,
.section-heading p,
.editorial-card p,
.feature p,
.trust-item p,
.install-guide p,
.apk-card p,
.experience-card p,
.contact-panel p,
.legal-intro,
.contact-methods a,
.contact-form label,
.socials span {
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: 1rem;
}
.copy-block > p { max-width: 650px; }
.plain-list {
  display: grid;
  gap: 12px;
  margin: 8px 0 4px;
  padding: 0;
  list-style: none;
}
.plain-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .74em;
  width: 12px;
  height: 1px;
  background: var(--ink);
}
.screen-shot,
.screen-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.phone-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: start;
  justify-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.phone-mockup {
  width: min(100%, 255px);
  padding: 9px;
  border-radius: 34px;
  background: #080808;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 24px 68px rgba(0,0,0,.20), inset 0 0 0 1px rgba(255,255,255,.06);
}
.phone-mockup.offset { margin-top: clamp(32px, 6vw, 66px); }
.phone-mockup img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  background: #f5f5f7;
}
.phone-pair figcaption {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: -2px;
  background: var(--white);
  border: 1px solid var(--line);
}
.screen-shot > img,
.screen-card > img,
.screen-card .phone-mockup img { width: 100%; height: auto; }
.screen-shot figcaption,
.screen-card figcaption {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  color: var(--muted);
}
.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  padding: 1px;
  width: min(var(--max), calc(100% - clamp(36px, 7vw, 96px)));
}
.feature {
  min-height: 310px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
}
.feature span,
.experience-card b,
.trust-item span,
.apk-role {
  display: inline-flex;
  width: fit-content;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  color: var(--muted);
}
.feature h3,
.editorial-card h3,
.trust-item h3,
.apk-card h3,
.install-guide h3,
.experience-card h3,
.contact-panel h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 2vw, 2.15rem);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 950;
}
.feature p { margin: 0; }
.editorial,
.experience,
.trust,
.faq-section { display: grid; gap: clamp(30px, 5vw, 56px); }
.section-heading { display: grid; gap: 18px; }
.section-heading > p:last-child { max-width: 760px; margin-bottom: 0; }
.editorial-grid,
.experience-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.editorial-card,
.experience-card,
.trust-item {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3.2vw, 42px);
  background: var(--white);
}
.trust-grid { grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 220px; }
.showcase {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 30px);
}
.real-screens {
  align-items: start;
}
.phone-card {
  display: grid;
  justify-items: center;
  gap: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.phone-card .phone-mockup { width: min(100%, 235px); }
.phone-card figcaption {
  width: min(100%, 235px);
  padding: 13px 14px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.webapp-cta {
  width: 100%;
  max-width: none;
  background: var(--black);
  color: var(--white);
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}
.webapp-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  align-items: start;
}
.webapp-panel p:not(.eyebrow) {
  max-width: 740px;
  margin: 0;
  color: rgba(255,255,255,.74);
  line-height: 1.75;
}
.webapp-panel .btn { width: fit-content; }
.download-section { padding-top: clamp(80px, 12vw, 150px); }
.download-card {
  display: grid;
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(24px, 4vw, 48px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.download-copy { display: grid; gap: 18px; }
.download-copy p { max-width: 760px; }

.minimal-download {
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 226, 219, .45), transparent 34%),
    var(--white);
}
.minimal-download .download-copy {
  max-width: 840px;
}
.store-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.store-link {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 16px;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--line);
  background: rgba(250, 247, 242, .66);
  color: var(--black);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.store-link:hover,
.store-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(5, 5, 5, .34);
  background: var(--white);
}
.store-link span {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--muted);
}
.store-link strong {
  display: block;
  max-width: 12ch;
  font-family: var(--display-font);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: .92;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.store-link em {
  font-style: normal;
  font-size: .82rem;
  color: var(--muted);
}
.primary-store {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.primary-store span,
.primary-store em { color: rgba(255,255,255,.68); }
.primary-store:hover,
.primary-store:focus-visible {
  background: #191919;
  border-color: #191919;
}
.web-entry { background: var(--soft-red); }
.coming-soon-store {
  cursor: default;
}
.coming-soon-store em {
  text-transform: uppercase;
  letter-spacing: .08em;
}
.coming-soon-store:hover,
.coming-soon-store:focus-visible {
  transform: none;
  border-color: var(--line);
  background: rgba(250, 247, 242, .66);
}
.download-note {
  width: fit-content;
  margin: -12px 0 0;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: .9rem;
  color: var(--muted);
}

.download-actions-grid,
.apk-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.apk-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
}
.single-apk { background: var(--white); }
.apk-card dl {
  margin: 2px 0 6px;
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.apk-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  background: var(--white);
}
.apk-card dt {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .1em;
}
.apk-card dd {
  margin: 0;
  text-align: right;
  font-weight: 850;
}
.apk-card small {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}
.notice {
  border-left: 3px solid var(--red);
  background: #fff6f4;
  padding: 14px 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.install-guide {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.install-guide ol {
  margin: 0;
  padding-left: 22px;
  color: var(--ink-soft);
  line-height: 1.8;
}
.faq-list {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.faq-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  width: 100%;
  padding: 24px;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-item span {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -.01em;
}
.faq-item b {
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 160ms ease;
}
.faq-item p {
  grid-column: 1 / -1;
  max-width: 860px;
  height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
  transition: height 180ms ease, margin 180ms ease;
}
.faq-item.open b { transform: rotate(45deg); }
.faq-item.open p { height: auto; margin-top: 4px; }
.contact-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}
.contact-copy { display: grid; gap: 18px; }
.contact-copy p:last-child { max-width: 600px; color: var(--ink-soft); line-height: 1.75; }
.contact-panel {
  display: grid;
  gap: 26px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-panel h3 { word-break: break-word; }

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}
.contact-methods span,
.contact-form label,
.socials em {
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .13em;
  color: var(--muted);
}
.contact-methods strong {
  font-size: .98rem;
  word-break: break-word;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  border-radius: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  font-size: 1rem;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215,25,22,.10);
  background: var(--white);
}
.contact-legal-grid { gap: 22px; }
.contact-form-card {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.legal-intro {
  margin-top: 20px;
  max-width: 760px;
  color: var(--muted);
}
.socials span {
  display: grid;
  gap: 4px;
  color: rgba(255,255,255,.84);
}
.socials em {
  display: inline-flex;
  width: fit-content;
  color: rgba(255,255,255,.5);
  font-style: normal;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr .8fr .55fr;
  gap: 30px;
  padding: clamp(34px, 5vw, 64px) clamp(18px, 4vw, 56px);
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer strong {
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 950;
}
.footer p {
  max-width: 520px;
  margin: 0 0 10px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}
.footer nav,
.socials { display: grid; align-content: start; gap: 12px; }
.footer a {
  color: rgba(255,255,255,.84);
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.footer a:hover { color: var(--white); }
.sticky-mobile-cta { display: none; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  transform: translate(-50%, 20px);
  min-width: min(360px, calc(100vw - 36px));
  padding: 13px 16px;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.16);
  opacity: 0;
  pointer-events: none;
  text-align: center;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .08em;
  transition: opacity 180ms ease, transform 180ms ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.noscript {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  padding: 12px 14px;
  color: var(--white);
  background: var(--red);
  text-align: center;
  font-size: .9rem;
}
code {
  padding: .12em .32em;
  background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.09);
  font-size: .92em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

.legal-page,
.app-page {
  min-height: 100svh;
  padding-top: 112px;
}
.legal-shell,
.app-shell {
  width: min(980px, calc(100% - clamp(36px, 7vw, 96px)));
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) 0;
}
.legal-shell h1,
.app-shell h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 950;
}
.legal-content {
  margin-top: 36px;
  display: grid;
  gap: 26px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
}
.legal-content section { display: grid; gap: 10px; }
.legal-content h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.legal-content p { margin: 0; color: var(--ink-soft); line-height: 1.75; }
.app-gateway {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
}
.app-card {
  width: min(900px, 100%);
  display: grid;
  gap: 24px;
  padding: clamp(26px, 6vw, 72px);
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
.app-card h1 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 8.4rem);
  line-height: .82;
  letter-spacing: -.075em;
  font-weight: 950;
}
.app-card p { color: rgba(255,255,255,.76); line-height: 1.75; }

.app-preview-phone {
  margin: 0;
  display: grid;
  justify-content: start;
}
.app-preview-phone .phone-mockup { width: 220px; }

.app-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.2);
}
.app-option {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: rgba(0,0,0,.32);
}
.app-option h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1;
}
.app-option p { margin: 0; font-size: .93rem; }


@media (max-width: 1200px) {
  .store-panel { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1020px) {
  .topbar {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }
  .menu-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 68px 12px auto 12px;
    display: none;
    justify-self: stretch;
    padding: 18px;
    background: rgba(246,243,238,.98);
    color: var(--ink);
    border: 1px solid rgba(0,0,0,.12);
    box-shadow: var(--shadow);
  }
  .nav.open { display: grid; gap: 8px; }
  .nav a { padding: 13px 0; }
  .nav-cta { display: none; }
  .split,
  .split.reverse,
  .contact-section { grid-template-columns: 1fr; }
  .showcase-grid.real-screens { grid-template-columns: repeat(2, 1fr); }
  .split.reverse figure { order: 2; }
  .compact-grid,
  .editorial-grid,
  .trust-grid,
  .showcase-grid,
  .experience-grid,
  .download-actions-grid,
  .apk-grid,
  .footer,
  .app-options { grid-template-columns: 1fr; }
  .store-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature { min-height: 230px; }
}

@media (max-width: 720px) {
  .hero { padding-bottom: 92px; }
  .hero-actions .btn,
  .button-row .btn { width: 100%; }
  .section { width: min(100% - 28px, var(--max)); padding: 62px 0; }
  .statement { padding: 58px 14px; }
  .compact-grid { width: min(100% - 28px, var(--max)); }
  .screen-shot { max-width: 560px; margin: 0 auto; }
  .phone-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .phone-mockup.offset { margin-top: 26px; }
  .showcase-grid.real-screens { grid-template-columns: 1fr; }
  .phone-card .phone-mockup,
  .phone-card figcaption { width: min(100%, 260px); }
  .download-card,
  .contact-panel { padding: 22px; }
  .store-panel { grid-template-columns: 1fr; }
  .store-link { min-height: 124px; }
  .apk-card dl div { align-items: flex-start; flex-direction: column; }
  .apk-card dd { text-align: left; }
  
.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.contact-methods a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}
.contact-methods span,
.contact-form label,
.socials em {
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 950;
  letter-spacing: .13em;
  color: var(--muted);
}
.contact-methods strong {
  font-size: .98rem;
  word-break: break-word;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  border-radius: 0;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  font-size: 1rem;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(215,25,22,.10);
  background: var(--white);
}
.contact-legal-grid { gap: 22px; }
.contact-form-card {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.legal-intro {
  margin-top: 20px;
  max-width: 760px;
  color: var(--muted);
}
.socials span {
  display: grid;
  gap: 4px;
  color: rgba(255,255,255,.84);
}
.socials em {
  display: inline-flex;
  width: fit-content;
  color: rgba(255,255,255,.5);
  font-style: normal;
}

.footer { padding-bottom: 92px; }
  .sticky-mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 105;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--black);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 16px 40px rgba(0,0,0,.24);
  }
  .sticky-mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 50px;
    color: var(--white);
    text-transform: uppercase;
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .08em;
  }
  .sticky-mobile-cta a + a { border-left: 1px solid rgba(255,255,255,.16); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .hero-video { transform: none; }
  .reveal { opacity: 1; transform: none; }
}

.topbar .legal-nav {
  position: static;
  display: flex;
  justify-self: center;
  padding: 0;
  background: transparent;
  color: inherit;
  border: 0;
  box-shadow: none;
}
@media (max-width: 1020px) {
  .topbar .legal-nav {
    display: none;
  }
}


/* App flow guide and store icons */
.store-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.store-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: currentColor;
  opacity: .9;
}
.store-kicker span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
}

.app-flow {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
}
.flow-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}
.guide-video-card {
  margin: 0;
  display: grid;
  gap: 14px;
}
.guide-video {
  width: min(100%, 420px);
  aspect-ratio: 9 / 16;
  max-height: 760px;
  margin: 0 auto;
  background: var(--black);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
  object-fit: contain;
}
.guide-video-card figcaption {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 1.55;
}
.flow-steps {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}
.flow-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: clamp(16px, 2vw, 26px);
  padding: clamp(20px, 3vw, 30px);
  background: var(--paper);
}
.flow-step b,
.account-type-card span {
  display: inline-flex;
  width: fit-content;
  height: fit-content;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .14em;
  color: var(--muted);
}
.flow-step h3,
.account-type-card h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  font-size: clamp(1.15rem, 1.8vw, 1.72rem);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 950;
}
.flow-step p,
.account-type-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}
.account-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.account-type-card {
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(24px, 3vw, 38px);
  background: var(--white);
}

@media (max-width: 1020px) {
  .flow-layout,
  .account-type-grid { grid-template-columns: 1fr; }
  .guide-video { width: min(100%, 360px); }
  .guide-video-card figcaption { width: min(100%, 360px); }
}

@media (max-width: 720px) {
  .flow-step { grid-template-columns: 1fr; }
  .guide-video { width: min(100%, 330px); }
  .guide-video-card figcaption { width: min(100%, 330px); }
  .store-kicker { justify-content: flex-start; }
}
