/* =========================================================================
   HireTeams.com — "Assembled"
   A clean, confident, human B2B look. Cool off-white + a trustworthy indigo,
   a warm coral accent, and a deep indigo-navy section. Plus Jakarta Sans.
   Motif: an assembled team roster (avatar tiles + role chips), connection lines.
   ========================================================================= */

:root {
  --bg:        #f5f6fb;   /* cool off-white page */
  --bg-2:      #ebedf6;   /* soft band */
  --card:      #ffffff;
  --ink:       #161823;   /* cool near-black */
  --ink-2:     #535868;   /* muted body */
  --ink-3:     #646a7d;   /* meta (AA on bg) */
  --line:      #e4e6f0;
  --line-2:    #d3d7e6;

  --indigo:    #4f46e5;   /* primary */
  --indigo-ink:#4035c4;   /* primary as text/links (AA) */
  --indigo-deep:#322a9e;
  --indigo-soft:#ecebfe;
  --coral:     #ff6b5e;   /* warm accent */
  --coral-ink: #d6412f;   /* coral as text (AA) */
  --coral-soft:#ffe9e6;
  --emerald:   #10b981;   /* "matched / go" */
  --emerald-ink:#0a8a60;

  --navy:      #14162b;   /* deep indigo-navy */
  --navy-2:    #1c1f3c;
  --on-navy:   #eef0f9;
  --on-navy-2: #abb0d0;
  --navy-line: #2c3056;

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 16px;

  --display: "Plus Jakarta Sans", system-ui, sans-serif;
  --body:    "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.2,.7,.2,1);
  --shadow-1: 0 1px 2px rgba(22,24,35,.05), 0 14px 30px -20px rgba(22,24,35,.4);
  --shadow-2: 0 4px 10px rgba(22,24,35,.07), 0 30px 60px -28px rgba(22,24,35,.5);
}

*, *::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; animation-iteration-count:1!important; transition-duration:.001ms!important; scroll-behavior:auto!important; } }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.08rem);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--indigo-ink); text-decoration: none; }
a:hover { color: var(--indigo-deep); }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
::selection { background: var(--indigo); color: #fff; }

/* ---- type ---- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: -0.022em; color: var(--ink); }
.display { font-weight: 800; font-size: clamp(2.5rem, 1.4rem + 4.6vw, 5.4rem); line-height: 1.02; letter-spacing: -0.035em; }
.lede { font-size: clamp(1.15rem, 1.02rem + 0.7vw, 1.5rem); line-height: 1.45; color: var(--ink-2); font-weight: 400; }
.muted { color: var(--ink-2); }
.ink-accent { color: var(--indigo-ink); }

.kicker { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--indigo-ink); }
.kicker::before { content: ""; width: 18px; height: 2px; border-radius: 2px; background: var(--coral); }
.kicker--on-navy { color: #b9b6ff; }

/* ---- layout ---- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 800px; }
.container--wide { max-width: 1320px; }

.section { padding-block: clamp(56px, 8vw, 120px); position: relative; }
.section--tight { padding-block: clamp(40px, 5vw, 76px); }
.section--band { background: var(--bg-2); }
.section--card { background: var(--card); }
.section--navy { background: var(--navy); color: var(--on-navy); }
.section--navy h1,.section--navy h2,.section--navy h3 { color: var(--on-navy); }

.section__head { max-width: 64ch; margin-bottom: clamp(30px, 4vw, 56px); }
.section__head.is-center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3.4rem); margin-top: 14px; }
.section__head p { margin-top: 14px; color: var(--ink-2); font-size: 1.1rem; }
.section--navy .section__head p { color: var(--on-navy-2); }

.stack > * + * { margin-top: 1.2rem; }
.mt-s{margin-top:1rem}.mt-m{margin-top:1.8rem}.mt-l{margin-top:clamp(2.2rem,4vw,3.4rem)}
.center{text-align:center}

/* =======================================================================
   Header / nav
   ======================================================================= */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 200; }
.skip-link:focus { left: 12px; top: 12px; }
.site-header { position: sticky; top: 0; z-index: 100; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 36px; height: 36px; flex: none; }
.brand__word { font-family: var(--display); font-weight: 800; font-size: 1.3rem; letter-spacing: -0.03em; }
.brand__word b { color: var(--indigo-ink); font-weight: 800; }
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav__list { list-style: none; padding: 0; display: flex; align-items: center; gap: 2px; }
.site-nav__list a { display: inline-block; font-weight: 600; font-size: 0.96rem; color: var(--ink-2); padding: 9px 14px; border-radius: 9px; }
.site-nav__list a:hover { color: var(--indigo-ink); background: var(--indigo-soft); }
.site-nav__list a.is-active { color: var(--indigo-ink); }
.site-nav__cta a { background: var(--ink); color: #fff !important; padding: 10px 18px !important; border-radius: 999px; }
.site-nav__cta a:hover { background: var(--indigo); }
.site-nav__toggle { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; border-radius: 9px; }
.site-nav__toggle-bar { width: 23px; height: 2px; background: var(--ink); border-radius: 2px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* =======================================================================
   Buttons
   ======================================================================= */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--body); font-weight: 700; font-size: 1rem; padding: 13px 24px; border-radius: 999px; border: 2px solid transparent; transition: transform .18s var(--ease), background .18s, color .18s, border-color .18s; }
