:root {
  color-scheme: dark;
  --background: #051425;
  --background-deep: #020912;
  --background-mid: #071a2e;
  --surface: #0b2036;
  --surface-raised: #102b47;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --faint: rgba(255, 255, 255, 0.49);
  --border: rgba(255, 255, 255, 0.13);
  --border-strong: rgba(255, 255, 255, 0.22);
  --accent: #ff2e40;
  --accent-soft: #ff5362;
  --accent-pale: #ff9ba3;
  --success: #32d06b;
  --warning: #ffad40;
  --max-width: 1160px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -8%, rgba(36, 105, 161, 0.36), transparent 42rem),
    linear-gradient(150deg, var(--background), var(--background-deep) 78%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }

a { color: inherit; }

button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  color: #07101b;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus { transform: translateY(0); }

.wrap {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 9, 18, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.brand-copy,
.footer-brand > div {
  display: grid;
  line-height: 1.15;
}

.brand strong,
.footer-brand strong {
  font-size: 1.1rem;
  font-weight: 790;
  letter-spacing: -0.035em;
}

.brand small,
.footer-brand span {
  margin-top: 4px;
  color: var(--faint);
  font-size: 0.71rem;
  font-weight: 580;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(13px, 2vw, 24px);
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 670;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible { color: var(--text); }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(50px, 7vw, 90px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: 76px 0 84px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--accent-pale);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.105em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(255, 46, 64, 0.78);
}

h1, h2, h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.3rem, 7.8vw, 6.45rem);
  font-weight: 835;
}

h1 span {
  background: linear-gradient(90deg, #ffffff, #bacfe6 65%, #ffb1b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-badges,
.privacy-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-badges span,
.privacy-points span {
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.79);
  font-size: 0.78rem;
  font-weight: 680;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -0.015em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, var(--accent-soft), var(--accent));
  box-shadow: 0 14px 34px rgba(255, 46, 64, 0.27);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 17px 40px rgba(255, 46, 64, 0.38);
}

.button-secondary { background: rgba(255, 255, 255, 0.07); }

.full-button { width: 100%; }

.microcopy {
  margin: 15px 0 0;
  color: var(--faint);
  font-size: 0.82rem;
}

.phone-stage {
  position: relative;
  width: min(100%, 520px);
  min-height: 730px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.ambient {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.52;
}

.ambient-one {
  width: 330px;
  height: 330px;
  top: 4%;
  left: 4%;
  background: rgba(41, 125, 193, 0.34);
}

.ambient-two {
  width: 250px;
  height: 250px;
  right: 0;
  bottom: 6%;
  background: rgba(255, 46, 64, 0.2);
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 350px);
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.21);
  border-radius: 50px;
  background: linear-gradient(145deg, #18222d, #02060b 74%);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.57), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: rotate(1.8deg);
}

.phone-screen {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #030a12;
}

.dynamic-island {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 10px;
  width: 96px;
  height: 29px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: #000205;
}

.camera-header {
  position: relative;
  z-index: 6;
  min-height: 104px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 35px 17px 14px;
  background: linear-gradient(rgba(2, 9, 18, 0.96), rgba(2, 9, 18, 0.62), transparent);
}

.mini-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.mini-brand img { border-radius: 9px; }

.mini-brand > div {
  display: grid;
  min-width: 0;
  line-height: 1.08;
}

.mini-brand strong {
  font-size: 0.77rem;
  letter-spacing: -0.02em;
}

.mini-brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.46rem;
  white-space: nowrap;
}

.timer-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(9, 29, 48, 0.84);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.55rem;
  font-variant-numeric: tabular-nums;
}

.timer-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.camera-preview {
  position: relative;
  height: 470px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 139, 115, 0.26), transparent 34%),
    linear-gradient(180deg, #36536d, #10243a 55%, #081829);
}

.sun {
  position: absolute;
  top: 114px;
  right: 62px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 174, 132, 0.74);
  filter: blur(1px);
  box-shadow: 0 0 80px rgba(255, 128, 95, 0.52);
}

