:root {
  --paper: #fffdf8;
  --paper-alt: #faf4e4;
  --ink: #16150f;
  --muted: #5d5747;
  --line: rgba(22, 21, 15, 0.12);
  --line-soft: rgba(22, 21, 15, 0.08);
  /* Red-to-yellow spectrum: deep red -> orange -> bright yellow (mirrors HatchWorks' deep teal -> cyan) */
  --red-deep: #991b1b;
  --red: #dc2626;
  --orange: #ea580c;
  --yellow: #f59e0b;
  --yellow-bright: #facc15;
  --yellow-pale: #fef3c7;
  --grad-gold: linear-gradient(135deg, #dc2626, #f59e0b);
  --grad-gold-deep: linear-gradient(135deg, #991b1b, #f97316);
  --radius: 16px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

img, svg { display: block; }

a { color: inherit; text-decoration: none; }

strong { color: var(--ink); font-weight: 700; }

::selection { background: var(--yellow-bright); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

.accent { color: var(--orange); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  padding: 13px 24px;
  min-height: 44px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px) scale(1.03); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn svg { width: 17px; height: 17px; }

.btn-gold {
  background: var(--grad-gold);
  color: #fff;
}
.btn-gold:hover { box-shadow: 0 10px 32px rgba(234, 88, 12, 0.35); }

.btn-hero {
  padding: 16px 32px;
  font-size: 17px;
  box-shadow: 0 6px 24px rgba(234, 88, 12, 0.25);
}
.btn-hero .arrow { color: var(--yellow-bright); }

.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { box-shadow: 0 10px 32px rgba(22, 21, 15, 0.25); }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 0;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 21px;
  color: var(--ink);
  white-space: nowrap;
}
.logo span { color: var(--orange); }
.logo small {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.18em;
  margin-left: 4px;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--yellow-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero with seamless CSS ambient loop */
.hero {
  position: relative;
  padding: 100px 0 0;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-loop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-loop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loop-canvas {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  filter: blur(28px);
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 1100px;
  padding-bottom: 56px;
}
.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.35);
  background: rgba(254, 243, 199, 0.6);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6.6vw, 5.4rem);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.7vw, 1.3125rem);
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto 36px;
}
.hero-actions { margin-bottom: 8px; }

/* Trust strip — straddles the hero edge like HatchWorks (translateY overlap) */
.trust-strip {
  position: relative;
  z-index: 5;
  margin-bottom: -54px;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 18px 44px rgba(22, 21, 15, 0.1);
}
.trust-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
  flex: 0 0 auto;
}
.marquee {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.stat {
  white-space: nowrap;
  font-size: 15px;
  color: var(--muted);
}
.stat strong {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--red);
  margin-right: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 96px 0; }
.section:first-of-type { padding-top: 0; }
#why { padding-top: 150px; }
.section-alt { background: var(--paper-alt); }

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  margin-bottom: 18px;
}
.section-head p { color: var(--muted); font-size: 1.1rem; }

/* Why columns (HatchWorks 3-column band) */
.columns-3 {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.column {
  padding: 44px 40px;
  text-align: center;
  transition: background 0.5s ease;
}
.column:hover { background: rgba(254, 243, 199, 0.35); }
.column + .column { border-left: 1px solid var(--line-soft); }
.col-bar {
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  margin: 0 auto 20px;
  transition: width 0.5s ease;
}
.column:hover .col-bar { width: 48px; }
.bar-deep   { background: var(--red); }
.bar-mid    { background: var(--orange); }
.bar-bright { background: var(--yellow-bright); }
.column h3 { font-size: 1.35rem; margin-bottom: 14px; }
.column p { color: var(--muted); font-size: 15.5px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-radius: 8px;
  background: rgba(254, 243, 199, 0.4);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s var(--ease);
}
.pill svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.pill:hover {
  background: var(--yellow-pale);
  border-color: var(--orange);
  transform: translateY(-1px);
}
.pill:hover svg { transform: translateX(3px); }

.section-tagline {
  text-align: center;
  margin-top: 56px;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
}
.underlined {
  position: relative;
  padding-bottom: 2px;
}
.underlined::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: var(--yellow-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease) 0.5s;
}
.section-tagline.visible .underlined::after { transform: scaleX(1); }

