/* =========================================================================
   Maison Strategy — Design System
   Web3 marketing agency, London. "Designing for Trust".
   Palette: deep navy, warm cream / off-white, one restrained accent blue.
   Type: Clash Display (headings) + DM Sans (body).
   ========================================================================= */

:root {
  /* Brand colour tokens */
  --navy-900: #071021;
  --navy-800: #0A1628;   /* primary */
  --navy-700: #0E1E36;
  --navy-600: #14294a;
  --navy-500: #1c375f;

  --cream-050: #FBFAF7;
  --cream-100: #F7F5F0;  /* warm off-white background */
  --cream-200: #EFEAE0;  /* warm cream */
  --cream-300: #E4DDD0;

  --accent-600: #244FA0; /* hover / deep */
  --accent-500: #2E63C8; /* restrained accent blue — CTAs, links */
  --accent-400: #4E82E0; /* on-navy accent */
  --accent-tint: #E7EEF9;

  /* Semantic tokens (light / cream context) */
  --bg: var(--cream-100);
  --bg-raised: #ffffff;
  --ink: var(--navy-800);
  --ink-soft: #4C5566;
  --ink-mute: #6B7486;
  --line: #E2DCD0;
  --line-strong: #D3CBBB;
  --accent: var(--accent-500);
  --accent-hover: var(--accent-600);

  /* Typography */
  --font-display: "Clash Display", "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.22vw, 1.13rem);
  --step-1:  clamp(1.2rem, 1.11rem + 0.42vw, 1.5rem);
  --step-2:  clamp(1.5rem, 1.33rem + 0.82vw, 2.1rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.45vw, 3rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.5vw, 4.1rem);
  --step-5:  clamp(3rem, 2.2rem + 3.9vw, 5.4rem);

  /* Space + radius */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(7,16,33,.06), 0 4px 14px rgba(7,16,33,.05);
  --shadow-md: 0 12px 34px rgba(7,16,33,.10);
  --shadow-lg: 0 30px 70px rgba(7,16,33,.14);

  --maxw: 1200px;
  --gutter: clamp(1.15rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);

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

/* -------------------------------------------------------------------------
   Reset / base
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid var(--accent-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px;
  background: var(--navy-800); color: var(--cream-100);
  padding: .7rem 1.1rem; border-radius: var(--radius-sm);
  z-index: 200; transition: top .2s var(--ease); font-weight: 600;
}
.skip-link:focus { top: 1rem; }

/* -------------------------------------------------------------------------
   Typography
   ------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--step-5); letter-spacing: -0.025em; }
h2 { font-size: var(--step-4); letter-spacing: -0.02em; }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }
p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step--1);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px; background: currentColor; opacity: .6;
}
.lede { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.55; }
.muted { color: var(--ink-mute); }

/* -------------------------------------------------------------------------
   Layout
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 860px; }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head { max-width: 660px; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1.1rem; color: var(--ink-soft); font-size: var(--step-1); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* Colour context blocks */
.bg-cream { background: var(--cream-100); }
.bg-cream-2 { background: var(--cream-200); }
.bg-white { background: #fff; }
.bg-navy {
  background: var(--navy-800);
  color: var(--cream-100);
  --ink: var(--cream-100);
  --ink-soft: #C3CBD8;
  --ink-mute: #97A2B4;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.2);
  --accent: var(--accent-400);
  --bg-raised: var(--navy-700);
}
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--cream-050); }

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600; font-size: var(--step-0);
  padding: .92rem 1.55rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease),
              box-shadow .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  will-change: transform;
  line-height: 1;
}
.btn svg { width: 1.05em; height: 1.05em; transition: transform .2s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(46,99,200,.28); }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(46,99,200,.34); }
.bg-navy .btn--primary { background: var(--accent-500); color:#fff; }
.bg-navy .btn--primary:hover { background: var(--accent-400); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); background: rgba(10,22,40,.03); }
.bg-navy .btn--ghost:hover { background: rgba(255,255,255,.06); }