.mountain {
  position: absolute;
  bottom: 150px;
  width: 290px;
  height: 210px;
  background: linear-gradient(145deg, #243f55, #0e2134 72%);
  clip-path: polygon(0 100%, 24% 35%, 42% 63%, 64% 18%, 100% 100%);
}

.mountain-a { left: -70px; }
.mountain-b { right: -95px; transform: scaleX(-1) scaleY(0.9); opacity: 0.86; }

.lake {
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background:
    repeating-linear-gradient(176deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, #16344a, #071726);
}

.subject {
  position: absolute;
  left: 53%;
  bottom: 120px;
  width: 28px;
  height: 95px;
  transform: translateX(-50%);
  border-radius: 18px 18px 8px 8px;
  background: #07101a;
  box-shadow: 0 -24px 0 -6px #07101a;
}

.guide {
  position: absolute;
  width: 42px;
  height: 42px;
  border-color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.4));
}

.guide-tl { left: 22px; top: 20px; border-left: 2px solid; border-top: 2px solid; border-radius: 9px 0 0; }
.guide-tr { right: 22px; top: 20px; border-right: 2px solid; border-top: 2px solid; border-radius: 0 9px 0 0; }
.guide-bl { left: 22px; bottom: 20px; border-left: 2px solid; border-bottom: 2px solid; border-radius: 0 0 0 9px; }
.guide-br { right: 22px; bottom: 20px; border-right: 2px solid; border-bottom: 2px solid; border-radius: 0 0 9px; }

.record-control {
  min-height: 116px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  background: linear-gradient(transparent, rgba(2, 9, 18, 0.92) 42%);
}

.record-control span {
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.55rem;
}

.record-ring {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 4px solid rgba(255, 255, 255, 0.28);
  border-top-color: var(--accent);
  border-radius: 50%;
  transform: rotate(18deg);
  box-shadow: 0 0 28px rgba(255, 46, 64, 0.25);
}

.record-centre {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent-soft), var(--accent));
  box-shadow: 0 0 23px rgba(255, 46, 64, 0.73);
}

.format-fan {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.fan-card {
  position: absolute;
  display: grid;
  place-items: end center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  background:
    radial-gradient(circle at 65% 25%, rgba(255, 128, 98, 0.4), transparent 45%),
    linear-gradient(160deg, #183b58, #061423);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.fan-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 780;
}

.fan-vertical { right: -4px; top: 8%; width: 90px; height: 160px; transform: rotate(9deg); }
.fan-landscape { left: -8px; top: 14%; width: 150px; height: 84px; transform: rotate(-12deg); }
.fan-portrait { right: -2px; bottom: 10%; width: 96px; height: 120px; transform: rotate(11deg); }
.fan-square { left: 0; bottom: 8%; width: 102px; height: 102px; transform: rotate(-8deg); }

.section { padding: 88px 0; }
.section-tight { padding-top: 44px; }

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.centre {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.centre .eyebrow { justify-content: center; }

.section h2,
.content-shell h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.05rem);
  font-weight: 805;
}

.section-heading > p:not(.eyebrow) {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  min-height: 190px;
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: linear-gradient(145deg, rgba(16, 43, 71, 0.82), rgba(6, 21, 36, 0.86));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.step-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 33px;
  height: 33px;
  border: 1px solid rgba(255, 83, 98, 0.38);
  border-radius: 50%;
  background: rgba(255, 46, 64, 0.1);
  color: #ff929b;
  font-size: 0.84rem;
  font-weight: 800;
}

.steps h3 { margin: 3px 0 0; font-size: 1.12rem; }
.steps p { margin: 11px 0 0; color: var(--muted); font-size: 0.91rem; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 27px;
  background: linear-gradient(145deg, rgba(16, 43, 71, 0.9), rgba(7, 23, 39, 0.9));
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.25);
}

.feature-card-large {
  grid-row: span 2;
  min-height: 556px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.065);
  color: #ff939c;
  font-size: 1.45rem;
  font-weight: 800;
}

.focus-icon {
  position: relative;
  width: 23px;
  height: 23px;
}

.focus-icon::before,
.focus-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #ff939c;
  border-radius: 6px;
}

.focus-icon::after {
  inset: 6px;
  border-radius: 50%;
  background: var(--accent);
  border: 0;
  box-shadow: 0 0 12px rgba(255, 46, 64, 0.7);
}

.card-kicker {
  color: var(--accent-pale);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.feature-card h3 { margin: 12px 0 0; font-size: 1.7rem; }
.feature-card p { max-width: 560px; margin: 13px 0 0; color: var(--muted); }

.tracking-demo {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  height: 230px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 22%, rgba(255, 132, 98, 0.3), transparent 35%),
    linear-gradient(180deg, #21415d, #081724);
}

.tracking-demo::before,
.tracking-demo::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 78%;
  height: 65%;
  background: #0c2234;
  clip-path: polygon(0 100%, 22% 38%, 47% 72%, 70% 25%, 100% 100%);
}

