/* ============================================================
   ShiftBud — full landing page (Direction C aesthetic)
   Dark editorial hero + warm-paper body, forest-green accents.
   Builds on shiftbud.css + landing.css primitives.
   ============================================================ */

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); }
.page { overflow: hidden; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }

/* ---- scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   Sticky nav
   ============================================================ */
.lnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px 40px; transition: background .3s, box-shadow .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.lnav .nav-mid { display: flex; align-items: center; gap: 30px; }
.lnav .nav-link { font-size: 14.5px; font-weight: 600; color: #b9d2c2; text-decoration: none; transition: color .15s; }
.lnav .nav-link:hover { color: #fff; }
.lnav .nav-right { display: flex; align-items: center; gap: 12px; }
.lnav .btn-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #dceadf; }
.lnav .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-light { background: var(--green-light); color: var(--green-deep); }
.btn-light:hover { background: #6fcf9e; transform: translateY(-1px); box-shadow: var(--shadow); }
/* scrolled state — solid paper, dark text */
.lnav.scrolled {
  background: rgba(243,241,234,.86); backdrop-filter: blur(12px) saturate(1.4);
  border-bottom-color: var(--border); box-shadow: 0 1px 0 rgba(31,40,30,.04); padding: 12px 40px;
}
.lnav.scrolled .brand-word { color: var(--green-deep); }
.lnav.scrolled .nav-link { color: var(--ink-2); }
.lnav.scrolled .nav-link:hover { color: var(--green-deep); }
.lnav.scrolled .btn-ghost { background: var(--surface); border-color: var(--border-2); color: var(--ink-2); }
.lnav.scrolled .btn-ghost:hover { background: var(--surface-2); color: var(--ink); }

/* ============================================================
   Hero (dark)
   ============================================================ */
.hero { position: relative; background: #14271d; color: #eaf1ec; overflow: hidden; padding: 150px 0 60px; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(720px 540px at 80% 4%, rgba(82,183,136,.26), transparent 60%),
    radial-gradient(640px 600px at 4% 104%, rgba(82,183,136,.12), transparent 55%);
}
.hero-grid {
  position: absolute; top: -16%; right: -8%; width: 56%; bottom: -16%;
  display: grid; grid-template-columns: repeat(7, 1fr); grid-auto-rows: 1fr; gap: 9px;
  transform: rotate(-13deg); opacity: .5;
}
.hero-cell { border-radius: 7px; background: rgba(255,255,255,.045); }
.hero-cell.g1 { background: rgba(82,183,136,.5); }
.hero-cell.g2 { background: rgba(82,183,136,.28); }
.hero-cell.g3 { background: rgba(82,183,136,.16); }
.hero-cell.g4 { background: rgba(224,141,16,.32); }

.hero-inner { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.hero-eyebrow {
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--green-light);
  display: inline-flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--green-light); }
.hero-h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 84px; line-height: .98; letter-spacing: -.04em;
  color: #fff; margin: 26px 0 0; max-width: 14ch;
}
.hero-h1 .accent { color: var(--green-light); }
.hero-sub { font-size: 20px; line-height: 1.5; color: #b9d2c2; max-width: 33em; margin: 24px 0 0; }
.hero-cta { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 14px; font-family: var(--font-mono); font-size: 12px; color: #8fb19c; margin-top: 22px; }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: #5d7d6a; }
.hero-trust b { color: #cfe1d6; font-weight: 600; }

.hero-facts {
  position: relative; z-index: 2; max-width: 1160px; margin: 64px auto 0; padding: 0 40px;
}
.hero-facts-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px;
}
.hero-fact { padding-right: 30px; }
.hero-fact + .hero-fact { border-left: 1px solid rgba(255,255,255,.1); padding-left: 30px; }
.hero-fact-n { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green-light); }
.hero-fact-t { font-size: 15px; line-height: 1.45; color: #cfe1d6; margin-top: 10px; }
.hero-fact-t b { color: #fff; font-weight: 700; }

/* ============================================================
   Section scaffolding
   ============================================================ */
.sec { padding: 96px 0; }
.sec.tight { padding: 72px 0; }
.sec.dark { background: var(--green-deep); color: #eaf1ec; }
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-eyebrow {
  font-family: var(--font-mono); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--green);
}
.sec.dark .sec-eyebrow { color: var(--green-light); }
.sec-title {
  font-family: var(--font-display); font-weight: 800; font-size: 44px;
  line-height: 1.04; letter-spacing: -.03em; color: var(--ink); margin-top: 14px; text-wrap: balance;
}
.sec.dark .sec-title { color: #fff; }
.sec-lead { font-size: 18.5px; line-height: 1.55; color: var(--ink-2); margin-top: 16px; text-wrap: pretty; }
.sec.dark .sec-lead { color: #b9d2c2; }

/* ============================================================
   Problem
   ============================================================ */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.prob-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.prob-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--terra-bg); color: var(--terra); display: grid; place-items: center; margin-bottom: 16px; }
.prob-ico svg { width: 23px; height: 23px; }
.prob-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.prob-card p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin-top: 9px; }

/* ============================================================
   How it works — steps
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; counter-reset: step; }
.step { position: relative; }
.step-num {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--green);
  width: 42px; height: 42px; border-radius: 12px; background: var(--green-mist);
  display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { font-size: 19px; font-weight: 700; letter-spacing: -.01em; }
.step p { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); margin-top: 9px; max-width: 30ch; }
.step-line { position: absolute; top: 21px; left: 56px; right: -14px; height: 1.5px; background: repeating-linear-gradient(90deg, var(--border-2) 0 6px, transparent 6px 12px); }
.step:last-child .step-line { display: none; }

/* ============================================================
   Dashboard preview
   ============================================================ */
.dashwrap { margin-top: 52px; display: flex; justify-content: center; }
.browser {
  width: 100%; max-width: 1120px; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-2); box-shadow: var(--shadow-lg); background: var(--surface);
}
.browser-bar { display: flex; align-items: center; gap: 14px; padding: 12px 16px; background: var(--surface-2); border-bottom: 1px solid var(--border); }
.browser-dots { display: flex; gap: 7px; }
.browser-dots i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.browser-url {
  flex: 1; max-width: 360px; margin: 0 auto; text-align: center;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px;
  display: flex; align-items: center; justify-content: center; gap: 7px;
}
.browser-url svg { width: 11px; height: 11px; color: var(--green); }
.browser-view { position: relative; width: 100%; height: 638px; overflow: hidden; }
.browser-view iframe {
  position: absolute; top: 0; left: 0; width: 1280px; height: 760px;
  border: 0; transform: scale(.84); transform-origin: top left;
}

/* ============================================================
   Features
   ============================================================ */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.feat-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: border-color .16s, box-shadow .16s, transform .16s;
}
.feat-card:hover { border-color: var(--green-light); box-shadow: var(--shadow); transform: translateY(-3px); }
.feat-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--green-mist); color: var(--green-deep); display: grid; place-items: center; margin-bottom: 16px; }
.feat-ico svg { width: 23px; height: 23px; }
.feat-card h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -.01em; }
.feat-card p { font-size: 14px; line-height: 1.55; color: var(--ink-2); margin-top: 8px; }
.feat-tag { display: inline-block; margin-top: 14px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--green); background: var(--green-mist); padding: 4px 9px; border-radius: 20px; }

