:root {
  --ink: #f8f5f1;
  --muted: #aaa4a0;
  --surface: #17171a;
  --line: rgba(255, 255, 255, 0.1);
  --coral: #ff686d;
  --mint: #72e0bd;
  --background: #08080a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 104, 109, 0.13), transparent 28rem),
    radial-gradient(circle at 9% 60%, rgba(114, 224, 189, 0.07), transparent 28rem),
    var(--background);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
.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; left: 16px; top: 12px; z-index: 100; transform: translateY(-160%); background: var(--ink); color: var(--background); padding: 10px 14px; border-radius: 10px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 720; letter-spacing: -0.02em; }
.brand img { border-radius: 10px; box-shadow: 0 8px 24px rgba(255, 104, 109, 0.18); }
.site-header nav { display: flex; gap: 26px; margin-left: auto; color: var(--muted); font-size: 14px; }
.site-header nav a:hover { color: var(--ink); }
.site-header.no-nav .language-picker { margin-left: auto; }
.language-picker select {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  cursor: pointer;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 74px;
  padding: 74px 0 82px;
  overflow: hidden;
}

.eyebrow { color: var(--coral); text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; font-weight: 750; }
.hero h1 { margin: 19px 0 22px; font-size: clamp(50px, 6vw, 84px); line-height: 1.05; letter-spacing: -0.055em; }
.hero h1 em { color: var(--muted); font-style: normal; }
.hero-lead { max-width: 620px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 36px; }
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff7479, var(--coral));
  color: #240607;
  font-weight: 760;
  padding: 15px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 34px rgba(255, 104, 109, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}