/* Service cards */
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background-color: #fff;
  background-image: radial-gradient(120% 70% at 50% -10%, rgba(250, 204, 21, 0.16), transparent 60%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.45s ease, transform 0.45s var(--ease), box-shadow 0.45s ease;
}
.card:hover {
  border-color: rgba(234, 88, 12, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 22px 55px -26px rgba(22, 21, 15, 0.4), 0 0 40px -12px rgba(250, 204, 21, 0.35);
}
.card-art {
  height: 130px;
  border-radius: 10px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(160px 100px at 50% 60%, rgba(250, 204, 21, 0.45), rgba(254, 243, 199, 0.55));
  color: var(--red);
}
.card-art svg { width: 52px; height: 52px; }
.card h3 {
  font-size: 1.1rem;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 1.5px solid var(--orange);
  border-bottom: 1.5px solid var(--orange);
  transform: rotate(-45deg);
}

/* Featured gold card — white text on yellow spectrum */
.card-gold {
  background-color: transparent;
  background-image: var(--grad-gold-deep);
  border: none;
  color: #fff;
}
.card-gold h3 { color: #fff; border-bottom-color: rgba(255, 255, 255, 0.3); }
.card-gold .card-art {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.card-gold .check-list li { color: rgba(255, 255, 255, 0.92); }
.card-gold .check-list li::before { border-color: #fff; }
.card-gold .check-list li::after { border-left-color: #fff; border-bottom-color: #fff; }
.card-gold:hover {
  box-shadow: 0 22px 55px -20px rgba(153, 27, 27, 0.55);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: border-color 0.45s ease, transform 0.45s var(--ease), box-shadow 0.45s ease;
}
.step:hover {
  border-color: rgba(234, 88, 12, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 22px 55px -26px rgba(22, 21, 15, 0.35);
}
.step-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 18px;
}
.step h3 { font-size: 1.25rem; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* CTA band — yellow box, white text */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--grad-gold-deep);
  border-radius: 20px;
  padding: 52px 56px;
  color: #fff;
  margin-bottom: 26px;
}
.cta-band h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  margin-bottom: 12px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  font-size: 1.05rem;
}
.cta-band .btn-light { flex: 0 0 auto; padding: 16px 30px; font-size: 16px; }

.booking-panel { max-width: 900px; margin: 0 auto; }
.booking-panel iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(22, 21, 15, 0.08);
}

/* Footer */
.footer {
  background: var(--paper-alt);
  border-top: 1px solid var(--line-soft);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 300px;
}
.footer-head {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14.5px;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--red); }
.footer-legal {
  border-top: 1px solid var(--line-soft);
  padding: 20px 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Chat widget */
.chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.chat-bubble {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--grad-gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(234, 88, 12, 0.4);
  transition: transform 0.2s var(--ease), box-shadow 0.25s ease;
}
.chat-bubble:hover { transform: scale(1.07); box-shadow: 0 10px 36px rgba(234, 88, 12, 0.55); }
.chat-bubble svg { width: 26px; height: 26px; }
.chat-panel {
  position: relative;
  width: 290px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 40px rgba(22, 21, 15, 0.25);
}
.chat-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 8px;
}
.chat-greeting { font-weight: 700; margin-bottom: 8px; }
.chat-body { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.chat-btn { font-size: 14px; padding: 10px 18px; }

/* Packages */
.trial-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto 44px;
  background: rgba(254, 243, 199, 0.5);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: var(--radius);
  padding: 18px 26px;
}
.trial-banner p { color: var(--ink); font-size: 15.5px; }
.trial-banner .btn { flex: 0 0 auto; }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.tier { position: relative; display: flex; flex-direction: column; }
.tier h3 { border-bottom: none; padding-bottom: 0; margin-bottom: 6px; }
.tier-tag { font-size: 14px; color: var(--muted); margin-bottom: 16px; min-height: 44px; }
.card-gold .tier-tag { color: rgba(255, 255, 255, 0.85); }
.tier .check-list { flex: 1; }
.tier-price {
  font-size: 14.5px;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
  margin: 8px 0 14px;
}
.tier-price strong { font-family: var(--font-head); font-size: 1.35rem; color: var(--ink); }
.card-gold .tier-price { color: rgba(255, 255, 255, 0.85); border-top-color: rgba(255, 255, 255, 0.3); }
.card-gold .tier-price strong { color: #fff; }
.tier-btn { width: 100%; }
.badge-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--yellow-bright);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 980px) {
  .tiers { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .trial-banner { flex-direction: column; text-align: center; }
  .tier-tag { min-height: 0; }
}

/* Lake niche page v2 (council: warm pre-meeting validation) */
.hero-mini { min-height: 0; padding: 40px 0 20px; }
.hero-mini h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 14px; }
.hero-mini .hero-badge { margin-bottom: 18px; }
.hero-mini .hero-sub { margin-bottom: 18px; font-size: 1.05rem; }
.anchor-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 15px;
}
.anchor-links a {
  color: var(--red);
  border-bottom: 2px solid var(--yellow-bright);
  padding-bottom: 2px;
}
.systems { padding-top: 24px; padding-bottom: 72px; }
.agenda-line {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
  font-size: 17px;
  color: var(--ink);
}
.tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.leak-line {
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
  margin-top: 8px;
}
.leak-line strong { color: var(--red); }
.card-gold .leak-line { color: rgba(255, 255, 255, 0.88); border-top-color: rgba(255, 255, 255, 0.3); }
.card-gold .leak-line strong { color: var(--yellow-bright); }
.scarcity-note {
  margin-top: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.call-agenda {
  max-width: 680px;
  margin: 0 auto 28px;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 16.5px;
  color: var(--muted);
}
.call-agenda strong { color: var(--ink); }
.no-trials {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
}
@media (max-width: 980px) {
  /* Horizontal intent preserved on phones: swipeable cards with a peek edge */
  .tier-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 14px 4px 18px;
    margin: 0 -4%;
    padding-left: 4%;
    padding-right: 4%;
  }
  .tier-row .tier {
    flex: 0 0 82%;
    scroll-snap-align: center;
  }
  .anchor-links { gap: 16px; }
}

