/* ============================================================
   AND Healthcare — Design System v2
   Bold duotone color-blocking · huge grotesque type · pills & stickers
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --font: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Duotone pairs — cool, confident, brand-true. Blue + aqua from the AND+
     logo, jewel teal from the plus. No red, no emerald: pastel orange and a
     pastel lavender keep the warm notes soft instead of loud. */
  --green:    #14487D;   /* deep brand blue — primary anchor */
  --mint:     #8DEBDD;   /* bright aqua — signature accent (the logo's plus) */
  --coral:    #F4A672;   /* pastel orange — replaces the old red/emerald */
  --lavender: #D6C7F0;   /* pastel purple — second warm-cool note, used on the homepage */
  --cream:    #FFF4E8;   /* soft cream */
  --lime:     #DDEF7E;   /* fresh chartreuse pop */
  --teal:     #14746B;   /* rich jewel teal */
  --peach:    #F4DFBB;   /* warm sand — the single warm note, balances the cool */
  --paper:    #EFECE2;   /* paper neutral */
  --ink:      #16222E;
  --logo-blue: #2264A7;
  --logo-teal: #14A5A0;

  --pill: 999rem;
  --dur: .5s;
  --ease: cubic-bezier(.22,1,.36,1);
  --container: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Colorsets (the core mechanic) ----------
   Every section carries a colorset. Two custom props drive
   every component inside it. */
.cs-green    { --bg: var(--green);    --fg: var(--mint);  background: var(--bg); color: var(--fg); }
.cs-mint     { --bg: var(--mint);     --fg: var(--green); background: var(--bg); color: var(--fg); }
.cs-coral    { --bg: var(--coral);    --fg: var(--green); background: var(--bg); color: var(--fg); }
.cs-cream    { --bg: var(--cream);    --fg: var(--green); background: var(--bg); color: var(--fg); }
.cs-lavender { --bg: var(--lavender); --fg: var(--green); background: var(--bg); color: var(--fg); }
.cs-lime     { --bg: var(--lime);     --fg: var(--teal);  background: var(--bg); color: var(--fg); }
.cs-teal     { --bg: var(--teal);     --fg: var(--lime);  background: var(--bg); color: var(--fg); }
.cs-peach    { --bg: var(--peach);    --fg: var(--green); background: var(--bg); color: var(--fg); }
.cs-paper    { --bg: var(--paper);    --fg: var(--ink);   background: var(--bg); color: var(--fg); }

.cs-green ::selection, .cs-teal ::selection  { background: var(--fg); color: var(--bg); }
::selection { background: var(--ink); color: var(--paper); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -.03em; color: currentColor; }

