/* =========================================================
   DeltaServe360 — Editorial Design System (v2 full redesign)
   Warm "kitchen editorial" aesthetic: cream canvas, espresso
   dark sections, vibrant orange + fresh green from the logo.
   Display serif (Fraunces) + grotesque labels (Space Grotesk)
   + Inter body. Grain, blobs, bento, marquee, motion.
   ========================================================= */

:root {
  /* Warm brand palette (from logo) */
  --cream:    #FBF7F0;
  --cream-2:  #F3ECE0;
  --paper:    #FFFFFF;

  --ink:      #1E1813;   /* warm near-black text */
  --ink-soft: #5C5247;
  --charcoal: #17110C;   /* dark sections */
  --espresso: #211810;

  --orange:   #FF5A1F;
  --orange-2: #FF8A3D;
  --amber:    #FFB02E;
  --green:    #1F8A53;
  --green-2:  #2FB06A;
  --red:      #E23A2E;

  --line:     #E7DCCB;
  --line-2:   #EFE7D9;

  /* effects */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
  --r-xl: 36px;
  --pill: 999px;

  --sh-1: 0 2px 10px rgba(40,28,16,.06);
  --sh-2: 0 18px 44px rgba(40,28,16,.12);
  --sh-3: 0 34px 80px rgba(30,20,10,.20);
  --sh-orange: 0 16px 36px rgba(255,90,31,.32);

  --grad-flame: linear-gradient(120deg,#FFB02E 0%,#FF7A1F 45%,#FF4D17 100%);
  --grad-leaf:  linear-gradient(120deg,#2FB06A 0%,#1F8A53 100%);
  --grad-dark:  linear-gradient(165deg,#241B12 0%,#15100A 100%);

  --container: 1200px;
  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-grotesk: "Space Grotesk", "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
/* grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 110px 0; position: relative; }
.section-sm { padding: 70px 0; }
.center { text-align: center; }
.dark { background: var(--grad-dark); color: var(--cream); }
.cream-2 { background: var(--cream-2); }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--ff-grotesk);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--orange); display: inline-block; }
.center .eyebrow { justify-content: center; }

h1,h2,h3 { font-family: var(--ff-display); font-weight: 600; letter-spacing: -.02em; line-height: 1.04; color: var(--ink); }
.dark h1,.dark h2,.dark h3 { color: var(--cream); }
.display {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(40px, 6.6vw, 88px);
  line-height: .98;
  letter-spacing: -.025em;
}
.display .it { font-style: italic; font-weight: 500; }
.fx-flame {
  background: var(--grad-flame);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.fx-leaf {
  background: var(--grad-leaf);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-title { font-size: clamp(32px, 4.6vw, 58px); }
.section-sub { margin-top: 20px; font-size: 19px; color: var(--ink-soft); max-width: 620px; }
.dark .section-sub { color: rgba(251,247,240,.72); }
.center .section-sub { margin-inline: auto; }
.lead { font-size: 20px; color: var(--ink-soft); }

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-grotesk);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .2px;
  padding: 15px 26px;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
  white-space: nowrap;
}
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.btn-flame { background: var(--grad-flame); color: #fff; box-shadow: var(--sh-orange); }
.btn-flame:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(255,90,31,.42); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-3px); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { transform: translateY(-3px); box-shadow: var(--sh-2); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(251,247,240,.35); }
.btn-ghost:hover { background: rgba(251,247,240,.1); border-color: var(--cream); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

/* ============== Floating pill header ============== */
.site-header {
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  z-index: 1000;
  pointer-events: none;
}
.site-header .container { display: flex; justify-content: center; }
.nav {
  pointer-events: auto;
  width: 100%;
  max-width: var(--container);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 20px;
  background: rgba(251,247,240,.72);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid var(--line);
  border-radius: var(--pill);
  box-shadow: var(--sh-1);
  transition: box-shadow .3s var(--ease), background .3s, transform .3s var(--ease);
}
.site-header.scrolled .nav { box-shadow: var(--sh-2); background: rgba(251,247,240,.9); }
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--ff-grotesk);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: var(--pill);
  transition: background .2s, color .2s;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,90,31,.1); color: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-actions .btn { padding: 11px 20px; font-size: 14px; }
.link-login {
  font-family: var(--ff-grotesk);
  font-weight: 600;
  font-size: 14.5px;
  padding: 11px 8px;
  color: var(--ink);
  transition: color .2s;
}
.link-login:hover { color: var(--orange); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 44px; height: 44px; border-radius: var(--pill); align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; display:block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle span::before { position: absolute; transform: translateY(-6px); }
.nav-toggle span::after { position: absolute; transform: translateY(6px); }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { transform: rotate(45deg); }
.nav.open .nav-toggle span::after { transform: rotate(-45deg); }

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: 132px 0 100px;
  overflow: hidden;
}
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; z-index: 0; animation: float 14s ease-in-out infinite; }
.blob.b1 { width: 520px; height: 520px; background: radial-gradient(circle,#FF7A1F,transparent 65%); top: -120px; right: -120px; }
.blob.b2 { width: 460px; height: 460px; background: radial-gradient(circle,#2FB06A,transparent 65%); bottom: -160px; left: -140px; animation-delay: -5s; }
.blob.b3 { width: 340px; height: 340px; background: radial-gradient(circle,#FFB02E,transparent 65%); top: 40%; left: 42%; opacity: .35; animation-delay: -9s; }
@keyframes float { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(28px,-26px) scale(1.06);} 66%{transform:translate(-22px,18px) scale(.96);} }

.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 60px; align-items: center; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-grotesk); font-size: 13px; font-weight: 600; letter-spacing: .4px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: var(--pill); box-shadow: var(--sh-1);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-2); box-shadow: 0 0 0 4px rgba(47,176,106,.22); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{box-shadow:0 0 0 4px rgba(47,176,106,.22);} 50%{box-shadow:0 0 0 8px rgba(47,176,106,0);} }

.hero h1 { margin-top: 0; }
.hero p.lead { margin-top: 26px; max-width: 540px; }
.hero-cta { display: flex; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; display: flex; align-items: center; gap: 10px; font-family: var(--ff-grotesk); font-size: 13.5px; color: var(--ink-soft); }
.hero-note b { color: var(--green); }

/* hero visual: bento dashboard */
.hero-visual { position: relative; }
.glass {
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-3);
  padding: 22px;
}
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-head .t { font-family: var(--ff-grotesk); font-weight: 600; font-size: 13px; letter-spacing: .5px; color: var(--ink-soft); }
.dash-head .live { font-family: var(--ff-grotesk); font-size: 11px; font-weight: 600; color: var(--green); display:flex; align-items:center; gap:6px; }
.dash-head .live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); display:inline-block; animation: pulse 2s infinite; }
.dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.ds { background: var(--cream); border: 1px solid var(--line-2); border-radius: var(--r-sm); padding: 14px; }
.ds .k { font-family: var(--ff-grotesk); font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: var(--ink-soft); }
.ds .v { font-family: var(--ff-display); font-weight: 600; font-size: 28px; margin-top: 4px; }
.ds .v small { font-size: 13px; color: var(--green); font-family: var(--ff-grotesk); font-weight: 600; }
.ds.flame { background: var(--grad-flame); border-color: transparent; color:#fff; }
.ds.flame .k { color: rgba(255,255,255,.85); }
.dash-chart { height: 120px; display: flex; align-items: flex-end; gap: 7px; padding: 12px; background: var(--cream); border: 1px solid var(--line-2); border-radius: var(--r-sm); }
.dash-chart span { flex: 1; background: var(--grad-flame); border-radius: 6px 6px 3px 3px; opacity: .92; transform-origin: bottom; animation: grow .9s var(--ease) both; }
@keyframes grow { from { transform: scaleY(0); } }

/* floating chips */
.chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--pill); padding: 10px 16px;
  box-shadow: var(--sh-2); z-index: 3;
  font-family: var(--ff-grotesk); font-size: 13px; font-weight: 600;
  animation: bob 5s ease-in-out infinite;
}
.chip .ic { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-size: 14px; }
.chip.c1 { top: 6%; left: -34px; } .chip.c1 .ic { background: rgba(255,90,31,.14); }
.chip.c2 { bottom: 14%; right: -30px; animation-delay: -2.5s; } .chip.c2 .ic { background: rgba(47,176,106,.16); }
@keyframes bob { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-12px);} }

