/* ==========================================================================
   HADOLI — websites built to sell
   Design rules: sharp edges only (border-radius: 0), techy blue palette,
   deep navy text, ONE typeface (Space Grotesk) across all weights/sizes.
   ========================================================================== */

:root{
  /* --- Core palette --- */
  --bg:         #F4F7FB;   /* page background */
  --surface:    #FFFFFF;   /* cards, nav, form */
  --blue:       #1656E0;   /* primary */
  --accent:     #CBDDF9;   /* light blue wash */
  --ink:        #0E1A2B;   /* deep navy text */

  /* --- Derived support tints --- */
  --blue-deep:  #0F3FA8;   /* focus ring, active underline, links */
  --blue-pale:  #E8F0FD;   /* softest wash: hovers, input focus */
  --on-brand:   #FFFFFF;   /* text on primary blue */
  --muted:      #55637A;   /* secondary text on light */
  --on-tint:    rgba(14,26,43,.78);    /* secondary text on accent fills */
  --on-brand-soft: rgba(255,255,255,.82); /* secondary text on blue fills */

  --line:       var(--ink);
  --hair:       rgba(14,26,43,.14);
  --brand-line: rgba(255,255,255,.42);

  --border:     2px solid var(--line);
  --border-hair:1px solid var(--hair);

  --wrap:       1200px;
  --gap:        clamp(20px, 3vw, 40px);
  --pad-y:      clamp(64px, 9vw, 128px);

  --f:          'Space Grotesk', ui-sans-serif, system-ui, 'Segoe UI', Arial, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; border-radius:0 !important; }

html{ scroll-behavior:smooth; scroll-padding-top:84px; -webkit-text-size-adjust:100%; }

body{
  margin:0;
  font-family:var(--f);
  font-weight:400;
  font-size:clamp(15px,1.02vw,17px);
  line-height:1.6;
  color:var(--ink);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4,p,ul,ol,dl,dd,figure{ margin:0; }
ul,ol{ padding:0; list-style:none; }
img,svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

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

:focus-visible{ outline:3px solid var(--blue-deep); outline-offset:3px; }
.section--dark :focus-visible,
.section--brand :focus-visible,
.foot :focus-visible{ outline-color:var(--accent); }

.skip{
  position:absolute; left:-9999px; top:0; z-index:200;
  background:var(--blue); color:var(--on-brand);
  padding:12px 20px; font-weight:700; border:var(--border);
}
.skip:focus{ left:0; }

.wrap{ width:100%; max-width:var(--wrap); margin-inline:auto; padding-inline:clamp(20px,4vw,40px); }
.wrap--narrow{ max-width:860px; }

/* ---------- Type primitives ---------- */
.eyebrow{
  font-size:.72rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--muted); margin-bottom:18px;
}

.section__title{
  font-weight:700;
  font-size:clamp(2rem,4.6vw,3.4rem);
  line-height:1.02;
  letter-spacing:-.035em;
}

.section__sub{
  margin-top:18px; max-width:62ch;
  font-size:1.05rem; font-weight:400; color:var(--muted);
}

.hl{
  background:var(--blue);
  color:var(--on-brand);
  padding:0 .12em;
  box-decoration-break:clone;
  -webkit-box-decoration-break:clone;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 28px;
  font-family:var(--f); font-size:.85rem; font-weight:700;
  letter-spacing:.12em; text-transform:uppercase;
  border:var(--border); cursor:pointer;
  transition:background .16s linear, color .16s linear, transform .16s linear;
}
.btn--solid{ background:var(--blue); color:var(--on-brand); }
.btn--solid:hover{ background:var(--ink); color:var(--surface); }
.btn--ghost{ background:transparent; color:var(--ink); }
.btn--ghost:hover{ background:var(--accent); }
.btn--sm{ padding:11px 18px; font-size:.72rem; }
.btn--full{ width:100%; }
.btn:active{ transform:translate(2px,2px); }