.tracking-demo::before { left: -18%; }
.tracking-demo::after { right: -28%; transform: scaleX(-1); opacity: 0.7; }

.tracking-path {
  position: absolute;
  z-index: 4;
  left: 13%;
  right: 14%;
  top: 48%;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.34);
  transform: rotate(-7deg);
}

.tracking-person {
  position: absolute;
  z-index: 5;
  left: 54%;
  bottom: 42px;
  width: 31px;
  height: 100px;
  border-radius: 16px 16px 8px 8px;
  background: #030a12;
  box-shadow: 0 -25px 0 -6px #030a12;
}

.tracking-box {
  position: absolute;
  z-index: 6;
  left: calc(54% - 30px);
  bottom: 29px;
  width: 92px;
  height: 145px;
  border: 2px solid rgba(255, 83, 98, 0.92);
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(255, 46, 64, 0.33);
}

.formats-section {
  background: linear-gradient(180deg, transparent, rgba(7, 28, 48, 0.62), transparent);
}

.ratio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ratio-card {
  position: relative;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 21px;
  border: 1px solid var(--border);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.042);
  text-align: center;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ratio-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.06);
}

.featured-ratio {
  border-color: rgba(255, 83, 98, 0.42);
  box-shadow: 0 20px 44px rgba(255, 46, 64, 0.1);
}

.popular-label {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 46, 64, 0.12);
  color: #ff9da5;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.ratio-shape {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 9px;
  background:
    radial-gradient(circle at 69% 28%, rgba(255, 132, 98, 0.42), transparent 35%),
    linear-gradient(160deg, #214966, #071828);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.ratio-shape.vertical { width: 62px; height: 110px; }
.ratio-shape.landscape { width: 126px; height: 71px; }
.ratio-shape.portrait { width: 78px; height: 98px; }
.ratio-shape.square { width: 91px; height: 91px; }

.ratio-subject {
  position: absolute;
  left: 50%;
  bottom: 16%;
  width: 12%;
  min-width: 7px;
  height: 42%;
  transform: translateX(-50%);
  border-radius: 99px 99px 5px 5px;
  background: #06101a;
  box-shadow: 0 -10px 0 -2px #06101a;
}

.ratio-card strong {
  color: var(--accent-pale);
  font-size: 1.1rem;
}

.ratio-card h3 { margin: 5px 0 0; font-size: 1.35rem; }
.ratio-card p { margin: 12px 0 0; color: var(--faint); font-size: 0.86rem; }

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 66px;
  align-items: center;
}

.pricing-heading { margin-bottom: 0; }

.price-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 83, 98, 0.34);
  border-radius: 29px;
  background: linear-gradient(145deg, rgba(17, 48, 78, 0.96), rgba(7, 22, 38, 0.96));
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.34), 0 0 70px rgba(255, 46, 64, 0.08);
}

.price-label {
  margin: 0;
  color: var(--accent-pale);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.price {
  margin: 10px 0 0;
  font-size: clamp(3.8rem, 9vw, 5.8rem);
  font-weight: 840;
  line-height: 1;
  letter-spacing: -0.065em;
}

.price span {
  margin-right: 4px;
  font-size: 0.35em;
  vertical-align: top;
  line-height: 1.9;
}

.price-note { margin: 10px 0 0; color: var(--muted); }

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.84);
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 850;
}

.price-card small {
  display: block;
  margin-top: 13px;
  color: var(--faint);
  text-align: center;
}

.privacy-section { padding-top: 46px; }

.privacy-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(50, 208, 107, 0.28);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(50, 208, 107, 0.08), rgba(16, 43, 71, 0.78));
}

.privacy-panel h2 { font-size: clamp(2.1rem, 4.7vw, 3.5rem); }
.privacy-panel > div > p:not(.eyebrow) { max-width: 720px; color: var(--muted); }

.privacy-mark {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(50, 208, 107, 0.4);
  border-radius: 50%;
  background: rgba(50, 208, 107, 0.1);
  box-shadow: 0 0 44px rgba(50, 208, 107, 0.13);
}

