:root {
  color-scheme: dark;
  --bg: #071120;
  --bg-2: #11142a;
  --panel: rgba(18, 28, 48, 0.78);
  --panel-2: rgba(20, 26, 45, 0.92);
  --border: rgba(153, 170, 220, 0.16);
  --border-strong: rgba(130, 160, 255, 0.42);
  --text: #f7f8ff;
  --muted: #a9b1c7;
  --soft: #758096;
  --blue: #5b82ff;
  --purple: #8f55ff;
  --coral: #ff7d66;
  --pink: #e777b4;
  --green: #65ddb7;
  --radius: 8px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 82% 14%, rgba(143, 85, 255, 0.28), transparent 34%),
    radial-gradient(circle at 18% 20%, rgba(91, 130, 255, 0.18), transparent 32%),
    linear-gradient(180deg, #1a1c3b 0%, #081321 42%, #06101d 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  font: inherit;
}

.landing-nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: min(1180px, calc(100% - 40px));
  min-height: 64px;
  margin: 16px auto 0;
  padding: 10px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(7, 15, 30, 0.88);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: #c7cce0;
  font-weight: 750;
  font-size: 14px;
}

.nav-links a:hover,
.login-link:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.login-link {
  color: #d7dbea;
}

.nav-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-weight: 900;
}

.nav-cta {
  min-height: 42px;
  background: #fff;
  color: #08111f;
}

.primary-btn {
  gap: 12px;
  color: #07111e;
  background: linear-gradient(135deg, #ff8067, #b579ff);
}

.secondary-btn {
  border: 1px solid var(--border);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.primary-btn.light {
  background: #fff;
  color: #0b1220;
}

.secondary-btn.light {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff;
}

main,
.landing-footer {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-section {
  min-height: calc(100svh - 80px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
  padding: clamp(38px, 5.5vw, 78px) 0 48px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #d8d9ff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  font-size: 12px;
}

.eyebrow.centered {
  justify-content: center;
}

.eyebrow span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--pink), var(--blue));
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Outfit, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: clamp(48px, 5.15vw, 74px);
  line-height: 1;
}

h1::first-line {
  color: #fff;
}

.hero-copy,
.section-copy,
.split-section p,
.recommendation-section p,
.clarity-section p {
  color: var(--muted);
  line-height: 1.65;
  font-size: clamp(17px, 1.5vw, 20px);
}

.hero-copy {
  max-width: 640px;
  margin: 22px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.legal-note {
  max-width: 660px;
  margin: 14px 0 0;
  color: #9ea7bc;
  font-size: 13px;
  line-height: 1.55;
}

.rating-row {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.rating-row strong {
  display: block;
  color: #fff;
  margin-bottom: 3px;
}

.rating-row span {
  display: block;
  font-size: 14px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  isolation: isolate;
}

.avatar-stack img {
  width: 32px;
  height: 32px;
  margin-right: -8px;
  border-radius: 999px;
  border: 2px solid #071120;
  background: #101827;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(138, 166, 207, 0.75), 0 8px 18px rgba(0, 0, 0, 0.24);
}

.avatar-stack img:last-child {
  margin-right: 0;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 5% 0 0 8%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(91, 130, 255, 0.2), transparent 65%);
  filter: blur(10px);
}

.sync-pill,
.floating-pill {
  position: absolute;
  z-index: 6;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 24, 43, 0.88);
  color: #dce6ff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.sync-pill {
  top: 52px;
  padding: 9px 18px;
  font-weight: 900;
  font-size: 12px;
}

.sync-pill span,
.floating-pill::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--green);
}