/* Buttons sitting on a solid blue section invert */
.section--brand .btn{ border-color:var(--on-brand); }
.section--brand .btn--solid{ background:var(--surface); color:var(--blue-deep); }
.section--brand .btn--solid:hover{ background:var(--ink); color:var(--surface); }
.section--brand .btn--ghost{ color:var(--on-brand); }
.section--brand .btn--ghost:hover{ background:var(--on-brand); color:var(--blue-deep); }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav{
  position:sticky; top:0; z-index:100;
  background:var(--surface);
  border-bottom:var(--border);
}
.nav__inner{
  max-width:var(--wrap); margin-inline:auto;
  padding:0 clamp(20px,4vw,40px);
  height:72px; display:flex; align-items:center; justify-content:space-between; gap:24px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand__mark{
  width:34px; height:34px; flex:none;
  background:var(--blue); color:var(--on-brand);
  display:grid; place-items:center;
  font-weight:700; font-size:1.1rem; line-height:1;
  border:var(--border);
}
.brand__text{ font-weight:700; font-size:1.15rem; letter-spacing:.16em; }

.nav__links{ display:flex; align-items:center; gap:clamp(14px,2vw,28px); }
.nav__links a{
  font-size:.78rem; font-weight:500; letter-spacing:.1em; text-transform:uppercase;
  padding-bottom:2px; border-bottom:2px solid transparent;
}
.nav__links a:not(.btn):hover,
.nav__links a.is-active:not(.btn){ border-bottom-color:var(--blue-deep); }

.nav__toggle{
  display:none; align-items:center; gap:10px;
  background:var(--surface); border:var(--border); cursor:pointer;
  padding:9px 14px; font-family:var(--f); color:var(--ink);
  font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
}
.nav__toggle-bars{ display:grid; gap:3px; }
.nav__toggle-bars i{ display:block; width:16px; height:2px; background:var(--ink); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{ padding-top:clamp(56px,8vw,104px); border-bottom:var(--border); }

.hero__title{
  font-weight:700;
  font-size:clamp(2.7rem,9vw,7rem);
  line-height:.94;
  letter-spacing:-.045em;
  margin-bottom:clamp(36px,5vw,60px);
}

.hero__grid{
  display:grid; grid-template-columns:1.35fr .8fr; gap:var(--gap);
  align-items:end;
  padding-bottom:clamp(48px,7vw,88px);
  border-top:var(--border-hair); padding-top:32px;
}
.hero__lede{ font-size:clamp(1rem,1.35vw,1.2rem); max-width:58ch; color:var(--muted); }
.hero__lede strong{ font-weight:700; color:var(--ink); }
.hero__actions{ display:flex; flex-wrap:wrap; gap:14px; }

/* Ticker */
.ticker{
  background:var(--blue); border-top:var(--border);
  overflow:hidden; padding:14px 0;
}
.ticker__track{
  display:flex; gap:34px; width:max-content;
  animation:slide 32s linear infinite;
  font-size:.82rem; font-weight:700; letter-spacing:.2em; color:var(--on-brand);
}
.ticker__track span{ white-space:nowrap; }
@keyframes slide{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* ==========================================================================
   SECTION SHELL
   ========================================================================== */
.section{ padding-block:var(--pad-y); }
.section--flush{ padding-bottom:0; }
.section--rule{ border-top:var(--border-hair); }

/* Light blue wash */
.section--tint{ background:var(--accent); color:var(--ink); }
.section--tint .eyebrow,
.section--tint .section__sub{ color:var(--on-tint); }

/* Solid primary blue */
.section--brand{ background:var(--blue); color:var(--on-brand); }
.section--brand .section__title{ color:var(--on-brand); }
.section--brand .eyebrow,
.section--brand .section__sub{ color:var(--on-brand-soft); }

/* Deep navy */
.section--dark{ background:var(--ink); color:var(--bg); }
.section--dark .section__title{ color:var(--bg); }
.section--dark .eyebrow,
.section--dark .section__sub{ color:rgba(244,247,251,.66); }

.section__head{ margin-bottom:clamp(40px,5vw,64px); max-width:900px; }

/* ==========================================================================
   ONE-CLICK FRAMEWORK — the friction comparison
   ========================================================================== */
.friction{
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  border:2px solid var(--brand-line);
}
.friction__col{ padding:clamp(24px,2.8vw,36px); }
.friction__col + .friction__col{ border-left:2px solid var(--brand-line); }
.friction__col--new{ background:rgba(255,255,255,.08); }

.friction__label{
  font-size:.7rem; font-weight:700; letter-spacing:.22em; text-transform:uppercase;
  color:var(--on-brand-soft); margin-bottom:20px;
}
.friction__col--new .friction__label{ color:var(--on-brand); }

.friction__steps{ counter-reset:frict; }
.friction__steps li{
  counter-increment:frict;
  position:relative; padding-left:38px; margin-bottom:12px;
  font-size:.96rem; font-weight:500;
}
.friction__steps li::before{
  content:counter(frict);
  position:absolute; left:0; top:-1px;
  width:24px; height:24px; display:grid; place-items:center;
  font-size:.72rem; font-weight:700;
  border:2px solid var(--brand-line);
}
.friction__col--new .friction__steps li::before{
  background:var(--on-brand); color:var(--blue-deep); border-color:var(--on-brand);
}
.friction__col--old .friction__steps li{ color:var(--on-brand-soft); }

.friction__out{
  margin-top:22px; padding-top:16px;
  border-top:2px solid var(--brand-line);
  font-size:.95rem; font-weight:700;
}
.friction__col--old .friction__out{ color:var(--on-brand-soft); }

.framework__foot{
  margin-top:clamp(32px,4vw,52px);
  display:grid; grid-template-columns:1fr auto; gap:var(--gap); align-items:center;
}
.framework__note{ max-width:64ch; font-size:1rem; color:var(--on-brand-soft); }
.framework__note strong{ color:var(--on-brand); font-weight:700; }

/* ==========================================================================
   DIVISIONS
   ========================================================================== */
.divisions{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; border:var(--border); }
.division{
  padding:clamp(28px,3vw,40px);
  background:var(--surface);
  border-right:var(--border);
  transition:background .18s linear;
}
.division:last-child{ border-right:0; }
.division:hover{ background:var(--blue-pale); }
.division__num{
  font-size:.72rem; font-weight:700; letter-spacing:.22em;
  background:var(--blue); color:var(--on-brand);
  display:inline-block; padding:5px 10px; margin-bottom:22px;
}
.division h3{ font-size:1.7rem; font-weight:700; letter-spacing:-.025em; margin-bottom:14px; }
.division p{ color:var(--muted); margin-bottom:22px; }

.ticks li{
  position:relative; padding-left:22px; margin-bottom:9px;
  font-size:.93rem; font-weight:500;
}
.ticks li::before{
  content:""; position:absolute; left:0; top:.55em;
  width:9px; height:9px; background:var(--blue); border:1px solid var(--ink);
}
.section--brand .ticks li::before{ background:var(--accent); border-color:var(--brand-line); }
.section--dark .ticks li::before{ background:var(--accent); border-color:rgba(244,247,251,.4); }

/* ==========================================================================
   SERVICES GRID
   ========================================================================== */
.grid6{
  display:grid; grid-template-columns:repeat(3,1fr);
  border-top:var(--border); border-left:var(--border);
}
.cell{
  padding:clamp(28px,3.2vw,44px);
  background:var(--surface);
  border-right:var(--border); border-bottom:var(--border);
  transition:background .18s linear;
}
.cell:hover{ background:var(--accent); }
.cell__no{
  display:block; font-size:.72rem; font-weight:700; letter-spacing:.22em;
  color:var(--muted); margin-bottom:26px;
}
.cell:hover .cell__no,
.cell:hover p{ color:var(--ink); }
.cell h3{ font-size:1.45rem; font-weight:700; letter-spacing:-.02em; margin-bottom:12px; }
.cell p{ color:var(--muted); font-size:.96rem; }

/* ==========================================================================
   SPEED & SECURITY
   ========================================================================== */
.pledge{ display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid rgba(244,247,251,.25); }
.pledge > div{
  padding:26px 22px 26px 0;
  border-bottom:1px solid rgba(244,247,251,.25);
  border-right:1px solid rgba(244,247,251,.25);
  padding-left:22px;
}
.pledge > div:first-child{ padding-left:0; }
.pledge > div:last-child{ border-right:0; }
.pledge dt{
  font-size:.7rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(244,247,251,.58); margin-bottom:10px;
}
.pledge dd{
  margin:0; font-size:2rem; font-weight:700; color:var(--accent);
  letter-spacing:-.04em; line-height:1;
}
.pledge__note{
  margin:10px 0 0 !important;
  font-size:.88rem !important; font-weight:400 !important;
  color:rgba(244,247,251,.72) !important; letter-spacing:0 !important;
}

.stackline{
  margin-top:clamp(36px,4vw,56px);
  display:grid; grid-template-columns:200px 1fr; gap:var(--gap); align-items:start;
}
.stackline h3{
  font-size:.9rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(244,247,251,.66);
}
.stackline .tags li{ border-color:rgba(244,247,251,.4); }
.stackline .tags li:hover{ background:rgba(244,247,251,.14); }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); border-top:2px solid var(--ink); }
.step{ padding:28px 22px 8px 22px; border-right:var(--border); }
.step:first-child{ padding-left:0; }
.step:last-child{ border-right:0; }
.step__no{
  display:inline-block; font-size:2.4rem; font-weight:700;
  letter-spacing:-.05em; line-height:1; margin-bottom:16px;
}
.step__when{
  display:inline-block; margin-left:12px;
  font-size:.68rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  background:var(--ink); color:var(--bg); padding:4px 9px; vertical-align:middle;
}
.step h3{ font-size:1.2rem; font-weight:700; margin-bottom:10px; letter-spacing:-.01em; }
.step p{ font-size:.92rem; color:var(--on-tint); }

/* ==========================================================================
   WORK
   ========================================================================== */
.work{ display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gap); }
.case{ background:var(--surface); border:var(--border); padding:0 0 clamp(24px,2.4vw,32px); }
.case__thumb{
  height:180px; background:var(--blue);
  border-bottom:var(--border);
  display:grid; place-items:center;
  background-image:repeating-linear-gradient(45deg,rgba(255,255,255,.12) 0 12px,transparent 12px 24px);
}
.case__thumb span{ font-size:3.4rem; font-weight:700; letter-spacing:-.05em; color:var(--on-brand); }
.case__tag{
  display:inline-block; margin:22px clamp(22px,2vw,28px) 12px;
  font-size:.68rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  border:1px solid var(--ink); padding:4px 9px;
}
.case h3{
  font-size:1.35rem; font-weight:700; letter-spacing:-.02em;
  margin:0 clamp(22px,2vw,28px) 10px;
}
.case > p:not(.case__tag){ margin:0 clamp(22px,2vw,28px); color:var(--muted); font-size:.95rem; }
.case__meta{
  margin-top:18px !important;
  padding-top:14px; border-top:var(--border-hair);
  font-size:.76rem !important; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
}

