/* ============================================================
   flo — landing page (archalyk-inspired bold style)
   Brand palette in CSS variables below — EDIT COLORS HERE.
   ============================================================ */

:root {
  /* Brand palette (vibrant)
     NOTE: the former dark-blue/indigo is now LIGHT BLUE, and the former
     light-blue accent is now GREEN. Because --indigo is now light, surfaces
     filled with it use DARK (--ink) text, not white. */
  --indigo:   #70cbff;   /* dominant brand color — light blue (use dark text on it) */
  --indigo-2: #ccff8c;   /* secondary for gradients — green */
  --blue:     #ccff8c;   /* accent green */
  --blue-ink: #5c8a19;   /* readable green text on white (dark variant of the green) */
  --pink:     #e54575;   /* berry / energy accent */
  --lime:     #ccff8c;   /* lemon-lime accent */
  --lime-ink: #5c8a19;   /* readable lime text on light */

  /* Neutrals */
  --ink:      #16142e;   /* primary text (indigo-black) */
  --ink-soft: #5b5972;   /* secondary text */
  --paper:    #ffffff;   /* page background */
  --mist:     #f3f6fc;   /* light alt section bg */
  --night:    #0c0a24;   /* dark footer */
  --line:     #e7e9f2;

  /* Type — CMU Serif (Computer Modern) everywhere */
  --sans:   "Computer Modern Serif", Georgia, "Times New Roman", serif;
  --script: "Computer Modern Serif", Georgia, serif;   /* accents use this, italicized */

  /* Layout */
  --maxw: 1140px;
  --radius: 22px;
  --shadow: 0 26px 60px rgba(24, 0, 173, 0.10);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* Visible keyboard focus (WCAG 2.4.7). Dark backgrounds get a white ring.
   (Outlines already follow each element's own border-radius.) */
:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
/* Only the genuinely dark surfaces (footer) need a white ring. */
.footer-col a:focus-visible,
.wordmark-sm.light:focus-visible { outline-color: #fff; }
/* Lock background scroll while the full-screen menu is open */
body.menu-open { overflow: hidden; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.nowrap { white-space: nowrap; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* color helpers for inline accents */
.ink-pink { color: var(--pink); }
.ink-blue { color: var(--blue-ink); }   /* readable on white (WCAG AA) */
.ink-lime { color: var(--lime-ink); }

/* ============================================================
   PRELOADER (archalyk-style counter)
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--indigo);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  transition: transform .8s cubic-bezier(.76,0,.24,1), opacity .5s ease;
}
.preloader.is-done { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.preloader-mark {
  font-weight: 800; font-size: 26px; letter-spacing: -.02em; color: var(--ink);
  position: absolute; top: 32px; left: 50%; transform: translateX(-50%);
}
.preloader-count {
  font-weight: 800; font-size: clamp(72px, 18vw, 168px); color: var(--ink);
  letter-spacing: -.04em; line-height: 1; font-variant-numeric: tabular-nums;
}
.preloader-tag {
  font-family: var(--script); font-style: italic; font-size: 28px; color: var(--pink);
  margin-top: 8px;
}

/* ============================================================
   HEADER
   ============================================================ */
/* ---------- Announcement bar ---------- */
.announce {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70;
  height: 40px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  color: var(--ink); font-weight: 600; font-size: 13.5px; letter-spacing: .01em;
  padding: 0 16px; text-align: center;
  transition: filter .2s ease;
}
.announce:hover { filter: brightness(1.04); }

.site-header {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 80;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 10px 0;
}
.site-header.is-stuck {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 58px; }
.wordmark-sm {
  font-weight: 800; font-size: 30px; letter-spacing: -.03em; color: var(--ink);
  line-height: 1;
}
.wordmark-sm.light { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 14px; }

/* Hamburger */
.menu-toggle {
  width: 50px; height: 50px; border-radius: 50%;
  border: 0; background: var(--indigo); cursor: pointer;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: transform .2s ease, background .2s ease;
}
.menu-toggle:hover { transform: scale(1.06); }
.menu-toggle span { width: 20px; height: 2.4px; border-radius: 2px; background: var(--ink); transition: transform .3s ease, opacity .2s ease; }
body.menu-open .menu-toggle span:first-child { transform: translateY(3.7px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child  { transform: translateY(-3.7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  border: 0; border-radius: 14px; padding: 17px 30px; cursor: pointer;
  transition: transform .16s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn-sm { padding: 12px 20px; font-size: 15px; border-radius: 12px; }
.btn-primary { background: var(--indigo); color: var(--ink); box-shadow: 0 12px 26px rgba(60,160,225,.45); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(60,160,225,.55); }
.btn-primary:active { transform: translateY(0); }
.btn-lime { background: var(--lime); color: var(--ink); box-shadow: 0 12px 26px rgba(0,0,0,.18); }
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(0,0,0,.24); }

/* ---------- Vertical side CTA ---------- */
.side-cta {
  position: fixed; left: 0; top: 50%; z-index: 70;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  background: var(--indigo); color: var(--ink);
  font-weight: 600; font-size: 14px; letter-spacing: .02em;
  padding: 18px 9px; border-radius: 0 12px 12px 0;
  box-shadow: 0 10px 26px rgba(60,160,225,.4);
  transition: padding .2s ease, background .2s ease, color .2s ease;
}
.side-cta:hover { background: var(--pink); color: #fff; padding-left: 13px; }

/* ============================================================
   FULL-SCREEN MENU OVERLAY
   ============================================================ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 75;
  background: var(--indigo);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 30px; overflow-y: auto; padding: 80px 24px;
  opacity: 0; transform: translateY(-12px); pointer-events: none; visibility: hidden;
  transition: opacity .35s ease, transform .35s ease, visibility 0s linear .35s;
}
/* When open: visible, interactive, and links re-enter the tab order. */
body.menu-open .menu-overlay {
  opacity: 1; transform: none; pointer-events: auto; visibility: visible;
  transition: opacity .35s ease, transform .35s ease;
}
.menu-inner { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.menu-inner a {
  font-weight: 800; font-size: clamp(34px, 7vw, 64px); color: var(--ink);
  letter-spacing: -.02em; line-height: 1.15; opacity: .95;
  transition: color .2s ease, transform .2s ease;
}
.menu-inner a:hover { color: var(--pink); transform: translateX(6px); }
.menu-foot { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.menu-foot a { color: rgba(22,20,46,.72); font-size: 15px; }
.menu-foot a:hover { color: var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;   /* track the *visible* viewport on mobile (no URL-bar jump) */
  padding: 158px 0 90px;   /* clears the announcement bar + fixed header */
  display: flex; align-items: center;
  text-align: center;
  /* Bright, airy backdrop — mostly white with a faint tint (color comes from the washes). */
  background: linear-gradient(180deg, #f4fbff 0%, #ffffff 58%);
}
.hero-inner { position: relative; z-index: 5; display: flex; flex-direction: column; align-items: center; }

.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); background: rgba(112,203,255,.20);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}

.hero-wordmark {
  font-weight: 800; letter-spacing: -.05em; line-height: 1;
  font-size: clamp(120px, 30vw, 360px);
  margin: 0;
  /* Headroom so the gradient-clipped glyph tops aren't cut off; the negative
     bottom margin keeps the headline tucked in close like before. */
  padding-top: .12em; margin-bottom: -.14em;
  background: linear-gradient(105deg, var(--indigo) 0%, var(--pink) 38%, var(--blue) 66%, var(--lime) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-head {
  font-weight: 800; letter-spacing: -.02em;
  font-size: clamp(26px, 4.4vw, 46px); line-height: 1.05;
  margin: 8px 0 16px; color: var(--ink);
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px); color: var(--ink-soft);
  max-width: 30em; margin: 0 0 30px;
}
.hero-note { font-size: 14px; color: var(--ink-soft); margin: 14px 0 0; }

/* background washes */
.wash { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; z-index: 1; }
/* Soft pastel glows (blue / green / pink) as gentle color accents on the white hero. */
.wash-blue  { width: 480px; height: 480px; background: #aee2ff; top: -120px; right: -100px; opacity: .45; }
.wash-pink  { width: 420px; height: 420px; background: #ffd2e3; bottom: -160px; left: -120px; opacity: .4; }
.wash-lime  { width: 680px; height: 680px; background: #e4ffc6; top: 16%; left: 28%; opacity: .5; }
.wash-lime2 { width: 460px; height: 460px; background: #bfe9ff; bottom: -120px; right: 6%; opacity: .34; }

/* floating bottles */
.float { position: absolute; z-index: 4; top: 50%; }
.float .bottle { width: 120px; filter: drop-shadow(0 26px 30px rgba(24,0,173,.18)); }
/* Real transparent bottle cutouts in the hero (no blend — they're already cut out). */
.float .bottle-photo { position: relative; z-index: 2; width: 215px; height: auto; filter: drop-shadow(0 24px 30px rgba(24,0,173,.22)); }
/* Water splash behind each bottle so it looks like it's bursting up around it.
   The drop-shadow + saturation/contrast give the pale water definition on the teal. */
/* Custom vector splash drawn in brand blues — sits around the bottle's base. */
.float .splash {
  position: absolute; z-index: 1; left: 50%; bottom: -10%;
  width: 360px; max-width: none; height: auto; transform: translateX(-50%);
  pointer-events: none;
  filter: drop-shadow(0 4px 8px rgba(20,90,140,.18));
}
.float-right .splash { transform: translateX(-50%) scaleX(-1); }   /* mirror for variety */
/* Bottles are stationary now; the slight tilt lives on the bottle itself so the splash stays upright. */
.float-left  { left: 3%;  transform: translateY(-46%); }
.float-right { right: 3%; transform: translateY(-52%); }
.float-left  .bottle-photo { transform: rotate(-10deg); }
.float-right .bottle-photo { transform: rotate(9deg); }
.bottle-label { font-family: var(--sans); font-size: 30px; font-weight: 800; fill: var(--ink); }

/* bubbles */
.bubble { position: absolute; border-radius: 50%; z-index: 3; }
.b1 { width: 18px; height: 18px; background: #5cc4d6; top: 26%; left: 20%; animation: floaty 6s ease-in-out infinite; }
.b2 { width: 12px; height: 12px; background: #aee2ff; top: 64%; left: 28%; animation: floaty 7s ease-in-out infinite reverse; }
.b3 { width: 22px; height: 22px; background: #7fd6c9; top: 30%; right: 22%; animation: floaty 9s ease-in-out infinite; }
.b4 { width: 10px; height: 10px; background: var(--indigo); top: 70%; right: 26%; animation: floaty 6.5s ease-in-out infinite; }

@keyframes floaty {
  0%, 100% { transform: translateY(-50%) rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-62%) rotate(var(--r, 0deg)); }
}
.float-left  { --r: -12deg; }
.float-right { --r: 11deg; }
.bubble { animation-name: bob; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* corner badge */
.badge {
  position: absolute; right: 26px; bottom: 26px; z-index: 6;
  width: 78px; height: 78px; border-radius: 50%;
  background: var(--indigo); color: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1; box-shadow: 0 12px 26px rgba(60,160,225,.4);
  animation: spin 14s linear infinite;
}
.badge b { font-size: 16px; font-weight: 800; }
.badge i { font-size: 11px; font-style: normal; opacity: .8; margin-top: 3px; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   SIGNUP FORM
   ============================================================ */
.signup { display: flex; flex-wrap: wrap; gap: 10px; max-width: 500px; width: 100%; justify-content: center; }
.signup-center { margin: 0 auto; }
.signup-input {
  flex: 1 1 240px; min-width: 0;
  font-family: var(--sans); font-size: 16px;
  padding: 16px 20px; border: 2px solid var(--line); border-radius: 14px;
  background: #fff; color: var(--ink); outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.signup-input::placeholder { color: #6b7280; }   /* AA contrast on white */
.signup-input:focus { border-color: var(--indigo); box-shadow: 0 0 0 4px rgba(112,203,255,.32); }
.signup-msg { flex-basis: 100%; margin: 4px 2px 0; font-size: 14px; min-height: 1.2em; font-weight: 600; }
.signup-msg.is-success { color: var(--lime-ink); }
.signup-msg.is-error   { color: var(--pink); }
.signup-msg.on-dark.is-success { color: var(--lime-ink); }
.signup-msg.on-dark.is-error   { color: #b3295c; }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.kicker {
  text-align: center; font-family: var(--script); font-style: italic; font-size: 26px;
  color: var(--pink); margin: 0 0 4px;
}
.section-title {
  text-align: center; font-weight: 800; letter-spacing: -.025em;
  font-size: clamp(32px, 5.4vw, 60px); line-height: 1.04; margin: 0 0 54px;
}

/* ============================================================
   FLAVORS
   ============================================================ */
.flavors { background: var(--mist); }
.flavor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 860px; margin: 0 auto; }
.flavor-card {
  border-radius: var(--radius); padding: 40px 30px 34px; text-align: center;
  background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.flavor-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 8px;
}
.card-pink::before { background: var(--pink); }
.card-lime::before { background: var(--lime); }
.flavor-card:hover { transform: translateY(-6px); box-shadow: 0 34px 70px rgba(24,0,173,.16); }
.flavor-art {
  height: 370px; display: flex; align-items: center; justify-content: center;
  border-radius: 18px; margin-bottom: 22px;
}
.card-pink .flavor-art { background: radial-gradient(70% 70% at 50% 42%, #ffe1ea, transparent 75%); }
.card-lime .flavor-art { background: radial-gradient(70% 70% at 50% 42%, #f0ffd9, transparent 75%); }
.flavor-art .bottle { width: auto; height: 350px; filter: drop-shadow(0 22px 26px rgba(24,0,173,.14)); }
/* Real product photo (white background blended onto the tinted tile). */
.flavor-art .bottle-photo {
  width: auto; max-width: 100%; height: 366px; object-fit: contain;
  mix-blend-mode: multiply;   /* makes the photo's white background disappear */
  filter: drop-shadow(0 18px 24px rgba(24,0,173,.16));
}
.flavor-name { font-weight: 800; font-size: 28px; letter-spacing: -.02em; margin: 0 0 8px; }
.flavor-desc { color: var(--ink-soft); margin: 0 0 16px; font-size: 16px; }
.flavor-tag {
  display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--ink); background: rgba(112,203,255,.22); padding: 6px 13px; border-radius: 999px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
}
.step { text-align: center; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 70px; height: 70px; border-radius: 22px;
  font-weight: 800; font-size: 30px; color: #fff; margin-bottom: 20px;
  transform: rotate(-6deg);
}
.n1 { background: var(--pink); box-shadow: 0 14px 28px rgba(229,69,117,.32); }
.n2 { background: var(--blue); color: var(--ink); box-shadow: 0 14px 28px rgba(52,179,106,.4); }
.n3 { background: var(--indigo); color: var(--ink); box-shadow: 0 14px 28px rgba(60,160,225,.4); }
.step-title { font-size: 21px; font-weight: 700; margin: 0 0 8px; }
.step-desc { color: var(--ink-soft); margin: 0; font-size: 16px; }

/* ============================================================
   "MADE WITH" BOLD STRIP
   ============================================================ */
.made { background: var(--indigo); color: var(--ink); text-align: center; padding: 96px 0; }
.made-inner { position: relative; z-index: 2; }
.made-line {
  font-weight: 800; letter-spacing: -.02em; line-height: 1.1;
  font-size: clamp(30px, 6vw, 64px); margin: 0 0 14px;
}
.made-line .script { font-family: var(--script); font-weight: 400; font-style: italic; }
/* Accents readable on the light-blue panel. */
.s-lime { color: var(--lime-ink); }
.s-blue { color: var(--pink); }
.s-pink { color: #b3295c; }
.made-sub { color: rgba(22,20,46,.7); font-size: clamp(15px, 2.2vw, 19px); margin: 0; }

/* ============================================================
   WHAT'S INSIDE
   ============================================================ */
.callouts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.callout {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.callout:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.callout-icon {
  width: 60px; height: 60px; border-radius: 18px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.i-pink   { background: #ffe1ea; }
.i-lime   { background: #f0ffd9; }
.i-blue   { background: #e3f7e6; }            /* now green-tinted (was light blue) */
.i-indigo { background: rgba(112,203,255,.22); } /* now light-blue-tinted (was indigo) */
.callout-title { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.callout-desc { color: var(--ink-soft); margin: 0; font-size: 15px; }

/* ============================================================
   SECOND CTA
   ============================================================ */
.cta { padding: 40px 0 120px; }
.cta-inner {
  position: relative; overflow: hidden;
  background: linear-gradient(125deg, var(--indigo), var(--indigo-2));
  border-radius: 34px; padding: 80px 32px; text-align: center; color: var(--ink);
}
.cta-title { font-weight: 800; letter-spacing: -.025em; font-size: clamp(30px, 5vw, 54px); margin: 0 0 12px; position: relative; z-index: 2; }
.cta-sub { color: rgba(22,20,46,.74); font-size: 18px; margin: 0 auto 30px; max-width: 30em; position: relative; z-index: 2; }
.cta .signup { position: relative; z-index: 2; }
.cta .signup-input { border-color: transparent; }
.cb1 { width: 200px; height: 200px; background: var(--pink); opacity: .5; top: -60px; left: -40px; filter: blur(20px); }
.cb2 { width: 220px; height: 220px; background: var(--blue); opacity: .45; bottom: -80px; right: -50px; filter: blur(20px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--night); color: #fff; padding: 70px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 30px; align-items: start; }
.footer-tag { color: rgba(255,255,255,.6); margin: 8px 0 0; font-size: 15px; max-width: 22em; }
.footer-h { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); margin: 0 0 14px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,.82); font-size: 15px; transition: color .15s ease; }
.footer-col a:hover { color: var(--lime); }
.footer-legal {
  margin: 48px auto 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.66); font-size: 12.5px; text-align: center; max-width: var(--maxw);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 84px 0; }
  .float { display: none; }            /* keep mobile hero clean */
  /* Don't force a full-viewport hero on tablets/landscape phones. */
  .hero { min-height: auto; padding: 138px 0 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .side-cta { display: none; }
  .nav-cta { display: none; }
  .announce { height: 34px; font-size: 12px; }
  .site-header { top: 34px; }
  .hero { padding: 124px 0 70px; }
  /* Cap matches the >600px value (180px) so the wordmark scales monotonically. */
  .hero-wordmark { font-size: clamp(110px, 44vw, 180px); }
  .badge { display: none; }
  .flavor-grid { grid-template-columns: 1fr; max-width: 360px; }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .callouts { grid-template-columns: 1fr 1fr; }
  .cta-inner { padding: 56px 22px; }
  .btn-primary, .btn-lime { width: 100%; }
  .signup-input { flex-basis: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  /* Real tap targets (>=44px) for text-link clusters. */
  .footer-col a, .menu-foot a { display: inline-block; padding: 9px 2px; min-height: 44px; line-height: 26px; }
  /* Leave room for the sticky mobile CTA. */
  body { padding-bottom: 76px; }
}

@media (max-width: 380px) {
  .callouts { grid-template-columns: 1fr; }
}

/* Top-anchor + scroll the menu when the viewport is too short to center it. */
@media (max-height: 560px) {
  .menu-overlay { justify-content: flex-start; }
  .menu-inner a { font-size: clamp(26px, 6vw, 40px); }
}

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta { display: none; }
@media (max-width: 600px) {
  .mobile-cta {
    display: flex; align-items: center; justify-content: center;
    position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 60;
    background: var(--indigo); color: var(--ink); font-weight: 700; font-size: 16px;
    padding: 15px 24px; border-radius: 16px;
    box-shadow: 0 12px 30px rgba(60, 160, 225, .45);
  }
  body.menu-open .mobile-cta { display: none; }   /* don't overlap the open menu */
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
  .preloader { display: none !important; }
}