.d1 { /* mega display */
  font-size: clamp(3rem, 9.5vw, 8.6rem);
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.035em;
  font-weight: 650;
}
.d2 {
  font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  line-height: .96;
  text-transform: uppercase;
  letter-spacing: -.03em;
  font-weight: 650;
}
.d3 {
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 600;
}
.label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 22px;
}
.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); line-height: 1.55; max-width: 56ch; }
p { opacity: .92; }
.big-num {
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.section { padding-block: clamp(80px, 11vw, 150px); position: relative; overflow: hidden; }
.section-sm { padding-block: clamp(52px, 7vw, 90px); position: relative; overflow: hidden; }
.center { text-align: center; }
.grid { display: grid; gap: clamp(18px, 2.5vw, 32px); }
.cols-2 { grid-template-columns: 1fr 1fr; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.mt-1{margin-top:10px}.mt-2{margin-top:20px}.mt-3{margin-top:32px}.mt-4{margin-top:48px}.mt-5{margin-top:72px}
.mx-auto{margin-inline:auto}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  border: 1.5px solid var(--fg, currentColor);
  border-radius: var(--pill);
  font-weight: 600; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--fg, currentColor);
  background: transparent;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.btn:hover { background: var(--fg); color: var(--bg); transform: translateY(-2px); }
.btn-solid { background: var(--fg); color: var(--bg); }
.btn-solid:hover { background: transparent; color: var(--fg); }
.btn-lg { padding: 20px 40px; font-size: 1.02rem; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 17px; height: 17px; flex: 0 0 auto; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .92rem;
  border-bottom: 1.5px solid currentColor; padding-bottom: 4px;
  transition: gap .3s var(--ease), opacity .3s;
}
.link-arrow:hover { gap: 16px; }
.link-arrow svg { width: 15px; height: 15px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 20px;
  transition: background .35s var(--ease), padding .35s var(--ease), box-shadow .35s;
  color: var(--fg, var(--ink));
}
.nav:not(.scrolled) { background: transparent; }
.nav.scrolled {
  background: var(--green); color: var(--mint);
  --bg: var(--green); --fg: var(--mint);
  padding-block: 12px;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.15rem; letter-spacing: -.02em; text-transform: uppercase;
  flex: 0 0 auto;
}
.brand .logo {
  height: 46px; width: auto; flex: 0 0 auto;
  transition: transform .5s var(--ease);
}
.brand:hover .logo { transform: rotate(-6deg) scale(1.05); }
.brand-word { line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 0 0 auto; }
.nav-links a {
  padding: 8px 15px; border-radius: var(--pill);
  font-weight: 600; font-size: .88rem; letter-spacing: .05em; text-transform: uppercase;
  opacity: .85;
  transition: opacity .25s, background .25s, color .25s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { background: var(--fg); color: var(--bg); opacity: 1; }
.nav-cta { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.nav-cta .btn { padding: 11px 22px; font-size: .85rem; white-space: nowrap; }

.nav-toggle { display: none; width: 44px; height: 44px; border: 1.5px solid currentColor; border-radius: 50%; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 17px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--green); color: var(--mint);
  --bg: var(--green); --fg: var(--mint);
  padding: 110px 28px 40px;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: transform .55s var(--ease), visibility 0s linear .55s;
  display: none; flex-direction: column;
}
.mobile-menu.open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}
.mobile-menu a:not(.btn) {
  font-size: clamp(2rem, 8vw, 3rem); font-weight: 650; text-transform: uppercase; letter-spacing: -.02em;
  padding: 12px 0; border-bottom: 1.5px solid rgba(123,237,201,.25);
}
.mobile-menu .btn { margin-top: 28px; }

/* ---------- Hero ---------- */
.hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; padding-top: 130px; padding-bottom: 70px; position: relative; overflow: hidden; }
.hero .container { position: relative; z-index: 1; }
.hero .d1 { position: relative; z-index: 1; max-width: 12ch; }
.hero .d1 .outline {
  color: var(--bg);              /* fill matches the section bg so it reads as hollow */
  -webkit-text-stroke: 2px var(--fg);
  paint-order: stroke fill;      /* stroke under fill: hides the doubled line at the R's junction */
}

/* Hero artwork — 3D wireframe sphere, slow professional rotation */
.hero-art {
  position: absolute; z-index: 0; pointer-events: none;
  top: 50%; right: 2%;
  width: min(42vw, 600px);
  transform: translateY(-52%);
}
.globe-wrap {
  position: relative; width: 100%; aspect-ratio: 1;
}
/* soft glow behind the globe */
.globe-wrap::before {
  content: ""; position: absolute; inset: -10%;
  background: radial-gradient(closest-side, rgba(141,235,221,.09), transparent 70%);
}
#globe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}


