:root {
  --bg: #f7f9ff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --ink: #11122f;
  --muted: #656b82;
  --muted-strong: #424861;
  --line: rgba(48, 55, 91, 0.12);
  --blue: #2f8cff;
  --purple: #7048ff;
  --violet: #a957ff;
  --green: #21d071;
  --red: #ff344f;
  --shadow: 0 22px 70px rgba(37, 48, 92, 0.13);
  --shadow-soft: 0 14px 44px rgba(67, 75, 117, 0.11);
  --radius-card: 8px;
  --radius-control: 999px;
  --container: 1180px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --text-xs: 0.78rem;
  --text-sm: 0.92rem;
  --text-base: 1rem;
  --text-md: 1.08rem;
  --text-lg: 1.22rem;
  --text-xl: 1.42rem;
  --heading-xl: clamp(2.85rem, 6.4vw, 5.9rem);
  --heading-lg: clamp(2rem, 3.8vw, 3.05rem);
  --heading-md: clamp(1.55rem, 2.7vw, 2.12rem);
  --heading-mobile: clamp(2.45rem, 11.5vw, 3.72rem);
}

/* Base layout */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.5;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background:
    linear-gradient(148deg, rgba(112, 72, 255, 0.08), transparent 28%),
    linear-gradient(22deg, rgba(47, 140, 255, 0.1), transparent 32%),
    var(--bg);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 92px 0;
}

main,
.site-header,
.footer {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 255, 0.76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(22px);
  transition: border-color 180ms ease, box-shadow 180ms ease,
    background 180ms ease;
}

/* Header navigation */
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 36px rgba(25, 31, 65, 0.07);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(112, 72, 255, 0.28);
  overflow: hidden;
  background: #fff;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1;
}

.nav-menu a:not(.nav-cta) {
  color: var(--muted-strong);
  transition: color 160ms ease;
}

.nav-menu a:not(.nav-cta):hover {
  color: var(--purple);
}

.nav-cta {
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--radius-control);
  background: linear-gradient(135deg, #245dff, #7c48ff);
  box-shadow: 0 13px 28px rgba(112, 72, 255, 0.22);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 76px);
  padding-top: 84px;
  padding-bottom: 118px;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 249, 255, 0.82) 50%, rgba(236, 242, 255, 0.78) 100%),
    linear-gradient(90deg, rgba(124, 72, 255, 0.12), rgba(47, 140, 255, 0.08));
  isolation: isolate;
  overflow: hidden;
}

/* Hero and phone mockup */
.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: auto 0 -1px 0;
  height: 210px;
  background: #fff;
  clip-path: polygon(0 32%, 20% 54%, 48% 48%, 72% 62%, 100% 22%, 100% 100%, 0 100%);
}

.hero::after {
  inset: 0;
  background:
    linear-gradient(118deg, transparent 48%, rgba(112, 72, 255, 0.12) 48.2%, transparent 66%),
    repeating-linear-gradient(155deg, rgba(47, 140, 255, 0.08) 0 1px, transparent 1px 18px);
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 78%, transparent);
  opacity: 0.35;
}

.hero-glow {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 46px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--purple);
  font-size: var(--text-sm);
  font-weight: 800;
  line-height: 1.15;
}

.eyebrow {
  padding: 10px 16px;
  border: 1px solid rgba(112, 72, 255, 0.14);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(112, 72, 255, 0.12);
}

.sparkle {
  position: relative;
  width: 14px;
  height: 14px;
}

.sparkle::before,
.sparkle::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, var(--blue), var(--violet));
}

.sparkle::before {
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
}

.sparkle::after {
  transform: scale(0.42) translate(13px, -11px);
  border-radius: 50%;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.9vw, 4.8rem);
  font-weight: 850;
  line-height: 1.02;
  color: var(--ink);
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-text {
  max-width: 590px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  font-weight: 500;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 10px 24px 10px 16px;
  color: #fff;
  border-radius: 14px;
  background: #050506;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.store-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
}

.store-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.app-store-button small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1;
}

