/* Decidora.ai — mock site design system (forest-green shadcn theme) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg-base:#0b1e14; --bg-subtle:#0e2418; --bg-card:#12291d; --bg-card-hover:#173322; --bg-teal:#0a3341;
  --border:#394b41; --border-subtle:#28362f;
  --fg:#f3f6f3; --fg-muted:#9cb0a4; --fg-subtle:#6f8579;
  --accent:#9cb0a4; --accent-hover:#b3c5ba; --accent-fg:#0b1e14; --accent-2:#3e6270;
  --pain:#fb7185; --pain-soft:rgba(251,113,133,.10); --accent-soft:rgba(156,176,164,.13); --success:#34d399;
  --r-sm:8px; --r-md:12px; --r-lg:20px;
  --maxw:1200px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{background:var(--bg-base);color:var(--fg);font-family:'Inter',system-ui,sans-serif;-webkit-font-smoothing:antialiased;line-height:1.5}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px;width:100%}

/* Navbar */
.nav{position:sticky;top:0;z-index:50;background:rgba(11,30,20,.85);backdrop-filter:blur(12px);border-bottom:1px solid var(--border-subtle)}
.nav-inner{display:flex;align-items:center;justify-content:space-between;height:68px;max-width:var(--maxw);margin:0 auto;padding:0 24px}
.logo{display:flex;align-items:center;gap:10px;font-weight:700;font-size:19px;letter-spacing:-.3px}
.logo .mark{width:32px;height:32px;border-radius:9px;background:var(--accent);display:grid;place-items:center;color:var(--accent-fg)}
.logo .tld{color:var(--accent)}
.nav-links{display:flex;gap:32px;align-items:center}
.nav-links a{color:var(--fg-muted);font-size:15px;font-weight:500;transition:color .15s}
.nav-links a:hover,.nav-links a.active{color:var(--fg)}
.nav-actions{display:flex;gap:20px;align-items:center}
.nav-actions .signin{color:var(--fg);font-size:15px;font-weight:500}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:8px;border-radius:var(--r-sm);padding:13px 22px;font-size:15px;font-weight:600;cursor:pointer;border:1px solid transparent;transition:background .15s,border-color .15s,transform .05s;font-family:inherit}
.btn:active{transform:translateY(1px)}
.btn-primary{background:var(--accent);color:var(--accent-fg)}
.btn-primary:hover{background:var(--accent-hover)}
.btn-secondary{background:transparent;color:var(--fg);border-color:var(--border)}
.btn-secondary:hover{background:var(--bg-card);border-color:var(--fg-subtle)}
.btn-sm{padding:9px 16px;font-size:14px}

/* Sections */
.section{padding:100px 0}
.section.tight{padding:88px 0}
.section-subtle{background:var(--bg-subtle);border-top:1px solid var(--border-subtle);border-bottom:1px solid var(--border-subtle)}
.section-teal{background:var(--bg-teal);border-top:1px solid var(--border-subtle);border-bottom:1px solid var(--border-subtle)}
.center{text-align:center;display:flex;flex-direction:column;align-items:center}

/* Typography */
.eyebrow{display:inline-flex;align-items:center;gap:8px;border-radius:999px;padding:7px 14px;font-size:13px;font-weight:600}
.eyebrow.pain{background:var(--pain-soft);color:var(--pain)}
.eyebrow.accent{background:var(--accent-soft);color:var(--accent)}
.eyebrow .dot{font-size:9px;line-height:1}
.kicker{color:var(--accent);font-size:13px;font-weight:600;letter-spacing:1.2px;text-transform:uppercase}
h1,.h1{font-size:60px;font-weight:700;line-height:1.05;letter-spacing:-1.5px}
h2,.h2{font-size:42px;font-weight:700;line-height:1.1;letter-spacing:-1px}
.h2-sm{font-size:34px;font-weight:700;line-height:1.12;letter-spacing:-.8px}
h3,.h3{font-size:20px;font-weight:600;letter-spacing:-.3px}
.subcopy{color:var(--fg-muted);font-size:19px;line-height:1.55}
.muted{color:var(--fg-muted)}
.subtle{color:var(--fg-subtle)}
.maxw-hero{max-width:820px}
.maxw-680{max-width:680px}
.maxw-640{max-width:640px}

/* Hero */
.hero{padding:104px 0 72px}
.hero .stack{display:flex;flex-direction:column;align-items:center;gap:24px}
.btn-row{display:flex;gap:14px;align-items:center;flex-wrap:wrap;justify-content:center}
.reassure{display:flex;gap:8px;align-items:center;color:var(--fg-subtle);font-size:13px;font-weight:500}
.reassure .ok{color:var(--success);font-weight:700}
.showcase{width:100%;height:600px;border-radius:var(--r-lg);border:1px solid var(--border);object-fit:cover;margin-top:16px}
.showcase.h520{height:520px}
.showcase.h480{height:480px}
.showcase.h400{height:400px}

/* Grid + cards */
.grid{display:grid;gap:24px}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-2{grid-template-columns:1fr 1fr;align-items:center}
.card{background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--r-lg);padding:32px;display:flex;flex-direction:column;gap:14px}
.card p{color:var(--fg-muted);font-size:15px;line-height:1.55}
.chip{width:44px;height:44px;border-radius:var(--r-md);display:grid;place-items:center;flex:0 0 auto}
.chip.accent{background:var(--accent-soft);color:var(--accent)}
.chip.pain{background:var(--pain-soft);color:var(--pain)}
.icon{width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:2}
.icon-sm{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2.5}