/* ==========================================================================
   RESCUE
   ========================================================================== */
.fixes{
  display:grid; grid-template-columns:repeat(4,1fr);
  border-top:var(--border); border-left:var(--border);
}
.fix{
  padding:clamp(20px,2.2vw,28px);
  background:var(--surface);
  border-right:var(--border); border-bottom:var(--border);
}
.fix h3{ font-size:1.02rem; font-weight:700; letter-spacing:-.01em; margin-bottom:8px; }
.fix p{ font-size:.89rem; color:var(--muted); }

.rescue__foot{
  margin-top:clamp(28px,3vw,40px);
  display:grid; grid-template-columns:1fr auto; gap:var(--gap); align-items:center;
}
.rescue__note{ max-width:64ch; font-size:1rem; color:var(--muted); }
.rescue__note strong{ color:var(--ink); font-weight:700; }

/* ==========================================================================
   PRICING
   ========================================================================== */
.plans{ display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gap); align-items:start; }
.plan{
  background:var(--surface);
  border:var(--border); padding:clamp(26px,2.6vw,36px);
  display:flex; flex-direction:column; gap:16px;
}
.plan--feature{ background:var(--accent); box-shadow:10px 10px 0 var(--ink); }
.plan__flag{
  align-self:flex-start; background:var(--ink); color:var(--bg);
  font-size:.68rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  padding:5px 11px;
}
.plan h3{ font-size:1.8rem; font-weight:700; letter-spacing:-.03em; }
.plan__price{ font-size:2.1rem; font-weight:700; letter-spacing:-.04em; line-height:1; }
.plan__for{ color:var(--muted); font-size:.95rem; }
.plan--feature .plan__for{ color:var(--on-tint); }
.plan .ticks{ flex:1; }
.plan--feature .ticks li::before{ background:var(--surface); }
.plan .btn{ margin-top:8px; }