.app-store-button span:last-child {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.08;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.phone-orbit {
  position: absolute;
  width: min(82%, 520px);
  height: min(82%, 520px);
  border: 1px solid rgba(112, 72, 255, 0.16);
  border-radius: 40% 60% 48% 52%;
  background:
    linear-gradient(135deg, rgba(112, 72, 255, 0.18), rgba(47, 140, 255, 0.12)),
    rgba(255, 255, 255, 0.44);
  transform: rotate(-10deg);
  filter: blur(0.1px);
}

.phone-shell {
  position: relative;
  z-index: 2;
  width: min(330px, 72vw);
  aspect-ratio: 626 / 1286;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.phone-shell::before {
  position: absolute;
  top: 112px;
  right: -4px;
  width: 4px;
  height: 74px;
  border-radius: 0 4px 4px 0;
  background: #1c1c26;
  content: "";
  display: none;
}

.phone-shell::after {
  position: absolute;
  left: -4px;
  top: 112px;
  width: 4px;
  height: 48px;
  border-radius: 4px 0 0 4px;
  background: #1c1c26;
  content: "";
  display: none;
}

.phone-notch {
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 4;
  width: 34%;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: #07070a;
  transform: translateX(-50%);
  display: none;
}

.phone-screen {
  position: relative;
  height: 100%;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.app-screen-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 58px rgba(79, 104, 169, 0.16));
}

.mini-app {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  padding: 9px;
  font-weight: 900;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.mini-app {
  width: 50px;
  height: 50px;
  border-radius: 17px;
  font-size: var(--text-xl);
}

.mini-app img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mini-app-netflix {
  background: #050507;
}

.mini-app-spotify {
  background: #fff;
}

.mini-app-youtube {
  background: #fff;
}

.mini-app-cloud {
  background: #fff;
}

.floating-card-netflix {
  top: 86px;
  left: 54px;
}

.floating-card-spotify {
  top: 142px;
  right: 38px;
}

.floating-card-youtube {
  top: 254px;
  left: 20px;
}

.floating-card-cloud {
  right: 76px;
  bottom: 144px;
}

.section-heading {
  max-width: 660px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.why-card h2,
.premium-content h2,
.privacy-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--heading-lg);
  font-weight: 820;
  line-height: 1.08;
}

.section-heading p,
.why-card p,
.premium-content p,
.privacy-card p {
  color: var(--muted);
  font-size: var(--text-md);
  font-weight: 500;
  line-height: 1.65;
}

.section-heading > p:last-child {
  margin: 14px 0 0;
}

.features-section {
  padding-top: 70px;
  background:
    linear-gradient(180deg, #fff 0%, rgba(246, 249, 255, 0.88) 100%),
    #fff;
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
}

.feature-card {
  display: flex;
  min-height: 246px;
  flex-direction: column;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid rgba(79, 104, 169, 0.2);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)),
    #fff;
  box-shadow:
    0 22px 54px rgba(52, 73, 128, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 180ms ease, box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-card:hover {
  border-color: rgba(112, 72, 255, 0.34);
  box-shadow:
    0 30px 70px rgba(52, 73, 128, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-3px);
}

.feature-icon {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 24px;
  color: var(--purple);
  border: 1px solid rgba(112, 72, 255, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    rgba(112, 72, 255, 0.1);
  box-shadow:
    0 13px 28px rgba(86, 111, 173, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.feature-icon svg {
  display: block;
  width: 42px;
  height: 42px;
  overflow: visible;
}

.feature-icon svg * {
  vector-effect: non-scaling-stroke;
}

.icon-wallet svg rect,
.icon-wallet svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-wallet svg circle {
  fill: currentColor;
}

.icon-chart {
  color: var(--blue);
  border-color: rgba(47, 140, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
    rgba(47, 140, 255, 0.1);
}

.icon-chart svg circle {
  fill: currentColor;
}

.icon-chart .icon-cutout {
  fill: rgba(217, 236, 255, 0.96);
}

.icon-chart .icon-separator {
  fill: none;
  stroke: #fff;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-bell {
  color: var(--green);
  border-color: rgba(33, 208, 113, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0)),
    rgba(33, 208, 113, 0.12);
}

.icon-bell svg path:first-child {
  fill: currentColor;
}

.icon-bell svg path:last-child {
  fill: none;
  stroke: #16a959;
  stroke-width: 4;
  stroke-linecap: round;
}

.icon-widget {
  color: #ff9f1c;
  border-color: rgba(255, 159, 28, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0)),
    rgba(255, 171, 45, 0.15);
}

.icon-widget svg rect {
  fill: currentColor;
}

.icon-cloud {
  color: #2f9cff;
  border-color: rgba(47, 140, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0)),
    rgba(47, 140, 255, 0.1);
}

.icon-cloud svg path {
  fill: currentColor;
  filter: drop-shadow(-4px 1px 0 rgba(68, 201, 255, 0.72));
}

.icon-export {
  color: var(--violet);
  border-color: rgba(169, 87, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
    rgba(112, 72, 255, 0.1);
}

.icon-export svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-trial {
  color: var(--purple);
  border-color: rgba(112, 72, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0)),
    rgba(112, 72, 255, 0.1);
}

.icon-trial svg circle:first-child,
.icon-trial svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-trial svg circle:last-child {
  fill: currentColor;
}

.icon-category {
  color: #ff5c7a;
  border-color: rgba(255, 92, 122, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0)),
    rgba(255, 92, 122, 0.1);
}

.icon-category svg rect {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linejoin: round;
}

.icon-category svg circle {
  fill: currentColor;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
  line-height: 1.16;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-base);
  font-weight: 500;
  line-height: 1.6;
}

.insight-section {
  position: relative;
  background:
    radial-gradient(circle at 24% 30%, rgba(47, 140, 255, 0.14), transparent 31%),
    radial-gradient(circle at 78% 18%, rgba(112, 72, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #fff, rgba(245, 248, 255, 0.94)),
    var(--bg);
  overflow: hidden;
}

.insight-section::before {
  position: absolute;
  inset: 64px max(24px, calc((100vw - var(--container)) / 2)) 64px;
  border: 1px solid rgba(112, 72, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.2)),
    repeating-linear-gradient(135deg, rgba(47, 140, 255, 0.045) 0 1px, transparent 1px 18px);
  content: "";
}

/* Analytics and value proposition */
.insight-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 28px;
}

.analytics-panel,
.why-card,
.premium-card,
.privacy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.analytics-panel {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9)),
    #fff;
}

