:root {
  color-scheme: dark;
  --bg: #080711;
  --bg-soft: #0e0c19;
  --surface: rgba(20, 17, 34, 0.78);
  --surface-strong: #151124;
  --line: rgba(190, 160, 255, 0.16);
  --line-strong: rgba(178, 127, 255, 0.36);
  --text: #f8f7fc;
  --text-soft: #c4bfd0;
  --text-muted: #8f899d;
  --purple: #9d67ff;
  --purple-bright: #b987ff;
  --purple-deep: #6f3de8;
  --mint: #67e7c0;
  --danger: #ff6577;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 16% 4%, rgba(119, 57, 240, 0.14), transparent 26rem),
    radial-gradient(circle at 90% 32%, rgba(140, 66, 255, 0.08), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

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

button,
input {
  font: inherit;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 78px;
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
  border-radius: 18px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(9, 8, 18, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: linear-gradient(140deg, #7350f2, #b453ff);
  box-shadow: 0 10px 28px rgba(126, 69, 241, 0.36);
  color: white;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-mark::after {
  position: absolute;
  right: -9px;
  bottom: -13px;
  width: 29px;
  height: 29px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  content: "";
}

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

.desktop-nav a {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 150ms ease;
}

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

.header-actions,
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: inline-grid;
  min-width: 44px;
  height: 44px;
  padding: 0 10px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    border-color 150ms ease,
    color 150ms ease,
    background 150ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  border-color: var(--line-strong);
  background: rgba(157, 103, 255, 0.09);
  color: white;
}

.button {
  display: inline-flex;
  min-height: 46px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease;
}

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

.button:focus-visible,
.language-toggle:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(185, 135, 255, 0.58);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(135deg, #8653f5, #ae60ff);
  box-shadow: 0 14px 34px rgba(127, 67, 234, 0.28);
  color: white;
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(127, 67, 234, 0.42);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button-ghost:hover {
  border-color: var(--line-strong);
  background: rgba(157, 103, 255, 0.08);
}

.button-small {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.button-large {
  min-height: 54px;
  padding: 0 24px;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  display: grid;
  width: min(calc(100% - 40px), var(--max-width));
  min-height: 650px;
  margin: 24px auto 0;
  padding: 70px 0 56px;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 54px;
}

.hero-glow {
  position: absolute;
  top: 3%;
  left: 42%;
  z-index: -1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(127, 56, 239, 0.14);
  filter: blur(90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.17em;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(103, 231, 192, 0.86);
}

.hero h1 {
  max-width: 710px;
  margin: 22px 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6.1vw, 5.85rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
}

.gradient-text {
  padding-bottom: 0.09em;
  background: linear-gradient(105deg, #f5efff 0%, #bd91ff 40%, #8e5af4 100%);
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 630px;
  margin: 0 0 30px;
  color: var(--text-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.23rem);
  line-height: 1.65;
}

.trust-row {
  display: flex;
  margin: 28px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--text-muted);
  font-size: 0.84rem;
  list-style: none;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row li span:first-child {
  color: var(--mint);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.visual-frame {
  position: relative;
  height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px 36px 110px 36px;
  background: #0b0915;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.visual-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(8, 7, 17, 0.58), transparent 43%),
    linear-gradient(to right, rgba(8, 7, 17, 0.45), transparent 34%);
  content: "";
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
  filter: saturate(0.94) contrast(1.03);
}

.now-playing-card {
  position: absolute;
  right: 22px;
  bottom: 26px;
  left: 22px;
  z-index: 4;
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(14, 11, 27, 0.76);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(17px);
}

.play-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(145deg, #6f4fea, #a559ff);
  box-shadow: 0 12px 26px rgba(115, 67, 234, 0.3);
  color: white;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.play-icon:hover {
  box-shadow: 0 15px 32px rgba(137, 73, 244, 0.46);
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.play-icon:active {
  transform: translateY(0) scale(0.96);
}

.play-icon:focus-visible {
  outline: 3px solid rgba(196, 155, 255, 0.72);
  outline-offset: 3px;
}

.track-copy {
  display: grid;
  min-width: 0;
  flex: 1;
  gap: 2px;
}

.track-copy small {
  color: var(--purple-bright);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.track-copy strong {
  overflow: hidden;
  font-size: 0.96rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.waveform {
  display: flex;
  height: 18px;
  align-items: end;
  gap: 3px;
}

.waveform i {
  width: 4px;
  height: 9px;
  border-radius: 2px;
  background: var(--purple);
  animation: wave 1.2s ease-in-out infinite alternate;
  animation-play-state: paused;
}

.waveform i:nth-child(2n) { height: 15px; animation-delay: -0.4s; }
.waveform i:nth-child(3n) { height: 6px; animation-delay: -0.8s; }

.now-playing-card.is-playing .waveform i {
  animation-play-state: running;
}

.player-visual-row {
  display: flex;
  min-width: 0;
  margin-top: 4px;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.demo-time {
  color: rgba(229, 219, 245, 0.68);
  font-size: 0.61rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.demo-progress {
  display: block;
  height: 3px;
  margin-top: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.demo-progress > span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8056f7, #c46cff);
  box-shadow: 0 0 12px rgba(173, 91, 255, 0.65);
}

@keyframes wave {
  to { height: 4px; opacity: 0.55; }
}

.proof-strip {
  display: grid;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.022);
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip article {
  display: flex;
  min-height: 110px;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  text-align: center;
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: white;
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.proof-strip span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

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

.section-heading {
  display: grid;
  margin-bottom: 44px;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
}

.kicker {
  margin: 0 0 10px;
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.section-heading h2,
.safety-copy h2,
.plus-copy h2,
.final-cta h2,
.legal-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-heading > p {
  margin: 0 0 6px;
  color: var(--text-soft);
  font-size: 1.02rem;
}

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

.feature-card {
  min-height: 270px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 70%),
    var(--surface);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.feature-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-4px);
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-card-accent {
  background:
    radial-gradient(circle at 90% 10%, rgba(159, 92, 255, 0.26), transparent 45%),
    linear-gradient(145deg, rgba(114, 58, 218, 0.18), rgba(15, 12, 27, 0.82));
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(157, 103, 255, 0.09);
  color: var(--purple-bright);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.27rem;
  letter-spacing: -0.025em;
}

.feature-card p {
  max-width: 42ch;
  margin: 0;
  color: var(--text-soft);
}

.search-mock {
  display: flex;
  width: min(100%, 470px);
  margin-top: 26px;
  padding: 12px 14px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(4, 3, 10, 0.46);
  color: var(--text-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.83rem;
}

.search-mock span {
  color: var(--purple-bright);
}

.search-mock strong {
  overflow: hidden;
  color: var(--text-soft);
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-mock kbd {
  margin-left: auto;
  padding: 2px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.safety-panel {
  position: relative;
  display: grid;
  min-height: 470px;
  padding: 58px;
  overflow: hidden;
  border: 1px solid rgba(103, 231, 192, 0.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 50%, rgba(43, 185, 148, 0.12), transparent 32%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.03), transparent),
    var(--surface);
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 80px;
}

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

.shield {
  position: relative;
  z-index: 2;
  display: grid;
  width: 112px;
  height: 126px;
  place-items: center;
  border: 1px solid rgba(103, 231, 192, 0.5);
  border-radius: 54px 54px 64px 64px;
  background: linear-gradient(145deg, rgba(103, 231, 192, 0.25), rgba(16, 73, 65, 0.2));
  box-shadow: 0 0 70px rgba(103, 231, 192, 0.16);
  color: var(--mint);
  font-size: 2.6rem;
  font-weight: 800;
  clip-path: polygon(50% 0, 95% 16%, 90% 72%, 50% 100%, 10% 72%, 5% 16%);
}

.safety-ring {
  position: absolute;
  border: 1px solid rgba(103, 231, 192, 0.14);
  border-radius: 50%;
}

.safety-ring-one {
  width: 230px;
  height: 230px;
}

.safety-ring-two {
  width: 320px;
  height: 320px;
}

.safety-copy > p:not(.kicker),
.plus-copy > p:not(.kicker),
.final-cta > div > p:not(.kicker) {
  color: var(--text-soft);
  font-size: 1.03rem;
}

.check-list,
.plus-benefits {
  display: grid;
  margin: 26px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-soft);
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--mint);
  content: "✓";
  font-weight: 800;
}

.plus-card {
  display: grid;
  padding: 62px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 0%, rgba(145, 72, 255, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(29, 21, 53, 0.98), rgba(12, 10, 22, 0.98));
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1fr) 355px;
  gap: 70px;
}

.founder-badge {
  margin-bottom: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(185, 135, 255, 0.33);
  border-radius: 999px;
  background: rgba(157, 103, 255, 0.08);
}

.plus-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text-soft);
}

.plus-benefits li > span:first-child {
  color: var(--purple-bright);
  font-weight: 800;
}

.price-card {
  align-self: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(6, 5, 13, 0.52);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.price-label {
  color: var(--purple-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.price {
  display: flex;
  margin: 12px 0 0;
  align-items: baseline;
}

.price small {
  margin-right: 5px;
  color: var(--text-soft);
  font-size: 1.2rem;
}

.price strong {
  font-family: var(--font-display);
  font-size: 3.8rem;
  letter-spacing: -0.06em;
  line-height: 1;
}

.price > span {
  margin-left: 7px;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.price-card > p {
  margin: 7px 0 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trial-note {
  display: flex;
  margin-top: 18px;
  padding: 13px;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(103, 231, 192, 0.16);
  border-radius: 12px;
  background: rgba(103, 231, 192, 0.05);
  color: #b8dcd3;
  font-size: 0.78rem;
  line-height: 1.45;
}

.trial-note > span:first-child {
  color: var(--mint);
  font-size: 1rem;
}

.price-footnote {
  display: block;
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 0.68rem;
  line-height: 1.4;
  text-align: center;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 50px 25px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--purple-bright);
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.faq-list details p {
  max-width: 780px;
  margin: -7px 0 26px;
  color: var(--text-soft);
}

.final-cta {
  position: relative;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 118px auto 0;
  padding: 80px 30px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 120%, rgba(161, 82, 255, 0.34), transparent 45%),
    linear-gradient(145deg, #171126, #0b0915);
  text-align: center;
}

.final-cta::before,
.final-cta::after {
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(185, 135, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.final-cta::before {
  top: -160px;
  left: -100px;
}

.final-cta::after {
  right: -100px;
  bottom: -180px;
}

.final-cta > div {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto;
}

.brand-mark-large {
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 17px;
  font-size: 1.8rem;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta .button {
  margin-top: 20px;
}

.site-footer {
  display: grid;
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 72px 0 38px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid transparent;
}

.footer-brand p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.site-footer nav a {
  color: var(--text-soft);
  font-size: 0.86rem;
}

.site-footer nav a:hover {
  color: white;
}

.copyright {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.76rem;
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  position: static;
}

.legal-main {
  width: min(calc(100% - 40px), 920px);
  margin: 0 auto;
}

.legal-hero {
  padding: 90px 0 42px;
}

.legal-hero h1 {
  margin-bottom: 15px;
}

.legal-hero p {
  max-width: 720px;
  color: var(--text-soft);
}

.legal-updated {
  display: inline-block;
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.legal-content {
  padding-bottom: 100px;
}

.legal-content section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.28rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-soft);
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content a {
  color: var(--purple-bright);
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: 0;
    padding-top: 48px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 650px;
  }

  .visual-frame {
    height: 560px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .feature-card-wide {
    grid-column: span 2;
  }

  .safety-panel {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
  }

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

  .price-card {
    width: min(100%, 480px);
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(calc(100% - 24px), var(--max-width));
    min-height: 66px;
    margin-top: 8px;
    padding: 9px 10px 9px 12px;
  }

  .brand {
    gap: 9px;
    font-size: 0.76rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 1.15rem;
  }

  .header-actions .button {
    display: none;
  }

  .hero,
  .proof-strip,
  .section,
  .final-cta,
  .site-footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero {
    margin-top: 8px;
    padding-top: 48px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-frame {
    height: 480px;
    border-radius: 24px 24px 74px 24px;
  }

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

  .proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .proof-strip article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-top: 86px;
  }

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

  .feature-card,
  .feature-card-wide {
    min-height: 240px;
    grid-column: span 1;
  }

  .safety-panel,
  .plus-card {
    padding: 34px 24px;
    grid-template-columns: 1fr;
  }

  .safety-visual {
    min-height: 230px;
  }

  .safety-ring-two {
    width: 270px;
    height: 270px;
  }

  .plus-card {
    gap: 44px;
  }

  .price-card {
    padding: 25px;
  }

  .price strong {
    font-size: 3.25rem;
  }

  .final-cta {
    padding: 64px 24px;
  }

  .site-footer {
    padding-top: 54px;
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    gap: 14px 20px;
  }
}

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