/* ==========================================================================
   Equant360 — Marketing site design system
   Bold editorial. Logo DNA: cyan mark + green/amber/red "360" trio.
   ========================================================================== */

/* ---- Tokens -------------------------------------------------------------- */
:root {
  /* color */
  --canvas:    #faf8f4;
  --canvas-2:  #f2efe8;
  --ink:       #16181d;
  --ink-soft:  #3a3d44;
  --graphite:  #6b6e76;
  --line:      rgba(22, 24, 29, .12);
  --line-2:    rgba(22, 24, 29, .07);

  --gold:      #e9a300;      /* marketing primary */
  --gold-deep: #bf8500;
  --gold-wash: #fdf2d4;
  --accent:    #e9a300;      /* primary accent = gold */
  --accent-ink:#7a5600;
  --accent-wash: #fdf2d4;
  --cyan:      #10a4d9;      /* logo mark — supporting only */

  --green:     #2e9e49;      /* "3" / secondary accent */
  --green-deep:#22823b;
  --green-wash:#e6f4ea;
  --amber:     #e8b923;      /* "6" */
  --red:       #d14d41;      /* "0" */

  --ink-deep:  #101216;      /* footer / dark band */

  /* type */
  --display: "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --mono:    "Hanken Grotesk", ui-monospace, monospace;

  /* rhythm */
  --gutter: clamp(1.25rem, 5vw, 6rem);
  --maxw: 1320px;
  --radius: 18px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--canvas);
  color: var(--ink);
  line-height: 1.55;
  font-size: clamp(1rem, .96rem + .25vw, 1.125rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* grain / paper texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }

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

/* ---- Type ---------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--graphite);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before {
  content: "";
  width: 1.8rem; height: 1px;
  background: currentColor;
}

.index-tag {
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
}

/* ---- Layout -------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(4.5rem, 9vw, 9rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.rule { height: 1px; background: var(--line); border: 0; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: -.01em;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--primary {
  background: var(--ink);
  color: var(--canvas);
}
.btn--primary:hover { background: var(--gold); color: var(--ink); transform: translateY(-2px); }
.btn--accent {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 24px -10px rgba(233, 163, 0, .75);
}
.btn--accent:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(233, 163, 0, .85); }
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
.btn--light { background: var(--canvas); color: var(--ink); }
.btn--light:hover { background: var(--ink); color: var(--canvas); transform: translateY(-2px); }
.btn--outline-light { border: 1px solid rgba(255,255,255,.25); color: #fff; }
.btn--outline-light:hover { border-color: #fff; transform: translateY(-2px); }
/* dark outline for use on the gold CTA band */
.btn--outline-ink { border: 1px solid rgba(22, 24, 29, .3); color: var(--ink); }
.btn--outline-ink:hover { border-color: var(--ink); background: var(--ink); color: var(--canvas); transform: translateY(-2px); }

/* ---- Nav ----------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(250, 248, 244, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 76px;
}
.nav__logo img { height: 30px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav__links a {
  font-size: .98rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: .25rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .28s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__burger { display: none; width: 28px; height: 18px; position: relative; }
.nav__burger span {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 8px; }
.nav__burger span:nth-child(3) { top: 16px; }
body.menu-open .nav__burger span:nth-child(1) { top: 8px; transform: rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--canvas);
  padding: 7rem var(--gutter) 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
  visibility: hidden;
}
body.menu-open .drawer { transform: translateY(0); visibility: visible; }
.drawer a {
  font-family: var(--display);
  font-size: clamp(2rem, 9vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
}
.drawer a span { color: var(--accent); font-family: var(--mono); font-size: 1rem; vertical-align: super; }

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(2.5rem, 5vw, 4.5rem); background: linear-gradient(180deg, var(--gold-wash), rgba(253, 242, 212, 0) 72%); }
.hero__grid {
  display: grid;
  grid-template-columns: 1.5fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__kicker { margin-bottom: 1.8rem; }
.hero h1 {
  font-size: clamp(3rem, 1.5rem + 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -.035em;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.hero h1 .stroke {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.hero__sub {
  margin-top: 1.8rem;
  max-width: 46ch;
  font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem);
  color: var(--ink-soft);
}
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__pills { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.pill {
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .4rem .85rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: .45rem;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; }

/* the signature 360 ring */
.ring { position: relative; aspect-ratio: 1; width: 100%; max-width: 420px; margin-inline: auto; }
.ring svg { width: 100%; height: 100%; overflow: visible; }
.ring__spin { transform-origin: 50% 50%; animation: spin 26s linear infinite; }
.ring__core {
  position: absolute; inset: 0;
  display: grid; place-content: center; text-align: center;
}
.ring__core .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.6vw, 3.7rem);
  letter-spacing: -.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .02em;
}
.ring__core .num .eq { color: var(--ink); font-size: .58em; letter-spacing: -.02em; }
.ring__core .num b:nth-of-type(1) { color: var(--green); }
.ring__core .num b:nth-of-type(2) { color: var(--amber); }
.ring__core .num b:nth-of-type(3) { color: var(--red); }
.ring__core .lbl {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--graphite); margin-top: .5rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .ring__spin { animation: none; } }

