/* ============================================================
   Zyla Studio — Marketing site
   Brand: peach #eabcaa · lavender #c4b3e0 · ink #15131a
   Type: Geist (one typeface, full stop)
   Gradient: Sunrise 135° (used sparingly)
   ============================================================ */

:root {
  --canvas:       #ffffff;
  --canvas-soft:  #f9fafb;   /* was cream #faf8f5 — now neutral gray-50 */
  --canvas-warm:  #f3f4f6;   /* was cream #f7f2eb — now neutral gray-100 */
  --ink:          #15131a;
  --ink-2:        #28242d;
  --rule:         #e7e6ea;
  --rule-strong:  #d4d3d8;

  --peach:        #eabcaa;
  --peach-soft:   #f6dccf;
  --peach-deep:   #d99672;
  --lavender:     #c4b3e0;
  --lavender-soft:#e1d6f2;
  --lavender-deep:#9c7fd4;

  --grad-sunrise: linear-gradient(135deg, #eabcaa 0%, #c4b3e0 100%);
  --grad-sunrise-soft: linear-gradient(135deg, #f6dccf 0%, #e1d6f2 100%);

  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --green-600: #16a34a;
  --red-600:   #dc2626;
  --amber-500: #f59e0b;
  --sky-400:   #38bdf8;
  --mint-400:  #a7f3d0;

  --f-geist: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  --max:    1240px;
  --gutter: clamp(20px, 4vw, 56px);

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  --shadow-card: 0 1px 2px rgb(0 0 0 / 0.04), 0 4px 12px -4px rgb(0 0 0 / 0.06);
  --shadow-lift: 0 6px 20px -6px rgb(0 0 0 / 0.10), 0 12px 32px -12px rgb(0 0 0 / 0.10);
  --shadow-pop:  0 12px 32px -8px rgb(0 0 0 / 0.14), 0 24px 64px -24px rgb(20 18 30 / 0.20);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--f-geist);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

/* ----- TYPE  ----------------------------------------------- */
h1, h2, h3, h4 { margin: 0; color: var(--ink); letter-spacing: -0.025em; font-weight: 600; line-height: 1.05; text-wrap: balance; }
p { margin: 0; color: var(--gray-700); line-height: 1.6; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gray-500);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: ''; width: 18px; height: 1px; background: var(--gray-400);
}
.eyebrow.no-rule::before { display: none; }
.eyebrow b { color: var(--ink); font-weight: 700; }

.lede { font-size: 19px; line-height: 1.55; color: var(--gray-700); max-width: 640px; }
.lede b { color: var(--ink); font-weight: 600; }

/* ----- LAYOUT ---------------------------------------------- */
.container {
  max-width: var(--max); margin: 0 auto;
  padding: 0 var(--gutter);
}
section.section {
  padding: 120px 0;
  position: relative;
}
section.section.tight  { padding: 80px 0; }
section.section.warm   { background: var(--canvas-warm); }
section.section.soft   { background: var(--canvas-soft); }
section.section.dark   { background: var(--ink); color: #fff; }
section.section.dark h1, section.section.dark h2, section.section.dark h3 { color: #fff; }
section.section.dark p { color: rgba(255,255,255,0.72); }

/* ----- NAV ------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: none;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; gap: 32px;
}
.brandmark { display: inline-flex; align-items: center; gap: 0; height: 62px; }
.brandmark img { height: 68px; width: auto; display: block; transition: transform 200ms var(--ease-out); }
.brandmark:hover img { transform: scale(1.04); }
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 14px; font-weight: 500;
  color: var(--gray-700);
}
.nav-links a { transition: color 150ms; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-right { margin-left: auto; display: flex; gap: 8px; align-items: center; }

/* ----- BUTTONS --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-geist);
  font-size: 14px; font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: -0.005em;
  transition: transform 150ms var(--ease-out), background 150ms, border-color 150ms, color 150ms, box-shadow 200ms;
  white-space: nowrap;
  text-decoration: none;
  background: transparent; color: var(--ink);
}
.btn:hover { transform: translateY(-1px); }
.btn.ghost { color: var(--gray-700); }
.btn.ghost:hover { color: var(--ink); background: var(--gray-100); }
.btn.line {
  border-color: var(--rule-strong);
  background: #fff; color: var(--ink);
}
.btn.line:hover { border-color: var(--ink); }
.btn.primary {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 6px 16px -8px rgba(20,18,30,0.4);
}
.btn.primary:hover { background: #000; box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 10px 24px -10px rgba(20,18,30,0.6); }
.btn.lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }
.btn .arr { transition: transform 200ms var(--ease-out); }
.btn:hover .arr { transform: translateX(3px); }

/* ----- HERO ------------------------------------------------ */
.hero {
  position: relative;
  /* pull up under the transparent nav so the gradient blobs bleed behind it */
  margin-top: -104px;
  padding: 192px 0 0;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.hero h1 {
  font-size: clamp(48px, 7.2vw, 104px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.hero h1 .swap {
  position: relative; display: inline-block;
  color: var(--gray-300);
  text-decoration: line-through;
  text-decoration-thickness: 0.06em;
  text-decoration-color: var(--peach-deep);
}
.hero h1 .grad {
  background: var(--grad-sunrise);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  display: inline-block;
}
.hero .lede { margin-top: 28px; font-size: 20px; max-width: 540px; }
.hero .cta-row { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero .trust {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
  font-size: 12.5px; color: var(--gray-500);
}
.hero .trust .dots { display: flex; }
.hero .trust .dots i {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--peach); border: 2px solid #fff;
  margin-left: -6px;
}
.hero .trust .dots i:nth-child(1) { background: var(--peach); margin-left: 0; }
.hero .trust .dots i:nth-child(2) { background: var(--lavender); }
.hero .trust .dots i:nth-child(3) { background: var(--gray-800); }
.hero .trust .dots i:nth-child(4) { background: var(--mint-400); }
.hero .trust .dots i:nth-child(5) { background: var(--peach-soft); }

/* gradient blob behind hero */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 520px; height: 520px;
  background: var(--peach);
  left: -180px; top: -120px;
  animation: float-a 14s ease-in-out infinite;
}
.hero::after {
  width: 480px; height: 480px;
  background: var(--lavender);
  right: -120px; top: 180px;
  animation: float-b 18s ease-in-out infinite;
}
.hero-inner { position: relative; z-index: 1; }

@keyframes float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.08); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-50px, -30px) scale(1.05); }
}

/* ----- HERO BOARD (animated whiteboard preview) ----------- */
.hero-board {
  position: relative;
  aspect-ratio: 5/4.6;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  box-shadow: var(--shadow-pop);
  overflow: hidden;
}
.hero-board .grid-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, var(--gray-300) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, #000 50%, transparent 100%);
}
.hero-board .tag {
  position: absolute; top: 14px; left: 16px;
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray-600);
}
.hero-board .tag .live {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-600);
  box-shadow: 0 0 0 0 rgba(22,163,74,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  70% { box-shadow: 0 0 0 10px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0 rgba(22,163,74,0); }
}
.hero-board .toolbar {
  position: absolute; bottom: 16px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  border-radius: 12px;
  padding: 6px;
  display: flex; gap: 4px;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.3);
}
.hero-board .toolbar button {
  background: transparent; border: 0;
  color: rgba(255,255,255,0.7);
  width: 32px; height: 32px;
  border-radius: 8px;
  display: grid; place-items: center;
  cursor: pointer;
}
.hero-board .toolbar button.active { background: rgba(255,255,255,0.12); color: #fff; }
.hero-board .toolbar button:hover { color: #fff; }

/* board cards floating in */
.b-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--shadow-card);
  animation: card-in 700ms var(--ease-out) backwards;
}
.b-card .b-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gray-500);
  margin-bottom: 10px;
}
.b-card .b-head .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-600); }
.b-card .big-num { font-size: 28px; font-weight: 600; letter-spacing: -0.025em; color: var(--ink); }
.b-card .delta { font-size: 11.5px; font-weight: 500; }
.b-card .delta.up { color: var(--green-600); }
.b-card .delta.dn { color: var(--red-600); }