.btn:hover { transform: translateY(-1px); color: inherit; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--primary { background: var(--indigo); color: #fff; }
.btn--primary:hover { background: var(--indigo-deep); color: #fff; }
.btn--coral { background: var(--coral); color: #2a0d09; }
.btn--coral:hover { filter: brightness(1.04); color: #2a0d09; }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--indigo); color: #fff; }
.btn--ghost { border-color: var(--line-2); color: var(--ink); background: var(--card); }
.btn--ghost:hover { border-color: var(--indigo); color: var(--indigo-ink); }
.btn--on-navy { background: #fff; color: var(--navy); }
.btn--on-navy:hover { background: var(--indigo-soft); color: var(--navy); }
.btn--ghost-navy { border-color: #3a3e66; color: var(--on-navy); }
.btn--ghost-navy:hover { border-color: var(--on-navy); background: rgba(255,255,255,.06); }
.btn--lg { padding: 16px 30px; font-size: 1.06rem; }
.tlink { font-weight: 700; color: var(--indigo-ink); display: inline-flex; align-items: center; gap: 7px; }
.tlink .arrow { transition: transform .2s var(--ease); }
.tlink:hover .arrow { transform: translateX(3px); }

/* =======================================================================
   Hero + roster card
   ======================================================================= */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px,5vw,76px); padding-bottom: clamp(40px,5vw,80px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px,5vw,64px); align-items: center; }
.hero__lede { margin-top: clamp(16px,2.5vw,26px); max-width: 42ch; }
.hero__actions { margin-top: clamp(22px,3vw,34px); display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__trust { margin-top: 18px; font-size: 0.92rem; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.hero__trust svg { width: 18px; height: 18px; color: var(--emerald-ink); flex: none; }

.roster { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-2); overflow: hidden; }
.roster__top { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--line); }
.roster__title { font-weight: 800; font-size: 1.05rem; }
.roster__badge { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--emerald-ink); background: #e3f7ef; padding: 5px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.roster__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--emerald); }
.roster__list { padding: 8px 12px 14px; display: grid; gap: 2px; }
.member { display: flex; align-items: center; gap: 14px; padding: 11px 8px; border-radius: 10px; transition: background .2s; }
.member:hover { background: var(--bg); }
.member__av { width: 42px; height: 42px; border-radius: 50%; flex: none; display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 0.92rem; }
.member__meta { flex: 1; min-width: 0; }
.member__name { font-weight: 700; font-size: 0.98rem; }
.member__role { font-size: 0.84rem; color: var(--ink-3); }
.member__check { color: var(--emerald-ink); flex: none; }
.member__check svg { width: 20px; height: 20px; }
.roster__foot { padding: 14px 20px; background: var(--bg); border-top: 1px solid var(--line); font-size: 0.88rem; color: var(--ink-2); display: flex; align-items: center; gap: 8px; }
.roster__foot b { color: var(--ink); }
.av-1{background:linear-gradient(135deg,#6366f1,#4338ca)} .av-2{background:linear-gradient(135deg,#ff8a5c,#d6412f)}
.av-3{background:linear-gradient(135deg,#10b981,#0a8a60)} .av-4{background:linear-gradient(135deg,#a855f7,#7c3aed)}
.av-5{background:linear-gradient(135deg,#0ea5e9,#0369a1)}

/* =======================================================================
   Stat strip
   ======================================================================= */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(180px,100%),1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--card); padding: 22px 24px; }
.stat__big { font-family: var(--display); font-weight: 800; font-size: 1.5rem; color: var(--indigo-ink); }
.stat__lbl { margin-top: 4px; font-size: 0.9rem; color: var(--ink-2); }

/* =======================================================================
   Functions (team disciplines)
   ======================================================================= */
.fn-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px,100%),1fr)); gap: clamp(16px,2vw,22px); }
.fn { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px,2.6vw,30px); transition: transform .2s var(--ease), box-shadow .2s, border-color .2s; }
.fn:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: var(--line-2); }
.fn__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 12px; background: var(--indigo-soft); color: var(--indigo-ink); margin-bottom: 16px; }
.fn__icon svg { width: 25px; height: 25px; }
.fn:nth-child(3n+2) .fn__icon { background: var(--coral-soft); color: var(--coral-ink); }
.fn:nth-child(3n+3) .fn__icon { background: #e3f7ef; color: var(--emerald-ink); }
.fn h3 { font-size: 1.3rem; }
.fn__roles { margin-top: 8px; font-size: 0.86rem; color: var(--indigo-ink); font-weight: 600; }
.fn p { margin-top: 10px; color: var(--ink-2); font-size: 0.98rem; }

/* =======================================================================
   Process + engagement
   ======================================================================= */
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px,100%),1fr)); gap: clamp(18px,2.4vw,28px); }
.step { position: relative; }
.step__n { width: 38px; height: 38px; border-radius: 10px; background: var(--indigo); color: #fff; font-weight: 800; display: grid; place-items: center; }
.step h3 { font-size: 1.25rem; margin-top: 16px; }
.step p { margin-top: 8px; color: var(--ink-2); }
.section--navy .step__n { background: var(--coral); color: #2a0d09; }

.eng-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(250px,100%),1fr)); gap: clamp(16px,2vw,22px); }
.eng { background: var(--navy-2); border: 1px solid var(--navy-line); border-radius: 14px; padding: clamp(22px,2.6vw,28px); }
.eng h3 { color: var(--on-navy); font-size: 1.22rem; }
.eng p { margin-top: 8px; color: var(--on-navy-2); font-size: 0.96rem; }
.eng__tick { color: #6ee7b7; margin-bottom: 12px; }
.eng__tick svg { width: 24px; height: 24px; }

/* =======================================================================
   Pillars + sectors
   ======================================================================= */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px,100%),1fr)); gap: clamp(16px,2vw,22px); }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar__icon { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 10px; background: var(--indigo-soft); color: var(--indigo-ink); }