.btn--light { background: var(--cream-050); color: var(--navy-800); }
.btn--light:hover { background: #fff; transform: translateY(-2px); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: var(--step-1); }

.textlink {
  color: var(--accent); font-weight: 600;
  display: inline-flex; align-items: center; gap: .4rem;
  border-bottom: 1px solid transparent; padding-bottom: 1px;
  transition: gap .2s var(--ease), border-color .2s var(--ease);
}
.textlink:hover { gap: .65rem; border-color: currentColor; }
.textlink svg { width: 1em; height: 1em; }

/* -------------------------------------------------------------------------
   Badges / pills / tags
   ------------------------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  padding: .4rem .7rem; border-radius: var(--radius-pill);
}
.badge--sample { background: #FBEED6; color: #8A5A12; border: 1px solid #EED9AE; }
.badge--dot::before { content:""; width:7px; height:7px; border-radius:50%; background: currentColor; }
.tag {
  display: inline-flex; font-size: var(--step--1); font-weight: 500;
  padding: .35rem .8rem; border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong); color: var(--ink-soft);
}

/* -------------------------------------------------------------------------
   Cards
   ------------------------------------------------------------------------- */
.card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card--link:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 1.3rem;
  background: var(--accent-tint); color: var(--accent-500);
}
.bg-navy .card__icon { background: rgba(78,130,224,.16); color: var(--accent-400); }
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: var(--step-1); margin-bottom: .6rem; }
.card__meta { margin-top: 1.3rem; font-size: var(--step--1); }

/* -------------------------------------------------------------------------
   Header / nav
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream-100) 82%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-stuck {
  border-color: var(--line);
  box-shadow: 0 6px 24px rgba(7,16,33,.05);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; font-family: var(--font-display); font-weight: 600; font-size: 1.22rem; letter-spacing: -0.02em; color: var(--navy-800); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand small { display:block; font-family: var(--font-body); font-weight:500; font-size:.6rem; letter-spacing:.22em; text-transform:uppercase; color: var(--ink-mute); margin-top: 2px; }

.nav__links { display: flex; align-items: center; gap: .35rem; }
.nav__links a {
  padding: .55rem .9rem; border-radius: var(--radius-pill);
  font-weight: 500; color: var(--ink-soft); font-size: var(--step-0);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: rgba(10,22,40,.045); }
.nav__links a[aria-current="page"] { color: var(--navy-800); font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: .75rem; }

/* Desktop: menu is an inline row; its embedded CTA is hidden (the header-bar CTA is used instead) */
.nav__menu { display: flex; align-items: center; gap: .4rem; margin-inline: auto; }
.nav__menu .nav__actions { display: none; }

.nav__toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid var(--line-strong); background: var(--cream-050);
  align-items: center; justify-content: center;
}
.nav__toggle span { position: relative; width: 20px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: .25s var(--ease); }
.nav__toggle span::before, .nav__toggle span::after { content:""; position:absolute; left:0; width:20px; height:2px; background: var(--navy-800); border-radius:2px; transition:.25s var(--ease); }
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after { top: 6px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top:0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top:0; transform: rotate(-45deg); }

/* Mobile slide-in */
.nav__backdrop {
  position: fixed; inset: 0; background: rgba(7,16,33,.45);
  opacity: 0; visibility: hidden; transition: .3s var(--ease); z-index: 110;
  backdrop-filter: blur(2px);
}
body.menu-open .nav__backdrop { opacity: 1; visibility: visible; }