/* Bullets */
.bullets{display:flex;flex-direction:column;gap:14px;margin-top:6px}
.bullet{display:flex;gap:12px;align-items:flex-start;font-size:16px;font-weight:500}
.bullet .tick{width:24px;height:24px;border-radius:999px;background:var(--accent-soft);color:var(--accent);display:grid;place-items:center;flex:0 0 auto}

/* Split */
.split{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.split .copy{display:flex;flex-direction:column;gap:22px}
.split img{width:100%;height:520px;object-fit:cover;border-radius:var(--r-lg);border:1px solid var(--border)}

/* Steps */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.step{background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--r-lg);padding:32px;display:flex;flex-direction:column;gap:14px}
.step .num{color:var(--accent);font-weight:700;letter-spacing:1px;font-size:15px}

/* Testimonials */
.quote{background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--r-lg);padding:30px;display:flex;flex-direction:column;gap:22px}
.quote .q{font-size:17px;font-weight:500;letter-spacing:-.2px;line-height:1.5}
.author{display:flex;gap:12px;align-items:center}
.avatar{width:44px;height:44px;border-radius:999px;object-fit:cover;border:1px solid var(--border)}
.avatar.lg{width:64px;height:64px}

/* Stats */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.stat{display:flex;flex-direction:column;gap:8px;align-items:center;text-align:center}
.stat .n{font-size:40px;font-weight:700;letter-spacing:-1.2px}
.stat .l{color:#c4d2c9;font-size:14px;line-height:1.4;max-width:190px}

/* CTA band */
.cta-band{position:relative;border-radius:var(--r-lg);border:1px solid var(--border);overflow:hidden;padding:80px 24px;text-align:center;display:flex;flex-direction:column;align-items:center;gap:20px}
.cta-band.teal{background:var(--bg-teal)}
.cta-band.image{background-size:cover;background-position:center}
.cta-band.image::before{content:"";position:absolute;inset:0;background:rgba(10,51,65,.93)}
.cta-band>*{position:relative;z-index:1}
.cta-band .csub{color:#dce6e0;font-size:18px;line-height:1.5;max-width:600px}

/* Pricing */
.tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:stretch}
.tier{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-lg);padding:32px;display:flex;flex-direction:column;gap:22px}
.tier.popular{background:var(--bg-card-hover);border:2px solid var(--accent)}
.tier .price{display:flex;align-items:flex-end;gap:8px}
.tier .price .amt{font-size:44px;font-weight:700;letter-spacing:-1.5px}
.tier .price .per{color:var(--fg-muted);font-size:14px;padding-bottom:8px}
.tier .badge{align-self:flex-start;background:var(--accent);color:var(--accent-fg);font-size:12px;font-weight:700;padding:4px 10px;border-radius:999px}
.feature-list{display:flex;flex-direction:column;gap:14px;border-top:1px solid var(--border-subtle);padding-top:16px}
.feature-list .fi{display:flex;gap:10px;align-items:flex-start;font-size:15px;color:var(--fg-muted)}
.feature-list .fi svg{color:var(--success);flex:0 0 auto;margin-top:2px}

/* FAQ / forms */
.faq{display:flex;flex-direction:column;gap:16px;max-width:820px;width:100%}
.faq .item{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-md);padding:24px}
.faq .item .q{font-size:17px;font-weight:600;margin-bottom:10px}
.faq .item .a{color:var(--fg-muted);font-size:15px;line-height:1.55}
.form{background:var(--bg-card);border:1px solid var(--border);border-radius:var(--r-lg);padding:36px;display:flex;flex-direction:column;gap:18px}
.field{display:flex;flex-direction:column;gap:7px}
.field label{font-size:13px;color:var(--fg-muted)}
.field input,.field textarea{background:var(--bg-subtle);border:1px solid var(--border);border-radius:var(--r-sm);padding:12px 14px;color:var(--fg);font-family:inherit;font-size:15px}
.field input::placeholder,.field textarea::placeholder{color:var(--fg-subtle)}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--accent)}

/* Footer */
.footer{background:var(--bg-subtle);border-top:1px solid var(--border-subtle);padding:56px 0 32px}
.footer-top{display:flex;justify-content:space-between;gap:48px;flex-wrap:wrap}
.footer .brand{max-width:300px;display:flex;flex-direction:column;gap:14px}
.footer .brand p{color:var(--fg-muted);font-size:14px;line-height:1.5}
.footer .cols{display:flex;gap:64px;flex-wrap:wrap}
.footer .col{display:flex;flex-direction:column;gap:14px}
.footer .col .head{color:var(--fg-subtle);font-size:13px;font-weight:600;letter-spacing:.4px}
.footer .col a{color:var(--fg-muted);font-size:14px;font-weight:500}
.footer .col a:hover{color:var(--fg)}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;border-top:1px solid var(--border-subtle);margin-top:48px;padding-top:24px;color:var(--fg-subtle);font-size:13px;flex-wrap:wrap;gap:12px}

.eyebrow-wrap{display:flex}
.section-head{display:flex;flex-direction:column;align-items:center;gap:16px;text-align:center}
.mt-lg{margin-top:8px}

@media(max-width:1000px){
  h1,.h1{font-size:44px}
  h2,.h2{font-size:34px}
  .grid-3,.grid-4,.steps,.tiers,.stats{grid-template-columns:1fr 1fr}
  .split,.grid-2{grid-template-columns:1fr}
  .split img{height:360px}
  .showcase{height:400px}
  .nav-links{display:none}
}
@media(max-width:620px){
  .grid-3,.grid-4,.steps,.tiers,.stats{grid-template-columns:1fr}
  h1,.h1{font-size:36px}
  .footer-top{flex-direction:column}
}