.analytics-panel::after {
  position: absolute;
  z-index: 0;
  right: -80px;
  bottom: -90px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(47, 140, 255, 0.1);
  content: "";
}

.analytics-panel > * {
  position: relative;
  z-index: 1;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 750;
  line-height: 1.2;
}

.panel-topline strong {
  padding: 8px 12px;
  color: var(--blue);
  border: 1px solid rgba(47, 140, 255, 0.14);
  border-radius: var(--radius-control);
  background: rgba(47, 140, 255, 0.08);
  font-size: var(--text-xs);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.panel-header p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.2;
}

.panel-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--heading-md);
  font-weight: 830;
  line-height: 1.05;
}

.panel-header span {
  padding: 8px 11px;
  color: #0b934d;
  border-radius: var(--radius-control);
  background: rgba(33, 208, 113, 0.12);
  font-size: var(--text-sm);
  font-weight: 800;
  line-height: 1;
}

.chart-card {
  padding: 18px 18px 12px;
  border: 1px solid rgba(47, 140, 255, 0.1);
  border-radius: var(--radius-card);
  background:
    linear-gradient(180deg, rgba(47, 140, 255, 0.1), rgba(255, 255, 255, 0.92)),
    #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.chart {
  display: flex;
  align-items: flex-end;
  height: 172px;
  gap: 12px;
  padding: 16px 4px 0;
}

.chart span {
  flex: 1;
  min-width: 18px;
  border-radius: 10px 10px 4px 4px;
  background: linear-gradient(180deg, var(--purple), var(--blue));
  box-shadow: 0 10px 22px rgba(47, 140, 255, 0.18);
}

.chart-labels {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 10px;
  color: #8890a9;
  font-size: 0.72rem;
  font-weight: 750;
  text-align: center;
}

