/* Minimalist Dark — independent visual system for index-2.html. */
:root {
  color-scheme:dark;
  --bg:#0a0a0f;
  --surface:#12121a;
  --elevated:#1a1a24;
  --fg:#fafafa;
  --muted:#a1a1ad;
  --accent:#f59e0b;
  --border:rgba(255,255,255,.08);
  --border-hover:rgba(255,255,255,.15);
  --glass:rgba(26,26,36,.6);
  --radius:12px;
  --display:'Space Grotesk',system-ui,sans-serif;
  --mono:'JetBrains Mono',monospace;
  --glow:0 0 30px rgba(245,158,11,.15)
}

* {
  box-sizing:border-box;
  margin:0
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:100px
}
body {
  background:var(--bg);
  color:var(--fg);
  font:15px/1.7 'Inter',system-ui,sans-serif;
  -webkit-font-smoothing:antialiased
}
a {
  color:inherit;
  text-decoration:none
}
button,input {
  font:inherit
}
button,summary {
  cursor:pointer
}
button {
  color:inherit
}
img {
  display:block;
  max-width:100%
}
ul {
  padding:0;
  list-style:none
}
h1,h2,h3 {
  font-family:var(--display);
  font-weight:500;
  line-height:1.12;
  letter-spacing:-.035em
}
h2 {
  font-size:clamp(36px,5vw,56px)
}
h3 {
  font-size:24px
}
em {
  font-style:normal;
  color:var(--accent)
}
a,button {
  transition:color .2s,background .2s,box-shadow .2s,transform .2s,border-color .2s
}
a:hover {
  color:var(--accent)
}
:focus-visible {
  outline:2px solid var(--accent);
  outline-offset:5px;
  border-radius:4px
}
::selection {
  background:var(--accent);
  color:var(--bg)
}
.wrap {
  width:min(100% - 64px,1152px);
  margin-inline:auto
}
.section {
  padding-block:128px
}
.section-head {
  max-width:650px;
  margin-bottom:56px
}
.section-head h2 {
  margin:16px 0 24px
}
.lede {
  font-size:16px;
  line-height:1.85;
  color:var(--muted)
}
.label {
  font:11px/1.6 var(--mono);
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--accent)
}
.noise {
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  opacity:.015;
  pointer-events:none;
  z-index:50
}
.ambient {
  position:fixed;
  width:600px;
  height:600px;
  border-radius:50%;
  background:var(--accent);
  opacity:.035;
  filter:blur(120px);
  pointer-events:none;
  z-index:-1
}
.ambient-top {
  top:-240px;
  left:calc(50% - 300px)
}
.ambient-bottom {
  bottom:-350px;
  right:-200px
}
.skip-link {
  position:fixed;
  top:-80px;
  left:20px;
  padding:12px;
  background:var(--accent);
  color:var(--bg);
  z-index:100
}
.skip-link:focus {
  top:12px
}
.btn {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:16px;
  min-height:44px;
  padding:10px 22px;
  border:1px solid transparent;
  border-radius:var(--radius);
  font-size:13px;
  font-weight:500;
  white-space:nowrap
}
.btn-primary {
  background:var(--accent);
  color:var(--bg)
}
.btn-primary:hover {
  color:var(--bg);
  background:#ffad22;
  box-shadow:0 0 20px rgba(245,158,11,.4)
}
.btn-outline {
  background:transparent;
  border-color:var(--border-hover)
}
.btn-outline:hover {
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.25);
  color:var(--fg)
}
.btn:active {
  transform:scale(.98)
}
.btn-lg {
  min-height:50px;
  padding-inline:26px;
  font-size:14px
}
.nav {
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(10,10,15,.85);
  backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border)
}
.nav .wrap {
  height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px
}
.brand {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--display);
  font-size:19px;
  font-weight:500;
  letter-spacing:-.04em
}
.brand img {
  width:32px;
  height:auto;
  filter:grayscale(1) brightness(2)
}
.nav ul {
  display:flex;
  gap:32px;
  font-size:13px;
  color:var(--muted)
}
.nav ul a {
  display:block;
  padding:12px 0
}
.menu-toggle {
  display:none
}
.hero {
  padding-top:100px;
  overflow:hidden;
  background:radial-gradient(ellipse at 50% 20%,rgba(245,158,11,.035),transparent 60%)
}
.hero-inner {
  text-align:center;
  max-width:780px
}
.hero-badge {
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:6px 13px;
  border:1px solid rgba(245,158,11,.18);
  border-radius:99px;
  background:rgba(245,158,11,.045);
  font-size:11px;
  color:#d7c3a3;
  box-shadow:var(--glow)
}
.hero-badge span {
  width:5px;
  height:5px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 10px var(--accent);
  animation:pulse 3s ease-in-out infinite
}
@keyframes pulse {
  50% {
  opacity:.4
}

}
.hero h1 {
  font-size:clamp(48px,7.5vw,88px);
  line-height:1.06;
  letter-spacing:-.055em;
  margin:28px 0
}
.hero-row .lede {
  max-width:530px;
  margin:auto
}
.hero-actions {
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:30px
}
.hero-note {
  font:10px var(--mono);
  color:var(--muted);
  margin-top:24px
}
.hero-note span {
  padding:0 12px;
  color:#575761
}
.preview-label {
  display:flex;
  justify-content:space-between;
  padding:0 0 18px;
  margin-top:76px
}
.preview-label .label {
  color:#93939e;
  font-size:10px
}
.hero-screens {
  height:480px;
  overflow:hidden;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:32px;
  padding:42px 40px 0;
  border:1px solid var(--border);
  border-radius:16px 16px 0 0;
  background:radial-gradient(ellipse at 50% 80%,rgba(245,158,11,.065),transparent 60%),var(--surface);
  position:relative
}
.hero-screens:after {
  content:'';
  position:absolute;
  inset:75% 0 0;
  background:linear-gradient(transparent,var(--surface));
  pointer-events:none
}
.hero-screens figure {
  position:relative;
  width:250px;
  flex-shrink:0;
  padding:7px;
  background:var(--elevated);
  border:1px solid var(--border-hover);
  border-radius:25px;
  box-shadow:0 20px 40px #0006
}
.hero-screens figure:first-child {
  order:2
}
.hero-screens figure:nth-child(2) {
  order:1;
  margin-top:45px
}
.hero-screens figure:nth-child(3) {
  order:3;
  margin-top:45px
}
.hero-screens img {
  width:100%;
  border-radius:19px
}
.hero-screens figcaption {
  position:absolute;
  top:-29px;
  width:100%;
  text-align:center;
  font:10px var(--mono);
  color:var(--muted)
}
.marquee-accent {
  border-block:1px solid var(--border);
  background:var(--surface)
}
.marquee-track {
  max-width:1152px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(6,1fr)
}
.stat {
  padding:34px 20px;
  text-align:center
}
.stat b {
  display:block;
  font:32px var(--display);
  letter-spacing:-.04em
}
.stat span {
  display:block;
  margin-top:10px;
  font-size:10px;
  line-height:1.6;
  color:var(--muted)
}
.stat i {
  display:none
}
.grid-hair {
  display:grid;
  gap:20px
}
.grid-3 {
  grid-template-columns:repeat(3,minmax(0,1fr))
}
.card,.price-card,.quote {
  background:var(--glass);
  backdrop-filter:blur(8px);
  border:1px solid var(--border);
  border-radius:var(--radius)
}
.card {
  position:relative;
  padding:28px;
  transition:transform .3s,border-color .3s,background .3s;
  min-height:215px
}
.card:hover {
  transform:scale(1.02);
  border-color:var(--border-hover);
  background:rgba(26,26,36,.8)
}
.card .num {
  display:block;
  font:12px var(--mono);
  color:var(--accent);
  margin-bottom:26px
}
.card .tag {
  position:absolute;
  right:24px;
  top:28px;
  font:9px var(--mono);
  color:var(--muted)
}
.card h3 {
  font-size:20px;
  margin-bottom:12px
}
.card p {
  font-size:13px;
  line-height:1.75;
  color:var(--muted)
}
#features {
  background:rgba(18,18,26,.5);
  border-block:1px solid var(--border)
}
.features {
  display:grid;
  gap:72px
}
.feature {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center
}
.feature:nth-child(even) .feature-media {
  order:-1
}
.feature-index {
  font:12px var(--mono);
  color:var(--accent);
  margin-bottom:20px
}
.feature-copy h3 {
  font-size:clamp(28px,3.3vw,40px);
  max-width:420px
}
.feature ul {
  margin-top:26px
}
.feature li {
  position:relative;
  padding:10px 0 10px 24px;
  font-size:13px;
  color:var(--muted)
}
.feature li:before {
  content:'↗';
  position:absolute;
  left:0;
  color:var(--accent)
}
.feature-media {
  height:420px;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--border);
  background:radial-gradient(ellipse at bottom,rgba(245,158,11,.06),transparent 70%),var(--elevated);
  padding:32px 70px 0
}
.feature-media img {
  width:100%;
  border:6px solid #282832;
  border-radius:22px;
  box-shadow:0 16px 40px #0005
}
.benefit {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  padding:28px 0;
  border-bottom:1px solid var(--border)
}
.benefit h3 {
  font-size:24px
}
.benefit p {
  color:var(--muted);
  font-size:14px
}
.marquee-slow {
  padding:0 32px 100px
}
.marquee-slow .marquee-track {
  grid-template-columns:repeat(2,1fr);
  gap:24px
}
.quote {
  padding:32px;
  position:relative
}
.quote:before {
  content:'';
  display:block;
  width:28px;
  height:2px;
  background:var(--accent);
  box-shadow:0 0 12px #f59e0b66;
  margin-bottom:24px
}
.quote p {
  font:19px/1.7 var(--display);
  color:#d7d7de
}
.quote footer {
  margin-top:24px;
  font:10px var(--mono);
  color:var(--muted)
}
#pricing {
  border-top:1px solid var(--border)
}
.price-card {
  padding:32px;
  display:flex;
  flex-direction:column;
  gap:28px
}
.price-card h3 {
  font-size:20px
}
.amount {
  font:48px var(--display);
  letter-spacing:-.04em
}
.amount small {
  font:11px var(--mono);
  color:var(--muted);
  margin-left:6px
}
.price-card ul {
  flex:1
}
.price-card li {
  font-size:13px;
  color:var(--muted);
  padding:9px 0
}
.price-card li:before {
  content:'✓';
  color:var(--accent);
  margin-right:10px
}
.price-card.featured {
  border-color:#f59e0b40;
  box-shadow:var(--glow);
  background:linear-gradient(160deg,#f59e0b08,transparent 65%),var(--glass)
}
.featured h3 {
  color:var(--accent)
}
#faq {
  padding-top:32px
}
.faq {
  max-width:800px
}
.faq-item {
  border-bottom:1px solid var(--border)
}
.faq-q {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:24px 0;
  font:18px var(--display);
  list-style:none
}
.faq-q::-webkit-details-marker {
  display:none
}
.faq-q:hover,.faq-item[open] .plus {
  color:var(--accent)
}
.plus {
  font-size:25px;
  transition:transform .25s
}
.faq-item[open] .plus {
  transform:rotate(45deg)
}
.faq-a p {
  padding:0 40px 26px 0;
  color:var(--muted);
  font-size:14px
}
.signup {
  background:radial-gradient(ellipse at top,rgba(245,158,11,.06),transparent 65%),var(--surface);
  border-block:1px solid var(--border);
  text-align:center
}
.signup h2 {
  margin-top:22px
}
.store-intro {
  max-width:460px;
  margin:24px auto 0;
}
.store-buttons {
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:16px 24px;
  margin-top:36px;
}
.store-badge {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:60px;
  border-radius:10px;
}
.store-badge img {
  width:auto;
  height:60px;
}
/* Google's official artwork includes clear space around the visible badge. */
.store-badge-google {
  width:202px;
}
.store-badge-google img {
  height:90px;
  max-width:none;
}
.store-badge:hover {
  box-shadow:var(--glow);
}
.store-badge:active {
  transform:scale(.98);
}
/* Compact, non-modal consent with equally prominent choices. */
.cookie-notice {
  position:fixed;
  bottom:max(16px,env(safe-area-inset-bottom));
  left:16px;
  z-index:60;
  display:flex;
  align-items:center;
  gap:12px;
  width: min(560px,calc(100% - 32px));
  max-width:calc(100% - 32px);
  padding:16px;
  flex-wrap:wrap;
  color:var(--muted);
  background:rgba(18,18,26,.96);
  backdrop-filter:blur(8px);
  border:1px solid var(--border-hover);
  border-radius:var(--radius);
  box-shadow:0 4px 20px rgba(0,0,0,.3);
  font-size:12px;
  line-height:1.6;
}
.cookie-notice[hidden] {
  display:none;
}
.cookie-notice a {
  display:inline-block;
  color:var(--fg);
  text-decoration:underline;
  text-underline-offset:3px;
}
.cookie-notice a:hover {
  color:var(--accent);
}
.cookie-actions {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  width:100%;
}
.cookie-actions .btn {
  flex:1;
  padding-inline:12px;
}
.cookie-settings {
  min-height:44px;
  padding:0;
  border:0;
  background:transparent;
  color:inherit;
  font:inherit;
  text-decoration:underline;
  text-underline-offset:3px;
}
.cookie-settings:hover {
  color:var(--accent);
}
/* Legal documents share the homepage tokens and restrained glass surfaces. */
.legal {
  padding-top:72px;
}
.legal-wrap {
  display:grid;
  grid-template-columns:240px minmax(0,1fr);
  gap:64px 72px;
  align-items:start;
}
.legal-head {
  grid-column:1 / -1;
  display:grid;
  justify-items:start;
  gap:20px;
  padding-bottom:40px;
  border-bottom:1px solid var(--border);
}
.legal-back {
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:44px;
  margin-bottom:16px;
  color:var(--muted);
  font-size:13px;
}
.legal-head h1 {
  font-size:clamp(42px,6vw,72px);
  letter-spacing:-.045em;
}
.legal-head .lede {
  max-width:660px;
}
.legal-meta {
  font:11px/1.8 var(--mono);
  color:var(--muted);
}
.legal-tabs {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:8px;
  padding:5px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
}
.legal-tabs a {
  padding:10px 16px;
  min-height:44px;
  border-radius:8px;
  font-size:13px;
  color:var(--muted);
}
.legal-tabs a[aria-current="page"] {
  color:var(--accent);
  background:var(--elevated);
}
.legal-tabs a:hover {
  color:var(--accent);
}
.legal-toc {
  position:sticky;
  top:108px;
  max-height:calc(100dvh - 132px);
  overflow-y:auto;
  padding:24px;
  background:var(--glass);
  backdrop-filter:blur(8px);
  border:1px solid var(--border);
  border-radius:var(--radius);
}
.legal-toc .label {
  margin-bottom:16px;
}
.legal-toc ol {
  list-style:none;
  padding:0;
  counter-reset:legal-section;
}
.legal-toc li {
  counter-increment:legal-section;
}
.legal-toc a {
  display:flex;
  gap:10px;
  align-items:baseline;
  padding:9px 0;
  font-size:12px;
  line-height:1.6;
  color:var(--muted);
}
.legal-toc a::before {
  content:counter(legal-section,decimal-leading-zero);
  font:10px var(--mono);
  color:var(--accent);
}
.legal-toc a:hover {
  color:var(--fg);
}
.legal-body {
  min-width:0;
  display:grid;
  gap:48px;
  font-size:15px;
  line-height:1.85;
  overflow-wrap:anywhere;
}
.legal-body section {
  display:grid;
  gap:18px;
  scroll-margin-top:108px;
}
.legal-body section + section {
  border-top:1px solid var(--border);
  padding-top:40px;
}
.legal-body h2 {
  display:flex;
  align-items:baseline;
  gap:14px;
  font-size:clamp(24px,2.5vw,30px);
  line-height:1.3;
  margin-bottom:6px;
}
.legal-body h2 .num {
  flex-shrink:0;
  font:12px var(--mono);
  color:var(--accent);
}
.legal-body p,
.legal-body li {
  color:var(--muted);
}
.legal-body b {
  color:#dedee6;
  font-weight:500;
}
.legal-body ul {
  display:grid;
  gap:12px;
}
.legal-body li {
  position:relative;
  padding-left:20px;
}
.legal-body li::before {
  content:"";
  position:absolute;
  left:0;
  top:.85em;
  width:4px;
  height:4px;
  border-radius:50%;
  background:var(--accent);
}
.legal-body .legal-points {
  padding:28px;
  background:var(--glass);
  backdrop-filter:blur(8px);
  border:1px solid rgba(245,158,11,.18);
  border-radius:var(--radius);
  box-shadow:var(--glow);
  gap:18px;
}
.legal-link {
  color:var(--fg);
  text-decoration:underline;
  text-decoration-color:rgba(245,158,11,.5);
  text-underline-offset:4px;
}
#website-cookies {
  scroll-margin-top:108px;
}
@media(max-width:900px) {
  .legal-wrap {
    grid-template-columns:1fr;
    gap:40px;
  }
  .legal-toc {
    position:static;
    max-height:none;
  }
  .legal-toc ol {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    column-gap:24px;
  }
  .legal-toc a {
    min-height:44px;
  }
}
@media(max-width:600px) {
  .section.legal {
    padding-top:40px;
  }
  .legal-toc ol {
    grid-template-columns:1fr;
  }
  .legal-head {
    gap:16px;
    padding-bottom:28px;
  }
  .legal-body .legal-points {
    padding:22px;
  }
}
.footer {
  padding:64px 0 24px
}
.footer-grid {
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px
}
.footer h4 {
  font:10px var(--mono);
  color:var(--muted);
  margin-bottom:18px
}
.footer li {
  font-size:13px;
  margin-bottom:10px
}
.footer-word {
  font:clamp(40px,10vw,126px) var(--display);
  letter-spacing:-.065em;
  color:#22222d;
  margin-top:56px
}
.footer-legal {
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  border-top:1px solid var(--border);
  padding-top:24px;
  margin-top:24px;
  font-size:10px;
  color:var(--muted)
}