.pillar__icon svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 1.15rem; }
.pillar p { margin-top: 5px; color: var(--ink-2); font-size: 0.96rem; }

.sector-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px,100%),1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.sector { background: var(--card); padding: clamp(20px,2.4vw,26px); transition: background .2s; }
.sector:hover { background: var(--bg); }
.sector h3 { font-size: 1.12rem; }
.sector p { margin-top: 6px; color: var(--ink-2); font-size: 0.94rem; }

/* =======================================================================
   Case studies (illustrative)
   ======================================================================= */
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px,100%),1fr)); gap: clamp(18px,2.4vw,26px); }
.case { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px,2.6vw,30px); box-shadow: var(--shadow-1); }
.case__kind { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral-ink); }
.case h3 { font-size: 1.25rem; margin-top: 8px; }
.case__rows { margin: 0; }
.case__row { margin-top: 14px; }
.case__row dt { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); }
.case__row dd { margin: 4px 0 0; color: var(--ink-2); font-size: 0.96rem; }
.case__team { display: inline-flex; flex-wrap: wrap; gap: 6px; margin-top: 5px; }
.chip { font-size: 0.78rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--indigo-soft); color: var(--indigo-ink); }
.sample-note { font-size: 0.84rem; color: var(--ink-3); }

/* =======================================================================
   Testimonials
   ======================================================================= */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px,100%),1fr)); gap: clamp(18px,2vw,24px); }
.quote { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px,2.6vw,30px); }
.quote__text { font-family: var(--display); font-weight: 600; font-size: 1.18rem; line-height: 1.4; }
.quote__who { margin-top: 16px; font-size: 0.88rem; color: var(--ink-3); font-weight: 600; }

/* =======================================================================
   Forms
   ======================================================================= */