.insight-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 4px;
}

.insight-metrics div {
  padding: 14px;
  border: 1px solid rgba(79, 104, 169, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.78);
}

.insight-metrics span,
.insight-metrics strong {
  display: block;
}

.insight-metrics span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 750;
}

.insight-metrics strong {
  color: var(--ink);
  font-size: var(--text-sm);
  line-height: 1.2;
}

.category-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  color: var(--muted-strong);
  font-size: var(--text-sm);
  font-weight: 750;
  line-height: 1.25;
}

.category-track {
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: var(--radius-control);
  background: rgba(47, 140, 255, 0.12);
}

.category-track span {
  display: block;
  width: 74%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.category-track-small span {
  width: 38%;
  background: linear-gradient(90deg, var(--purple), var(--violet));
}

.why-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 62px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 252, 255, 0.88)),
    #fff;
}

.why-card::before {
  position: absolute;
  top: -90px;
  right: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(47, 140, 255, 0.14), rgba(112, 72, 255, 0.12));
  content: "";
}

.why-card > * {
  position: relative;
  z-index: 1;
}

.why-card p {
  max-width: 650px;
}

.why-card h2 {
  max-width: 720px;
}

.why-highlight {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(112, 72, 255, 0.16);
  border-radius: var(--radius-control);
  background: linear-gradient(135deg, rgba(112, 72, 255, 0.1), rgba(47, 140, 255, 0.08));
}

.why-highlight span {
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 750;
}

.why-highlight strong {
  color: var(--purple);
  font-size: var(--text-sm);
}

.check-list,
.premium-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li,
.premium-list li {
  position: relative;
  padding-left: 34px;
  color: var(--muted-strong);
  font-size: var(--text-base);
  font-weight: 650;
  line-height: 1.5;
}

.why-card .check-list {
  gap: 12px;
  max-width: 720px;
}

.why-card .check-list li {
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 12px 16px 12px 48px;
  border: 1px solid rgba(79, 104, 169, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(52, 73, 128, 0.06);
}

.why-card .check-list li::before {
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.check-list li::before,
.premium-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  content: "✓";
  font-size: var(--text-xs);
  font-weight: 900;
}

.premium-section {
  background:
    radial-gradient(circle at 74% 30%, rgba(112, 72, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(245, 248, 255, 0.95), #fff);
}

/* Premium highlight */
.premium-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  min-height: 540px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(112, 72, 255, 0.2), transparent 32%),
    linear-gradient(118deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.84)),
    linear-gradient(135deg, rgba(112, 72, 255, 0.18), rgba(47, 140, 255, 0.14));
}

.premium-card::before {
  position: absolute;
  inset: auto 0 0 0;
  height: 48%;
  background:
    linear-gradient(92deg, rgba(112, 72, 255, 0.16), rgba(47, 140, 255, 0.12));
  clip-path: polygon(0 42%, 30% 24%, 58% 42%, 100% 10%, 100% 100%, 0 100%);
  content: "";
}

.premium-content {
  position: relative;
  z-index: 2;
  padding: clamp(34px, 5vw, 62px);
}

.premium-kicker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.premium-kicker-row .section-kicker {
  margin-bottom: 0;
}

.premium-kicker-row > span {
  padding: 8px 12px;
  color: var(--blue);
  border: 1px solid rgba(47, 140, 255, 0.14);
  border-radius: var(--radius-control);
  background: rgba(47, 140, 255, 0.08);
  font-size: var(--text-xs);
  font-weight: 800;
}

.premium-content p {
  max-width: 660px;
}

.premium-plan-grid {
  display: grid;
  max-width: 760px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.premium-plan {
  padding: 18px;
  border: 1px solid rgba(79, 104, 169, 0.13);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(52, 73, 128, 0.07);
}

.premium-plan-featured {
  border-color: rgba(112, 72, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(112, 72, 255, 0.08), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.86);
}

.premium-plan-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.premium-plan-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 850;
  line-height: 1.16;
}

.premium-plan-heading span {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: var(--blue);
  border: 1px solid rgba(47, 140, 255, 0.13);
  border-radius: var(--radius-control);
  background: rgba(47, 140, 255, 0.08);
  font-size: var(--text-xs);
  font-weight: 800;
  line-height: 1;
}