/* Scroll-down circle */
.scroll-circle {
  flex: 0 0 auto;
  width: 72px; height: 72px;
  border: 1.5px solid var(--fg); border-radius: 50%;
  display: grid; place-items: center;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.scroll-circle svg { width: 22px; height: 22px; animation: bob 2.2s ease-in-out infinite; }
.scroll-circle:hover { background: var(--fg); color: var(--bg); transform: translateY(3px); }
@keyframes bob { 0%,100% { transform: translateY(-3px); } 50% { transform: translateY(3px); } }
.hero .lead { margin-top: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 42px; }
.hero-foot { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: clamp(40px, 6vw, 80px); }
.hero-foot .facts { display: flex; gap: clamp(20px, 4vw, 56px); flex-wrap: wrap; }
.hero-foot .fact { font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; opacity: .85; }
.hero-foot .fact strong { display: block; font-size: 1.6rem; letter-spacing: -.02em; }

/* Rotating sticker badge */
.sticker {
  position: absolute; z-index: 2;
  width: clamp(120px, 15vw, 190px); height: clamp(120px, 15vw, 190px);
}
.sticker svg { width: 100%; height: 100%; animation: spin 16s linear infinite; }
.sticker .sticker-center {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 650;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero .sticker { top: 16%; right: clamp(20px, 8vw, 120px); }

/* Squiggle divider */
.squiggle { display: block; width: 100%; height: 70px; overflow: visible; }
.squiggle path { fill: none; stroke: currentColor; stroke-width: 2; }

/* ---------- Marquee ---------- */
.marquee-band { padding-block: 22px; overflow: hidden; border-block: 1.5px solid var(--fg); }
.marquee { display: flex; width: max-content; animation: scrollx 30s linear infinite; }
.marquee-inner { display: flex; align-items: center; flex: 0 0 auto; }
.marquee-inner span {
  font-size: clamp(1.3rem, 2.6vw, 2.2rem); font-weight: 650; text-transform: uppercase; letter-spacing: -.01em;
  white-space: nowrap; padding-inline: 26px; display: flex; align-items: center; gap: 52px;
}
.marquee-inner span::after { content: "✚"; font-size: .7em; }
@keyframes scrollx { to { transform: translateX(-50%); } }
.marquee-band.big .marquee-inner span { font-size: clamp(2rem, 5vw, 4rem); }

/* ---------- Numbered rows (list sections) ---------- */
.num-rows { border-top: 1.5px solid var(--fg); }
.num-row {
  display: grid; grid-template-columns: 90px 1fr 1.1fr;
  gap: clamp(16px, 3vw, 44px); align-items: baseline;
  padding-block: clamp(26px, 4vw, 44px);
  border-bottom: 1.5px solid var(--fg);
  transition: padding-left .35s var(--ease);
}
.num-row:hover { padding-left: 14px; }
.num-row .n { font-size: 1rem; font-weight: 650; letter-spacing: .05em; }
.num-row h3 { font-size: clamp(1.4rem, 3vw, 2.3rem); text-transform: uppercase; letter-spacing: -.02em; }
.num-row p { max-width: 52ch; }

/* ---------- Tiles (cards) ---------- */
.tile {
  border-radius: 26px; padding: clamp(26px, 3.4vw, 44px);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 300px;
  transition: transform var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.tile:hover { transform: translateY(-8px); }
.tile .tile-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.tile h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); text-transform: uppercase; letter-spacing: -.02em; }
.tile .tile-kicker { font-size: .8rem; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; opacity: .8; }
.tile p { font-size: .98rem; }
.tile .tile-foot { margin-top: auto; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.tile .amp-big {
  position: absolute; right: -24px; bottom: -58px;
  font-size: 13rem; font-weight: 650; line-height: 1; opacity: .1; pointer-events: none;
}
.chip {
  display: inline-flex; align-items: center;
  border: 1.5px solid currentColor; border-radius: var(--pill);
  padding: 7px 16px; font-size: .74rem; font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
}
.chip.solid { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* Sub-brand logo badges (real brand marks on a white chip) */
.brand-lockup { display: flex; align-items: center; gap: 16px; }
.brand-lockup h2, .brand-lockup h3 { margin: 0; }
.brand-badge {
  flex: 0 0 auto;
  display: grid; place-items: center;
  background: #fff; border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,.16);
}
.brand-badge svg { display: block; }
.brand-badge.sm { width: 56px; height: 56px; border-radius: 14px; }
.brand-badge.sm svg { width: 38px; height: 38px; }
.brand-badge.lg { width: 74px; height: 74px; border-radius: 20px; }
.brand-badge.lg svg { width: 50px; height: 50px; }

/* Product tiles */
.product-tile { border-radius: 26px; overflow: hidden; display: flex; flex-direction: column; transition: transform var(--dur) var(--ease); }
.product-tile:hover { transform: translateY(-8px); }
.product-tile .pv { aspect-ratio: 1/.85; display: grid; place-items: center; overflow: hidden; position: relative; }
.product-tile .pv svg { width: 34%; height: auto; }
.product-tile .pv img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 26px; box-sizing: border-box; }
.product-tile .pb { padding: 22px 26px 28px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-tile .pb .cat { font-size: .74rem; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }
.product-tile .pb h4 { font-size: 1.2rem; text-transform: uppercase; letter-spacing: -.01em; }
.product-tile .pb p { font-size: .9rem; }
.product-tile .price { margin-top: auto; padding-top: 14px; font-size: 1.5rem; font-weight: 650; letter-spacing: -.02em; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 40px); }
.stat { border-top: 1.5px solid var(--fg); padding-top: 22px; }
.stat .lbl { font-size: .85rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .85; margin-top: 8px; }

/* ---------- Steps ---------- */
.step-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 32px); }
.step-card { border: 1.5px solid var(--fg); border-radius: 26px; padding: clamp(26px, 3vw, 40px); display: flex; flex-direction: column; gap: 16px; min-height: 320px; transition: background .35s var(--ease), color .35s var(--ease); }
.step-card:hover { background: var(--fg); color: var(--bg); }
.step-card .step-n {
  width: 58px; height: 58px; border: 1.5px solid currentColor; border-radius: 50%;
  display: grid; place-items: center; font-weight: 650; font-size: 1.1rem;
}
.step-card h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); text-transform: uppercase; }
.step-card p { margin-top: auto; }