.device-tv {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  aspect-ratio: 16 / 10;
  padding: 12px;
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  background: linear-gradient(135deg, #12243d, #0b1427);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.38);
}

.tv-screen {
  position: relative;
  height: 100%;
  padding: 120px 34px 34px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 72% 22%, #ffb574 0, #ffb574 4%, transparent 13%),
    linear-gradient(145deg, #111f38, #251746 70%);
}

.tv-screen::after,
.phone-poster::after {
  content: "";
  position: absolute;
  inset: auto -12% -20% -12%;
  height: 55%;
  background: linear-gradient(135deg, transparent 34%, #5b41d8 35% 52%, transparent 53%),
              linear-gradient(45deg, transparent 42%, #7a5eff 43% 60%, transparent 61%);
}

.screen-label {
  color: #ddd6ff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  font-size: 12px;
}

.tv-screen h2 {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 28px;
}

.tv-screen p {
  position: relative;
  z-index: 1;
  margin: 6px 0 18px;
  color: #bec7de;
  font-size: 13px;
}

.progress-line {
  position: relative;
  z-index: 1;
  height: 7px;
  max-width: 290px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.progress-line span {
  display: block;
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, var(--coral), var(--purple));
}

.device-phone,
.device-tablet {
  position: absolute;
  z-index: 5;
  border: 1px solid var(--border-strong);
  background: #101a2d;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
}

.device-phone {
  left: 0;
  bottom: 42px;
  width: 160px;
  padding: 12px;
  border-radius: 28px;
  transform: rotate(-7deg);
}

.phone-top {
  width: 62px;
  height: 7px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #040812;
}

.phone-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 900;
}

.phone-logo img {
  width: 15px;
  height: 15px;
  border-radius: 4px;
}

.phone-poster {
  position: relative;
  height: 150px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(160deg, #404da2, #5d30d6);
}

.device-phone strong {
  display: block;
  margin-top: 10px;
  font-size: 13px;
}

.device-phone span {
  color: #aeb8cc;
  font-size: 10px;
}

.phone-bar {
  margin-top: 8px;
  height: 5px;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral) 55%, #fff 56%);
}

.device-tablet {
  right: 0;
  bottom: 10px;
  width: 260px;
  min-height: 220px;
  padding: 22px;
  border-radius: 26px;
  transform: rotate(5deg);
}

.tablet-badge {
  display: inline-block;
  margin-bottom: 22px;
  font-weight: 900;
  font-size: 12px;
}

.tablet-card {
  min-height: 90px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(145deg, #3e53c6, #6930c0);
  font-weight: 900;
}

.tablet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.tablet-grid span {
  height: 70px;
  border-radius: 8px;
  background: linear-gradient(145deg, #ef7867, #8f55ff);
}

.tablet-grid span:nth-child(2) { background: linear-gradient(145deg, #65ddb7, #308f81); }
.tablet-grid span:nth-child(3) { background: linear-gradient(145deg, #a554c8, #7a48d9); }

.floating-pill {
  right: -8px;
  bottom: 145px;
  padding: 11px 16px;
  font-size: 12px;
  font-weight: 900;
}

.floating-pill small {
  color: #aeb8cc;
}

.trust-grid,
.feature-grid,
.device-grid,
.step-grid,
.pricing-grid,
.clarity-grid {
  display: grid;
  gap: 14px;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 90px;
}

.trust-grid article,
.feature-grid article,
.device-grid article,
.step-grid article,
.pricing-grid article,
.clarity-grid article,
.preference-card,
.sync-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--panel);
}

.trust-grid article {
  display: flex;
  gap: 14px;
  padding: 18px;
}

.mini-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: rgba(91, 130, 255, 0.12);
  color: #9eb6ff;
  font-weight: 900;
}

.trust-grid strong,
.feature-grid strong,
.device-grid strong,
.step-grid strong,
.pricing-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.trust-grid p,
.feature-grid p,
.device-grid p,
.step-grid p,
.pricing-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 13px;
}

.split-section,
.recommendation-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 86px);
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.split-section h2,
.recommendation-section h2,
.features-section h2,
.devices-section h2,
.clarity-section h2,
.pricing-section h2,
.faq-section h2,
.steps-section h2 {
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.04;
}

.check-list {
  display: grid;
  gap: 22px;
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 36px;
  color: #fff;
}

.check-list li::before {
  content: "OK";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(101, 221, 183, 0.14);
  color: var(--green);
  font-weight: 900;
}

.check-list strong {
  display: block;
}

.check-list span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

.sync-panel {
  padding: 28px;
  min-height: 420px;
  background: linear-gradient(155deg, rgba(13, 31, 54, 0.92), rgba(8, 18, 32, 0.96));
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 50px;
}

.panel-top span {
  color: var(--muted);
  font-size: 12px;
}

.panel-top i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border-radius: 999px;
  background: var(--green);
}

.screen-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: end;
  gap: 16px;
}

.screen-row div {
  min-height: 180px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #111c30;
}

.screen-row .active {
  min-height: 240px;
  border-color: var(--border-strong);
}

.screen-row span {
  display: block;
  height: 120px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #4b5cc7, #291f75);
}

.screen-row strong,
.screen-row small {
  display: block;
}

.screen-row small {
  margin-top: 4px;
  color: var(--muted);
}

.steps-section,
.features-section,
.devices-section,
.clarity-section,
.pricing-section,
.faq-section {
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-copy {
  max-width: 720px;
  margin: 22px auto 0;
}

.step-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  text-align: left;
}

.step-grid article {
  position: relative;
  padding: 42px 32px 32px;
  min-height: 250px;
}

.step-grid article > span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(255, 255, 255, 0.06);
  font-family: Outfit, Inter, sans-serif;
  font-size: 56px;
}

.step-grid strong {
  margin-top: 56px;
  font-size: 22px;
}

.step-grid small {
  display: block;
  margin-top: 26px;
  color: #dcd7ff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: 11px;
}

.recommendation-section {
  grid-template-columns: minmax(340px, 0.75fr) minmax(500px, 1.25fr);
}

.preference-card {
  max-width: 410px;
  margin-top: 44px;
  padding: 22px;
  text-align: left;
  background: rgba(14, 28, 49, 0.86);
}

.preference-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.preference-head span {
  padding: 5px 10px;
  border: 1px solid rgba(101, 221, 183, 0.28);
  border-radius: 999px;
  color: var(--green);
  font-size: 11px;
}

.preference-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: #8f9ab3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 900;
  font-size: 11px;
}