.form-wrap { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px,3.5vw,44px); box-shadow: var(--shadow-1); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.92rem; }
.field .req { color: var(--coral-ink); }
.field input, .field select, .field textarea { font-family: var(--body); font-size: 1rem; color: var(--ink); background: var(--bg); border: 1px solid var(--line-2); border-radius: 11px; padding: 13px 15px; width: 100%; transition: border-color .15s, box-shadow .15s; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-soft); }
.field__hint { font-size: 0.85rem; color: var(--ink-3); }
.checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(170px,100%),1fr)); gap: 8px 14px; }
.check { display: flex; align-items: center; gap: 9px; font-size: 0.95rem; padding: 9px 12px; border: 1px solid var(--line-2); border-radius: 10px; background: var(--bg); cursor: pointer; transition: border-color .15s; }
.check:hover { border-color: var(--indigo); }
.check input { width: 17px; height: 17px; accent-color: var(--indigo); flex: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { display: none; padding: 14px 18px; border-radius: 11px; font-weight: 700; margin-bottom: 18px; }
.form-status.is-show { display: block; }
.form-status--ok { background: #e3f7ef; color: var(--emerald-ink); border: 1px solid #bfe8d6; }
.form-status--err { background: var(--coral-soft); color: var(--coral-ink); border: 1px solid #f6c9c3; }
.form-note { font-size: 0.86rem; color: var(--ink-3); }

/* =======================================================================
   FAQ
   ======================================================================= */
.faq-list { display: grid; gap: 12px; max-width: 840px; }
.faq { background: var(--card); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.faq__q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 20px 22px; font-family: var(--display); font-weight: 700; font-size: 1.08rem; }
.faq__q .sign { color: var(--coral-ink); font-size: 1.3rem; transition: transform .3s var(--ease); flex: none; line-height: 1; }
.faq.is-open .faq__q .sign { transform: rotate(45deg); }
.faq__a { overflow: hidden; transition: max-height .35s var(--ease), visibility .35s; }
.js .faq__a { max-height: 0; visibility: hidden; }
.faq.is-open .faq__a { visibility: visible; }
.faq__a-inner { padding: 0 22px 22px; color: var(--ink-2); max-width: 70ch; }

/* =======================================================================
   Page head
   ======================================================================= */
.page-head { padding-top: clamp(40px,5vw,80px); padding-bottom: clamp(22px,3vw,38px); }
.crumbs { font-size: 0.86rem; color: var(--ink-3); margin-bottom: 18px; font-weight: 600; }
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--indigo-ink); }
.page-head h1 { font-size: clamp(2.2rem,1.5rem+3.4vw,4.2rem); }
.page-head__lede { margin-top: 16px; max-width: 60ch; }

/* =======================================================================
   CTA band + footer
   ======================================================================= */
.cta-band { background: var(--navy); color: var(--on-navy); position: relative; overflow: hidden; }
.cta-band__inner { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { color: var(--on-navy); font-size: clamp(2rem,1.4rem+2.6vw,3.4rem); }
.cta-band p { color: var(--on-navy-2); margin-top: 14px; max-width: 52ch; margin-inline: auto; }
.cta-band__actions { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.site-footer { background: var(--ink); color: #b7bbca; padding-block: clamp(46px,6vw,72px) 0; }
.site-footer__inner { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: clamp(28px,4vw,56px); }
.site-footer__brand .brand__word { color: #fff; }
.site-footer__brand .brand__word b { color: #b9b6ff; }
.site-footer__tag { margin-top: 14px; max-width: 36ch; color: #969cae; font-size: 0.96rem; }
.site-footer__col h2 { font-weight: 700; font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: #7e8498; margin-bottom: 14px; }
.foot-news { margin-top: 22px; max-width: 38ch; }
.foot-news__label { display: block; font-weight: 700; font-size: 0.9rem; color: #e7e9f1; }
.foot-news__pitch { margin: 6px 0 12px; font-size: 0.86rem; color: #969cae; line-height: 1.55; }
.foot-news__row { display: flex; gap: 8px; }
.foot-news__row input { flex: 1; min-width: 0; padding: 11px 13px; border-radius: 10px; border: 1px solid #2f3240; background: #1b1d29; color: #fff; font-size: 0.94rem; }
.foot-news__row input::placeholder { color: #7e8498; }
.foot-news__row .btn { flex: none; }
.foot-news .form-status { margin: 12px 0 0; }
.link-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.link-list a { color: #d4d7e1; font-size: 0.96rem; }
.link-list a:hover { color: #b9b6ff; }
.site-footer__base { margin-top: clamp(38px,5vw,58px); border-top: 1px solid #2a2c38; padding-block: 20px; }
.site-footer__base-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-size: 0.84rem; color: #7e8498; }

/* =======================================================================
   Reveal + focus
   ======================================================================= */
.reveal { transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(16px); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{transition-delay:.07s}.reveal[data-delay="2"]{transition-delay:.14s}.reveal[data-delay="3"]{transition-delay:.21s}
@media (prefers-reduced-motion: reduce){ .js .reveal, .reveal{opacity:1;transform:none;transition:none} }
:where(a,button,input,select,textarea):focus-visible { outline: 3px solid var(--indigo); outline-offset: 2px; }
.section--navy :where(a,button):focus-visible, .cta-band :where(a,button):focus-visible, .eng :where(a,button):focus-visible { outline-color: #b9b6ff; }

/* =======================================================================
   Responsive
   ======================================================================= */
@media (max-width: 880px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .site-nav__toggle { display: flex; }
  .site-nav__pill { position: fixed; inset: 72px 0 auto 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 14px var(--gutter) 22px; transform: translateY(-130%); transition: transform .3s var(--ease); box-shadow: var(--shadow-2); }
  .site-nav.is-open .site-nav__pill { transform: translateY(0); }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .site-nav__list a { padding: 13px 12px; font-size: 1.02rem; }
  .site-nav__cta { margin-top: 8px; }
  .site-nav__cta a { display: inline-block; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; }
}
@media (min-width: 681px) { .site-nav__toggle { display: none; } }