/* ---------- Giant quote ---------- */
.quote-giant blockquote {
  font-size: clamp(1.8rem, 4.6vw, 4rem);
  font-weight: 600; letter-spacing: -.03em; line-height: 1.04;
  text-transform: uppercase;
  max-width: 24ch;
}
.quote-giant .cite { margin-top: 34px; font-weight: 650; text-transform: uppercase; letter-spacing: .1em; font-size: .88rem; }
.quote-giant .cite span { display: block; opacity: .75; margin-top: 4px; }

/* ---------- CTA ---------- */
.cta .d2, .cta .d1 { max-width: 16ch; }
.cta .btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 44px; }
.center .btn-row { justify-content: center; }
.center .d2, .center .d1, .center .lead { margin-inline: auto; }

/* ---------- Forms ---------- */
.field { margin-bottom: 26px; }
.field label { display: block; font-size: .78rem; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 10px; opacity: .85; }
.field input, .field textarea, .field select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1.5px solid currentColor;
  padding: 12px 2px; border-radius: 0; outline: none;
  transition: border-color .25s, opacity .25s;
  opacity: .9;
}
.field input::placeholder, .field textarea::placeholder { color: currentColor; opacity: .45; }
.field input:focus, .field textarea:focus, .field select:focus { opacity: 1; }
.field textarea { min-height: 120px; resize: vertical; }
.field select option { color: var(--ink); background: var(--paper); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.form-note { font-size: .8rem; opacity: .7; margin-top: 14px; }
.form-success { display: none; margin-top: 20px; padding: 16px 22px; border: 1.5px solid currentColor; border-radius: var(--pill); font-weight: 600; font-size: .92rem; text-align: center; }
.form-success.show { display: block; }

/* Newsletter pill */
.news-pill { display: flex; gap: 8px; border: 1.5px solid var(--fg); border-radius: var(--pill); padding: 6px 6px 6px 22px; max-width: 420px; }
.news-pill input { flex: 1; background: none; border: none; outline: none; min-width: 0; }
.news-pill input::placeholder { color: currentColor; opacity: .5; }
.news-pill button { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%; background: var(--fg); color: var(--bg); display: grid; place-items: center; transition: transform .3s var(--ease); }
.news-pill button:hover { transform: rotate(-14deg) scale(1.06); }
.news-pill button svg { width: 18px; height: 18px; }

/* ---------- Contact info rows ---------- */
.info-rows { border-top: 1.5px solid var(--fg); }
.info-row { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding-block: 22px; border-bottom: 1.5px solid var(--fg); transition: padding-left .3s var(--ease); }
a.info-row:hover { padding-left: 12px; }
.info-row .k { font-size: .78rem; font-weight: 650; letter-spacing: .18em; text-transform: uppercase; opacity: .75; }
.info-row .v { font-weight: 650; font-size: clamp(1.05rem, 1.6vw, 1.3rem); letter-spacing: -.01em; text-align: right; }

/* ---------- FAQ ---------- */
.faq { border-top: 1.5px solid var(--fg); }
.faq-item { border-bottom: 1.5px solid var(--fg); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 22px;
  padding-block: 26px; text-align: left;
  font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 650; text-transform: uppercase; letter-spacing: -.01em;
}
.faq-q .pm { flex: 0 0 auto; width: 40px; height: 40px; border: 1.5px solid currentColor; border-radius: 50%; position: relative; transition: background .3s, transform .4s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; top: 50%; left: 50%; background: currentColor; transition: transform .3s var(--ease); }
.faq-q .pm::before { width: 14px; height: 2px; transform: translate(-50%,-50%); }
.faq-q .pm::after { width: 2px; height: 14px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q .pm { transform: rotate(90deg); }
.faq-item.open .faq-q .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding-bottom: 30px; max-width: 68ch; opacity: .92; }

/* ---------- Legal content (privacy / terms) ---------- */
.legal-content { max-width: 70ch; }
.legal-content .updated { font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .65; margin-bottom: 44px; }
.legal-content h2 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); letter-spacing: -.01em; margin-top: 46px; margin-bottom: 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { line-height: 1.7; margin-bottom: 16px; }
.legal-content ul { margin: 0 0 18px 22px; }
.legal-content li { line-height: 1.65; margin-bottom: 8px; opacity: .92; }
.legal-content a { text-decoration: underline; }
.legal-content strong { font-weight: 650; }

/* ---------- Empty state ---------- */
.empty-state { border: 1.5px dashed var(--fg); border-radius: 26px; padding: clamp(44px, 7vw, 90px); text-align: center; }
.empty-state .d3 { text-transform: uppercase; }

