:root {
  --bg: #ffb020; --bg-soft: #fff2cf; --card: #ffffff; --line: #ffd58f;
  --text: #3a2005; --muted: #8a5a16; --accent: #e07c00; --primary: #ff6d00;
}
* { box-sizing: border-box; }
body {
  margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 82% -8%, #ffe27a 0%, transparent 55%),
    linear-gradient(170deg, #ffe066 0%, #ffcf33 52%, #ffb020 100%);
  background-attachment: fixed;
  line-height: 1.6;
}
a { color: inherit; }

.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px;
  border-bottom: 4px solid transparent; border-image: linear-gradient(90deg, #ffc233, #ff7a00) 1;
  position: sticky; top: 0; backdrop-filter: blur(8px); background: linear-gradient(90deg, #ffd94a, #ffb020); box-shadow: 0 4px 22px rgba(200,105,0,.28); z-index: 50; }
.brand { font-weight: 800; font-size: 18px; } .brand .mark { color: var(--accent); }
.links { display: flex; align-items: center; gap: 18px; font-size: 14px; }
.links a { color: var(--muted); text-decoration: none; }
.links a:hover { color: var(--text); }
.chip { background: var(--card); color: var(--text); border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px; font-size: 13px; cursor: pointer; }
.cta-mini { background: linear-gradient(135deg, #ff9d00, #ff6d00); padding: 8px 14px;
  border-radius: 10px; color: #fff !important; text-decoration: none; font-weight: 600; }
@media (max-width: 720px) { .links a:not(.cta-mini) { display: none; } }

.hero { max-width: 880px; margin: 0 auto; padding: 72px 24px 40px; text-align: center; }
.eyebrow { color: var(--accent); letter-spacing: 2px; text-transform: uppercase; font-size: 12px; }
.hero h1 { font-size: 52px; line-height: 1.05; margin: 12px 0 18px; }
.lede { font-size: 18px; color: #6b4a14; max-width: 680px; margin: 0 auto 28px; }
.lede strong { color: var(--accent); }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta { padding: 13px 22px; border-radius: 12px; text-decoration: none; font-weight: 700; font-size: 15px; }
.cta.primary { background: linear-gradient(135deg, #ff9d00, #ff6d00); color: #fff; }
.cta.store { background: var(--card); border: 1px solid var(--line); color: var(--text); }
.from-line { margin-top: 18px; color: var(--muted); font-size: 14px; }
.from-line strong { color: var(--accent); }
@media (max-width: 600px) { .hero h1 { font-size: 36px; } }

.band { max-width: 980px; margin: 0 auto; padding: 56px 24px; }
.band.alt { background: rgba(255,255,255,0.02); max-width: none; }
.band.alt > * { max-width: 980px; margin-left: auto; margin-right: auto; }
.band h2 { font-size: 30px; margin: 0 0 10px; }
.muted { color: var(--muted); } .small { font-size: 13px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chips span { background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 14px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.feat { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.feat h3 { margin: 0 0 8px; color: var(--accent); font-size: 17px; }
.feat p { margin: 0; color: #6b4a14; font-size: 14px; }
@media (max-width: 720px) { .grid3 { grid-template-columns: 1fr; } }

.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.price-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.pc-h { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.pc-amt { font-size: 40px; font-weight: 800; color: var(--accent); margin: 6px 0; }
.pc-amt .pc-unit { font-size: 18px; color: var(--muted); font-weight: 600; }
.pc-sub { color: #6b4a14; font-size: 14px; }
.price-note { grid-column: 1 / -1; color: var(--muted); font-size: 13px; }
.price-note strong { color: var(--text); }
@media (max-width: 600px) { .price-cards { grid-template-columns: 1fr; } }

.download { text-align: center; }
.foot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  max-width: 980px; margin: 0 auto; padding: 32px 24px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); }
.foot a { color: var(--muted); }
.foot-disclaimer { flex-basis: 100%; margin: 2px 0 0; font-size: 12px;
  color: var(--muted); line-height: 1.5; max-width: 640px; }

/* region popup (same as the app) */
.region-modal { position: fixed; inset: 0; z-index: 9500; display: flex; align-items: center; justify-content: center;
  background: rgba(61,36,5,0.35); padding: 16px; }
.region-card { width: min(420px, 94vw); background: linear-gradient(180deg, #fffdf6, #fff3d6);
  border: 1px solid rgba(255,138,0,0.45); border-radius: 16px; padding: 22px; box-shadow: 0 18px 60px rgba(150,90,10,.22); }
.region-h { font-size: 18px; font-weight: 800; color: #3d2405; margin-bottom: 8px; }
.region-p { font-size: 13px; color: #93641f; line-height: 1.5; margin-bottom: 14px; }
.region-p strong { color: #b06e00; }
.region-select { width: 100%; padding: 12px; font-size: 15px; border-radius: 10px; margin-bottom: 14px;
  background: #fff6e0; color: #3d2405; border: 1px solid var(--line); }
.region-btn { width: 100%; padding: 12px; border: none; border-radius: 10px; font-weight: 700; font-size: 15px;
  cursor: pointer; color: #241503; background: linear-gradient(135deg, #ffc233, #ff8a00); }

/* language strip (regional landing pages) */
.lang-strip { text-align: center; padding: 18px 24px 34px; font-size: 14px; color: var(--muted);
  line-height: 2.1; max-width: 860px; margin: 0 auto; }
.lang-strip a { color: var(--accent); text-decoration: none; white-space: nowrap; }
.lang-strip .lang-here { color: var(--text); font-weight: 700; white-space: nowrap; }
.lang-h { text-align: center; color: var(--accent); font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; margin: 30px 0 0; }