@media(min-width:1000px) {
  #faq .wrap {
  display:grid;
  grid-template-columns:1fr 1.4fr;
  gap:70px
}

}

@media(max-width:900px) {
  .nav ul {
  gap:20px
}
.hero-screens {
  gap:22px
}
.hero-screens figure {
  width:220px
}
.marquee-track {
  grid-template-columns:repeat(3,1fr)
}
.grid-3 {
  grid-template-columns:repeat(2,minmax(0,1fr))
}
.feature {
  gap:32px
}
.feature-media {
  padding:30px 35px 0
}
.footer-grid {
  grid-template-columns:2fr 1fr
}
.price-card:last-child {
  grid-column:1/-1
}
.section {
  padding-block:96px
}

}

@media(max-width:600px) {
  .wrap {
  width:calc(100% - 40px)
}
.nav .wrap {
  height:72px;
  gap:12px
}
.brand {
  font-size:17px
}
.brand img {
  width:27px
}
.nav .wrap>.btn:last-child {
  display:none
}
.menu-toggle {
  display:inline-flex;
  padding-inline:14px
}
.nav nav {
  position:absolute;
  top:72px;
  left:0;
  right:0;
  background:var(--surface);
  border-bottom:1px solid var(--border);
  display:none;
  padding:16px 24px
}
.nav nav.is-open {
  display:block
}
.nav ul {
  display:grid;
  gap:0
}
.hero {
  padding-top:72px
}
.hero h1 {
  font-size:54px
}
.hero .lede {
  font-size:14px
}
.hero-actions {
  flex-direction:column;
  align-items:stretch;
  padding:0 20px
}
.hero-note {
  font-size:8px
}
.hero-note span {
  padding:0 5px
}
.preview-label {
  margin-top:56px
}
.preview-label .label {
  font-size:8px
}
.preview-label .label:last-child {
  display:none
}
.hero-screens {
  height:380px;
  padding-top:40px;
  gap:18px
}
.hero-screens figure {
  width:195px
}
.hero-screens figure:not(:first-child) {
  opacity:.5
}
.stat {
  padding:26px 10px
}
.stat b {
  font-size:28px
}
.stat span {
  font-size:9px
}
.grid-3 {
  grid-template-columns:1fr
}
.section-head {
  margin-bottom:36px
}
.card {
  min-height:190px
}
.feature {
  grid-template-columns:1fr;
  gap:28px
}
.feature:nth-child(even) .feature-media {
  order:initial
}
.feature-media {
  height:380px;
  padding:28px 55px 0
}
.benefit {
  grid-template-columns:1fr;
  gap:12px
}
.marquee-slow {
  padding:0 20px 80px
}
.marquee-slow .marquee-track {
  grid-template-columns:1fr
}
.quote {
  padding:28px
}
.footer-grid {
  grid-template-columns:1fr 1fr;
  gap:32px
}
.footer-grid>div:first-child {
  grid-column:1/-1
}
.footer-word {
  margin-top:40px
}
.faq-q {
  font-size:17px
}
.ambient {
  width:400px;
  height:400px
}
.ambient-top {
  left:calc(50% - 200px)
}

}

@media(prefers-reduced-motion:reduce) {
  html {
  scroll-behavior:auto
}
*,*:before,*:after {
  animation:none!important;
  transition:none!important
}

}