.premium-plan-featured .premium-plan-heading span {
  color: var(--purple);
  border-color: rgba(112, 72, 255, 0.16);
  background: rgba(112, 72, 255, 0.1);
}

.plan-feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plan-feature-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted-strong);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.38;
}

.plan-feature-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  content: "✓";
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
}

.premium-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 660px;
  gap: 12px;
}

.premium-list li {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 14px 16px 14px 48px;
  border: 1px solid rgba(79, 104, 169, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(52, 73, 128, 0.07);
}

.premium-list li::before {
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.premium-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.premium-actions > span {
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 700;
}

.premium-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  color: #fff;
  border-radius: var(--radius-control);
  background: linear-gradient(135deg, var(--blue), var(--purple));
  box-shadow: 0 15px 34px rgba(112, 72, 255, 0.22);
  font-size: var(--text-sm);
  font-weight: 800;
  line-height: 1.1;
}

.premium-visual {
  position: relative;
  z-index: 2;
  min-height: 540px;
}

.premium-phone {
  position: absolute;
  right: clamp(38px, 6vw, 96px);
  bottom: -54px;
  width: min(285px, 64vw);
  aspect-ratio: 0.52;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(145deg, #2c185f, #070711);
  box-shadow:
    0 38px 92px rgba(42, 28, 91, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.premium-phone::before {
  position: absolute;
  inset: 12px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 8%, rgba(124, 72, 255, 0.34), transparent 32%),
    linear-gradient(150deg, rgba(112, 72, 255, 0.36), transparent 46%),
    #110a2a;
  content: "";
}

.premium-screen {
  position: absolute;
  inset: 12px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 17%, rgba(91, 130, 255, 0.3), transparent 31%),
    radial-gradient(circle at 75% 44%, rgba(169, 87, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #2d1c70 0%, #130a31 68%, #0b0818 100%);
}

.premium-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 5;
  width: 34%;
  height: 24px;
  border-radius: 0 0 16px 16px;
  background: #050508;
  transform: translateX(-50%);
}

.premium-screen > img,
.premium-screen-title,
.premium-screen-subtitle,
.premium-screen-list,
.premium-screen-stats,
.premium-line,
.premium-pill {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.premium-screen-header {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 850;
}

.premium-screen-header span:last-child {
  width: 28px;
  height: 9px;
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: -10px 0 0 -3px rgba(255, 255, 255, 0.38);
}

.premium-screen > img {
  top: 78px;
  width: 92px;
  height: 92px;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  object-fit: cover;
  box-shadow:
    0 18px 38px rgba(0, 125, 255, 0.3),
    0 0 0 10px rgba(255, 255, 255, 0.07);
}

.premium-screen-title {
  top: 190px;
  width: 80%;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-md);
  font-weight: 850;
  text-align: center;
}

.premium-screen-subtitle {
  top: 218px;
  width: 72%;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.premium-screen-list {
  top: 276px;
  display: grid;
  width: 76%;
  gap: 9px;
}

.premium-screen-list span {
  position: relative;
  min-height: 32px;
  padding: 9px 12px 9px 34px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 760;
  line-height: 1.15;
}

.premium-screen-list span::before {
  position: absolute;
  top: 50%;
  left: 12px;
  display: grid;
  width: 15px;
  height: 15px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  content: "✓";
  font-size: 0.56rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.premium-screen-stats {
  top: 404px;
  display: grid;
  width: 76%;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.premium-screen-stats span {
  display: grid;
  min-height: 42px;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.09);
  font-size: var(--text-sm);
  font-weight: 850;
}

.premium-line {
  display: none;
}

.premium-pill {
  top: 468px;
  width: 46%;
  min-height: 36px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-control);
  background: linear-gradient(135deg, rgba(47, 140, 255, 0.38), rgba(112, 72, 255, 0.48));
  font-size: 0.76rem;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(47, 140, 255, 0.18);
}

.privacy-section {
  padding-top: 20px;
  background:
    radial-gradient(circle at 20% 12%, rgba(47, 140, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #fff, rgba(247, 250, 255, 0.95));
}

.privacy-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 50px);
  background:
    radial-gradient(circle at 92% 22%, rgba(112, 72, 255, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 251, 255, 0.9));
}

.privacy-card::before {
  position: absolute;
  inset: auto -90px -120px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(47, 140, 255, 0.1);
  content: "";
}

.privacy-card > * {
  position: relative;
  z-index: 1;
}

.privacy-card p:last-child {
  max-width: 760px;
  margin-bottom: 0;
}

.privacy-content p:last-child {
  margin-top: 16px;
}

.privacy-icon {
  position: relative;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(112, 72, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(47, 140, 255, 0.13), rgba(112, 72, 255, 0.14));
  box-shadow: 0 18px 42px rgba(75, 94, 159, 0.14);
}

.privacy-icon::before {
  width: 36px;
  height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  content: "";
}

.privacy-icon::after {
  position: absolute;
  top: 20px;
  width: 24px;
  height: 22px;
  border: 5px solid var(--purple);
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  content: "";
}

.privacy-points {
  display: grid;
  gap: 12px;
}

.privacy-points div {
  padding: 16px;
  border: 1px solid rgba(79, 104, 169, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 26px rgba(52, 73, 128, 0.06);
}

.privacy-points strong,
.privacy-points span {
  display: block;
}

.privacy-points strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 850;
}

.privacy-points span {
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 650;
  line-height: 1.45;
}

.footer {
  padding: 0 0 34px;
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.95), #fff);
}

/* Footer */
.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 26px;
  min-height: 112px;
  padding: 24px 28px;
  border: 1px solid rgba(79, 104, 169, 0.14);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 252, 255, 0.9));
  box-shadow: var(--shadow-soft);
}