/* ---- Marquee (replaces your stack) -------------------------------------- */
.stack { border-block: 1px solid var(--line); background: var(--canvas-2); overflow: hidden; }
.stack__head { padding: 2.6rem 0 1.4rem; }
.stack__head h2 {
  font-size: clamp(1.6rem, 1.1rem + 2vw, 2.7rem);
  font-weight: 700; letter-spacing: -.025em; max-width: 22ch;
}
.stack__head p { color: var(--ink-soft); margin-top: .8rem; max-width: 50ch; }
.marquee { padding-bottom: 2.6rem; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track {
  display: flex; gap: 1rem; width: max-content;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.chip-strike {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  letter-spacing: -.02em;
  padding: .5rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--graphite);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--canvas);
}
.chip-strike s { text-decoration-color: var(--red); text-decoration-thickness: 2px; }
.chip-strike .arrow { color: var(--accent); }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; flex-wrap: wrap; } }

/* ---- Modules ------------------------------------------------------------- */
.mod__head { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; margin-bottom: 3.5rem; }
.mod__head h2 { font-size: clamp(2.2rem, 1.4rem + 3.4vw, 4.4rem); font-weight: 800; letter-spacing: -.035em; max-width: 16ch; }
.mod__head p { color: var(--ink-soft); max-width: 34ch; }

.family {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(2.2rem, 4vw, 3.2rem);
  border-top: 1px solid var(--line);
}
.family:last-child { border-bottom: 1px solid var(--line); }
.family__label { display: flex; flex-direction: column; gap: 1rem; }
.family__num {
  font-family: var(--mono); font-weight: 700; font-size: .85rem; letter-spacing: .1em;
  display: inline-flex; align-items: center; gap: .6rem;
}
.family__num .tick { width: 12px; height: 12px; border-radius: 3px; }
.family__label h3 { font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.6rem); font-weight: 700; letter-spacing: -.03em; }
.family__label p { color: var(--graphite); font-size: .98rem; max-width: 30ch; }