/* ============================================================
   Stat band (dark)
   ============================================================ */
.statband { background: #14271d; color: #fff; padding: 84px 0; position: relative; overflow: hidden; }
.statband .hero-glow { opacity: .8; }
.statband-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.statband-big { font-family: var(--font-display); font-weight: 800; font-size: 76px; line-height: .98; letter-spacing: -.04em; color: #fff; }
.statband-big .accent { color: var(--green-light); }
.statband-sub { font-size: 19px; line-height: 1.55; color: #b9d2c2; }
.statband-list { display: flex; flex-direction: column; gap: 16px; }
.statband-li { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; line-height: 1.45; color: #dceadf; }
.statband-li svg { width: 22px; height: 22px; color: var(--green-light); flex: none; margin-top: 1px; }
.statband-li b { color: #fff; font-weight: 700; }

/* ============================================================
   Pricing
   ============================================================ */
.price-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--green-deep); background: var(--green-mist); border-radius: 20px; padding: 8px 15px; }
.price-note svg { width: 15px; height: 15px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; align-items: stretch; }
.price-card {
  position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-sm);
}
.price-card.hl { border-color: var(--green); box-shadow: 0 0 0 1.5px var(--green), var(--shadow); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .03em; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.price-name { font-size: 16px; font-weight: 700; }
.price-amt { display: flex; align-items: baseline; gap: 4px; margin-top: 2px; }
.price-amt .v { font-family: var(--font-display); font-size: 44px; font-weight: 800; color: var(--green-deep); letter-spacing: -.02em; line-height: 1; }
.price-amt .per { font-size: 14px; color: var(--muted); font-weight: 500; }
.price-cap { font-size: 13.5px; color: var(--ink-2); padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; padding-top: 4px; }
.price-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: 14px; color: var(--ink-2); line-height: 1.4; }
.price-feats li svg { width: 16px; height: 16px; color: var(--green); flex: none; margin-top: 2px; }
.price-feats li.off { color: var(--faint); }
.price-feats li.off svg { color: var(--faint); }
.price-card .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 760px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px; background: none; border: none; text-align: left;
  font-family: inherit; font-size: 17.5px; font-weight: 700; color: var(--ink); letter-spacing: -.01em;
}
.faq-q .chev { width: 22px; height: 22px; flex: none; color: var(--green); transition: transform .25s; }
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 4px 22px; font-size: 15.5px; line-height: 1.6; color: var(--ink-2); max-width: 64ch; }