@keyframes card-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* mini chart bars */
.spark {
  display: flex; gap: 3px; align-items: flex-end; height: 28px; margin-top: 8px;
}
.spark i {
  flex: 1; background: var(--ink);
  border-radius: 2px 2px 0 0;
  opacity: 0.85;
  animation: spark-grow 800ms var(--ease-out) backwards;
}
.spark i.grad { background: var(--grad-sunrise); opacity: 1; }
@keyframes spark-grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to { transform: scaleY(1); transform-origin: bottom; }
}

/* sankey-ish path on board */
.flow-svg { position: absolute; inset: 0; pointer-events: none; }
.flow-svg path { stroke-dasharray: 600; stroke-dashoffset: 600; animation: draw 2.4s var(--ease-out) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ----- SECTION HEADERS ------------------------------------ */
.sec-head { max-width: 720px; margin-bottom: 56px; }
.sec-head h2 {
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.0; margin: 14px 0 16px;
}
.sec-head p { font-size: 18px; color: var(--gray-700); }

/* ----- PROBLEM SECTION (death to dashboards) ------------- */
.problem-stage {
  position: relative;
  min-height: 460px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.problem-stage .chaos {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 8px;
  padding: 18px;
}
.problem-stage .chaos .tile {
  background: var(--canvas-soft);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 9px; color: var(--gray-500);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.problem-stage .chaos .tile::after {
  content: '';
  position: absolute; left: 8px; right: 8px; bottom: 8px;
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--gray-200) 0 4px, transparent 4px 7px);
  border-radius: 2px;
}
.problem-stage .veil {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 60%, #fff 100%);
}
.problem-stage .verdict {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 32px;
}
.problem-stage .verdict .strike {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
}
.problem-stage .verdict .strike s {
  color: var(--gray-400);
  text-decoration-color: var(--peach-deep);
  text-decoration-thickness: 0.05em;
}
.problem-stage .verdict .alt {
  margin-top: 14px;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  background: var(--grad-sunrise);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.problem-stage .verdict p {
  margin-top: 18px;
  max-width: 460px;
  font-size: 16px;
}

/* ----- FEATURES GRID -------------------------------------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
.feat {
  background: #fff;
  padding: 32px 28px 36px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: background 200ms;
}
.feat:hover { background: var(--canvas-soft); }
.feat .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--canvas-warm);
  display: grid; place-items: center;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.feat:hover .icon {
  transform: scale(1.12) rotate(-2deg);
  box-shadow: 0 8px 20px -6px rgba(20,18,30,0.18);
}
.feat .icon.peach   { background: var(--peach-soft); }
.feat .icon.lav     { background: var(--lavender-soft); }
.feat .icon.ink     { background: var(--ink); color: #fff; }
.feat .icon.grad    { background: var(--grad-sunrise); color: var(--ink); }
.feat h3 { font-size: 19px; line-height: 1.2; letter-spacing: -0.02em; }
.feat p { font-size: 14.5px; color: var(--gray-600); }
.feat .tag {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-500);
  margin-top: auto;
}

/* ----- STEPS (how it works) ------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.step .num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gray-500);
}
.step h3 { font-size: 22px; margin: 14px 0 8px; letter-spacing: -0.022em; }
.step p { font-size: 14.5px; color: var(--gray-600); }
.step .demo {
  margin-top: 22px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: var(--canvas-soft);
  height: 130px;
  position: relative;
  overflow: hidden;
}

/* ----- LOGO STRIP ----------------------------------------- */
.logo-strip {
  display: flex; flex-wrap: wrap; gap: 40px 56px; align-items: center;
  justify-content: center;
  opacity: 0.7;
}
.logo-strip .glyph {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
  color: var(--gray-600);
  display: inline-flex; align-items: center; gap: 8px;
}
.logo-strip .glyph svg { width: 22px; height: 22px; }

/* ----- TESTIMONIAL ---------------------------------------- */
.quotes {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.quote {
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px;
  background: #fff;
  display: flex; flex-direction: column;
  gap: 18px;
}
.quote.feature { background: var(--ink); color: #fff; border-color: var(--ink); }
.quote.feature p { color: rgba(255,255,255,0.85); }
.quote p { font-size: 17px; line-height: 1.45; color: var(--ink); }
.quote.feature p { font-size: 22px; line-height: 1.35; letter-spacing: -0.015em; }
.quote .who { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.quote .who .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--peach);
  display: grid; place-items: center;
  font-size: 12px; font-weight: 600; color: var(--ink);
}
.quote.feature .who .av { background: var(--peach); }
.quote .who .name { font-size: 13.5px; font-weight: 600; }
.quote .who .role { font-size: 12px; color: var(--gray-500); }
.quote.feature .who .role { color: rgba(255,255,255,0.6); }

/* ----- PRICING ------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tier {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  gap: 22px;
  position: relative;
}
.tier.featured {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-pop);
}
.tier.featured .price, .tier.featured h3 { color: #fff; }
.tier.featured p, .tier.featured li { color: rgba(255,255,255,0.78); }
.tier .ribbon {
  position: absolute; top: -10px; right: 24px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad-sunrise);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
}
.tier h3 { font-size: 20px; letter-spacing: -0.02em; }
.tier .price {
  font-size: 48px; font-weight: 600; letter-spacing: -0.04em;
  line-height: 1; color: var(--ink);
}
.tier .price .unit {
  font-size: 14px; font-weight: 500; color: var(--gray-500);
  letter-spacing: 0;
}
.tier.featured .price .unit { color: rgba(255,255,255,0.6); }
.tier ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tier li {
  font-size: 14px; color: var(--gray-700);
  display: flex; gap: 10px; align-items: flex-start;
}
.tier li svg {
  flex: none; width: 16px; height: 16px; color: var(--ink);
  margin-top: 3px;
}
.tier.featured li svg { color: var(--peach); }
.tier .pcta { margin-top: auto; }

/* Agency — full-width row underneath the three core tiers */
.tier-agency {
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1.2fr 1.4fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.tier-agency::before {
  content: "";
  position: absolute; inset: 0 auto 0 0; width: 6px;
  background: linear-gradient(180deg, var(--peach), var(--lavender));
}
.tier-agency .ta-flag { padding-left: 8px; }
.tier-agency .ta-ribbon {
  display: inline-block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--peach), var(--lavender));
  color: var(--ink);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 12px;
}
.tier-agency h3 {
  font-size: 26px; letter-spacing: -0.025em;
  margin: 0 0 8px; color: var(--ink);
}
.tier-agency p {
  font-size: 14px; line-height: 1.55;
  color: var(--gray-600); margin: 0; max-width: 380px;
}
.tier-agency .ta-feats {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.tier-agency .ta-feats li {
  font-size: 14px; color: var(--gray-700);
  display: flex; gap: 10px; align-items: flex-start;
}
.tier-agency .ta-feats li svg {
  flex: none; width: 16px; height: 16px; color: var(--ink);
  margin-top: 3px;
}
.tier-agency .ta-cta {
  display: flex; flex-direction: column; gap: 14px;
  align-items: flex-end; text-align: right;
}
.tier-agency .ta-cta .price {
  font-size: 36px; font-weight: 600; letter-spacing: -0.035em;
  color: var(--ink); line-height: 1;
}
.tier-agency .ta-cta .price .unit {
  font-size: 13px; font-weight: 500; color: var(--gray-500);
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .tier-agency { grid-template-columns: 1fr; gap: 22px; padding: 26px 24px; }
  .tier-agency .ta-feats { grid-template-columns: 1fr; }
  .tier-agency .ta-cta { align-items: flex-start; text-align: left; }
}

/* ----- FOOTER -------------------------------------------- */
footer.foot {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
footer.foot .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
footer.foot h4 {
  color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
footer.foot a { color: rgba(255,255,255,0.7); font-size: 14px; display: block; padding: 6px 0; transition: color 150ms; }
footer.foot a:hover { color: #fff; }
footer.foot .brand img { height: 73px; filter: brightness(1); }
footer.foot .brand p { color: rgba(255,255,255,0.6); font-size: 14px; margin-top: 14px; max-width: 320px; }
footer.foot .bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px; color: rgba(255,255,255,0.55);
}

/* ----- REVEAL ANIM (on scroll) ---------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 80ms; }
.reveal.d2 { transition-delay: 160ms; }
.reveal.d3 { transition-delay: 240ms; }
.reveal.d4 { transition-delay: 320ms; }
.reveal.d5 { transition-delay: 400ms; }

/* ----- BANNER / CTA STRIP --------------------------------- */
.cta-strip {
  border-radius: 20px;
  padding: 56px 48px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-strip h2 { color: #fff; font-size: clamp(32px, 4vw, 48px); margin-bottom: 12px; letter-spacing: -0.03em; }
.cta-strip p { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 520px; }
.cta-strip .row { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip .row .btn.primary { background: #fff; color: var(--ink); border-color: #fff; }
.cta-strip .row .btn.primary:hover { background: var(--peach); border-color: var(--peach); }
.cta-strip .row .btn.line { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-strip .row .btn.line:hover { border-color: #fff; }
.cta-strip::before {
  content: ''; position: absolute;
  right: -120px; top: -100px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: var(--grad-sunrise);
  opacity: 0.5;
  filter: blur(50px);
}
.cta-strip > * { position: relative; }

/* ----- SUB-PAGE HEAD -------------------------------------- */
.page-head {
  padding: 120px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-head .eyebrow { margin-bottom: 24px; }
.page-head h1 {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin-bottom: 24px;
}
.page-head p { font-size: 19px; max-width: 600px; color: var(--gray-700); }
.page-head::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: var(--peach);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  right: -200px; top: -250px;
  pointer-events: none;
}
.page-head::after {
  content: ''; position: absolute;
  width: 460px; height: 460px;
  background: var(--lavender);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  right: 120px; top: -120px;
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 1; }

/* ----- RESPONSIVE ----------------------------------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  footer.foot .grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  section.section { padding: 80px 0; }
}
@media (max-width: 560px) {
  .feat-grid { grid-template-columns: 1fr; }
  footer.foot .grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-strip { padding: 36px 28px; }
}
