:root {
  --ink: #161a32;
  --ink-soft: #60677d;
  --paper: #f7f8fc;
  --surface: #ffffff;
  --line: #e6e8f1;
  --night: #0d1233;
  --night-soft: #161c47;
  --primary: #6268e7;
  --primary-deep: #4449bb;
  --primary-soft: #eef0ff;
  --teal: #22a993;
  --teal-soft: #e6f8f4;
  --gold: #f0ae55;
  --violet: #8d6ce8;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 12px 40px rgba(30, 38, 80, 0.08);
  --shadow-lg: 0 32px 90px rgba(8, 13, 48, 0.22);
  --section-space: clamp(88px, 10vw, 148px);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(126, 135, 255, 0.72);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 10px;
  background: #fff;
  color: var(--night);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(13, 18, 51, 0.78);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(18, 93, 184, 0.25);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 580;
  transition: color 0.2s ease;
}

.primary-nav a:hover {
  color: #fff;
}

.primary-nav .nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  backdrop-filter: blur(12px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 148px 0 58px;
  background:
    radial-gradient(circle at 68% 35%, rgba(96, 107, 232, 0.17), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(34, 169, 147, 0.12), transparent 24%),
    linear-gradient(145deg, #0b1030 0%, #11163f 48%, #12183f 100%);
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  width: 520px;
  height: 520px;
  top: 95px;
  right: -130px;
  background: radial-gradient(circle, rgba(83, 207, 187, 0.16), transparent 68%);
}

.hero-glow-two {
  width: 540px;
  height: 540px;
  bottom: -360px;
  left: -160px;
  background: radial-gradient(circle, rgba(113, 120, 246, 0.2), transparent 68%);
}

.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 0.9fr);
  align-items: center;
  gap: 76px;
}

.hero-copy {
  padding-bottom: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--primary-deep);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(34, 169, 147, 0.12);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 760;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #9aa2ff 4%, #88e1d3 92%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 720;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  background: linear-gradient(135deg, #737af1, #555bcf);
  box-shadow: 0 16px 36px rgba(69, 76, 201, 0.34);
  color: #fff;
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(69, 76, 201, 0.46);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-proof svg {
  width: 17px;
  fill: none;
  stroke: #6dd8c6;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(135, 145, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  left: -4px;
  border-radius: 50%;
  background: #67d8c6;
  box-shadow: 0 0 18px rgba(103, 216, 198, 0.9);
}

.orbit-one {
  width: 540px;
  height: 540px;
  animation: spin 22s linear infinite;
}

.orbit-two {
  width: 430px;
  height: 430px;
  border-color: rgba(255, 255, 255, 0.08);
  animation: spin-reverse 18s linear infinite;
}

.phone {
  position: relative;
  z-index: 3;
  width: 308px;
  transform: rotate(2.5deg);
  filter: drop-shadow(0 36px 46px rgba(2, 6, 31, 0.44));
  animation: phone-float 6s ease-in-out infinite;
}

.phone-frame {
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 43px;
  background: linear-gradient(145deg, #313863, #10152f 70%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.09),
    0 0 0 1px rgba(0, 0, 0, 0.2);
}

.phone-frame::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 16px;
  left: 50%;
  width: 78px;
  height: 22px;
  border-radius: 20px;
  background: #0b0f25;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 630px;
  overflow: hidden;
  padding: 13px 15px 14px;
  border-radius: 35px;
  background:
    radial-gradient(circle at 88% 3%, rgba(117, 128, 255, 0.13), transparent 25%),
    #f7f8fc;
  color: var(--ink);
}

.phone-status {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  color: #1c2037;
  font-size: 9px;
  font-weight: 760;
}

