/* Palette mirrors amber_app/lib/theme/palette.dart — no other colors. */
:root {
  --amber-main: #F59E0B;
  --amber-text: #78350F;
  --amber-container: #FEF3C7;
  --banner-surface: #FAF7F0;
  --muted: rgba(120, 53, 15, 0.6);
  --red: #F94144;
  --green: #90BE6D;
  --dark-green: #43AA8B;
  --hero-top: #FFF8EC;
  --hero-mid: #FDEFD3;
  --hero-bottom: #F6FBF4;
  --proof-top: #12332B;
  --proof-mid: #1C4A3E;
  --proof-bottom: #0E2A24;
  --dark-panel: #2F3A4A;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--amber-text);
  background: #fff;
  line-height: 1.6;
}
.wrap { max-width: 64rem; margin: 0 auto; padding: 0 1.25rem; }
header.site { background: var(--banner-surface); }
header.site .wrap { display: flex; align-items: center; gap: 0.6rem; padding-top: 0.9rem; padding-bottom: 0.9rem; }
header.site img { width: 2rem; height: 2rem; }
header.site .brand { font-weight: 700; font-size: 1.15rem; }
header.site nav { margin-left: auto; display: flex; gap: 1.2rem; }
header.site nav a { color: var(--amber-text); text-decoration: none; font-size: 0.95rem; }
header.site nav a:hover { text-decoration: underline; }
.hero { background: linear-gradient(180deg, var(--hero-top), var(--hero-mid) 55%, var(--hero-bottom)); padding: 4rem 0 3.5rem; }
.eyebrow { font-size: 0.8rem; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 1rem; }
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.15; letter-spacing: -0.02em; max-width: 40rem; }
.split { margin: 1.5rem 0 1rem; font-size: clamp(1.15rem, 2.5vw, 1.5rem); line-height: 1.4; max-width: 34rem; }
.split em { font-style: italic; color: var(--amber-main); font-weight: 700; }
.lede { max-width: 36rem; font-size: 1.05rem; margin-bottom: 2rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.btn { display: inline-block; padding: 0.75rem 1.4rem; border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 1rem; }
.btn-primary { background: var(--amber-main); color: #fff; }
.btn-primary:hover { filter: brightness(0.95); }
.btn-secondary { border: 2px solid var(--amber-main); color: var(--amber-text); }
.btn-secondary:hover { background: var(--amber-container); }
section { padding: 3.2rem 0; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); line-height: 1.25; margin-bottom: 1rem; letter-spacing: -0.01em; }
section p { max-width: 42rem; margin-bottom: 1rem; }
.source-card { background: #fff; border: 1px solid var(--amber-container); border-radius: 1.25rem; box-shadow: 0 10px 30px rgba(120, 53, 15, 0.08); padding: 1.6rem; max-width: 26rem; margin-top: 0; }
.source-card .title-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.source-card h3 { font-size: 1rem; }
.source-card .period { font-size: 0.8rem; color: var(--muted); }
.bar-row { display: grid; grid-template-columns: 8rem 1fr 3rem; align-items: center; gap: 0.6rem; font-size: 0.88rem; margin-bottom: 0.65rem; }
.bar { height: 0.7rem; border-radius: 999px; background: var(--amber-container); overflow: hidden; }
.bar span { display: block; height: 100%; border-radius: 999px; }
.bar .me { background: var(--amber-main); }
.bar .sharing { background: var(--dark-green); }
.bar .provider { background: var(--red); opacity: 0.75; }
.source-card .caption { font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; }
.phone { background: var(--dark-panel); border-radius: 2.2rem; padding: 2rem 0.55rem 0.55rem; max-width: 27rem; box-shadow: 0 18px 44px rgba(120, 53, 15, 0.18); position: relative; }
.phone::before { content: ""; position: absolute; top: 0.85rem; left: 50%; transform: translateX(-50%); width: 4.5rem; height: 0.4rem; border-radius: 999px; background: rgba(255, 255, 255, 0.25); }
.phone .source-card { border: none; box-shadow: none; border-radius: 1.75rem; max-width: none; }
.stat-line { font-size: 0.9rem; margin-top: 0.9rem; }
.stat-line b { color: var(--dark-green); font-size: 1.05rem; }
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1rem; margin-top: 1.4rem; }
.step-card { background: var(--banner-surface); border-radius: 1rem; padding: 1.4rem; }
.step-card .num { display: block; font-size: 1.9rem; font-weight: 700; color: var(--amber-main); line-height: 1; margin-bottom: 0.6rem; }
.step-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.92rem; margin-bottom: 0; }
.steps { max-width: 42rem; margin: 1.2rem 0 0 1.2rem; }
.steps li { margin-bottom: 0.7rem; }
.forms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1rem; margin-top: 1.4rem; }
.form-card { background: var(--banner-surface); border-radius: 1rem; padding: 1.4rem; }
.form-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.form-card p { font-size: 0.92rem; margin-bottom: 0.4rem; }
.form-card a { color: var(--amber-text); font-weight: 600; }
.form-card.before { border-left: 4px solid var(--muted); }
.form-card.after { border-left: 4px solid var(--dark-green); }
.proof { background: linear-gradient(180deg, var(--proof-top), var(--proof-mid) 55%, var(--proof-bottom)); color: #fff; }
.proof .eyebrow { color: rgba(255, 255, 255, 0.7); }
.proof h2 { color: #fff; }
.proof p { color: rgba(255, 255, 255, 0.85); }
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.4rem 0; }
.chip { background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 999px; padding: 0.35rem 0.9rem; font-size: 0.9rem; }
.chip b { color: #fff; }
.stat-band { display: flex; flex-wrap: wrap; gap: 2.2rem; margin-top: 1.8rem; }
.stat b { display: block; font-size: 1.7rem; color: var(--amber-main); }
.stat span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.75); }
.hero-visual { margin-top: 2.4rem; max-width: 32rem; }
.hero-visual svg { width: 100%; height: auto; display: block; }
.proof-cols { display: flex; flex-wrap: wrap; gap: 1.2rem 2.4rem; align-items: center; }
.proof-copy { flex: 1 1 20rem; }
.proof-copy p { margin-bottom: 0; }
.orb { flex: 0 0 auto; width: 12.5rem; max-width: 55%; margin-left: auto; margin-right: auto; }
.orb svg { width: 100%; height: auto; display: block; }
.orb-caption { text-align: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); margin-top: 0.6rem; }
.faq details { border-bottom: 1px solid var(--amber-container); padding: 0.9rem 0; max-width: 42rem; }
.faq summary { font-weight: 600; cursor: pointer; }
.faq details p { margin-top: 0.6rem; font-size: 0.95rem; }
.cta-band { background: var(--amber-container); border-radius: 1.5rem; padding: 2.5rem; text-align: center; }
.cta-band h2 { margin-bottom: 1.4rem; }
.chips-light { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 1.4rem; }
.chips-light .chip { background: #fff; border: 1px solid var(--amber-main); color: var(--amber-text); }
.cta-band .cta-row { justify-content: center; }
.cta-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.9rem; }
.why-app { background: var(--banner-surface); }
.trust-box { background: var(--amber-container); border: 1px solid var(--amber-main); border-radius: 1rem; padding: 1.6rem 1.8rem; max-width: 42rem; margin-top: 1.4rem; }
.trust-box ul { list-style: none; margin: 0 0 1rem; }
.trust-box li { padding-left: 1.4rem; position: relative; margin-bottom: 0.5rem; }
.trust-box li::before { content: "✓"; position: absolute; left: 0; color: var(--dark-green); font-weight: 700; }
.trust-box .note { margin-bottom: 0; font-weight: 600; }
footer.site { background: var(--banner-surface); padding: 2rem 0; font-size: 0.9rem; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; }
footer.site a { color: var(--amber-text); }
footer.site .langs a[aria-current] { font-weight: 700; text-decoration: none; }
@media (max-width: 40rem) {
  .hero { padding: 2.8rem 0 2.4rem; }
}