/* ---------- Page hero (interior) ---------- */
.page-hero { padding-top: clamp(150px, 20vh, 210px); padding-bottom: clamp(56px, 8vw, 100px); position: relative; overflow: hidden; }
.page-hero .d1 { max-width: 14ch; }
.page-hero .lead { margin-top: 28px; }
.page-hero .crumb { font-size: .8rem; font-weight: 650; letter-spacing: .2em; text-transform: uppercase; opacity: .75; margin-bottom: 24px; }
.page-hero .sticker { top: auto; bottom: 8%; right: clamp(20px, 6vw, 100px); }

/* ---------- Footer ---------- */
.footer { padding-top: clamp(70px, 9vw, 120px); overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: clamp(28px, 4vw, 48px); }
.footer h5 { font-size: .78rem; font-weight: 650; letter-spacing: .2em; text-transform: uppercase; opacity: .8; margin-bottom: 20px; }
.footer-col a { display: block; padding: 6px 0; font-weight: 600; font-size: 1rem; opacity: .85; transition: opacity .25s, transform .25s; }
.footer-col a:hover { opacity: 1; transform: translateX(5px); }
.footer-about { max-width: 300px; font-size: .95rem; opacity: .85; margin-top: 16px; }
.footer-mega {
  margin-top: clamp(50px, 7vw, 90px);
  font-size: clamp(2.2rem, 9.2vw, 8.4rem);
  font-weight: 650; letter-spacing: -.04em; line-height: .85; text-transform: uppercase;
  white-space: nowrap; text-align: center;
  user-select: none;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; padding-block: 26px; margin-top: clamp(24px, 4vw, 44px); border-top: 1.5px solid var(--fg); font-size: .85rem; }
.footer-bottom p { opacity: .8; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 44px; height: 44px; border: 1.5px solid currentColor; border-radius: 50%; display: grid; place-items: center; transition: background .3s, color .3s, transform .3s; }
.footer-social a:hover { background: var(--fg); color: var(--bg); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s 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; }

.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--coral); z-index: 200; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .num-row { grid-template-columns: 60px 1fr; }
  .num-row p { grid-column: 2; }
}
@media (max-width: 960px) {
  .mobile-menu { display: flex; }
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 860px) {
  .cols-3, .step-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 30px; }
  .hero .sticker { display: none; }
  .page-hero .sticker { display: none; }
  .brand .logo { height: 40px; }

  /* Mobile hero: centered + symmetrical. Headline, globe in the middle, then copy + actions */
  .hero { padding-top: 112px; padding-bottom: 54px; text-align: center; }
  .hero-head { display: flex; flex-direction: column; align-items: center; }
  .hero-body { display: flex; flex-direction: column; align-items: center; }
  .hero-art {
    position: static;
    width: min(60vw, 288px);
    margin: 6px auto 26px;
    transform: none;
    top: auto; right: auto;
  }
  .hero .label {
    font-size: .68rem;
    letter-spacing: .16em;
    margin-bottom: 16px;
    opacity: .8;
  }
  .hero .d1 {
    max-width: 14ch;
    font-size: clamp(2.5rem, 11vw, 3.4rem);
    line-height: .96;
    margin-inline: auto;
  }
  .hero .lead { margin: 0 auto; max-width: 40ch; }
  .hero-actions {
    margin-top: 28px;
    flex-wrap: nowrap;
    gap: 10px;
    width: 100%;
    max-width: 400px;
  }
  .hero-actions .btn {
    flex: 1 1 0;
    justify-content: center;
    padding: 17px 10px;
    font-size: .74rem;
    letter-spacing: 0;
    white-space: nowrap;
  }
  .hero-actions .btn svg { display: none; }
  /* keep the customers + reviews stats side by side on mobile, drop the rating in between */
  .hero-foot { margin-top: 32px; align-items: center; gap: 26px; }
  .hero-foot .facts { justify-content: center; gap: 28px; flex-wrap: nowrap; }
  .hero-foot .fact { text-align: center; flex: 0 0 auto; font-size: .74rem; }
  .hero-foot .fact strong { font-size: 1.3rem; }
  .hero-foot .fact:nth-child(2) { display: none; }
}
@media (max-width: 400px) {
  .hero-foot .facts { gap: 18px; }
  .hero-foot .fact { font-size: .66rem; }
  .hero-foot .fact strong { font-size: 1.12rem; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .cols-2, .cols-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .info-row .v { text-align: left; }
  .info-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .tile { min-height: 240px; }
  .hero-art { width: min(58vw, 256px); margin: 2px auto 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
}