.phone-status > div {
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-signal {
  width: 11px;
  height: 7px;
  background: linear-gradient(to top, #252a42 30%, transparent 30%);
  clip-path: polygon(0 100%, 0 65%, 22% 65%, 22% 45%, 46% 45%, 46% 22%, 70% 22%, 70% 0, 100% 0, 100% 100%);
}

.status-wifi {
  width: 10px;
  height: 7px;
  border-top: 2px solid #252a42;
  border-radius: 50%;
}

.status-battery {
  width: 13px;
  height: 7px;
  border: 1px solid #252a42;
  border-radius: 2px;
  box-shadow: inset 0 0 0 2px #f7f8fc;
  background: #252a42;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px 14px;
}

.app-header > div {
  display: flex;
  flex-direction: column;
}

.app-kicker {
  color: #8a90a4;
  font-size: 9px;
}

.app-header strong {
  color: #242941;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.avatar {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #ebeefe;
  color: #6268e7;
}

.avatar svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.score-card {
  padding: 14px;
  border-radius: 19px;
  background: linear-gradient(145deg, #1d235a, #343c8e);
  color: #fff;
  box-shadow: 0 15px 28px rgba(48, 56, 139, 0.22);
}

.score-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
}

.trend {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  border-radius: 10px;
  background: rgba(91, 222, 191, 0.12);
  color: #76e1ca;
}

.trend svg {
  width: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.score-main {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 8px;
}

.score-ring {
  position: relative;
  width: 77px;
  height: 77px;
  flex: 0 0 auto;
}

.score-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.score-ring circle {
  fill: none;
  stroke-width: 8;
}

.ring-track {
  stroke: rgba(255, 255, 255, 0.1);
}

.ring-value {
  stroke: #77dfce;
  stroke-linecap: round;
  stroke-dasharray: 302;
  stroke-dashoffset: 42;
}

.score-ring > span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  transform: translateY(31px);
}

.score-ring strong {
  color: #fff;
  font-size: 20px;
}

.score-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.score-copy strong {
  font-size: 13px;
}

.score-copy span {
  max-width: 118px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  line-height: 1.45;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 10px;
}

.metric {
  display: grid;
  grid-template-columns: 29px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  padding: 10px;
  border: 1px solid #eceef5;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(27, 35, 76, 0.05);
}

.metric-icon {
  grid-row: 1 / 3;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eef0ff;
  color: #6268e7;
}

.metric-icon-teal {
  background: #e7f8f5;
  color: #22a993;
}

.metric-icon svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.metric strong {
  font-size: 11px;
}

.metric small {
  color: #9499aa;
  font-size: 7px;
}

.chart-card {
  margin-top: 10px;
  padding: 12px 12px 9px;
  border: 1px solid #eceef5;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 9px 22px rgba(27, 35, 76, 0.05);
}

.chart-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-title > div {
  display: flex;
  flex-direction: column;
}

.chart-title strong {
  font-size: 10px;
}

.chart-title span {
  color: #959aab;
  font-size: 7px;
}

.chart-pill {
  padding: 3px 7px;
  border-radius: 10px;
  background: #e8f8f4;
  color: #1a9a85 !important;
  font-weight: 700;
}

.sleep-chart {
  width: 100%;
  height: 92px;
  margin-top: 5px;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: #eef0f5;
  stroke-width: 1;
}

.chart-area {
  fill: url("#chartFill");
}

.chart-line {
  fill: none;
  stroke: #6670ea;
  stroke-width: 3;
  stroke-linecap: round;
}

.chart-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  color: #9ca1b1;
  font-size: 7px;
  text-align: center;
}

.phone-nav {
  position: absolute;
  inset: auto 15px 12px;
  height: 47px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  border: 1px solid #eceef5;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 9px 24px rgba(24, 31, 70, 0.09);
}

.phone-nav span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: #a1a5b4;
  font-size: 6px;
}

.phone-nav span.active {
  color: #6268e7;
}

.phone-nav svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-chip {
  position: absolute;
  z-index: 6;
  min-width: 174px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(25, 31, 76, 0.72);
  box-shadow: 0 18px 45px rgba(3, 7, 33, 0.28);
  backdrop-filter: blur(18px);
}

.floating-chip-top {
  top: 135px;
  right: -12px;
  animation: chip-float 5s ease-in-out infinite;
}

.floating-chip-bottom {
  bottom: 125px;
  left: -15px;
  animation: chip-float 5s 1.1s ease-in-out infinite;
}