.privacy-mark span { color: var(--success); font-size: 3.5rem; font-weight: 800; }

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 110px;
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.038);
  overflow: hidden;
}

.faq-list summary {
  position: relative;
  padding: 21px 56px 21px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-pale);
  font-size: 1.4rem;
  font-weight: 450;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.waitlist-section { padding-top: 42px; }

.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 83, 98, 0.29);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 46, 64, 0.18), transparent 20rem),
    linear-gradient(145deg, rgba(16, 43, 71, 0.95), rgba(6, 20, 34, 0.95));
}

.waitlist-panel h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.waitlist-panel > div > p:not(.eyebrow) { max-width: 720px; color: var(--muted); }

.waitlist-actions {
  display: grid;
  justify-items: center;
  gap: 11px;
}

.text-link {
  color: var(--faint);
  font-size: 0.82rem;
}

.content-page { padding: 72px 0 96px; }

.content-shell {
  max-width: 850px;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: 29px;
  background: rgba(8, 26, 45, 0.86);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.3);
}

.content-shell h1 { font-size: clamp(2.7rem, 6vw, 4.7rem); }
.content-shell h2 { margin: 42px 0 0; font-size: 1.65rem; }
.content-shell h3 { margin: 26px 0 0; font-size: 1.2rem; }
.content-shell p, .content-shell li { color: var(--muted); }
.content-shell strong { color: var(--text); }
.content-shell a { color: #ffabb2; }
.content-shell ul, .content-shell ol { padding-left: 23px; }
.content-shell .updated { color: var(--faint); font-size: 0.92rem; }

.content-note {
  margin: 26px 0;
  padding: 20px;
  border: 1px solid rgba(50, 208, 107, 0.23);
  border-radius: 18px;
  background: rgba(50, 208, 107, 0.055);
}

.support-list {
  display: grid;
  gap: 13px;
  padding: 0 !important;
  list-style: none;
}

.support-list li {
  padding: 19px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.support-list strong { display: block; margin-bottom: 5px; }

.site-footer {
  padding: 40px 0 48px;
  border-top: 1px solid var(--border);
  color: var(--faint);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a { text-decoration: none; }

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 980px) {
  .nav-links a:nth-child(-n+3) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 66px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-badges, .actions { justify-content: center; }
  .phone-stage { min-height: 690px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-card-large { grid-row: auto; min-height: 500px; }
  .ratio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-layout { grid-template-columns: 1fr; gap: 36px; }
  .pricing-heading { max-width: 760px; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-heading { position: static; }
  .waitlist-panel { grid-template-columns: 1fr; text-align: center; }
  .waitlist-panel .eyebrow { justify-content: center; }
  .waitlist-panel > div > p:not(.eyebrow) { margin-left: auto; margin-right: auto; }
}

@media (max-width: 680px) {
  .wrap { width: min(calc(100% - 24px), var(--max-width)); }
  .nav { min-height: 66px; }
  .brand-copy small { display: none; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 0.85rem; }
  .nav-links a:nth-child(-n+4) { display: none; }
  .hero { min-height: auto; padding: 52px 0 54px; gap: 40px; }
  h1 { font-size: clamp(2.9rem, 15vw, 4.35rem); }
  .hero-badges { max-width: 430px; margin-left: auto; margin-right: auto; }
  .phone-stage { min-height: 610px; transform: scale(0.9); margin-top: -28px; margin-bottom: -28px; }
  .fan-card { opacity: 0.72; }
  .fan-landscape { left: 1px; }
  .fan-vertical { right: 1px; }
  .section { padding: 62px 0; }
  .section-tight { padding-top: 24px; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: auto; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .feature-card-large { min-height: 510px; }
  .ratio-grid { grid-template-columns: 1fr 1fr; }
  .ratio-card { min-height: 285px; padding: 23px 14px; }
  .popular-label { display: none; }
  .privacy-panel, .waitlist-panel { padding: 28px 22px; }
  .privacy-panel { grid-template-columns: 1fr; }
  .privacy-mark { display: none; }
  .price-card { padding: 28px 22px; }
  .content-shell { padding: 27px 21px; border-radius: 23px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 430px) {
  .ratio-grid { grid-template-columns: 1fr; }
  .phone-stage { transform: scale(0.82); min-height: 560px; margin-top: -54px; margin-bottom: -54px; }
  .brand strong { font-size: 1rem; }
  .footer-links { gap: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