.footer-main p {
  max-width: 360px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.45;
}

.footer-brand {
  font-size: var(--text-md);
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.footer-status,
.footer-links a {
  color: var(--muted-strong);
  font-size: var(--text-sm);
  font-weight: 750;
  line-height: 1.2;
}

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

.footer-status {
  padding: 9px 13px;
  color: var(--purple);
  border: 1px solid rgba(112, 72, 255, 0.14);
  border-radius: var(--radius-control);
  background: rgba(112, 72, 255, 0.08);
}

.footer-links a {
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--purple);
}

.footer-social {
  display: flex;
  justify-content: flex-end;
}

.socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(79, 104, 169, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted-strong);
  transition: color 160ms ease, transform 160ms ease;
}

.socials a:hover {
  color: var(--purple);
  transform: translateY(-2px);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (max-width: 1040px) {
  /* Tablet layout */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-actions,
  .eyebrow {
    justify-content: center;
  }

  .hero-visual {
    min-height: 560px;
  }

  .floating-card-netflix {
    left: max(16px, 18vw);
  }

  .floating-card-spotify {
    right: max(16px, 18vw);
  }

  .floating-card-youtube {
    left: max(8px, 12vw);
  }

  .floating-card-cloud {
    right: max(8px, 13vw);
  }

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

  .insight-grid,
  .premium-card {
    grid-template-columns: 1fr;
  }

  .analytics-panel,
  .why-card {
    min-height: auto;
  }

  .premium-visual {
    min-height: 430px;
  }

  .premium-phone {
    right: 50%;
    transform: translateX(50%);
  }

  .privacy-card {
    grid-template-columns: auto 1fr;
  }

  .privacy-points {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-main p {
    margin-inline: auto;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* Mobile navigation and stacked content */
  html,
  body {
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  main,
  .site-header,
  .footer,
  .section {
    width: 100vw;
    max-width: 100vw;
  }

  .container {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  .section {
    padding: 60px 0;
  }

  .nav {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-card);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    line-height: 1.15;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 66px;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.45rem;
    line-height: 1.03;
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-text {
    max-width: 100%;
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .app-store-button {
    width: min(100%, 240px);
    min-height: 56px;
    padding: 9px 18px 9px 14px;
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    min-height: auto;
    padding: 20px 0 8px;
  }

  .phone-orbit {
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 1;
  }

  .phone-shell {
    width: min(100%, 300px);
    max-width: 300px;
  }

  .floating-card {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .mini-app {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    font-size: var(--text-lg);
  }

  .mini-app img {
    width: 28px;
    height: 28px;
  }

  .floating-card-netflix {
    top: 60px;
    left: 2px;
  }

  .floating-card-spotify {
    top: 104px;
    right: 0;
  }

  .floating-card-youtube {
    top: 214px;
    left: 0;
  }

  .floating-card-cloud {
    right: 2px;
    bottom: 118px;
  }

  .section-heading {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .section-heading h2,
  .why-card h2,
  .premium-content h2,
  .privacy-card h2 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .section-heading p,
  .why-card p,
  .premium-content p,
  .privacy-card p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .feature-grid,
  .premium-list,
  .premium-plan-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .analytics-panel,
  .why-card,
  .premium-plan {
    width: 100%;
    max-width: 100%;
  }

  .feature-card {
    min-height: auto;
    padding: 24px;
  }

  .insight-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .analytics-panel,
  .why-card {
    min-height: auto;
    padding: 24px;
  }

  .panel-topline,
  .panel-header,
  .category-row {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .chart {
    height: 132px;
    gap: 8px;
  }

  .chart span {
    min-width: 0;
  }

  .insight-metrics {
    grid-template-columns: 1fr;
  }

  .why-highlight {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 16px;
  }

  .why-card .check-list li {
    min-height: auto;
    align-items: flex-start;
  }

  .premium-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .premium-content {
    padding: 24px;
  }

  .premium-plan-grid {
    max-width: 100%;
  }

  .premium-plan {
    padding: 16px;
  }

  .premium-plan-heading {
    flex-wrap: wrap;
  }

  .premium-actions {
    align-items: stretch;
  }

  .premium-cta,
  .premium-actions > span {
    width: 100%;
    text-align: center;
  }

  .premium-cta {
    min-height: 48px;
    padding: 0 18px;
  }

  .premium-visual {
    display: flex;
    min-height: auto;
    align-items: flex-end;
    justify-content: center;
    padding: 6px 0 32px;
  }

  .premium-phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(250px, 78vw);
    max-width: 250px;
    transform: none;
  }

  .premium-notch {
    height: 20px;
  }

  .premium-screen-header {
    top: 15px;
    left: 16px;
    right: 16px;
  }

  .premium-screen > img {
    top: 58px;
    width: 76px;
    height: 76px;
    border-width: 4px;
    border-radius: 18px;
  }

  .premium-screen-title {
    top: 150px;
    font-size: 0.95rem;
  }

  .premium-screen-subtitle {
    top: 176px;
    width: 78%;
    font-size: 0.66rem;
  }

  .premium-screen-list {
    top: 225px;
    width: 80%;
    gap: 7px;
  }

  .premium-screen-list span {
    min-height: 28px;
    padding: 7px 9px 7px 30px;
    font-size: 0.66rem;
  }

  .premium-screen-list span::before {
    left: 10px;
    width: 14px;
    height: 14px;
  }

  .premium-screen-stats {
    top: 336px;
    width: 80%;
    gap: 8px;
  }

  .premium-screen-stats span {
    min-height: 36px;
  }

  .premium-pill {
    top: 390px;
    width: 50%;
    min-height: 32px;
    font-size: 0.7rem;
  }

  .privacy-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .privacy-points {
    grid-template-columns: 1fr;
  }

  .privacy-icon {
    margin: 0 auto;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: var(--text-lg);
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .eyebrow {
    width: 100%;
    padding-inline: 12px;
    font-size: var(--text-sm);
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .section-heading h2,
  .why-card h2,
  .premium-content h2,
  .privacy-card h2 {
    font-size: 1.82rem;
  }

  .feature-card {
    padding: 22px;
  }

  .analytics-panel,
  .why-card,
  .premium-content {
    padding: 22px;
  }

  .premium-visual {
    min-height: auto;
    padding-bottom: 30px;
  }

  .premium-phone {
    width: min(246px, 78vw);
  }

  .footer-inner {
    padding-inline: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}