.floating-chip > span:last-child {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}

.floating-chip strong {
  color: #fff;
  font-size: 13px;
}

.chip-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.chip-icon svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linejoin: round;
}

.chip-icon-moon {
  background: rgba(119, 128, 245, 0.15);
  color: #aeb4ff;
}

.chip-icon-spark {
  background: rgba(61, 207, 180, 0.14);
  color: #72dfcc;
}

.trust-strip {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  margin: 12px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.trust-label {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-items span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

.trust-items svg {
  width: 21px;
  flex: 0 0 auto;
  fill: none;
  stroke: #8290f7;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.section {
  padding: var(--section-space) 0;
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 58px;
}

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

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

.section-heading h2,
.insights-copy h2,
.privacy-copy h2,
.faq-heading h2,
.download-shell h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 740;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading p,
.insights-copy > p,
.privacy-copy > p,
.faq-heading > p {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.benefits-section {
  background:
    radial-gradient(circle at 6% 26%, rgba(98, 104, 231, 0.06), transparent 24%),
    var(--paper);
}

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

.benefit-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.benefit-card:hover {
  border-color: #d8dcf1;
  box-shadow: 0 22px 55px rgba(30, 38, 80, 0.11);
  transform: translateY(-4px);
}

.benefit-card-wide {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 34px;
}

.benefit-card h3 {
  margin: 18px 0 9px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.benefit-card p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
}

.feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon-indigo {
  background: var(--primary-soft);
  color: var(--primary);
}

.feature-icon-teal {
  background: var(--teal-soft);
  color: var(--teal);
}

.feature-icon-gold {
  background: #fff5e6;
  color: #d9943e;
}

.feature-icon-violet {
  background: #f2ecff;
  color: var(--violet);
}

.mini-journal {
  padding: 18px;
  border: 1px solid #e4e7f0;
  border-radius: 20px;
  background: #fbfcff;
  box-shadow: 0 18px 40px rgba(27, 35, 76, 0.08);
  transform: rotate(1.5deg);
}

.journal-top,
.journal-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.journal-top {
  margin-bottom: 13px;
  color: #3c425b;
  font-size: 12px;
  font-weight: 700;
}

.journal-top span:last-child {
  padding: 3px 8px;
  border-radius: 9px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 9px;
}

.journal-line {
  padding: 10px 0;
  border-bottom: 1px solid #eef0f5;
  color: #848a9d;
  font-size: 11px;
}

.journal-line strong {
  color: #34394f;
}

.quality-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin-top: 14px;
}

.quality-scale span {
  height: 6px;
  border-radius: 6px;
  background: #e5e7ef;
}

.quality-scale span:nth-child(-n + 4) {
  background: linear-gradient(90deg, #6871e9, #7f87ef);
}

.journal-button {
  margin-top: 15px;
  padding: 9px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.spark-bars {
  height: 108px;
  display: flex;
  align-items: end;
  gap: 9px;
  margin-top: 28px;
  padding: 14px 16px 0;
  border-radius: 15px;
  background: linear-gradient(to top, rgba(34, 169, 147, 0.06), transparent);
}

.spark-bars span {
  width: 100%;
  height: var(--h);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(to top, #22a993, #63d4c1);
  animation: bar-rise 1s ease both;
}

.guide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.guide-tags span {
  padding: 7px 11px;
  border: 1px solid #ece5d8;
  border-radius: 999px;
  background: #fffaf2;
  color: #a87735;
  font-size: 10px;
  font-weight: 650;
}

.sound-wave {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 22px;
}

.sound-wave i {
  width: 6px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(to top, #8170dc, #b49df3);
  animation: wave 1.5s ease-in-out infinite alternate;
}

.sound-wave i:nth-child(2),
.sound-wave i:nth-child(7) {
  height: 42px;
  animation-delay: 0.15s;
}

.sound-wave i:nth-child(3),
.sound-wave i:nth-child(6) {
  height: 62px;
  animation-delay: 0.3s;
}

.sound-wave i:nth-child(4),
.sound-wave i:nth-child(5) {
  height: 78px;
  animation-delay: 0.45s;
}

.privacy-preview {
  background:
    radial-gradient(circle at 82% 50%, rgba(34, 169, 147, 0.08), transparent 31%),
    #fff;
}

.privacy-orbit {
  position: relative;
  width: 210px;
  height: 210px;
  margin: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 169, 147, 0.16);
  border-radius: 50%;
}

.privacy-orbit::before,
.privacy-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(34, 169, 147, 0.1);
  border-radius: 50%;
}

.privacy-orbit::before {
  width: 150px;
  height: 150px;
}

.privacy-orbit::after {
  width: 88px;
  height: 88px;
}

.privacy-core {
  z-index: 2;
  width: 63px;
  height: 63px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #3dbba5, #168d7d);
  color: #fff;
  box-shadow: 0 16px 35px rgba(34, 169, 147, 0.27);
}

.privacy-core svg {
  width: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.privacy-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #22a993;
  box-shadow: 0 0 0 5px rgba(34, 169, 147, 0.1);
}

.node-one {
  top: 18px;
  left: 45px;
}

.node-two {
  right: -4px;
  top: 97px;
}

.node-three {
  bottom: 20px;
  left: 49px;
}

.how-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 44px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dfe2ee 10%, #dfe2ee 90%, transparent);
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -10px;
  left: calc(50% + 28px);
  color: #b5b9c8;
  font-size: 10px;
  font-weight: 700;
}

.step-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 23px;
  display: grid;
  place-items: center;
  border: 1px solid #e6e8f1;
  border-radius: 28px;
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.step-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.step p {
  max-width: 280px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 14px;
}

.insights-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(111, 119, 245, 0.17), transparent 30%),
    linear-gradient(145deg, #0d1233, #171d4b);
  color: #fff;
}

.insights-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 78px;
}

.insights-copy h2 {
  color: #fff;
}

.insights-copy > p {
  color: rgba(255, 255, 255, 0.6);
}

.insight-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.insight-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.insight-list li > span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(82, 203, 181, 0.12);
  color: #69d6c3;
}