.family__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(212px, 1fr));
  gap: .9rem;
  align-content: start;
}
.feat {
  background: var(--canvas);
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.feat:hover {
  background: #fff;
  border-color: rgba(233, 163, 0, .5);
  box-shadow: 0 12px 30px -18px rgba(191, 133, 0, .35);
  transform: translateY(-3px);
}
.feat__top { display: flex; align-items: center; gap: .65rem; margin-bottom: .7rem; }
.feat__ico {
  width: 34px; height: 34px; border-radius: 9px;
  display: grid; place-content: center;
  background: var(--accent-wash); color: var(--accent-ink);
  flex: none;
}
.feat__ico svg { width: 18px; height: 18px; }
.feat h4 { font-family: var(--body); font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em; line-height: 1.2; }
.feat p { font-size: .9rem; color: var(--graphite); line-height: 1.5; }
.feat .tag {
  position: absolute; top: 1rem; right: 1rem;
  font-family: var(--mono); font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .15rem .45rem; border-radius: 5px;
}
.tag--new { background: var(--green); color: #fff; }
.tag--ai  { background: var(--ink); color: #fff; }
.tag--soon { background: var(--gold-wash); color: var(--gold-deep); white-space: nowrap; }
/* give cards room so a 'Coming soon' tag never overlaps the title */
.feat:has(.tag--soon) h4 { padding-right: 5.2rem; }

/* "Coming soon" badge on a module family heading */
.fam-soon {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .28rem .65rem; border-radius: 100px;
  background: var(--gold-wash); color: var(--gold-deep);
  font-family: var(--mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.fam-soon .d { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }

/* ---- India band ---------------------------------------------------------- */
.india { background: var(--ink-deep); color: #e9e7e2; border-radius: clamp(20px, 3vw, 36px); overflow: hidden; position: relative; }
.india__inner { padding: clamp(2.6rem, 5vw, 4.5rem); position: relative; z-index: 1; }
.india::after {
  content: ""; position: absolute; right: -10%; top: -30%;
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,163,0,.26), transparent 65%);
}
.india h2 { color: #fff; font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; max-width: 18ch; }
.india__lead { color: #b6b3ac; margin-top: 1rem; max-width: 52ch; }
.india__grid { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.india__cell { border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.1rem; }
.india__cell .k { font-family: var(--mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: #8d8a84; }
.india__cell .v { font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin-top: .5rem; letter-spacing: -.01em; }
.india__cell .v .accent { color: var(--accent); }

/* ---- AI strip ------------------------------------------------------------ */
.ai__head { max-width: 40ch; margin-bottom: 3rem; }
.ai__head h2 { font-size: clamp(2rem, 1.4rem + 3vw, 4rem); font-weight: 800; letter-spacing: -.035em; }
.ai__head h2 .grad {
  background: linear-gradient(100deg, var(--green), var(--amber) 45%, var(--red));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ai__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.ai-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem 1.6rem; background: var(--canvas);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.ai-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.ai-card .num { font-family: var(--mono); font-size: .78rem; color: var(--graphite); letter-spacing: .1em; }
.ai-card h4 { font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; margin: 1rem 0 .6rem; }
.ai-card p { font-size: .94rem; color: var(--ink-soft); }

/* ---- Platforms / proof --------------------------------------------------- */
.proof { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.proof h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; max-width: 14ch; }
.proof p { color: var(--ink-soft); margin-top: 1rem; max-width: 44ch; }
.proof__plats { margin-top: 1.8rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.plat { display: inline-flex; align-items: center; gap: .5rem; padding: .55rem 1rem; border: 1px solid var(--line); border-radius: 100px; font-weight: 600; font-size: .92rem; }
.plat svg { width: 1.1em; height: 1.1em; color: var(--accent); }
a.plat { transition: border-color .2s var(--ease), transform .2s var(--ease); }
a.plat:hover { border-color: var(--ink); transform: translateY(-2px); }
.checklist a { color: var(--gold-deep); font-weight: 600; }
.checklist a:hover { text-decoration: underline; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--canvas); padding: 1.8rem 1.6rem; }
.stat .n { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 3.4rem); letter-spacing: -.04em; line-height: 1; }
.stat .n.c1 { color: var(--gold-deep); }
.stat .n.c2 { color: var(--green); }
.stat .n.c3 { color: var(--amber); }
.stat .n.c4 { color: var(--red); }
.stat .l { color: var(--graphite); font-size: .9rem; margin-top: .6rem; }

/* ---- Measurable impact band ---------------------------------------------- */
.impact { background: var(--gold-wash); border-radius: clamp(20px, 3vw, 36px); }
.impact__inner { padding: clamp(2.6rem, 5vw, 4.5rem); }
.impact__inner .eyebrow { color: var(--gold-deep); }
.impact__inner > h2 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; max-width: 20ch; margin-top: .6rem; }
.impact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem 2.5rem; margin-top: clamp(2rem, 4vw, 3.2rem); }
.impact__cell { border-top: 2px solid rgba(191, 133, 0, .25); padding-top: 1.1rem; }
.impact__cell .n { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5.4vw, 4.2rem); letter-spacing: -.04em; line-height: 1; }
.impact__cell .n.green { color: var(--green-deep); }
.impact__cell .n.gold { color: var(--gold-deep); }
.impact__cell .l { color: var(--ink-soft); font-size: .86rem; margin-top: .7rem; text-transform: uppercase; letter-spacing: .06em; font-weight: 600; }
@media (max-width: 760px) { .impact__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .impact__grid { grid-template-columns: 1fr; } }

/* ---- CTA band ------------------------------------------------------------ */
.cta { text-align: center; }
.cta__box {
  background: linear-gradient(135deg, var(--gold) 0%, #f2b32a 100%);
  color: var(--ink);
  border-radius: clamp(22px, 3vw, 40px);
  padding: clamp(3rem, 7vw, 6rem) var(--gutter);
  position: relative; overflow: hidden;
}
.cta__box::before, .cta__box::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 2px solid rgba(22,24,29,.16);
}
.cta__box::before { width: 320px; height: 320px; left: -120px; bottom: -160px; }
.cta__box::after { width: 220px; height: 220px; right: -80px; top: -120px; border-color: rgba(22,24,29,.22); }
.cta__box h2 { color: var(--ink); font-size: clamp(2rem, 1.4rem + 3.4vw, 4.2rem); font-weight: 800; letter-spacing: -.035em; max-width: 18ch; margin-inline: auto; position: relative; }
.cta__box p { color: rgba(22,24,29,.78); margin: 1.2rem auto 0; max-width: 48ch; position: relative; }
.cta__actions { margin-top: 2.4rem; display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; position: relative; }
.cta__mail { margin-top: 2rem; font-size: .95rem; color: rgba(22,24,29,.82); position: relative; }
.cta__mail a { text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }

/* ---- Footer -------------------------------------------------------------- */
.footer { background: var(--ink-deep); color: #b6b3ac; padding-block: clamp(3.5rem, 6vw, 5rem) 2.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer__brand img { height: 28px; filter: brightness(0) invert(1); margin-bottom: 1.2rem; }
.footer__brand p { max-width: 32ch; font-size: .94rem; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  display: grid; place-content: center;
  transition: background .25s var(--ease), border-color .25s, transform .25s;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer__social svg { width: 17px; height: 17px; }
.footer h4 { font-family: var(--mono); font-weight: 700; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
.footer li { margin-bottom: .7rem; }
.footer li a { font-size: .94rem; transition: color .2s; }
.footer li a:hover { color: #fff; }
.footer address { font-style: normal; font-size: .94rem; line-height: 1.7; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 3.5rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .88rem; }
.footer__bottom a:hover { color: var(--accent); }

/* ---- Reveal animation (only hides when JS is present) -------------------- */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: .08s; }
[data-reveal][data-d="2"] { transition-delay: .16s; }
[data-reveal][data-d="3"] { transition-delay: .24s; }
[data-reveal][data-d="4"] { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- Responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .ring { max-width: 320px; order: -1; }
  .family { grid-template-columns: 1fr; }
  .mod__head { grid-template-columns: 1fr; }
  .proof { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: block; }
  .nav.is-stuck { background: rgba(250,248,244,.92); }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}

/* ==========================================================================
   Inner-page components (about / features / pricing / trust / contact)
   ========================================================================== */

/* ---- Page hero (compact) ------------------------------------------------- */
.page-hero {
  background: linear-gradient(180deg, var(--gold-wash), rgba(253, 242, 212, 0) 90%);
  padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.page-hero__inner { position: relative; z-index: 1; }

/* bespoke per-page hero art on the right */
.page-hero__art {
  position: absolute;
  top: 50%;
  right: max(1.25rem, calc((100% - var(--maxw)) / 2 + 0.5rem));
  transform: translateY(-50%);
  width: min(40vw, 400px);
  aspect-ratio: 1;
  pointer-events: none;
  z-index: 0;
}
.page-hero__art svg { width: 100%; height: 100%; overflow: visible; }
.page-hero .page-hero__dots { display: none; }

.pa-float, .pa-float2, .pa-float3, .pa-pulse { transform-box: fill-box; transform-origin: center; }
.pa-float  { animation: paFloat 5s   ease-in-out infinite; }
.pa-float2 { animation: paFloat 6.5s ease-in-out infinite -2s; }
.pa-float3 { animation: paFloat 8s   ease-in-out infinite -1s; }
.pa-pulse  { animation: paPulse 4s   ease-in-out infinite; }
@keyframes paFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes paPulse { 0%, 100% { opacity: .4; } 50% { opacity: .9; } }

@media (max-width: 920px) {
  .page-hero__art { display: none; }
  .page-hero .page-hero__dots { display: flex; }
}
@media (prefers-reduced-motion: reduce) {
  .pa-float, .pa-float2, .pa-float3, .pa-pulse { animation: none; }
}
.page-hero h1 {
  font-size: clamp(2.6rem, 1.6rem + 5vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  margin-top: 1.4rem;
  max-width: 15ch;
}
.page-hero h1 em { font-style: normal; color: var(--green); }
.page-hero__lead {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1rem + .4vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 40ch;
}
/* decorative trio dots top-right */
.page-hero__dots { position: absolute; top: 2.4rem; right: var(--gutter); display: flex; gap: .5rem; }
.page-hero__dots span { width: 12px; height: 12px; border-radius: 50%; }

/* ---- Centered section head ----------------------------------------------- */
.sec-head { max-width: 60ch; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.sec-head.start { margin-inline: 0; text-align: left; }
.sec-head .eyebrow { justify-content: center; }
.sec-head.start .eyebrow { justify-content: flex-start; }
.sec-head h2 { font-size: clamp(2rem, 1.4rem + 3vw, 3.6rem); font-weight: 800; letter-spacing: -.03em; margin-top: .7rem; }
.sec-head p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.08rem; }

/* ---- Generic card grid (reuses .ai-card) --------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.cards--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card-ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-content: center;
  background: var(--gold-wash); color: var(--accent-ink); margin-bottom: 1.1rem;
}
.card-ico svg { width: 24px; height: 24px; }
.card-ico.green, .card-ico--green { background: var(--green-wash); color: var(--green-deep); }

/* ---- Split (text + aside) ------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split__body h2 { font-size: clamp(1.8rem, 1.3rem + 2.4vw, 3rem); font-weight: 800; letter-spacing: -.03em; }
.split__body > p { color: var(--ink-soft); margin-top: 1.2rem; font-size: 1.06rem; }
.split__aside { display: grid; gap: 1.2rem; }

/* ---- Checklist ----------------------------------------------------------- */
.checklist { display: grid; gap: .9rem; margin-top: 1.6rem; }
.checklist li { display: flex; gap: .75rem; align-items: flex-start; font-size: 1rem; color: var(--ink-soft); }
.checklist li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: .1rem; border-radius: 50%;
  background: var(--green-wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2322823b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px no-repeat;
}
.checklist li strong { color: var(--ink); font-weight: 700; }

/* panel used as aside */
.panel { background: var(--canvas); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); }
.panel h4 { font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; margin-bottom: 1.2rem; }
.panel.gold { background: var(--gold-wash); border-color: rgba(191,133,0,.2); }

/* ---- Team ---------------------------------------------------------------- */
.team { display: grid; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); gap: 1.6rem; }
.team-card { background: var(--canvas); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem); transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.team-card:hover { border-color: rgba(191,133,0,.4); box-shadow: 0 14px 34px -22px rgba(191,133,0,.4); }
.team-card__head { display: flex; align-items: center; gap: 1.15rem; margin-bottom: 1.3rem; }
.team-card img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; flex: none; border: 3px solid var(--gold-wash); }
.team-card h4 { font-family: var(--display); font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; line-height: 1.1; }
.team-card .role { display: inline-block; margin-top: .55rem; background: var(--green-wash); color: var(--green-deep); font-size: .78rem; font-weight: 600; letter-spacing: .01em; padding: .28rem .7rem; border-radius: 100px; }
.team-card > p { font-size: .97rem; color: var(--ink-soft); line-height: 1.65; }
@media (max-width: 460px) { .team-card__head { flex-direction: column; align-items: flex-start; gap: .9rem; } }

/* ---- Pricing ------------------------------------------------------------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: start; }
.price-card { background: var(--canvas); border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.9rem; position: relative; }
.price-card.featured { border-color: var(--gold); box-shadow: 0 24px 50px -28px rgba(191,133,0,.5); background: #fff; }
.price-card__badge { position: absolute; top: -13px; left: 1.9rem; background: var(--gold); color: var(--ink); font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .35rem .75rem; border-radius: 100px; }
.price-card .tier { font-family: var(--mono); font-size: .82rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--graphite); }
.price-card .blurb { color: var(--ink-soft); font-size: .95rem; margin: .7rem 0 1.4rem; min-height: 2.8em; }
.price-card .price { font-family: var(--display); font-weight: 800; font-size: 2.4rem; letter-spacing: -.03em; color: var(--ink); }
.price-card .price small { display: block; font-family: var(--body); font-weight: 500; font-size: .82rem; color: var(--graphite); letter-spacing: 0; margin-top: .2rem; }
.price-card .checklist { margin: 1.6rem 0; }
.price-card .checklist li { font-size: .92rem; }
.price-card .btn { width: 100%; justify-content: center; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ---- FAQ (native details) ------------------------------------------------ */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: var(--canvas); overflow: hidden; transition: border-color .25s var(--ease); }
.faq details[open] { border-color: rgba(191,133,0,.45); background: #fff; }
.faq summary { list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; font-family: var(--display); font-weight: 700; font-size: 1.08rem; letter-spacing: -.01em; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--body); font-weight: 400; font-size: 1.6rem; color: var(--gold-deep); line-height: 1; transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); font-size: .98rem; margin: 0; }

/* ---- Forms --------------------------------------------------------------- */
.form-card { background: var(--canvas); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 3.5vw, 3rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 11px;
  padding: .8rem .95rem; width: 100%; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(233,163,0,.15);
}
.form-card .btn { width: 100%; justify-content: center; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }

/* ---- Contact two-column -------------------------------------------------- */
.contact-cols { display: grid; grid-template-columns: 1.45fr .9fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }

/* ---- Contact info cards -------------------------------------------------- */
.info-stack { display: grid; gap: 1rem; align-content: start; }
.info-card { background: var(--gold-wash); border: 1px solid rgba(191,133,0,.18); border-radius: 14px; padding: 1.4rem 1.5rem; }
.info-card .card-ico { background: #fff; }
.info-card h4 { font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; margin-bottom: .3rem; }
.info-card p, .info-card a { font-size: .95rem; color: var(--ink-soft); }
.info-card a { font-weight: 600; color: var(--gold-deep); text-decoration: none; }
.info-card a:hover { text-decoration: underline; }
.info-card .social { display: flex; gap: .6rem; margin-top: .4rem; }
.info-card .social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(22,24,29,.14); display: grid; place-content: center; color: var(--ink); }
.info-card .social a:hover { background: var(--gold); border-color: var(--gold); }
.info-card .social svg { width: 16px; height: 16px; }

/* ---- Office / visit-us block --------------------------------------------- */
.office {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.office__info { padding: clamp(1.8rem, 3.5vw, 3rem); display: flex; flex-direction: column; }
.office__info .card-ico { background: var(--gold-wash); }
.office__info .eyebrow { margin-top: 1.2rem; }
.office__info h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem); letter-spacing: -.03em; margin: .55rem 0 1.3rem; }
.office__addr { font-style: normal; font-size: 1.06rem; line-height: 1.75; color: var(--ink-soft); }
.office__addr strong { display: block; color: var(--ink); font-weight: 700; font-size: 1.12rem; margin-bottom: .15rem; }
.office__meta { margin-top: 1.4rem; display: grid; gap: .5rem; font-size: .96rem; }
.office__meta a { color: var(--ink-soft); font-weight: 500; }
.office__meta a:hover { color: var(--gold-deep); }
.office__dir { margin-top: auto; padding-top: 1.6rem; display: inline-flex; align-items: center; gap: .45rem; align-self: flex-start; font-weight: 700; color: var(--gold-deep); }
.office__dir:hover { gap: .7rem; }
.office__map { position: relative; min-height: 320px; background: var(--gold-wash); }
.office__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 760px) {
  .office { grid-template-columns: 1fr; }
  .office__map { min-height: 260px; order: -1; }
}

/* split responsive */
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse > :first-child { order: 0; }
  .team { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .contact-cols { grid-template-columns: 1fr !important; }
}