/* Lake niche page */
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.45);
  color: var(--red);
}
.btn-outline:hover { background: var(--yellow-pale); border-color: var(--red); }
.hero-compact { min-height: 560px; padding-bottom: 40px; }
.audio-box {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 44px rgba(22, 21, 15, 0.08);
  text-align: center;
}
.audio-box audio { width: 100%; }
.audio-note { margin-top: 12px; font-size: 13px; color: var(--muted); }
.loss-band-wrap { padding-top: 0; }
.loss-band {
  text-align: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 56px 20px;
}
.loss-number {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(3.4rem, 9vw, 6rem);
  letter-spacing: -0.02em;
  color: var(--red);
  line-height: 1;
  margin-bottom: 14px;
}
.loss-band p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--ink);
}
.offer-steps {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--muted);
  font-size: 15.5px;
}
.founder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 36px;
  text-align: left;
}
.founder-avatar {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder p { font-size: 15px; color: var(--muted); }
.founder a { color: var(--red); font-weight: 700; }
.btn-call { white-space: nowrap; }

/* Reveal animation with stagger */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.cards-4 .reveal:nth-child(2), .steps .reveal:nth-child(2), .columns-3 .reveal:nth-child(2) { transition-delay: 0.1s; }
.cards-4 .reveal:nth-child(3), .steps .reveal:nth-child(3), .columns-3 .reveal:nth-child(3) { transition-delay: 0.2s; }
.cards-4 .reveal:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; }
  .btn, .card, .step, .chat-bubble { transition: none; }
  .underlined::after { transform: scaleX(1); transition: none; }
}

/* Responsive */
@media (max-width: 980px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .columns-3 { grid-template-columns: 1fr; }
  .column + .column { border-left: none; border-top: 1px solid var(--line-soft); }
  .steps { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid var(--line-soft);
    padding: 10px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 6%; }
  .nav-toggle { display: flex; }
  .hero { padding-top: 64px; }
  .trust-strip { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
  .cards-4 { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  #why { padding-top: 130px; }
  .cta-band { padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .loop-blob { filter: blur(50px); }
}