/* ============== Marquee ticker ============== */
.marquee { background: var(--ink); color: var(--cream); overflow: hidden; padding: 16px 0; border-block: 1px solid rgba(255,255,255,.08); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: slide 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--ff-display); font-style: italic; font-size: 22px; padding: 0 30px; display: inline-flex; align-items: center; gap: 30px; opacity: .92; }
.marquee-track span::after { content: "✦"; color: var(--orange); font-style: normal; font-size: 14px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============== Bento features ============== */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 18px;
  margin-top: 56px;
}
.cell {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.cell:hover { transform: translateY(-6px); box-shadow: var(--sh-2); border-color: transparent; }
.cell .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 26px; margin-bottom: 18px; background: var(--cream-2); }
.cell h3 { font-size: 23px; margin-bottom: 8px; }
.cell p { color: var(--ink-soft); font-size: 15px; }
.cell.span-2 { grid-column: span 2; }
.cell.row-2 { grid-row: span 2; }
.cell.feature-hero { grid-column: span 2; grid-row: span 2; background: var(--grad-dark); color: var(--cream); display: flex; flex-direction: column; justify-content: space-between; }
.cell.feature-hero h3 { color: var(--cream); font-size: clamp(26px,3vw,40px); }
.cell.feature-hero p { color: rgba(251,247,240,.74); font-size: 16px; }
.cell.feature-hero .ic { background: var(--grad-flame); }
.cell.feature-hero .mini-chart { display:flex; align-items:flex-end; gap:6px; height: 90px; margin-top: 22px; }
.cell.feature-hero .mini-chart span { flex:1; background: rgba(255,255,255,.18); border-radius: 5px 5px 0 0; }
.cell.feature-hero .mini-chart span.hi { background: var(--grad-flame); }
.cell.leaf .ic { background: rgba(47,176,106,.16); }
.cell.flame .ic { background: rgba(255,90,31,.14); }
.cell-tag { font-family: var(--ff-grotesk); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }

/* ============== Split / story sections ============== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .media { order: -1; }
.split h2 { font-size: clamp(30px,3.8vw,46px); }
.split .body { margin-top: 18px; font-size: 18px; color: var(--ink-soft); }
.dark .split .body { color: rgba(251,247,240,.74); }
.checks { margin-top: 26px; display: grid; gap: 14px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; }
.checks .ci { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--grad-leaf); color:#fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; }

.media { position: relative; }
.stack { display: grid; gap: 14px; }
.tile {
  display: flex; align-items: center; gap: 16px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px 20px;
  box-shadow: var(--sh-1);
  transition: transform .3s var(--ease);
}
.dark .tile { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); color: var(--cream); box-shadow: none; }
.tile:hover { transform: translateX(6px); }
.tile .ic { flex: none; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; font-size: 20px; background: var(--grad-flame); color:#fff; }
.tile .tx b { display: block; font-family: var(--ff-grotesk); font-size: 15px; }
.tile .tx span { font-size: 13.5px; color: var(--ink-soft); }
.dark .tile .tx span { color: rgba(251,247,240,.64); }

/* dark dashboard cards inside media */
.kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.kpi { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); padding: 20px; }
.kpi .k { font-family: var(--ff-grotesk); font-size: 12px; letter-spacing: .5px; color: rgba(251,247,240,.6); text-transform: uppercase; }
.kpi .v { font-family: var(--ff-display); font-size: 32px; margin-top: 6px; }
.kpi .v.up { color: var(--green-2); } .kpi .v.or { color: var(--orange-2); }