.primary-action:visited { color: #240607; }
.primary-action:hover { color: #240607; transform: translateY(-2px); box-shadow: 0 16px 42px rgba(255, 104, 109, 0.32); filter: saturate(1.05); }
.primary-action:active { transform: translateY(0); box-shadow: 0 8px 24px rgba(255, 104, 109, 0.22); }
.primary-action:focus-visible { outline: 3px solid rgba(114, 224, 189, 0.72); outline-offset: 4px; }
.hero-actions > a:not(.primary-action) { color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.24); padding-bottom: 3px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0 0; padding: 0; list-style: none; }
.trust-row li { border: 1px solid var(--line); border-radius: 999px; color: var(--muted); padding: 7px 11px; font-size: 12px; }

.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero-visual img {
  position: relative;
  z-index: 2;
  width: min(385px, 88%);
  height: auto;
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  transform: rotate(3deg);
}
.halo { position: absolute; border-radius: 50%; filter: blur(3px); }
.halo-one { width: 430px; height: 430px; background: rgba(255,104,109,0.16); }
.halo-two { width: 290px; height: 290px; background: rgba(114,224,189,0.11); transform: translate(90px, 150px); }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading h2, .story-copy h2, .privacy-copy h2, .closing-panel h2, .legal-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 16px 0 18px;
}
.section-heading > p:last-child, .story-copy > p, .privacy-copy > p, .closing-panel > p, .legal-hero > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.intro { border-top: 1px solid var(--line); }
.feature-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.025);
}
.feature-strip article { padding: 30px; min-height: 220px; }
.feature-strip article + article { border-left: 1px solid var(--line); }
.feature-strip span { color: var(--mint); font-size: 12px; font-weight: 750; letter-spacing: 0.12em; }
.feature-strip h3 { font-size: 21px; margin: 36px 0 10px; letter-spacing: -0.02em; }
.feature-strip p { color: var(--muted); line-height: 1.65; margin: 0; font-size: 14px; }

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(350px, 1.1fr);
  gap: 90px;
  align-items: center;
}
.product-story.reverse { grid-template-columns: minmax(350px, 1.1fr) minmax(0, 0.9fr); }
.product-story.reverse .story-copy { order: 2; }
.product-story.reverse .story-device { order: 1; }
.story-copy { max-width: 540px; }
.eyebrow.mint { color: var(--mint); }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.check-list li { color: #d9d4d0; line-height: 1.5; display: flex; gap: 12px; }
.check-list li::before { content: '✓'; color: var(--mint); font-weight: 800; }
.story-device { min-height: 620px; display: grid; place-items: center; border-radius: 36px; overflow: hidden; position: relative; }
.story-device::before { content: ''; position: absolute; inset: 8% 12%; border-radius: 50%; filter: blur(24px); }
.library-device { background: linear-gradient(145deg, rgba(255,104,109,.12), rgba(255,255,255,.025)); }
.library-device::before { background: rgba(255,104,109,.14); }
.playback-device { background: linear-gradient(145deg, rgba(114,224,189,.1), rgba(255,255,255,.025)); }
.playback-device::before { background: rgba(114,224,189,.12); }
.story-device img { position: relative; width: min(350px, 76%); height: auto; border-radius: 26px; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.mode-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.mode-row span { border: 1px solid var(--line); border-radius: 14px; padding: 10px 13px; color: var(--muted); display: flex; gap: 8px; align-items: center; font-size: 13px; }
.mode-row b { color: var(--mint); font-size: 15px; }

.privacy-showcase {
  display: grid;
  grid-template-columns: 1fr .8fr .65fr;
  gap: 28px;
  align-items: stretch;
}
.privacy-copy, .formats-card, .settings-shot { border: 1px solid var(--line); border-radius: 28px; background: rgba(255,255,255,.025); }
.privacy-copy { padding: 42px; }
.formats-card { padding: 34px; align-self: center; }
.formats-card h3 { font-size: 24px; margin: 28px 0 20px; }
.formats-card p { color: #d9d4d0; line-height: 1.55; }
.formats-card small { display: block; color: var(--muted); line-height: 1.55; margin-top: 22px; }
.format-icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: rgba(255,104,109,.14); color: var(--coral); }
.settings-shot { display: grid; place-items: end center; overflow: hidden; padding: 26px 20px 0; }
.settings-shot img { width: min(270px, 100%); height: auto; border-radius: 20px 20px 0 0; box-shadow: 0 28px 60px rgba(0,0,0,.45); }
.text-link { display: inline-block; margin-top: 24px; color: var(--coral); font-weight: 700; }

.closing-panel {
  width: min(1180px, calc(100% - 40px));
  margin: 70px auto 110px;
  padding: 86px 24px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: radial-gradient(circle at 50% 30%, rgba(255,104,109,.14), transparent 25rem), rgba(255,255,255,.02);
}
.closing-panel img { border-radius: 18px; box-shadow: 0 14px 50px rgba(255,104,109,.2); }
.closing-panel h2 { max-width: 720px; margin-left: auto; margin-right: auto; }
.closing-panel .primary-action { display: inline-block; margin-top: 24px; }

.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 54px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { border-radius: 9px; }
.footer-brand div { display: grid; gap: 3px; }
.footer-brand span, .site-footer small { color: var(--muted); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; color: var(--muted); font-size: 13px; }
.site-footer small { grid-column: 1 / -1; }

.legal-main { min-height: 100vh; }
.legal-shell { width: min(900px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0 120px; }
.legal-hero { padding-bottom: 54px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 760px; }
.legal-hero .effective { font-size: 13px; color: var(--coral); }
.legal-hero .hero-actions { margin-top: 28px; }
.legal-sections { display: grid; gap: 18px; padding-top: 38px; }
.legal-card { padding: 28px 30px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.025); }
.legal-card h2 { font-size: 20px; margin: 0 0 10px; }
.legal-card p { color: var(--muted); line-height: 1.75; margin: 0; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.support-card { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.025); }
.faq-card { margin-top: 20px; }
.support-card h2 { margin: 0 0 14px; font-size: 22px; }
.support-card p, .support-card li { color: var(--muted); line-height: 1.7; }
.support-card ol { margin: 20px 0 0; padding-left: 22px; }
.support-card .primary-action { display: inline-block; margin-top: 20px; }
.faq-stack { display: grid; gap: 12px; margin-top: 20px; }
.faq-stack details { border-top: 1px solid var(--line); padding: 18px 0 0; }
.faq-stack summary { cursor: pointer; font-weight: 700; }
.faq-stack p { margin-bottom: 0; }

@media (max-width: 820px) {
  .site-header nav { display: none; }
  .language-picker { margin-left: auto; }
  .hero { grid-template-columns: 1fr; gap: 20px; padding-top: 54px; }
  .hero-visual { min-height: 520px; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-strip article + article { border-left: 0; border-top: 1px solid var(--line); }
  .product-story, .product-story.reverse { grid-template-columns: 1fr; gap: 42px; }
  .product-story.reverse .story-copy, .product-story.reverse .story-device { order: initial; }
  .story-device { min-height: 520px; }
  .privacy-showcase { grid-template-columns: 1fr 1fr; }
  .settings-shot { grid-column: 1 / -1; max-height: 520px; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .site-header, .hero, .feature-strip { width: min(100% - 28px, 1180px); }
  .brand span { font-size: 15px; }
  .hero h1 { font-size: 46px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero-visual { min-height: 430px; }
  .section, .site-footer, .closing-panel, .legal-shell { width: min(100% - 28px, 1180px); }
  .section { padding: 76px 0; }
  .privacy-showcase { grid-template-columns: 1fr; }
  .settings-shot { grid-column: auto; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { gap: 14px; }
}