.insight-list svg {
  width: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.analytics-panel {
  position: relative;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background: rgba(27, 34, 83, 0.72);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.analytics-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(137, 147, 255, 0.22), transparent 30%, rgba(73, 216, 190, 0.11));
}

.analytics-top,
.analytics-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.analytics-top > div:first-child,
.analytics-score > div {
  display: flex;
  flex-direction: column;
}

.analytics-top span,
.analytics-score span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
}

.analytics-top strong {
  font-size: 18px;
}

.range-tabs {
  display: flex;
  gap: 3px;
  padding: 3px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.range-tabs span {
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 9px;
}

.range-tabs span.active {
  background: #6b72e8;
  color: #fff;
}

.analytics-score {
  margin-top: 30px;
}

.analytics-score strong {
  font-size: 34px;
  letter-spacing: -0.04em;
}

.analytics-score .positive {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 9px;
  border-radius: 10px;
  background: rgba(65, 205, 178, 0.1);
  color: #69d6c3;
}

.positive svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.analytics-chart {
  position: relative;
  margin-top: 22px;
  padding-left: 38px;
}

.analytics-chart > svg {
  width: 100%;
  height: 230px;
  overflow: visible;
}

.axis {
  position: absolute;
  inset: 0 auto 22px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
}

.big-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.07);
  stroke-width: 1;
}

.big-area {
  fill: url("#bigChartFill");
}

.big-line {
  fill: none;
  stroke: #7d86ff;
  stroke-width: 4;
  stroke-linecap: round;
}

.chart-points circle {
  fill: #7d86ff;
  stroke: #252d69;
  stroke-width: 4;
}

.analytics-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  color: rgba(255, 255, 255, 0.33);
  font-size: 8px;
  text-align: center;
}

.analytics-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 22px;
}