@media (max-width: 860px) {
  .nav__toggle { display: inline-flex; }
  .nav__menu {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(340px, 84vw);
    background: var(--cream-050); z-index: 120;
    display: flex; flex-direction: column; gap: .3rem;
    padding: 5.5rem 1.6rem 2rem;
    transform: translateX(105%); transition: transform .34s var(--ease);
    box-shadow: -30px 0 60px rgba(7,16,33,.16);
    border-left: 1px solid var(--line);
  }
  body.menu-open .nav__menu { transform: translateX(0); }
  .nav__links { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav__links a { padding: .95rem 1rem; font-size: 1.1rem; border-radius: 12px; }
  .nav__menu .nav__actions { display: flex; flex-direction: column; align-items: stretch; margin-top: 1.3rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
  .nav__menu .nav__actions .btn { width: 100%; }
}
.nav__close {
  display: none; position: absolute; top: 1.15rem; right: 1.2rem;
  width: 44px; height: 44px; border-radius: 11px; border: 1px solid var(--line);
  background: #fff; font-size: 1.4rem; align-items: center; justify-content: center; color: var(--navy-800);
}
@media (max-width: 860px) { .nav__close { display: inline-flex; } }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } .hero__art { order: -1; max-width: 460px; } }
.hero h1 { margin-block: 1.4rem 1.5rem; }
.hero__lede { max-width: 40ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.hero__reassure { margin-top: 1.5rem; display:flex; align-items:center; gap:.5rem; font-size: var(--step--1); color: var(--ink-mute); }
.hero__reassure svg { width: 16px; height: 16px; color: var(--accent); flex:none; }
.hero__art { position: relative; }

.hero__pills { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:2.2rem; }

/* Decorative node backdrop */
.node-bg { position: absolute; inset: 0; z-index: -1; opacity: .55; pointer-events: none; }

/* -------------------------------------------------------------------------
   Process timeline
   ------------------------------------------------------------------------- */
.process { position: relative; display: grid; gap: 1.1rem; }
.process--h { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
@media (max-width: 1000px) { .process--h { grid-template-columns: repeat(1, 1fr); } }
.pstep {
  position: relative; background: var(--bg-raised); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.6rem 1.4rem; overflow: hidden;
}
.pstep__num {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  border: 1.5px solid var(--accent); color: var(--accent);
}
.pstep h3 { font-size: var(--step-1); margin-bottom: .5rem; }
.pstep p { font-size: var(--step--1); color: var(--ink-soft); }
.pstep__line { position:absolute; top: 2.4rem; right: -8px; width: 16px; height: 1.5px; background: var(--line-strong); }
@media (max-width: 1000px) { .pstep__line { display:none; } }

/* Detailed vertical process (About) */
.vprocess { position: relative; display: grid; gap: 0; margin-top: 1rem; }
.vstep { position: relative; display: grid; grid-template-columns: 74px 1fr; gap: 1.5rem; padding-bottom: 2.6rem; }
.vstep:last-child { padding-bottom: 0; }
.vstep__rail { position: relative; display: flex; justify-content: center; }
.vstep__dot {
  width: 54px; height: 54px; border-radius: 50%; flex: none; z-index: 1;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600;
  background: var(--accent); color: #fff;
}
.vstep__rail::before {
  content:""; position: absolute; top: 54px; bottom: -8px; left: 50%; width: 2px;
  transform: translateX(-50%); background: linear-gradient(var(--line-strong), transparent);
}
.vstep:last-child .vstep__rail::before { display: none; }
.vstep__body { padding-top: .4rem; }
.vstep__body h3 { font-size: var(--step-2); margin-bottom: .5rem; }
.vstep__tags { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1rem; }
@media (max-width: 620px) { .vstep { grid-template-columns: 54px 1fr; gap: 1.1rem; } }

/* -------------------------------------------------------------------------
   Founder block
   ------------------------------------------------------------------------- */
.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 820px) { .founder { grid-template-columns: 1fr; } }
.founder__photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--line);
}
.founder__photo img { width:100%; height:100%; object-fit: cover; }
.founder__badge {
  position: absolute; left: 1rem; bottom: 1rem; right: 1rem;
  background: color-mix(in srgb, var(--cream-050) 92%, transparent);
  backdrop-filter: blur(6px);
  border-radius: var(--radius); padding: .85rem 1rem; box-shadow: var(--shadow-sm);
  display:flex; align-items:center; gap:.7rem;
}
.founder__badge strong { font-family: var(--font-display); }
.pullquote {
  font-family: var(--font-display); font-weight: 500; line-height: 1.25;
  font-size: var(--step-2); letter-spacing: -0.01em;
  padding-left: 1.4rem; border-left: 3px solid var(--accent); margin: 1.8rem 0;
}
.founder__meta { display:flex; flex-wrap:wrap; gap:.5rem; margin-top:1.4rem; }

