:root {
  --ink: #0f172a;
  --muted: #4a5568;
  --faint: #718096;
  --bg: #ffffff;
  --paper: #fffdf9;
  --brand: #c96442;
  --brand-dark: #a85335;
  --brand-soft: #f3e4dc;
  --line: #e2e8f0;
  --ok: #3f6b4f;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --radius: 16px;
  --max: 1140px;
  --prose: 46rem;
  --sans: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --footer: #07111f;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--brand-dark); }
a:hover { color: var(--brand); }
code {
  font-size: 0.9em;
  background: var(--brand-soft);
  padding: 0.1em 0.35em;
  border-radius: 5px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: #fff;
  padding: 8px 12px;
  z-index: 20;
}
.skip:focus { left: 8px; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap.narrow { max-width: 800px; }

/* Header — saveai-style: logo left, links, dark Add to Chrome */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
  flex: 1;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo img { width: 40px; height: 40px; }
.logo span { font-size: 16px; line-height: 1.2; }

.nav {
  display: flex;
  gap: 4px 22px;
  flex: 1;
  flex-wrap: wrap;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: #334155;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 0;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav .btn-install { display: none; }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-install {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: #fff !important;
  background: #111827;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  box-shadow: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-install:hover {
  background: #1f2937;
  color: #fff !important;
}
.btn-install img { width: 18px; height: 18px; display: block; }
.btn-install-lg {
  min-height: 48px;
  padding: 12px 22px;
  font-size: 1rem;
  border-radius: 8px;
  background: #111827 !important;
  color: #fff !important;
  border: none;
  box-shadow: none;
}
.btn-install-lg:hover {
  background: #1f2937 !important;
  color: #fff !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 16px;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand);
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(201, 100, 66, 0.28);
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line);
}
.btn-ghost:hover { background: #fff; }

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 20px;
}

/* Inner-page article layout */
.page-hero, .hero-legacy {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px 12px;
}
.kicker {
  color: var(--brand);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
article.band h1,
.prose h1,
h1.page-h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2rem, 4.6vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--ink);
  background: none;
  -webkit-text-fill-color: inherit;
}
.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 46rem;
  margin: 0 0 22px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin: 8px 0 8px; }