.analytics-metrics > div {
  display: grid;
  grid-template-columns: 8px 1fr;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.analytics-metrics i {
  width: 6px;
  height: 6px;
  margin-top: 5px;
  border-radius: 50%;
}

.analytics-metrics i.indigo {
  background: #828aff;
}

.analytics-metrics i.teal {
  background: #53cfb8;
}

.analytics-metrics i.gold {
  background: #f0ae55;
}

.analytics-metrics span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
}

.analytics-metrics strong {
  grid-column: 2;
  margin-top: 2px;
  font-size: 11px;
}

.privacy-section {
  background: #fff;
}

.privacy-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

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

.shield-rings {
  position: relative;
  width: 340px;
  height: 340px;
  display: grid;
  place-items: center;
}

.shield-rings > span {
  position: absolute;
  border: 1px solid rgba(98, 104, 231, 0.09);
  border-radius: 50%;
}

.shield-rings > span:nth-child(1) {
  inset: 0;
}

.shield-rings > span:nth-child(2) {
  inset: 42px;
}

.shield-rings > span:nth-child(3) {
  inset: 86px;
  background: rgba(98, 104, 231, 0.025);
}

.shield-core {
  z-index: 2;
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 36px;
  background: linear-gradient(145deg, #6970e9, #454bb8);
  color: #fff;
  box-shadow: 0 25px 55px rgba(70, 77, 187, 0.3);
}

.shield-core svg {
  width: 56px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: #4c5269;
  font-size: 11px;
  font-weight: 650;
}

.privacy-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(34, 169, 147, 0.12);
}

.privacy-badge-one {
  top: 75px;
  right: 3px;
}

.privacy-badge-two {
  bottom: 70px;
  left: 0;
}

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

.privacy-points > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 13px;
  padding: 13px;
  border-radius: 15px;
  transition: background 0.2s ease;
}

.privacy-points > div:hover {
  background: #f8f9fd;
}

.privacy-points svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 12px;
  background: var(--primary-soft);
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-points span {
  display: flex;
  flex-direction: column;
  color: var(--ink-soft);
  font-size: 13px;
}

.privacy-points strong {
  color: var(--ink);
  font-size: 14px;
}

.audience-section {
  padding-top: 0;
  background: #fff;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.audience-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fbfcff;
}

.audience-card > span {
  color: var(--primary);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.audience-card h3 {
  margin: 22px 0 8px;
  font-size: 19px;
}

.audience-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

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

.faq-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading a {
  color: var(--primary-deep);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 42px 23px 0;
  cursor: pointer;
  color: #282d44;
  font-size: 17px;
  font-weight: 680;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--primary);
  transition: transform 0.2s ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 670px;
  margin: -4px 0 22px;
  padding-right: 30px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: 118px 20px;
  background:
    radial-gradient(circle at 20% 0%, rgba(98, 104, 231, 0.24), transparent 35%),
    radial-gradient(circle at 90% 100%, rgba(34, 169, 147, 0.18), transparent 34%),
    #0d1233;
  color: #fff;
}

.download-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
}

.download-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  filter: blur(80px);
}

.download-orb-one {
  top: -220px;
  left: 8%;
  background: rgba(117, 128, 255, 0.25);
}

.download-orb-two {
  right: 8%;
  bottom: -250px;
  background: rgba(50, 194, 170, 0.23);
}

.download-shell {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.download-shell > img {
  margin: 0 auto 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 23px;
  box-shadow: 0 24px 50px rgba(3, 7, 30, 0.35);
}

.download-shell h2 {
  color: #fff;
}

.download-shell > p {
  max-width: 590px;
  margin: 19px auto 0;
  color: rgba(255, 255, 255, 0.59);
  font-size: 17px;
}

.store-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.store-button {
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  text-align: left;
  backdrop-filter: blur(12px);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.store-button:hover:not(.is-disabled) {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.store-button.is-disabled {
  cursor: default;
  opacity: 0.7;
}

.store-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.09);
}

.store-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-button > span:last-child {
  display: flex;
  flex-direction: column;
}

.store-button small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
}

.store-button strong {
  font-size: 16px;
}

.download-note {
  display: block;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 11px;
}