/* -------------------------------------------------------------------------
   Sample case study
   ------------------------------------------------------------------------- */
.sample {
  display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden;
  border-radius: var(--radius-lg); border: 1px dashed var(--line-strong);
  background: var(--bg-raised);
}
@media (max-width: 820px) { .sample { grid-template-columns: 1fr; } }
.sample__body { padding: clamp(1.8rem, 3.5vw, 2.8rem); }
.sample__note {
  display:flex; gap:.6rem; align-items:flex-start; margin-top:1.5rem;
  font-size: var(--step--1); color: var(--ink-mute); background: var(--cream-100);
  border-radius: var(--radius); padding: .9rem 1rem; border: 1px solid var(--line);
}
.sample__note svg { width:18px; height:18px; flex:none; color: #B78427; margin-top:1px; }
.sample__art { background: var(--navy-800); position: relative; min-height: 240px; display:grid; place-items:center; }
.sample__stats { display:grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-top: 1.6rem; }
.sample__stat { border:1px solid var(--line); border-radius: var(--radius); padding: .9rem 1rem; }
.sample__stat b { display:block; font-family: var(--font-display); font-size: var(--step-1); color: var(--accent-500); }
.sample__stat span { font-size: var(--step--1); color: var(--ink-mute); }

/* -------------------------------------------------------------------------
   Problem / feature list
   ------------------------------------------------------------------------- */
.checklist { display: grid; gap: 1rem; }
.checklist li { display: grid; grid-template-columns: 26px 1fr; gap: .85rem; align-items: start; }
.checklist svg { width: 22px; height: 22px; color: var(--accent); margin-top: 2px; }
.checklist b { font-weight: 600; }

/* Why-new / SWOT reframing */
.reframe { display:grid; grid-template-columns: 1fr 1fr; gap:0; border-radius: var(--radius-lg); overflow:hidden; border:1px solid var(--line); }
@media (max-width: 720px){ .reframe{ grid-template-columns:1fr; } }
.reframe__col { padding: clamp(1.5rem,3vw,2.2rem); }
.reframe__col--old { background: var(--cream-200); }
.reframe__col--new { background: var(--navy-800); color: var(--cream-100); }
.reframe__col h4 { margin-bottom: 1.2rem; font-size: var(--step-0); text-transform:uppercase; letter-spacing:.12em; }
.reframe__col--new h4 { color: var(--accent-400); }
.reframe__col ul { display:grid; gap:1rem; }
.reframe__col li { display:grid; grid-template-columns: 22px 1fr; gap:.7rem; font-size: var(--step-0); }
.reframe__col--old li { color: var(--ink-mute); }
.reframe__col--old svg { color: var(--ink-mute); }
.reframe__col--new li { color: var(--cream-100); }
.reframe__col svg { width:19px; height:19px; margin-top:3px; }
.reframe__col--new svg { color: var(--accent-400); }

/* -------------------------------------------------------------------------
   CTA band
   ------------------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: clamp(20px, 3vw, 32px); }
.cta-band__inner { position: relative; z-index:1; text-align:center; padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3rem); }
.cta-band h2 { max-width: 18ch; margin-inline:auto; }
.cta-band p { max-width: 46ch; margin: 1.2rem auto 2rem; color: var(--ink-soft); }
.cta-band .hero__cta { justify-content: center; }
.cta-band__reassure { margin-top: 1.4rem; font-size: var(--step--1); color: var(--ink-mute); }

/* -------------------------------------------------------------------------
   Services / packages
   ------------------------------------------------------------------------- */
.pkg {
  display:flex; flex-direction: column; background: var(--bg-raised);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem); position: relative;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.pkg--featured { border-color: var(--accent); box-shadow: var(--shadow-md); }
.pkg--featured::before {
  content: "Most chosen starting point"; position:absolute; top:-13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color:#fff; font-size:.68rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  padding:.4rem .9rem; border-radius: var(--radius-pill); white-space:nowrap;
}
.pkg__name { font-family: var(--font-display); font-weight:600; font-size: var(--step-2); }
.pkg__best { font-size: var(--step--1); color: var(--accent-500); font-weight:600; margin-top:.4rem; }
.pkg__price { margin: 1.3rem 0; padding-bottom:1.3rem; border-bottom:1px solid var(--line); }
.pkg__price b { font-family: var(--font-display); font-size: var(--step-3); font-weight:600; }
.pkg__price span { font-size: var(--step--1); color: var(--ink-mute); display:block; margin-top:.2rem; }
.pkg__list { display:grid; gap:.8rem; margin: .5rem 0 1.6rem; }
.pkg__list li { display:grid; grid-template-columns: 22px 1fr; gap:.7rem; font-size: var(--step-0); color: var(--ink-soft); }
.pkg__list svg { width:19px; height:19px; color: var(--accent); margin-top:3px; }
.pkg .btn { margin-top: auto; }

/* -------------------------------------------------------------------------
   Accordion (FAQ)
   ------------------------------------------------------------------------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__q {
  width: 100%; display:flex; justify-content: space-between; align-items:center; gap:1rem;
  padding: 1.5rem 0; text-align:left; background:none; border:none;
  font-family: var(--font-display); font-weight:500; font-size: var(--step-1); color: var(--ink);
}
.acc__q .ic { flex:none; width:32px; height:32px; border-radius:50%; border:1px solid var(--line-strong); display:grid; place-items:center; transition:.25s var(--ease); }
.acc__q .ic svg { width:15px; height:15px; transition: transform .25s var(--ease); }
.acc__item[aria-expanded="true"] .ic { background: var(--accent); border-color: var(--accent); color:#fff; }
.acc__item[aria-expanded="true"] .ic svg { transform: rotate(45deg); }
.acc__panel { overflow: hidden; height: 0; transition: height .3s var(--ease); }
.acc__panel-inner { padding-bottom: 1.5rem; color: var(--ink-soft); max-width: 68ch; }

/* -------------------------------------------------------------------------
   Values
   ------------------------------------------------------------------------- */
.value { padding: 1.7rem; border:1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-raised); }
.value__k { font-family: var(--font-display); font-size: var(--step-2); color: var(--accent-500); margin-bottom:.6rem; }
.bg-navy .value__k { color: var(--accent-400); }
.value h3 { font-size: var(--step-1); margin-bottom:.5rem; }
.value p { font-size: var(--step--1); color: var(--ink-soft); }