/* ============================================================
   Cover broadcast band
   ============================================================ */
.cover-inner { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: center; }
.cover-list { display: flex; flex-direction: column; gap: 15px; margin-top: 26px; }
.cover-li { display: flex; align-items: flex-start; gap: 13px; font-size: 15.5px; line-height: 1.45; color: var(--ink-2); }
.cover-li svg { width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 1px; }
.cover-li b { color: var(--ink); font-weight: 700; }
.cover-phone { display: flex; justify-content: center; position: relative; }
.cover-badge {
  position: absolute; top: 24px; left: -14px; z-index: 7;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 10px 13px;
}
.cover-badge .ico { width: 30px; height: 30px; border-radius: 9px; flex: none; background: var(--green-mist); color: var(--green-deep); display: grid; place-items: center; }
.cover-badge .ico svg { width: 16px; height: 16px; }
.cover-badge .lab { font-family: var(--font-mono); font-size: 9.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.cover-badge .big { font-family: var(--font-display); font-size: 14px; font-weight: 700; line-height: 1; color: var(--ink); margin-top: 2px; }
.wb .sender { display: block; font-size: 10.5px; font-weight: 700; color: var(--green); margin-bottom: 2px; }
/* taller screen + tighter spacing so all 8 broadcast bubbles fit (no clip, no scrollbar) */
.cover-phone .phone-scr { height: 748px; }
.cover-phone .wa-body { gap: 7px; padding: 14px 13px; }

/* ============================================================
   Final CTA (dark) + footer
   ============================================================ */
.cta-final { background: #14271d; color: #fff; padding: 110px 0; position: relative; overflow: hidden; text-align: center; }
.cta-final-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 40px; }
.cta-final h2 { font-family: var(--font-display); font-weight: 800; font-size: 62px; line-height: 1; letter-spacing: -.04em; color: #fff; text-wrap: balance; }
.cta-final p { font-size: 19px; color: #b9d2c2; margin-top: 18px; }
.cta-final .hero-cta { justify-content: center; margin-top: 32px; }
.cta-final .hero-trust { justify-content: center; }

.foot { background: var(--green-deep); color: #9dc3ad; padding: 56px 0 40px; border-top: 1px solid rgba(255,255,255,.08); }
.foot-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand .brand-word { color: #fff; }
.foot-tag { font-size: 13.5px; line-height: 1.55; color: #9dc3ad; margin-top: 14px; max-width: 28ch; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #6f947e; margin-bottom: 14px; }
.foot-col a { display: block; font-size: 14px; color: #cfe1d6; text-decoration: none; padding: 5px 0; transition: color .15s; }
.foot-col a:hover { color: #fff; }
.foot-bot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12.5px; color: #6f947e; }
.foot-bot .mono { font-family: var(--font-mono); }

/* ---- Made in Germany ---- */
.flag-de { display: inline-block; width: 19px; height: 13px; border-radius: 2.5px; overflow: hidden; flex: none; box-shadow: 0 0 0 1px rgba(0,0,0,.12); vertical-align: -2px; }
.flag-de i { display: block; height: 33.333%; }
.flag-de i:nth-child(1) { background: #1a1a1a; }
.flag-de i:nth-child(2) { background: #d7141a; }
.flag-de i:nth-child(3) { background: #ffce00; }
.made-de { display: inline-flex; align-items: center; gap: 8px; }
/* footer variant */
.foot-made { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; color: #cfe1d6; }
/* hero trust variant inherits hero-trust color */
.hero-trust .made-de b { color: #cfe1d6; }
