:root {
  --bg: #FFFAF2;
  --fg: #2A1C10;
  --card: #FFFFFF;
  --primary: #F97316;
  --primary-light: #FDBA74;
  --secondary: #FEF3E2;
  --muted: #FDF0DF;
  --muted-fg: #8A6D4F;
  --border: #F0DCC2;
  --radius: 20px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Sora', system-ui, sans-serif; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 250, 242, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px; }
.brand img { width: 36px; height: 36px; border-radius: 10px; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 600; color: var(--muted-fg); }
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  background: var(--fg); color: #fff !important; padding: 10px 20px;
  border-radius: 999px; font-weight: 700; font-size: 14px; transition: transform .15s ease;
}
.nav-cta:hover { transform: scale(1.04); }

/* Hero */
.hero { padding: 90px 0 70px; text-align: center; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.16) 0%, rgba(249,115,22,0) 65%);
  pointer-events: none;
}
.hero-icon { width: 104px; height: 104px; border-radius: 26px; box-shadow: 0 22px 50px -16px rgba(249,115,22,.55); margin-bottom: 28px; }
.hero h1 { font-size: clamp(38px, 6.5vw, 62px); font-weight: 800; line-height: 1.07; margin-bottom: 18px; }
.hero h1 span { color: var(--primary); }
.hero p.sub { font-size: 19px; color: var(--muted-fg); max-width: 560px; margin: 0 auto 34px; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--fg); color: #fff; padding: 15px 30px; border-radius: 999px;
  font-weight: 700; font-size: 16px; transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0 14px 34px -12px rgba(42,28,16,.45);
}
.store-btn:hover { transform: translateY(-2px) scale(1.02); }
.store-btn svg { width: 22px; height: 22px; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--muted-fg); }

/* Preview cards row */
.preview-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 60px; }
.preview-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; width: 240px; text-align: left;
  box-shadow: 0 16px 40px -20px rgba(249,115,22,.25);
}
.preview-card .pc-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--muted-fg); text-transform: uppercase; }
.preview-card .pc-big { font-family: 'Sora', sans-serif; font-size: 40px; font-weight: 800; margin: 6px 0 2px; }
.preview-card .pc-big em { font-style: normal; font-size: 17px; color: var(--primary); }
.preview-card .pc-sub { font-size: 13px; color: var(--muted-fg); }
.uv-bar { height: 8px; border-radius: 99px; margin-top: 14px; background: linear-gradient(90deg, #22C55E, #EAB308, #F97316, #DC2626); }
.pc-progress { height: 8px; border-radius: 99px; background: var(--muted); margin-top: 14px; overflow: hidden; }
.pc-progress i { display: block; height: 100%; border-radius: 99px; background: var(--primary); }

/* Sections */
section.block { padding: 84px 0; }
.block-head { text-align: center; max-width: 620px; margin: 0 auto 54px; }
.block-head .eyebrow { color: var(--primary); font-weight: 800; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }
.block-head h2 { font-size: clamp(30px, 4.5vw, 42px); font-weight: 800; margin-top: 10px; }
.block-head p { color: var(--muted-fg); margin-top: 12px; font-size: 17px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.feature {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: transform .18s ease, box-shadow .18s ease;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -18px rgba(249,115,22,.3); }
.feature .emoji { font-size: 30px; }
.feature h3 { font-size: 18px; margin: 14px 0 8px; }
.feature p { font-size: 14.5px; color: var(--muted-fg); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.step { background: var(--secondary); border-radius: var(--radius); padding: 30px; }
.step .num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: 17px; margin-bottom: 16px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted-fg); }

/* FAQ */
.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 20px 24px; margin-bottom: 12px;
}
.faq summary { font-weight: 700; font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--primary); font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin-top: 12px; font-size: 15px; color: var(--muted-fg); }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 28px; text-align: center; color: #fff; padding: 64px 32px;
}
.cta-band h2 { font-size: clamp(28px, 4vw, 38px); font-weight: 800; }
.cta-band p { opacity: .92; margin: 12px 0 28px; font-size: 17px; }
.cta-band .store-btn { background: #fff; color: var(--fg); box-shadow: 0 14px 34px -10px rgba(0,0,0,.3); }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 44px 0 54px; margin-top: 84px; }
.foot-inner { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.foot-links { display: flex; gap: 24px; font-size: 14px; font-weight: 600; color: var(--muted-fg); }
.foot-links a:hover { color: var(--fg); }
.foot-note { width: 100%; margin-top: 22px; font-size: 12.5px; color: var(--muted-fg); max-width: 640px; }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 70px 24px 90px; }
.legal h1 { font-size: 36px; margin-bottom: 8px; }
.legal .updated { color: var(--muted-fg); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 21px; margin: 36px 0 12px; }
.legal p, .legal li { font-size: 15.5px; color: #4A3826; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal a { color: var(--primary); font-weight: 600; }

@media (max-width: 640px) {
  .nav-links { gap: 16px; }
  .nav-links .hide-m { display: none; }
  section.block { padding: 60px 0; }
}