.preference-card select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #081321;
  color: #eef2ff;
  padding: 0 12px;
}

.preference-card p {
  margin: 14px 0 0;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(91, 130, 255, 0.12);
  color: #dce4ff;
  font-size: 13px;
}

.poster-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 1fr));
  align-items: end;
  gap: 14px;
}

.poster-row article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 16px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: linear-gradient(155deg, #5b4bcc, #251c4d);
  text-align: left;
}

.poster-row article:nth-child(2) { background: linear-gradient(155deg, #1b797d, #153c55); }
.poster-row article:nth-child(3) { background: linear-gradient(155deg, #a64e80, #452747); }
.poster-row article:nth-child(4) { background: linear-gradient(155deg, #92793b, #3d3424); }

.poster-row .tall {
  min-height: 290px;
}

.poster-row span {
  align-self: start;
  margin-bottom: auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: #b7ffea;
  font-weight: 900;
  font-size: 11px;
}

.poster-row strong {
  font-size: 16px;
}

.poster-row small {
  color: #d7dbef;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  text-align: left;
}

.feature-grid article {
  padding: 28px;
  min-height: 280px;
}

.feature-grid strong {
  margin-top: 32px;
  font-size: 22px;
}

.wave,
.bars,
.ring {
  margin-top: 28px;
  min-height: 88px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #081321;
}

.wave {
  background:
    repeating-linear-gradient(90deg, transparent 0 14px, #9b65ff 14px 18px, transparent 18px 28px),
    #081321;
}

.bars {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
}

.bars span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #53606f 18%, #8f55ff 19%, #ff7d66 100%);
}

.bars span:nth-child(2) { width: 88%; }
.bars span:nth-child(3) { width: 70%; }
.bars span:nth-child(4) { width: 52%; }

.ring {
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  background:
    radial-gradient(circle at center, #081321 0 43%, transparent 44%),
    conic-gradient(var(--green) 0 72%, #243044 72% 100%);
}

.device-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1040px;
  margin: 60px auto 0;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(27, 27, 49, 0.72);
  text-align: center;
}

.device-grid article {
  padding: 28px 20px;
  background: rgba(6, 14, 27, 0.62);
}

.device-grid article > span {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 48px;
  line-height: 1;
}

.clarity-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 52px;
  text-align: left;
}

.clarity-grid article {
  padding: 28px;
  background: rgba(14, 28, 49, 0.86);
}

.clarity-grid .negative {
  background: rgba(31, 29, 39, 0.86);
}

.clarity-grid strong {
  font-size: 20px;
}

.clarity-grid ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.clarity-grid li {
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: #cbd3e8;
  background: rgba(255, 255, 255, 0.04);
}

.clarity-grid li::before {
  content: "*";
  color: var(--green);
  margin-right: 8px;
  font-size: 18px;
}

.negative li::before {
  color: var(--coral);
}

.warning-note {
  margin: 24px 0 0;
  padding: 18px 22px;
  border: 1px solid rgba(255, 214, 102, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 214, 102, 0.08);
  font-size: 13px;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 760px;
  margin: 58px auto 16px;
  text-align: left;
}

.pricing-grid article {
  position: relative;
  padding: 34px 28px;
}

.pricing-grid .featured {
  border-color: rgba(143, 85, 255, 0.68);
  box-shadow: 0 0 60px rgba(143, 85, 255, 0.18);
}

.pricing-grid em {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  color: #0b1220;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 36px 0 24px;
  font-family: Outfit, Inter, sans-serif;
  font-size: 52px;
}

.price span {
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 16px;
}

.pricing-grid ul {
  display: grid;
  gap: 12px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  color: #cbd3e8;
}

.pricing-grid li::before {
  content: "OK";
  margin-right: 10px;
  color: var(--green);
}

.pricing-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.pricing-grid .featured a {
  border: 0;
  color: #0b1220;
  background: linear-gradient(135deg, var(--coral), #b579ff);
}

.pricing-section > small {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin: 54px auto 0;
  text-align: left;
}

.faq-item {
  position: relative;
  width: 100%;
  min-height: 62px;
  padding: 20px 58px 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(18, 28, 48, 0.78);
  color: #fff;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-item span {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.faq-item p {
  display: none;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}

.faq-item.open p {
  display: block;
}

.faq-item.open span {
  transform: rotate(45deg);
}

.final-cta {
  margin: 86px 0 100px;
  padding: clamp(40px, 7vw, 70px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 80%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, #694be7, #ff7869);
}

.final-cta h2 {
  max-width: 650px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
  font-size: 18px;
}

.final-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.final-cta small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.landing-footer {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 34px;
  padding: 54px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.landing-footer .brand {
  margin-bottom: 20px;
  color: #fff;
}

.landing-footer p {
  max-width: 300px;
  line-height: 1.6;
}

.landing-footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.landing-footer strong {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.landing-footer a {
  color: var(--muted);
}

.footer-bottom {
  grid-column: 1 / -1;
  max-width: none !important;
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

@media (min-width: 1101px) and (max-height: 920px) {
  .landing-nav {
    top: 10px;
    min-height: 58px;
    margin-top: 12px;
    padding: 8px 18px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .nav-cta,
  .primary-btn,
  .secondary-btn {
    min-height: 46px;
    padding-inline: 20px;
  }

  .hero-section {
    min-height: calc(100svh - 70px);
    align-items: center;
    gap: clamp(30px, 5vw, 62px);
    padding: 22px 0 30px;
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  h1 {
    max-width: 560px;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1;
  }

  .hero-copy,
  .section-copy,
  .split-section p,
  .recommendation-section p,
  .clarity-section p {
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-copy {
    max-width: 580px;
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 16px;
  }

  .legal-note {
    margin-top: 10px;
  }

  .rating-row {
    margin-top: 14px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .device-tv {
    width: min(470px, 100%);
  }

  .device-phone {
    width: 138px;
    bottom: 34px;
  }

  .phone-poster {
    height: 150px;
  }

  .device-tablet {
    width: 230px;
    min-height: 188px;
    padding: 18px;
  }

  .floating-pill {
    right: 4px;
    bottom: 112px;
  }
}

@media (max-width: 1100px) {
  .landing-nav {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .landing-nav.open .nav-links,
  .landing-nav.open .nav-actions {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 12px;
    padding-top: 14px;
  }

  .landing-nav.open .nav-actions {
    grid-template-columns: 1fr;
  }

  .login-link,
  .nav-cta {
    justify-content: center;
  }

  .hero-section,
  .split-section,
  .recommendation-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .trust-grid,
  .device-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  main,
  .landing-footer,
  .landing-nav {
    width: min(100% - 24px, 1200px);
  }

  .landing-nav {
    top: 10px;
    margin-top: 10px;
  }

  .hero-section {
    min-height: auto;
    padding: 60px 0 38px;
  }

  .hero-actions,
  .final-cta div {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .device-tv {
    width: 92%;
  }

  .device-phone {
    left: 0;
    width: 140px;
  }

  .device-tablet {
    right: 0;
    width: 220px;
  }

  .floating-pill {
    right: 8px;
    bottom: 132px;
  }

  .trust-grid,
  .feature-grid,
  .device-grid,
  .step-grid,
  .clarity-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .poster-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .recommendation-section,
  .steps-section,
  .features-section,
  .devices-section,
  .clarity-section,
  .pricing-section,
  .faq-section {
    min-height: auto;
    padding: 72px 0;
  }

  .screen-row {
    grid-template-columns: 1fr;
  }

  .screen-row div,
  .screen-row .active {
    min-height: 170px;
  }

  .landing-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(42px, 14vw, 58px);
  }

  .brand {
    font-size: 22px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .sync-pill {
    top: 8px;
  }

  .device-phone {
    width: 118px;
    bottom: 20px;
  }

  .phone-poster {
    height: 112px;
  }

  .device-tablet {
    width: 178px;
    min-height: 170px;
    padding: 16px;
  }

  .tablet-grid span {
    height: 50px;
  }

  .floating-pill {
    display: none;
  }

  .trust-grid article {
    flex-direction: column;
  }

  .poster-row {
    grid-template-columns: 1fr;
  }

  .clarity-grid ul {
    grid-template-columns: 1fr;
  }

  .final-cta {
    border-radius: 18px;
  }

  .landing-footer {
    grid-template-columns: 1fr;
  }
}