/* ============== Steps / funnel ============== */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 60px; position: relative; }
.steps::before { content:""; position:absolute; top: 42px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg,var(--line) 0 10px, transparent 10px 20px); z-index:0; }
.step { position: relative; z-index: 1; text-align: center; }
.step .num {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--paper); border: 2px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--ff-display); font-size: 26px; font-weight: 600;
  box-shadow: var(--sh-1); transition: transform .3s var(--ease), border-color .3s, color .3s;
}
.step:hover .num { transform: translateY(-5px); border-color: var(--orange); color: var(--orange); }
.step h4 { font-family: var(--ff-display); font-size: 21px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--ink-soft); }

/* ============== Stats band ============== */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat-big { text-align: center; }
.stat-big .n { font-family: var(--ff-display); font-size: clamp(44px,6vw,72px); line-height: 1; background: var(--grad-flame); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-big .l { margin-top: 10px; font-family: var(--ff-grotesk); font-size: 14px; letter-spacing: .5px; color: var(--ink-soft); }
.dark .stat-big .l { color: rgba(251,247,240,.66); }

/* ============== Pricing ============== */
.pricing-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 60px; align-items: stretch; }
.price {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.price:hover { transform: translateY(-8px); box-shadow: var(--sh-2); }
.price.feat { background: var(--grad-dark); color: var(--cream); border-color: transparent; box-shadow: var(--sh-3); position: relative; }
.price.feat h3, .price.feat .amt { color: var(--cream); }
.badge-pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad-flame); color:#fff; font-family: var(--ff-grotesk); font-size: 11.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 7px 16px; border-radius: var(--pill); white-space: nowrap; }
.price h3 { font-size: 24px; }
.price .ptag { font-family: var(--ff-grotesk); font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.price.feat .ptag { color: rgba(251,247,240,.66); }
.amt { font-family: var(--ff-display); font-size: 50px; margin: 20px 0 4px; }
.amt small { font-family: var(--ff-grotesk); font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.price.feat .amt small { color: rgba(251,247,240,.66); }
.pfeat { margin: 22px 0; display: grid; gap: 13px; }
.pfeat li { font-size: 14.5px; display: flex; gap: 11px; align-items: flex-start; }
.pfeat li::before { content:"✓"; color: var(--green); font-weight: 800; }
.price.feat .pfeat li::before { color: var(--green-2); }
.price .btn { margin-top: auto; }

/* ============== Testimonials ============== */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.quote { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.quote:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.quote .mark { font-family: var(--ff-display); font-size: 60px; line-height: .4; color: var(--orange); height: 30px; }
.quote p { font-family: var(--ff-display); font-size: 19px; line-height: 1.45; color: var(--ink); }
.q-author { margin-top: 22px; display: flex; align-items: center; gap: 13px; }
.q-author .av { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-flame); color:#fff; display: grid; place-items: center; font-family: var(--ff-grotesk); font-weight: 700; }
.q-author b { display: block; font-family: var(--ff-grotesk); font-size: 14.5px; }
.q-author span { font-size: 13px; color: var(--ink-soft); }
.stars { color: var(--amber); letter-spacing: 3px; margin-bottom: 14px; }

/* ============== Redesigned CTA (editorial) ============== */
.cta-edit {
  position: relative;
  background: var(--grad-dark);
  color: var(--cream);
  border-radius: var(--r-xl);
  padding: 80px 56px;
  overflow: hidden;
  text-align: center;
}
.cta-edit .blob { opacity: .4; }
.cta-edit .blob.b1 { top: -160px; right: -120px; }
.cta-edit .blob.b2 { bottom: -200px; left: -120px; }
.cta-edit .inner { position: relative; z-index: 2; }
.cta-edit .eyebrow { color: var(--amber); justify-content: center; }
.cta-edit .eyebrow::before { background: var(--amber); }
.cta-edit h2 { font-size: clamp(32px,5vw,64px); margin: 18px 0 0; }
.cta-edit p { max-width: 640px; margin: 20px auto 34px; font-size: 19px; color: rgba(251,247,240,.76); }
.cta-edit .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============== Footer ============== */
.site-footer { background: var(--charcoal); color: rgba(251,247,240,.7); padding: 80px 0 32px; position: relative; overflow: hidden; }
.foot-cta { text-align: center; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 50px; }
.foot-cta .big { font-family: var(--ff-display); font-size: clamp(34px,6vw,76px); line-height: 1; color: var(--cream); letter-spacing: -.02em; }
.foot-cta .big .it { font-style: italic; color: var(--orange-2); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 40px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14.5px; max-width: 300px; }
.footer-col h5 { color: var(--cream); font-family: var(--ff-grotesk); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; padding: 7px 0; color: rgba(251,247,240,.62); transition: color .2s; }
.footer-col a:hover { color: var(--orange-2); }
.footer-bottom { margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: 13px; font-family: var(--ff-grotesk); }
.foot-brandname { font-family: var(--ff-display); font-style: italic; font-size: 20px; color: var(--orange-2); letter-spacing: .2px; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: .2s; }
.footer-socials a:hover { background: var(--orange); color:#fff; transform: translateY(-3px); }

/* ============== Page hero (inner) ============== */
.page-hero { position: relative; padding: 200px 0 90px; overflow: hidden; text-align: center; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(40px,6vw,82px); }
.page-hero p { margin: 22px auto 0; max-width: 660px; font-size: 19px; color: var(--ink-soft); }
.page-hero .btn-row { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============== Resources ============== */
.res-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.res { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.res:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.res .thumb { height: 170px; display: grid; place-items: center; font-size: 46px; background: var(--grad-dark); }
.res:nth-child(3n+2) .thumb { background: var(--grad-flame); }
.res:nth-child(3n) .thumb { background: var(--grad-leaf); }
.res .body { padding: 26px; }
.res .tag { font-family: var(--ff-grotesk); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); }
.res h3 { font-size: 22px; margin: 10px 0; }
.res p { font-size: 14.5px; color: var(--ink-soft); }
.res .more { display: inline-flex; gap: 6px; margin-top: 14px; font-family: var(--ff-grotesk); font-weight: 600; font-size: 14px; color: var(--ink); }

/* ============== FAQ ============== */
.faq { max-width: 840px; margin: 56px auto 0; display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r); background: var(--paper); overflow: hidden; transition: border-color .25s; }
.faq-item.open { border-color: var(--orange); }
.faq-q { width: 100%; text-align: left; background: none; border: none; font-family: var(--ff-display); font-size: 19px; color: var(--ink); padding: 22px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .ic { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cream-2); color: var(--orange); display: grid; place-items: center; font-size: 20px; transition: transform .3s var(--ease), background .3s; }
.faq-item.open .faq-q .ic { transform: rotate(135deg); background: var(--grad-flame); color:#fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15.5px; }

/* ============== Auth & contact ============== */
.auth-wrap { min-height: 100vh; display: grid; grid-template-columns: 1.05fr 1fr; }
.auth-side {
  position: relative; overflow: hidden;
  background: var(--grad-dark); color: var(--cream);
  padding: 120px 64px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.auth-side .blob { opacity: .4; }
.auth-side .inner { position: relative; z-index: 2; max-width: 460px; }
.auth-side .brand-mini img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 30px; }
.auth-side h2 { font-size: clamp(30px,3.4vw,46px); color: #fff !important; }
.auth-side h2 .it { font-style: italic; color: var(--orange-2) !important; }
.auth-side h2 .it-plain { color: #fff; font-style: normal; }
.auth-side p { margin-top: 18px; font-size: 18px; color: rgba(251,247,240,.85); }
.auth-side .bullets li { color: rgba(251,247,240,.92); }
.auth-side .bullets .ci { flex: none; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; font-weight: 700; }

.auth-form-side { display: flex; align-items: center; justify-content: center; padding: 120px 30px 60px; background: var(--cream); position: relative; }
.auth-card { width: 100%; max-width: 460px; }
.auth-card .logo-mini { height: 36px; margin-bottom: 26px; }
.auth-card h1 { font-size: 38px; }
.auth-card .sub { color: var(--ink-soft); margin: 8px 0 28px; font-size: 16px; }

.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--ff-grotesk); font-size: 13px; font-weight: 600; letter-spacing: .3px; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: 15px;
  padding: 14px 16px; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); background: var(--paper); color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,90,31,.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.segment { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; background: var(--cream-2); padding: 5px; border-radius: var(--pill); margin-bottom: 24px; }
.segment label { cursor: pointer; }
.segment input { position: absolute; opacity: 0; }
.segment .seg-btn { display: block; text-align: center; padding: 12px; border-radius: var(--pill); font-family: var(--ff-grotesk); font-size: 14px; font-weight: 600; color: var(--ink-soft); transition: .2s; }
.segment input:checked + .seg-btn { background: var(--ink); color: var(--cream); box-shadow: var(--sh-1); }

.row-between { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; font-family: var(--ff-grotesk); font-size: 13.5px; }
.row-between a { color: var(--orange); font-weight: 600; }
.checkbox { display: flex; align-items: center; gap: 8px; color: var(--ink-soft); }

.auth-alt { text-align: center; margin-top: 24px; font-family: var(--ff-grotesk); font-size: 14px; color: var(--ink-soft); }
.auth-alt a { color: var(--orange); font-weight: 700; }

/* alerts */
.alert { border-radius: var(--r-sm); padding: 15px 18px; font-size: 14.5px; margin-bottom: 22px; display: none; align-items: flex-start; gap: 10px; }
.alert.show { display: flex; animation: pop .3s var(--ease); }
@keyframes pop { from { opacity:0; transform: translateY(-6px);} }
.alert-error { background: rgba(226,58,46,.1); color: #a3271d; border: 1px solid rgba(226,58,46,.25); }
.alert-success { background: rgba(31,138,83,.1); color: #156b40; border: 1px solid rgba(31,138,83,.25); }
.alert b { display: block; margin-bottom: 2px; }

/* button spinner */
.btn .spinner { width: 16px; height: 16px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.btn-outline .spinner { border-color: rgba(30,24,19,.35); border-top-color: var(--ink); }
.btn.loading .spinner { display: inline-block; }
.btn.loading .arr { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* contact split */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-info .item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info .item .ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--grad-flame); color:#fff; display: grid; place-items: center; font-size: 20px; }
.contact-info .item b { display: block; font-family: var(--ff-grotesk); font-size: 15px; }
.contact-info .item span { color: var(--ink-soft); font-size: 14.5px; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 38px; box-shadow: var(--sh-1); }

/* ============== reveal motion ============== */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .blob, .chip, .marquee-track, .hero-badge .dot { animation: none !important; }
}

/* ============== responsive ============== */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .media { order: 0; }
  .bento { grid-template-columns: repeat(2,1fr); }
  .cell.feature-hero, .cell.span-2 { grid-column: span 2; }
  .cell.feature-hero { grid-row: auto; }
  .pricing-grid, .quotes, .res-grid, .steps, .stats-band { grid-template-columns: repeat(2,1fr); }
  .steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-side { display: none; }

  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 14px; box-shadow: var(--sh-2); }
  .nav.open .nav-links { display: flex; }
  .nav-links a { width: 100%; }
  .nav-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .section { padding: 76px 0; }
  .hero { padding: 116px 0 70px; }
  .page-hero { padding: 150px 0 70px; }
  .bento, .pricing-grid, .quotes, .res-grid, .steps, .stats-band { grid-template-columns: 1fr; }
  .cell.feature-hero, .cell.span-2 { grid-column: auto; }
  .field-row { grid-template-columns: 1fr; }
  .cta-edit { padding: 56px 24px; }
  .contact-card { padding: 26px; }
  .hero-cta .btn, .page-hero .btn-row .btn, .cta-edit .btn-row .btn { flex: 1; justify-content: center; }
  .chip { display: none; }
  .nav-actions .link-login { display: none; }
}

/* ============== Order-taking (omnichannel) ============== */
.order-stage { position: relative; display: grid; gap: 18px; }
.voice-card, .wa-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-2); overflow: hidden;
}
.dark .voice-card, .dark .wa-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); box-shadow: none; }
.voice-card { padding: 22px 24px; }
.vc-head { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.vc-head .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--grad-flame); color:#fff; display: grid; place-items: center; font-size: 22px; }
.vc-head b { display: block; font-family: var(--ff-grotesk); font-size: 15px; }
.vc-head span { font-size: 13px; color: var(--ink-soft); }
.dark .vc-head span { color: rgba(251,247,240,.62); }
.vc-head .live { margin-left: auto; font-family: var(--ff-grotesk); font-size: 11px; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 6px; }
.vc-head .live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green-2); animation: pulse 2s infinite; }
.wave { display: flex; align-items: center; gap: 5px; height: 46px; }
.wave span { flex: 1; max-width: 6px; min-height: 6px; background: var(--grad-flame); border-radius: 4px; animation: wv 1.1s ease-in-out infinite; }
@keyframes wv { 0%,100%{ transform: scaleY(.3); } 50%{ transform: scaleY(1); } }
.wave span:nth-child(2n){ animation-delay: .15s; } .wave span:nth-child(3n){ animation-delay: .3s; } .wave span:nth-child(5n){ animation-delay: .45s; }
.vc-cap { margin-top: 16px; font-family: var(--ff-display); font-style: italic; font-size: 17px; color: var(--ink); }
.dark .vc-cap { color: var(--cream); }