.plans__note{
  margin-top:clamp(24px,3vw,36px); padding-top:20px;
  border-top:var(--border-hair); font-size:.95rem; color:var(--muted);
}
.plans__note a{ font-weight:700; color:var(--blue-deep); border-bottom:2px solid var(--blue-deep); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq{ border-top:var(--border); }
.faq details{ border-bottom:var(--border-hair); }
.faq summary{
  list-style:none; cursor:pointer; padding:22px 40px 22px 0; position:relative;
  font-size:1.12rem; font-weight:700; letter-spacing:-.01em;
}
.faq summary::-webkit-details-marker{ display:none; }
.faq summary::after{
  content:"+"; position:absolute; right:6px; top:50%; transform:translateY(-50%);
  font-size:1.5rem; font-weight:400; line-height:1;
}
.faq details[open] summary::after{ content:"–"; }
.faq details[open] summary{ background:var(--accent); padding-left:16px; padding-right:56px; }
.faq details p{ padding:0 0 24px; color:var(--muted); max-width:70ch; }
.faq details[open] p{ padding-left:16px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(32px,5vw,72px); align-items:start; }
.contact__lede{ margin-top:20px; max-width:46ch; font-size:1.05rem; color:var(--on-tint); }
.contact__list{ margin-top:32px; border-top:2px solid var(--ink); }
.contact__list li{
  display:flex; justify-content:space-between; gap:16px;
  padding:14px 0; border-bottom:1px solid rgba(14,26,43,.28);
  font-size:.95rem;
}
.contact__list li span:first-child{
  font-size:.7rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase;
  align-self:center; flex:none;
}
.contact__list a{ font-weight:700; border-bottom:2px solid var(--ink); }

.form{
  background:var(--surface); border:var(--border); padding:clamp(24px,2.6vw,34px);
  display:grid; grid-template-columns:1fr 1fr; gap:18px;
}
.field{ display:flex; flex-direction:column; gap:8px; }
.field--full{ grid-column:1 / -1; }
.field label{
  font-size:.7rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
}
.field input,.field select,.field textarea{
  font-family:var(--f); font-size:.95rem; color:var(--ink);
  padding:12px 14px; background:var(--surface);
  border:2px solid var(--ink); width:100%;
  appearance:none;
}
.field textarea{ resize:vertical; min-height:120px; }
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; background:var(--blue-pale);
}
.field select{
  background-image:linear-gradient(45deg,transparent 50%,var(--ink) 50%),
                   linear-gradient(135deg,var(--ink) 50%,transparent 50%);
  background-position:calc(100% - 20px) 55%, calc(100% - 14px) 55%;
  background-size:6px 6px,6px 6px; background-repeat:no-repeat;
  padding-right:40px;
}
.field.is-error input,.field.is-error textarea{ border-color:#A32218; background:#FDF1F0; }
.field__error{ font-size:.8rem; font-weight:600; color:#8C1D14; }
.field:not(.is-error) .field__error{ display:none; }

/* Honeypot: hidden from people, reachable by bots */
.hp{
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); clip-path:inset(50%); white-space:nowrap;
}

.form__note{ margin-top:12px; font-size:.85rem; font-weight:500; min-height:1.2em; }
.form__note.is-bad{ color:#8C1D14; }

/* ==========================================================================
   CHAT — fixed launcher + panel
   ========================================================================== */
.chat{
  position:fixed; z-index:120;
  right:clamp(14px,3vw,28px); bottom:clamp(14px,3vw,28px);
  display:flex; flex-direction:column; align-items:flex-end; gap:12px;
}

.chat__launch{
  display:inline-flex; align-items:center; gap:10px;
  background:var(--blue); color:var(--on-brand);
  border:var(--border); cursor:pointer;
  padding:14px 22px; font-family:var(--f);
  font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  box-shadow:5px 5px 0 var(--ink);
  transition:background .16s linear, transform .16s linear;
}
.chat__launch:hover{ background:var(--blue-deep); }
.chat__launch:active{ transform:translate(2px,2px); box-shadow:3px 3px 0 var(--ink); }
.chat__launch-dot{
  width:9px; height:9px; flex:none; background:#4ADE80;
  box-shadow:0 0 0 2px rgba(255,255,255,.55);
}

.chat__panel{
  display:none;
  width:min(340px, calc(100vw - 28px));
  background:var(--surface); color:var(--ink);
  border:var(--border); box-shadow:8px 8px 0 var(--ink);
  padding:clamp(18px,2vw,24px);
}
.chat__panel.is-open{ display:block; }

.chat__head{ display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.chat__title{ font-size:1.15rem; font-weight:700; letter-spacing:-.02em; }
.chat__close{
  background:none; border:0; cursor:pointer; padding:0 2px;
  font-family:var(--f); font-size:1.5rem; line-height:1; color:var(--ink);
}
.chat__intro{ margin-top:8px; font-size:.9rem; color:var(--muted); }

.chat__label{
  display:block; margin:18px 0 8px;
  font-size:.68rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
}
.chat__panel textarea{
  font-family:var(--f); font-size:.92rem; color:var(--ink);
  width:100%; min-height:88px; resize:vertical;
  padding:11px 13px; background:var(--surface); border:2px solid var(--ink);
}
.chat__panel textarea:focus{ outline:none; background:var(--blue-pale); }
.chat__panel .btn{ margin-top:10px; }
.chat__note{ margin-top:14px; font-size:.78rem; color:var(--muted); }
.chat__note a{ font-weight:700; color:var(--blue-deep); border-bottom:2px solid var(--blue-deep); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.foot{ background:var(--ink); color:var(--bg); padding-block:clamp(40px,5vw,64px); }
.foot__inner{ display:grid; gap:32px; }
.foot__brand{ display:flex; align-items:center; gap:14px; }
.foot__name{ font-weight:700; letter-spacing:.18em; font-size:1.05rem; }
.foot__long{ font-size:.82rem; color:rgba(244,247,251,.62); }
.foot__nav{ display:flex; flex-wrap:wrap; gap:22px; padding-top:26px; border-top:1px solid rgba(244,247,251,.22); }
.foot__nav a{
  font-size:.76rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase;
  color:rgba(244,247,251,.75);
}
.foot__nav a:hover{ color:var(--accent); }
.foot__meta{ display:flex; flex-wrap:wrap; gap:8px 22px; justify-content:space-between; }
.foot__copy,.foot__base{ font-size:.78rem; color:rgba(244,247,251,.48); }

/* ==========================================================================
   REVEAL
   ========================================================================== */
.reveal{ opacity:0; transform:translateY(18px); transition:opacity .5s ease, transform .5s ease; }
.reveal.is-in{ opacity:1; transform:none; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1020px){
  .divisions,.grid6,.work,.plans{ grid-template-columns:repeat(2,1fr); }
  .divisions .division:nth-child(2){ border-right:0; }
  .divisions .division:nth-child(3){ border-top:var(--border); grid-column:1 / -1; border-right:0; }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .step{ border-bottom:var(--border-hair); padding-left:22px; }
  .step:first-child{ padding-left:22px; }
  .step:nth-child(even){ border-right:0; }
  .fixes{ grid-template-columns:repeat(2,1fr); }
  .pledge{ grid-template-columns:repeat(2,1fr); }
  .pledge > div:first-child{ padding-left:22px; }
  .pledge > div:nth-child(even){ border-right:0; }
  .stackline{ grid-template-columns:1fr; gap:14px; }
  .rescue__foot,.framework__foot{ grid-template-columns:1fr; }
  .plans .plan--feature{ box-shadow:none; }
  .contact{ grid-template-columns:1fr; }
}

@media (max-width:760px){
  .nav__toggle{ display:inline-flex; }
  .nav__links{
    position:absolute; left:0; right:0; top:100%;
    flex-direction:column; align-items:stretch; gap:0;
    background:var(--surface); border-bottom:var(--border);
    padding:8px clamp(20px,4vw,40px) 20px;
    display:none;
  }
  .nav__links.is-open{ display:flex; }
  .nav__links a{ padding:14px 0; border-bottom:1px solid var(--hair); }
  .nav__links a.btn{ margin-top:14px; border:var(--border); justify-content:center; }

  .hero__grid{ grid-template-columns:1fr; align-items:start; gap:28px; }
  .divisions,.grid6,.work,.plans,.steps,.fixes,.pledge{ grid-template-columns:1fr; }
  .friction{ grid-template-columns:1fr; }
  .friction__col + .friction__col{ border-left:0; border-top:2px solid var(--brand-line); }
  .division,.cell,.step{ border-right:0; border-bottom:var(--border); }
  .divisions .division:nth-child(3){ grid-column:auto; border-top:0; border-bottom:0; }
  .grid6{ border-left:var(--border); }
  .step:last-child{ border-bottom:0; }
  .fix{ border-right:0; }
  .pledge > div{ border-right:0; padding-left:0; }
  .form{ grid-template-columns:1fr; }
  .contact__list li{ flex-direction:column; gap:4px; }
  .btn{ padding:14px 22px; }
  .chat__launch{ padding:12px 18px; font-size:.72rem; }
}

@media (prefers-reduced-motion:reduce){
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important;
     transition-duration:.01ms !important; scroll-behavior:auto !important; }
  .reveal{ opacity:1; transform:none; }
}

/* ---------- Print ---------- */
@media print{
  .nav,.ticker,.foot__nav,.form,.chat{ display:none; }
  body{ color:#000; background:#fff; }
  .section--tint,.section--brand,.section--dark{ background:#fff !important; color:#000 !important; }
  .section--brand .section__title,.section--dark .section__title{ color:#000 !important; }
}
