:root {
  --amber: #e5843b;
  --amber-dark: #c96a24;
  --honey: #f6b24a;
  --ink: #241c15;
  --slate: #6b6257;
  --cream: #faf6f0;
  --surface: #ffffff;
  --line: #ebe3d8;
  --ok: #2e9e63;
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1100px 620px at 92% -8%, #fdeeda 0%, rgba(253, 238, 218, 0) 55%),
    radial-gradient(900px 520px at -6% 2%, #fbe6cf 0%, rgba(251, 230, 207, 0) 48%),
    var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.grad { background: linear-gradient(120deg, var(--amber), var(--honey)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--slate); }

/* Nav */
.nav { position: sticky; top: 0; z-index: 10; background: rgba(250, 246, 240, 0.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; }
.brand .mark { width: 36px; height: 36px; border-radius: 11px; object-fit: cover; border: 1px solid rgba(246, 178, 74, 0.4); box-shadow: 0 2px 6px rgba(63, 45, 29, 0.12); }
.brand b { color: var(--amber); }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a { color: var(--slate); font-weight: 500; }
.nav-links a:hover { color: var(--ink); }

.btn { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; padding: 11px 20px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--surface); font-weight: 700; font-size: 15px; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease; }
.btn:hover { transform: translateY(-1px); }
.btn small { font-weight: 500; font-size: 12px; color: var(--slate); }
.btn.primary { background: var(--amber); color: #fff; border-color: var(--amber); box-shadow: 0 8px 20px rgba(229, 132, 59, 0.28); }
.btn.primary small { color: rgba(255,255,255,.85); }
.btn.lg { padding: 15px 26px; font-size: 16px; }
.nav .btn { padding: 9px 16px; }

/* Hero */
.hero { padding: 56px 0 24px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; }
.hero-copy { text-align: left; }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--slate); box-shadow: 0 2px 8px rgba(63, 45, 29, 0.05); }
.badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(46, 158, 99, 0.18); }
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -1.5px; margin: 20px 0 16px; font-weight: 900; }
.lead { font-size: clamp(16px, 2.4vw, 19px); color: var(--slate); max-width: 560px; }
.cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 12px; }
.hero-copy .cta { justify-content: flex-start; }
.final .cta { justify-content: center; }
.sub { font-size: 14px; color: var(--slate); }
.hero-art img { width: 100%; max-width: 620px; height: auto; filter: drop-shadow(0 30px 50px rgba(63, 45, 29, 0.16)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) { .hero-art img { animation: none; } }

/* Showcase */
.showcase { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 28px 20px 40px; }
.phone { width: 300px; max-width: 82vw; border-radius: 42px; padding: 10px; background: #1c1c1e; box-shadow: 0 30px 70px rgba(36, 28, 21, 0.28); }
.phone img { width: 100%; border-radius: 32px; display: block; }
.showcase-cap { color: var(--slate); font-size: 14px; font-weight: 600; }

@media (max-width: 820px) {
  .hero { padding: 40px 0 8px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin: 0 auto; }
  .hero-copy .cta { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 440px; }
}

/* Sections */
section h2 { font-size: clamp(28px, 4vw, 38px); letter-spacing: -0.5px; font-weight: 800; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 34px; }
.section-head p { color: var(--slate); margin-top: 10px; font-size: 17px; }
.pad { padding: 56px 0; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 24px; background: linear-gradient(135deg, #fdf3e5, #f7e9d6); margin-bottom: 14px; }
.card h3 { font-size: 18px; margin-bottom: 6px; }
.card p { color: var(--slate); font-size: 15px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; counter-reset: step; }
.step { position: relative; padding-left: 6px; }
.step .n { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--amber); color: #fff; font-weight: 800; margin-bottom: 10px; }
.step h3 { font-size: 17px; margin-bottom: 4px; }
.step p { color: var(--slate); font-size: 15px; }

/* Trust band */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,0.5); }
.trust-in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 22px 20px; }
.trust .ti { display: flex; flex-direction: column; gap: 2px; }
.trust .ti b { font-size: 18px; font-weight: 800; letter-spacing: -0.4px; }
.trust .ti span { font-size: 13px; color: var(--slate); }

/* Feature spotlights */
.spotlights { display: flex; flex-direction: column; gap: 44px; }
.spot { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 44px; }
.spot.reverse .spot-txt { order: 2; }
.spot-txt .tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-dark); background: #fdf1e4; padding: 5px 11px; border-radius: 999px; margin-bottom: 12px; }
.spot-txt h2 { font-size: clamp(24px, 3.4vw, 33px); letter-spacing: -0.6px; margin-bottom: 12px; }
.spot-txt > p { color: var(--slate); font-size: 16px; margin-bottom: 16px; max-width: 46ch; }
.spot-img { display: flex; justify-content: center; }
.spot-img img { width: 100%; max-width: 460px; border-radius: 24px; background: linear-gradient(160deg, #fff6ea, #fdeccf); box-shadow: 0 24px 50px -20px rgba(63,45,29,0.28); }

.ticks { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ticks li { position: relative; padding-left: 28px; font-size: 15px; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--ok); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center/13px no-repeat, linear-gradient(#000,#000); mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5L20 7'/%3E%3C/svg%3E") center/13px no-repeat; }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 20px; justify-content: center; }
.price-card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; box-shadow: 0 10px 30px -20px rgba(63,45,29,0.4); }
.price-card.featured { border-color: var(--amber); box-shadow: 0 20px 50px -22px rgba(229,132,59,0.55); }
.price-card .pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--amber); color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 0.03em; padding: 5px 13px; border-radius: 999px; box-shadow: 0 8px 18px -6px rgba(229,132,59,0.6); }
.price-card h3 { font-size: 20px; }
.price-card .price { font-size: 44px; font-weight: 900; letter-spacing: -1.5px; margin: 6px 0 2px; }
.price-card .price span { font-size: 16px; font-weight: 700; color: var(--slate); letter-spacing: 0; }
.price-card .pc-sub { color: var(--slate); font-size: 14px; margin-bottom: 18px; }
.price-card .ticks { margin-bottom: 22px; }
.price-card .btn { margin-top: auto; }

/* Downloads */
.downloads { display: grid; grid-template-columns: repeat(2, minmax(0, 400px)); gap: 20px; justify-content: center; }
.dl-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; box-shadow: 0 10px 30px -20px rgba(63,45,29,0.4); display: flex; flex-direction: column; align-items: center; }
.dl-ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-size: 28px; background: linear-gradient(135deg, #fdf3e5, #f7e9d6); margin-bottom: 14px; }
.dl-card h3 { font-size: 19px; margin-bottom: 6px; }
.dl-card > p { color: var(--slate); font-size: 15px; margin-bottom: 18px; max-width: 34ch; }
.dl-btns { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: auto; }
.dl-soon { color: var(--slate); background: #f4ece0; border-color: transparent; cursor: default; }
.dl-soon:hover { transform: none; }
.dl-note { color: var(--slate); font-size: 13px; margin-top: 14px; max-width: 36ch; }

@media (max-width: 720px) { .downloads { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; } }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 4px 18px; transition: box-shadow .15s; }
.faq details[open] { box-shadow: 0 10px 30px -20px rgba(63,45,29,0.4); }
.faq summary { list-style: none; cursor: pointer; font-weight: 700; font-size: 16px; padding: 14px 28px 14px 0; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); font-size: 22px; font-weight: 400; color: var(--amber); transition: transform .2s; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--slate); font-size: 15px; padding: 0 0 16px; }