.wa-head { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: #075E54; color:#fff; }
.wa-head .wa-av { width: 38px; height: 38px; border-radius: 50%; background: #25D366; display: grid; place-items: center; font-family: var(--ff-grotesk); font-weight: 700; }
.wa-head b { display: block; font-family: var(--ff-grotesk); font-size: 14.5px; }
.wa-head span { font-size: 12px; opacity: .8; }
.wa-body { padding: 18px; background: #ECE5DD; display: grid; gap: 10px; }
.bubble { max-width: 80%; padding: 9px 13px; border-radius: 14px; font-size: 14px; line-height: 1.4; box-shadow: 0 1px 1px rgba(0,0,0,.08); animation: pop .4s var(--ease) both; }
.bubble.in { background: #fff; color: #111; justify-self: start; border-top-left-radius: 4px; }
.bubble.out { background: #DCF8C6; color: #111; justify-self: end; border-top-right-radius: 4px; }
.bubble.out:nth-child(2){ animation-delay:.1s; } .bubble:nth-child(3){ animation-delay:.2s; } .bubble:nth-child(4){ animation-delay:.3s; }

/* channel chips row */
.channels { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 50px; }
.channel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.channel:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.channel .ic { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-size: 26px; margin-bottom: 16px; }
.channel:nth-child(1) .ic { background: rgba(255,90,31,.14); }
.channel:nth-child(2) .ic { background: rgba(37,211,102,.16); }
.channel:nth-child(3) .ic { background: rgba(255,176,46,.16); }
.channel h3 { font-size: 21px; margin-bottom: 8px; }
.channel p { font-size: 14.5px; color: var(--ink-soft); }

/* ============== CTA (pro, redesigned v3) ============== */
.cta-pro {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255,122,31,.20), transparent 55%),
    var(--grad-dark);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center;
  padding: 70px 60px;
}
.cta-pro .blob { opacity: .35; }
.cta-pro .blob.b1 { top: -180px; left: 30%; }
.cta-pro-l { position: relative; z-index: 2; }
.cta-pro-l .eyebrow { color: var(--amber); } .cta-pro-l .eyebrow::before { background: var(--amber); }
.cta-pro-l h2 { color: var(--cream); font-size: clamp(30px,3.6vw,48px); line-height: 1.05; margin: 18px 0 0; }
.cta-pro-l p { margin: 18px 0 28px; font-size: 18px; color: rgba(251,247,240,.8); max-width: 520px; }
.cta-pro-l .btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.cta-pro-note { margin-top: 18px; font-family: var(--ff-grotesk); font-size: 13.5px; color: rgba(251,247,240,.7); display: flex; align-items: center; gap: 8px; }
.cta-pro-note .lucide { width: 16px; height: 16px; color: var(--green-2); }
.cta-pro-r { position: relative; z-index: 2; display: grid; gap: 14px; }
.ch-card {
  display: flex; align-items: center; gap: 15px;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--r); padding: 18px 20px;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
}
.ch-card:hover { transform: translateX(8px); background: rgba(255,255,255,.1); border-color: rgba(255,176,46,.4); }
.ch-card .ch-ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--grad-flame); color:#fff; display: grid; place-items: center; }
.ch-card b { display: block; font-family: var(--ff-grotesk); font-size: 16px; color: var(--cream); }
.ch-card span { font-size: 13.5px; color: rgba(251,247,240,.66); }

@media (max-width: 1000px) {
  .channels { grid-template-columns: 1fr; }
  .cta-pro { grid-template-columns: 1fr; gap: 34px; padding: 48px 32px; }
}
@media (max-width: 640px) {
  .cta-pro { padding: 38px 22px; }
  .cta-pro-l .btn-row .btn { flex: 1; justify-content: center; }
}

/* ============== Lucide icons ============== */
.lucide { width: 24px; height: 24px; stroke-width: 1.9; vertical-align: middle; flex: none; }
/* icon tiles */
.cell .ic .lucide, .channel .ic .lucide { width: 28px; height: 28px; }
.cell .ic { color: var(--orange); }
.cell.leaf .ic { color: var(--green); }
.cell.flame .ic { color: var(--orange); }
.cell.feature-hero .ic { color: #fff; }
.channel:nth-child(1) .ic { color: var(--orange); }
.channel:nth-child(2) .ic { color: var(--green); }
.channel:nth-child(3) .ic { color: #c98a00; }
/* white-on-gradient icon chips */
.tile .ic, .ch-card .ch-ic, .vc-head .ic, .contact-info .item .ic { color: #fff; }
.tile .ic .lucide, .ch-card .ch-ic .lucide, .vc-head .ic .lucide, .contact-info .item .ic .lucide { width: 22px; height: 22px; }
/* buttons */
.btn .lucide { width: 18px; height: 18px; }
/* hero chips */
.chip .ic .lucide { width: 16px; height: 16px; }
.chip .ic.flame-i { color: var(--orange); } .chip .ic.leaf-i { color: var(--green); }
/* faq */
.faq-q .ic .lucide { width: 18px; height: 18px; }
/* segment + small inline */
.seg-btn .lucide { width: 17px; height: 17px; margin-right: 4px; }
/* footer socials */
.footer-socials .lucide { width: 18px; height: 18px; }
/* dashboard trend marks */
.ds .v .lucide, .kpi .v .lucide { width: 16px; height: 16px; }
.ds .v .up { color: var(--green); } .ds .v .down { color: var(--green); }
