:root {
  --sand: #F7F4EF;
  --terracotta: #E8604A;
  --navy: #1A365D;
  --teal: #1A7FB0;
  --green: #2E9E6B;
  --ink: #1F3454;
  --muted: #6E7889;
  --surface: #FFFFFF;
  --divider: #E3E0D8;
  --maxw: 1080px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--sand); color: var(--ink); line-height: 1.6;
  -webkit-font-smoothing: antialiased; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; letter-spacing: -0.01em; }
a { color: var(--teal); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 30; display: flex; align-items: center; gap: 24px;
  padding: 12px max(20px, calc((100% - var(--maxw)) / 2 + 20px));
  background: rgba(247, 244, 239, 0.82); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--divider); }
.site-header .brand { display: flex; align-items: center; gap: 10px; font-weight: 800;
  font-size: 1.05rem; color: var(--navy); text-decoration: none; margin-right: auto; }
.site-header .brand img { width: 32px; height: 32px; border-radius: 9px; }
.site-nav { display: flex; gap: 26px; align-items: center; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: .95rem; }
.site-nav a:hover { color: var(--teal); }
.lang-switch { display: inline-flex; border: 1px solid var(--divider); border-radius: 999px;
  overflow: hidden; background: var(--surface); }
.lang-switch a { padding: 5px 12px; color: var(--muted); text-decoration: none; font-weight: 700;
  font-size: .74rem; letter-spacing: .6px; }
.lang-switch a[aria-current="true"] { background: var(--navy); color: #fff; }
@media (max-width: 560px) { .site-nav { display: none; } }

/* ---------- Buttons & store badges ---------- */
.btn { display: inline-block; background: var(--terracotta); color: #fff; text-decoration: none;
  font-weight: 700; padding: 14px 24px; border-radius: 12px; }
.btn:hover { filter: brightness(0.95); }
.store-badges { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.store-badges a { display: inline-flex; transition: transform .15s ease; }
.store-badges a:hover { transform: translateY(-2px); }
.store-badges img { height: 48px; width: auto; display: block; }
.store-badges.small img { height: 42px; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
  padding: 64px 0 72px; }
.hero h1 { font-size: 2.9rem; margin: 0 0 16px; letter-spacing: -0.02em; }
.hero p.lede { font-size: 1.22rem; color: var(--muted); margin: 0 0 24px; max-width: 32em; }
.cta-label { text-transform: uppercase; letter-spacing: 1.5px; font-size: .72rem;
  font-weight: 700; color: var(--muted); margin: 0 0 12px; }
/* CSS phone-frame mockup (screenshot-ready) */
.phone { width: 270px; max-width: 100%; aspect-ratio: 9 / 19; margin: 0 auto;
  background: var(--navy); border-radius: 40px; position: relative;
  box-shadow: 0 30px 70px rgba(26, 54, 93, .30); }
.phone .screen { position: absolute; inset: 12px; border-radius: 28px; overflow: hidden;
  background: linear-gradient(160deg, #DCE7F2 0%, #EAF1E7 100%); display: flex;
  align-items: center; justify-content: center; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section.alt { background: var(--surface); }
.section > .container > h2 { font-size: 2rem; margin: 0 0 10px; text-align: center; }
.section-intro { color: var(--muted); font-size: 1.08rem; text-align: center;
  max-width: 38em; margin: 0 auto 44px; }

/* ---------- Feature grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.card { background: var(--surface); border: 1px solid var(--divider); border-radius: 18px; padding: 28px;
  box-shadow: 0 1px 2px rgba(26, 54, 93, .04), 0 14px 30px rgba(26, 54, 93, .05); }
.feat-icon { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px;
  border-radius: 13px; background: rgba(26, 127, 176, .10); color: var(--teal); margin-bottom: 16px; }
.feat-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.14rem; margin: 0 0 7px; }
.card p { margin: 0; color: var(--muted); font-size: .97rem; }

/* ---------- How it works ---------- */
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.how-step { text-align: center; padding: 0 8px; }
.how-num { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 50%; background: var(--terracotta); color: #fff; font-weight: 800; font-size: 1.2rem;
  margin-bottom: 16px; box-shadow: 0 8px 20px rgba(232, 96, 74, .28); }
.how-step h3 { font-size: 1.15rem; margin: 0 0 6px; }
.how-step p { margin: 0; color: var(--muted); }

/* ---------- Screenshot showcase (row) ---------- */
.showcase .shots { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.showcase .shot { text-align: center; }
.showcase .phone { width: 232px; margin: 0; }
.shot-ph { flex-direction: column; }
.shot-ph span { color: var(--muted); font-weight: 700; font-size: .82rem; letter-spacing: .4px; }
.shot-cap { margin: 16px 0 0; color: var(--ink); font-weight: 600; }
/* real screenshots dropped into a shot fill the screen cleanly */
.shot .screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* hero phone shows a full-bleed screenshot too */
.hero .phone .screen img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: 2rem; margin: 0 0 12px; }
.cta-band .lede { color: var(--muted); font-size: 1.15rem; max-width: 540px; margin: 0 auto 26px; }
.cta-band .store-badges { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #C7D3E4; margin-top: 0; }
.site-footer .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
  padding: 56px 20px 40px; max-width: var(--maxw); margin: 0 auto; }
.footer-brand .brand { display: inline-flex; align-items: center; gap: 10px; color: #fff;
  font-weight: 800; font-size: 1.1rem; text-decoration: none; }
.footer-brand .brand img { width: 32px; height: 32px; border-radius: 9px; }
.footer-brand p { color: #9FB0C8; margin: 14px 0 18px; max-width: 26em; font-size: .95rem; }
.footer-col h4 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: 1px;
  margin: 0 0 14px; }
.footer-col a { display: block; color: #C7D3E4; text-decoration: none; margin-bottom: 10px;
  font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-bar { border-top: 1px solid rgba(255, 255, 255, .10); }
.footer-bar .container { padding-top: 18px; padding-bottom: 18px; color: #8499B5; font-size: .85rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ---------- Legal / FAQ ---------- */
.legal { max-width: 760px; }
.legal h2 { margin-top: 36px; }
.faq dt { font-weight: 700; color: var(--navy); margin-top: 24px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 40px 0 48px; }
  .hero h1 { font-size: 2.1rem; }
  .hero p.lede { margin-left: auto; margin-right: auto; }
  .store-badges { justify-content: center; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 52px 0; }
}
@media (max-width: 520px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}