/* Stat / info strip */
.strip { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,3vw,2.5rem); }
@media (max-width:640px){ .strip{ grid-template-columns:1fr; text-align:center; } }
.strip__item b { font-family: var(--font-display); font-size: var(--step-2); display:block; }
.strip__item span { color: var(--ink-mute); font-size: var(--step--1); }

/* -------------------------------------------------------------------------
   Forms
   ------------------------------------------------------------------------- */
.form { display: grid; gap: 1.3rem; }
.field { display: grid; gap: .5rem; }
.field label { font-weight: 600; font-size: var(--step-0); }
.field label .req { color: var(--accent); }
.field .hint { font-size: var(--step--1); color: var(--ink-mute); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--ink); background: var(--bg-raised);
  border: 1.5px solid var(--line-strong); border-radius: var(--radius);
  padding: .9rem 1rem; width: 100%; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field select { appearance:none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236B7486' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position: right 1rem center; padding-right: 2.6rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint);
}
.field--half { }
.form__row { display:grid; grid-template-columns:1fr 1fr; gap:1.3rem; }
@media (max-width:560px){ .form__row{ grid-template-columns:1fr; } }
.field .error-msg { font-size: var(--step--1); color: #C0392B; display:none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color:#C0392B; box-shadow: 0 0 0 4px rgba(192,57,43,.1); }
.field.invalid .error-msg { display:block; }

.form-success {
  display:none; text-align:center; padding: clamp(2rem,4vw,3rem);
  border:1px solid var(--line); border-radius: var(--radius-lg); background: var(--bg-raised);
}
.form-success.show { display:block; animation: pop .4s var(--ease); }
.form-success__ic { width:64px; height:64px; border-radius:50%; background: var(--accent-tint); color: var(--accent-500); display:grid; place-items:center; margin:0 auto 1.3rem; }
.form-success__ic svg { width:30px; height:30px; }
@keyframes pop { from { opacity:0; transform: translateY(10px) scale(.98);} to{opacity:1; transform:none;} }

.next-steps { display:grid; gap: 1.1rem; margin-top: 1.6rem; }
.next-steps li { display:grid; grid-template-columns:40px 1fr; gap:1rem; align-items:start; }
.next-steps .n { width:40px; height:40px; border-radius:50%; background: var(--accent-tint); color: var(--accent-500); font-family: var(--font-display); font-weight:600; display:grid; place-items:center; }
.bg-navy .next-steps .n { background: rgba(78,130,224,.16); color: var(--accent-400); }

.contact-methods { display:grid; gap: 1rem; }
.cmethod { display:flex; align-items:center; gap:1rem; padding:1.1rem 1.2rem; border:1px solid var(--line); border-radius: var(--radius); background: var(--bg-raised); transition: border-color .2s, transform .2s var(--ease); }
.cmethod:hover { border-color: var(--line-strong); transform: translateX(3px); }
.cmethod__ic { width:44px; height:44px; border-radius:12px; background: var(--accent-tint); color: var(--accent-500); display:grid; place-items:center; flex:none; }
.cmethod__ic svg { width:20px; height:20px; }
.cmethod b { display:block; font-size: var(--step-0); }
.cmethod span { font-size: var(--step--1); color: var(--ink-mute); }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: var(--cream-100); padding-block: clamp(3.5rem,6vw,5rem) 2rem; }
.site-footer a { color: #C3CBD8; transition: color .18s var(--ease); }
.site-footer a:hover { color: #fff; }
.footer__grid { display:grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.6rem,4vw,3rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 820px){ .footer__grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px){ .footer__grid{ grid-template-columns: 1fr; } }
.footer__brand { display:inline-flex; align-items:center; gap:.7rem; font-family:var(--font-display); font-weight:600; font-size:1.2rem; color:#fff; }
.footer__brand svg { width:36px; height:36px; }
.footer__tag { color:#97A2B4; margin-top:1.1rem; max-width: 34ch; font-size: var(--step-0); }
.footer__col h4 { font-family: var(--font-body); font-size:.75rem; letter-spacing:.14em; text-transform:uppercase; color:#7F8A9C; margin-bottom:1.1rem; font-weight:600; }
.footer__col ul { display:grid; gap:.7rem; }
.footer__socials { display:flex; gap:.6rem; margin-top:1.4rem; }
.footer__socials a { width:42px; height:42px; border-radius:11px; border:1px solid rgba(255,255,255,.14); display:grid; place-items:center; }
.footer__socials a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
.footer__socials svg { width:18px; height:18px; }
.footer__bottom { display:flex; flex-wrap:wrap; justify-content:space-between; gap:1rem; padding-top:2rem; color:#7F8A9C; font-size: var(--step--1); }

/* -------------------------------------------------------------------------
   Reveal-on-scroll
   ------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s 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; }
@media (prefers-reduced-motion: reduce){ [data-reveal]{ opacity:1; transform:none; } }

/* Utilities */
.stack > * + * { margin-top: 1.1rem; }
.mt-1{margin-top:.6rem} .mt-2{margin-top:1.2rem} .mt-3{margin-top:1.8rem} .mt-4{margin-top:2.6rem}
.center{ text-align:center; }
.divider { height:1px; background: var(--line); border:0; margin-block: 0; }
.page-hero { padding-block: clamp(3.5rem,6vw,6rem) clamp(2rem,4vw,3.5rem); }
.page-hero .eyebrow { margin-bottom:1.2rem; }
.page-hero h1 { max-width: 16ch; }
.page-hero p { max-width: 54ch; margin-top:1.3rem; }