.band {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 24px 56px;
}
.prose { max-width: var(--prose); }
.prose h2 {
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.25;
  margin: 2.2em 0 0.6em;
  letter-spacing: -0.02em;
}
.prose h3 {
  font-size: 1.05rem;
  margin: 1.5em 0 0.4em;
}
.prose p, .prose li { color: #3f3a36; }
.prose ol, .prose ul { padding-left: 1.2em; }
.prose li { margin: 0.35em 0; }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--paper);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: block;
  overflow-x: auto;
}
.prose th, .prose td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.prose th { background: var(--brand-soft); color: var(--ink); font-size: 13px; }
.shot {
  margin: 18px 0 8px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.caption {
  font-size: 13px;
  color: var(--faint);
  margin: 0 0 1.4em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin: 22px 0;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

.faq h3 {
  font-size: 1.02rem;
  margin: 1.3em 0 0.3em;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
  margin: 18px 0 0;
}
.trust span::before { content: "•"; color: var(--brand); margin-right: 8px; }

.crumbs {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px 0;
  font-size: 13px;
  color: var(--faint);
}
.crumbs a { color: var(--muted); text-decoration: none; }
.updated { color: var(--faint); font-size: 13px; margin-top: -6px; }

/* Landing homepage */
.landing { overflow-x: hidden; }
.landing h1, .landing h2, .landing h3 {
  font-family: var(--sans);
  -webkit-text-fill-color: inherit;
}

.hero {
  text-align: center;
  background-image: radial-gradient(circle, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 5rem 0 6.5rem;
  max-width: none;
  margin: 0;
}
.hero-inner { max-width: 1000px; }
.hero h1 {
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #c96442, #8f3f28);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 1.4rem;
  font-size: clamp(1.9rem, 4.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
}
.hero-sub {
  color: #4a5568;
  margin: 0 auto 1.4rem;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  font-weight: 500;
  line-height: 1.3;
  max-width: 36rem;
}
.hero-desc {
  color: #333;
  margin: 0 auto 2.6rem;
  font-size: 1rem;
  line-height: 1.65;
  max-width: 40rem;
}
.store-grid {
  display: flex;
  justify-content: center;
  margin-bottom: 2.4rem;
}
.store-card {
  color: inherit;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  min-width: 280px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.store-card:hover {
  border-color: rgba(201, 100, 66, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  color: inherit;
}
.store-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.store-logo img { width: 40px; height: 40px; }
.store-meta { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.store-meta strong {
  color: #2d3748;
  font-size: 1rem;
  font-weight: 600;
}
.store-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  color: #718096;
  font-size: 0.92rem;
  font-weight: 500;
}
.store-rating b { color: var(--ink); font-weight: 800; }
.store-rating .stars { color: #f5b301; letter-spacing: 1px; }
.store-free {
  color: #a85335;
  background: var(--brand-soft);
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.platforms-kicker {
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 600;
}
.platforms-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 0 10px;
  padding: 0;
}
.platforms-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #475569;
  font-weight: 600;
  font-size: 14px;
}
.platforms-note {
  color: var(--faint);
  font-size: 14px;
  margin: 0;
}

.features-block { padding: 24px 0 40px; }
.section-title,
.features-block h2,
.faq-band h2,
.social h2 {
  color: #1a1a1a;
  text-align: center;
  letter-spacing: -0.025em;
  margin: 0 0 50px;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}
.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}
.feature-row:last-child { border-bottom: none; }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-copy { flex: 1; }
.feature-copy .num {
  color: #fff;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #c96442, #8f3f28);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 7px 18px rgba(201, 100, 66, 0.32);
}
.feature-copy h3 {
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
}
.feature-copy p {
  margin: 0;
  color: #4a5568;
  font-size: 1.02rem;
  line-height: 1.7;
}
.feature-media {
  flex: 1;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 10px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}
.feature-media img {
  display: block;
  width: 100%;
  border-radius: 10px;
  background: #f8fafc;
}

.value-band {
  background:
    radial-gradient(circle at 16% 18%, rgba(201, 100, 66, 0.22), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(143, 63, 40, 0.18), transparent 28%),
    linear-gradient(#07111f 0%, #0a1422 52%, #08111c 100%);
  border-top: 1px solid rgba(201, 100, 66, 0.14);
  border-bottom: 1px solid rgba(201, 100, 66, 0.1);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.value-band::before {
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  position: absolute;
  inset: 0;
}
.value-band .wrap { position: relative; z-index: 1; }
.value-band h2 {
  color: #f8fafc;
  letter-spacing: -0.03em;
  text-align: center;
  margin: 0 0 64px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
}
.value-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  align-items: center;
  gap: 64px;
}
.value-media {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(248, 250, 252, 0.08);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.value-media img {
  display: block;
  width: 100%;
  border-radius: 12px;
}
.checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 12px;
  border-radius: 14px;
  cursor: pointer;
  color: #cbd5e1;
}
.checks li.is-active {
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
}
.checks .check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #64748b;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}
.checks li.is-active .check-icon {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.checks strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.checks span span { display: block; font-size: 0.95rem; color: #94a3b8; }
.checks li.is-active span span { color: #cbd5e1; }

.social { padding: 88px 0 72px; }
.social .stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 280px));
  justify-content: center;
  gap: 32px;
  text-align: center;
  margin-bottom: 36px;
}
.stat-value-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.stat-num {
  color: #111827;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.stat-stars { color: #f5b301; font-size: 1.15rem; letter-spacing: 1px; }
.stat-label {
  margin-top: 8px;
  color: #64748b;
  font-weight: 600;
}
.social-cta-line { text-align: center; margin: 0; }

.faq-band { padding: 20px 0 80px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  overflow: hidden;
}
.faq-list details:hover { border-color: #d1d1d1; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s;
  margin-top: -4px;
}
.faq-list details[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq-list details p {
  margin: 0;
  padding: 0 24px 22px;
  color: #4a5568;
  line-height: 1.7;
}

.final-cta { background: #f8fafc; padding: 8px 0 96px; }
.final-cta-panel {
  background:
    radial-gradient(circle at 50% 22%, rgba(201, 100, 66, 0.1), transparent 34%),
    linear-gradient(#fff 0%, #f7f3ee 100%);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 28px;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 76px 24px 72px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
  position: relative;
}
.final-kicker {
  color: var(--brand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 700;
}
.final-cta h2 {
  color: #0f172a;
  letter-spacing: -0.03em;
  margin: 0 auto;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  font-weight: 800;
  line-height: 1.12;
  max-width: 18ch;
}
.final-cta p {
  color: #334155;
  max-width: 560px;
  margin: 18px auto 0;
  font-size: 1.02rem;
  font-weight: 500;
}
.final-cta .btn-install { margin-top: 34px; }

/* Dark footer */
.site-footer {
  background: var(--footer);
  color: #94a3b8;
  margin-top: 0;
  padding: 56px 24px 28px;
  border-top: none;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}
.site-footer .logo { color: #fff; }
.site-footer .logo span {
  background: linear-gradient(135deg, #e8a78a, #c96442);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.site-footer h2,
.site-footer .col-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  color: #e2e8f0;
  font-weight: 700;
}
.site-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #94a3b8;
  font-size: 14.5px;
  margin: 8px 0;
}
.site-footer a:hover { color: #fff; }
.site-footer .install-link img { width: 16px; height: 16px; }
.legal-note { font-size: 15px; color: #94a3b8; max-width: 28rem; }
.footer-bottom {
  max-width: var(--max);
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: #64748b;
}
.footer-bottom a { display: inline; color: #94a3b8; margin: 0 8px 0 0; }
.disclaimer {
  max-width: var(--max);
  margin: 16px auto 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}
.disclaimer a { display: inline; color: #cbd5e1; }

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header-left { flex: 1; }
  .header-right .btn-install {
    display: inline-flex;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 8px;
    gap: 6px;
  }
  .header-right .btn-install img { width: 16px; height: 16px; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 18px;
    flex-direction: column;
    align-items: flex-start;
    z-index: 11;
  }
  .nav.open { display: flex; }
  .nav .btn-install { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 800px) {
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 28px;
    padding: 36px 0;
    text-align: left;
  }
  .hero { padding: 60px 0 48px; }
  .value-band { padding: 72px 0; }
  .social .stats { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .store-card { width: 100%; max-width: 340px; }
  .final-cta { padding-bottom: 72px; }
  .final-cta-panel { padding: 52px 20px; border-radius: 24px; }
}

@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr; }
  .logo span { max-width: 11rem; font-size: 14px; }
  .final-cta .btn-install { width: 100%; }
}