@media (max-width: 820px) {
  .trust-in { grid-template-columns: repeat(2, 1fr); }
  .spot { grid-template-columns: 1fr; gap: 22px; }
  .spot.reverse .spot-txt { order: 0; }
  .spot-img { order: -1; }
  .spot-txt > p, .ticks { margin-left: auto; margin-right: auto; }
  .pricing { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
}

/* Compliance strip */
.strip { background: var(--ink); color: #f4ede3; border-radius: 22px; padding: 40px; text-align: center; }
.strip h2 { color: #fff; }
.strip p { color: #cbbfb0; max-width: 640px; margin: 12px auto 0; }
.pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 22px; }
.pill { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 7px 15px; font-size: 14px; font-weight: 600; }

/* Custom-features band */
.buildfor { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--amber), var(--honey)); border-radius: 24px; padding: 54px 40px; text-align: center; color: #fff; box-shadow: 0 26px 60px -24px rgba(229,132,59,.65); }
.buildfor h2 { color: #fff; font-size: clamp(28px, 4.4vw, 42px); }
.buildfor p { color: rgba(255,255,255,.94); max-width: 620px; margin: 14px auto 0; font-size: 18px; line-height: 1.55; }
.bf-badge { display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px; background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.4); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.bf-btn { margin-top: 26px; background: #fff; color: var(--amber-dark); border-color: #fff; box-shadow: 0 12px 26px -8px rgba(0,0,0,.28); }
.bf-btn:hover { transform: translateY(-2px); }
.bf-note { display: block; margin-top: 15px; font-size: 14px; color: rgba(255,255,255,.88); }
.bf-glow { position: absolute; inset: 0; background: radial-gradient(620px 220px at 82% -12%, rgba(255,255,255,.4), transparent 62%); pointer-events: none; }

/* CTA final */
.final { text-align: center; }

footer { border-top: 1px solid var(--line); margin-top: 40px; }
.foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 26px 20px; }
.foot .links { display: flex; gap: 18px; margin-left: auto; }
.foot .links a { color: var(--slate); }
.foot .links a:hover { color: var(--ink); }

/* Legal pages */
.legal { max-width: 760px; margin: 0 auto; padding: 48px 20px 60px; }
.legal h1 { font-size: 34px; letter-spacing: -0.5px; margin-bottom: 6px; }
.legal .updated { color: var(--slate); margin-bottom: 28px; }
.legal h2 { font-size: 21px; margin: 28px 0 8px; }
.legal p, .legal li { color: #2f2a23; margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--amber-dark); text-decoration: underline; }