.site-footer {
  padding: 64px 20px 25px;
  background: #090d27;
  color: #fff;
}

.footer-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  width: min(1120px, 100%);
  margin: 55px auto 0;
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spin-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: rotate(2.5deg) translateY(0);
  }
  50% {
    transform: rotate(2.5deg) translateY(-10px);
  }
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes bar-rise {
  from {
    height: 0;
  }
}

@keyframes wave {
  to {
    transform: scaleY(0.55);
    opacity: 0.65;
  }
}

@media (max-width: 1050px) {
  .hero-shell {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(48px, 6.3vw, 68px);
  }

  .floating-chip-top {
    right: 0;
  }

  .floating-chip-bottom {
    left: 0;
  }

  .insights-shell {
    gap: 42px;
  }

  .privacy-shell {
    gap: 44px;
  }
}

@media (max-width: 880px) {
  .site-header {
    height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    inset: 68px 14px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(13, 18, 51, 0.97);
    box-shadow: 0 25px 70px rgba(3, 6, 26, 0.45);
    backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
  }

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

  .primary-nav a {
    padding: 12px;
  }

  .primary-nav .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .hero-copy {
    max-width: 700px;
    padding-bottom: 25px;
    text-align: center;
  }

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

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

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

  .trust-strip {
    margin-top: 20px;
  }

  .trust-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-card-wide {
    grid-template-columns: 1fr;
  }

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

  .insights-shell {
    grid-template-columns: 1fr;
  }

  .insights-copy {
    max-width: 680px;
  }

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

  .privacy-visual {
    order: 2;
    min-height: 400px;
  }

  .faq-shell {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-heading {
    position: static;
    max-width: 650px;
  }
}

@media (max-width: 680px) {
  .nav-shell,
  .hero-shell,
  .trust-strip,
  .section-shell,
  .insights-shell {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    font-size: 15px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    gap: 10px 18px;
  }

  .hero-visual {
    min-height: 590px;
    margin-top: 12px;
    transform: scale(0.9);
  }

  .phone {
    width: 286px;
  }

  .phone-screen {
    height: 592px;
  }

  .floating-chip {
    min-width: 156px;
    padding: 9px 10px;
  }

  .floating-chip-top {
    top: 100px;
    right: -8px;
  }

  .floating-chip-bottom {
    bottom: 90px;
    left: -8px;
  }

  .orbit-one {
    width: 470px;
    height: 470px;
  }

  .orbit-two {
    width: 380px;
    height: 380px;
  }

  .trust-strip {
    margin-top: -20px;
  }

  .trust-items {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .section-heading h2,
  .insights-copy h2,
  .privacy-copy h2,
  .faq-heading h2,
  .download-shell h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .section-heading p,
  .insights-copy > p,
  .privacy-copy > p,
  .faq-heading > p {
    font-size: 15px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
    padding: 25px;
  }

  .benefit-card-wide,
  .privacy-preview {
    grid-template-columns: 1fr;
  }

  .privacy-orbit {
    margin-top: 16px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .steps::before {
    display: none;
  }

  .step p {
    max-width: 340px;
  }

  .analytics-panel {
    padding: 18px 14px;
    border-radius: 22px;
  }

  .analytics-score strong {
    font-size: 29px;
  }

  .analytics-chart {
    padding-left: 30px;
  }

  .analytics-chart > svg {
    height: 190px;
  }

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

  .privacy-visual {
    min-height: 350px;
  }

  .shield-rings {
    width: 290px;
    height: 290px;
  }

  .privacy-badge-one {
    right: -5px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .download-section {
    padding: 90px 16px;
  }

  .store-buttons {
    flex-direction: column;
  }

  .store-button {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .hero-visual {
    width: 111%;
    margin-left: -5.5%;
    transform: scale(0.82);
  }

  .floating-chip-top {
    right: -4px;
  }

  .floating-chip-bottom {
    left: -2px;
  }

  .hero-proof {
    flex-direction: column;
    align-items: center;
  }

  .privacy-badge-one {
    top: 38px;
  }

  .privacy-badge-two {
    bottom: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
