/* ============================================================
   PUBLIFY — Design System v3
   Editorial "paper & ink" system.
   Warm paper ground, deep ink type, pastel colour-blocking,
   dashed rules, oversized confident display type.
   Self-contained: index.html loads only this file.
   ============================================================ */

/* ---------- Local variable fonts ---------- */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('./fonts/BricolageGrotesque-Variable.woff2') format('woff2-variations'),
       url('./fonts/BricolageGrotesque-Variable.woff2') format('woff2');
  font-weight: 400 800;
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('./fonts/BricolageGrotesque-LatinExt.woff2') format('woff2-variations'),
       url('./fonts/BricolageGrotesque-LatinExt.woff2') format('woff2');
  font-weight: 400 800;
  font-stretch: 100%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                 U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Manrope';
  src: url('./fonts/Manrope-Variable.woff2') format('woff2-variations'),
       url('./fonts/Manrope-Variable.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('./fonts/JetBrainsMono-Regular.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* ---------- Ground & ink ---------- */
  --paper:        #FCFAF8;   /* warm off-white page ground */
  --paper-2:      #F6F1EB;   /* recessed warm band */
  --paper-card:   #FFFFFF;
  --ink:          #17120F;   /* near-black, warm */
  --ink-2:        #4A423C;   /* secondary text */
  --ink-3:        #7C726A;   /* tertiary / captions */
  --ink-inv:      #FCFAF8;   /* text on ink */
  --ink-inv-2:    rgba(252,250,248,.62);
  --ink-inv-3:    rgba(252,250,248,.40);

  /* ---------- Brand ---------- */
  --coral:        #FF8463;
  --coral-deep:   #F0603F;
  --pink:         #ED4D6E;
  --pink-deep:    #D63A5C;
  --grad:         linear-gradient(112deg, #FF8463 0%, #ED4D6E 100%);
  --whatsapp:     #1DA851;

  /* ---------- Pastel colour-blocks ---------- */
  --tint-coral:   #FFE7DE;
  --tint-pink:    #FDE4EA;
  --tint-butter:  #FBEFD3;
  --tint-sky:     #E2ECFB;
  --tint-mint:    #DAF0E4;
  --tint-lilac:   #EDE6FA;

  /* ---------- Rules & lines ---------- */
  --rule:         #E4DCD3;
  --rule-strong:  #CBBFB3;
  --rule-inv:     rgba(252,250,248,.18);

  /* ---------- Type ---------- */
  --display: 'Bricolage Grotesque', 'Manrope', ui-sans-serif, system-ui, sans-serif;
  --body:    'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* ---------- Rhythm ---------- */
  --gutter: 28px;
  --maxw:   1200px;
  --maxw-narrow: 760px;

  /* ---------- Radius ---------- */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* ---------- Shadow (soft, warm) ---------- */
  --sh-sm: 0 1px 2px rgba(23,18,15,.05);
  --sh-md: 0 6px 20px -6px rgba(23,18,15,.10), 0 2px 6px rgba(23,18,15,.04);
  --sh-lg: 0 24px 60px -18px rgba(23,18,15,.20), 0 6px 16px rgba(23,18,15,.06);

  --ease: cubic-bezier(.16,1,.3,1);
}

/* ============================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: var(--coral); color: #fff; }

.pf-skip {
  position: absolute; left: -9999px;
}
.pf-skip:focus {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  z-index: 999; background: var(--ink); color: var(--ink-inv);
  padding: 12px 22px; border-radius: var(--r-pill); font-weight: 700; font-size: 14px;
}
:focus-visible { outline: 2.5px solid var(--coral); outline-offset: 3px; border-radius: 4px; }

/* ============================================================ LAYOUT */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { width: 100%; max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 var(--gutter); }

section { position: relative; }
.sec      { padding: 120px 0; }
.sec-tight{ padding: 88px 0; }
.sec-lg   { padding: 152px 0; }
@media (max-width: 900px) {
  :root { --gutter: 20px; }
  .sec { padding: 84px 0; }
  .sec-tight { padding: 64px 0; }
  .sec-lg { padding: 96px 0; }
}

/* Ink (dark) bands */
.band-ink   { background: var(--ink); color: var(--ink-inv); }
.band-paper2{ background: var(--paper-2); }

/* Dashed hairline — signature detail */
.rule-dashed {
  border: 0; border-top: 1.5px dashed var(--rule-strong);
  width: 100%;
}
.band-ink .rule-dashed { border-top-color: var(--rule-inv); }

/* ============================================================ TYPE */
.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  font-variation-settings: 'wdth' 100, 'opsz' 48;
}
.h-hero {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(40px, 7.2vw, 92px);
  line-height: 0.99; letter-spacing: -0.04em;
}
.h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.03; letter-spacing: -0.035em;
}
.h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05; letter-spacing: -0.032em;
}
.h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.18; letter-spacing: -0.02em;
}
.h4 {
  font-family: var(--display); font-weight: 700;
  font-size: 18px; line-height: 1.25; letter-spacing: -0.015em;
}
.lede {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.6; color: var(--ink-2); font-weight: 450;
}
.body-lg { font-size: 18px; line-height: 1.7; color: var(--ink-2); }
.body    { font-size: 16px; line-height: 1.65; color: var(--ink-2); }
.small   { font-size: 14px; line-height: 1.55; color: var(--ink-3); }

.band-ink .lede, .band-ink .body-lg, .band-ink .body { color: var(--ink-inv-2); }
.band-ink .small { color: var(--ink-inv-3); }

/* Eyebrow — mono, tracked out */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1.5px;
  background: var(--coral); display: block; flex-shrink: 0;
}
.eyebrow-center { justify-content: center; }
.band-ink .eyebrow { color: var(--ink-inv-3); }

/* Gradient ink */
.grad {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
/* Marker highlight — hand-drawn feel */
.mark {
  background: linear-gradient(180deg, transparent 58%, var(--tint-butter) 58%);
  padding: 0 2px;
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: var(--r-pill);
  border: 1.5px solid transparent; white-space: nowrap; cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-ink      { background: var(--ink); color: var(--ink-inv); box-shadow: var(--sh-md); }
.btn-ink:hover{ background: #241c17; box-shadow: var(--sh-lg); }

.btn-coral      { background: var(--grad); color: #fff; box-shadow: 0 6px 18px -6px rgba(237,77,110,.55); }
.btn-coral:hover{ box-shadow: 0 14px 32px -10px rgba(237,77,110,.62); }

.btn-wa       { background: var(--whatsapp); color: #fff; box-shadow: 0 6px 18px -6px rgba(29,168,81,.5); }
.btn-wa:hover { background: #178a42; box-shadow: 0 14px 30px -10px rgba(29,168,81,.55); }

.btn-outline      { background: transparent; color: var(--ink); border-color: var(--rule-strong); }
.btn-outline:hover{ border-color: var(--ink); background: rgba(23,18,15,.03); }

.btn-outline-inv      { background: transparent; color: var(--ink-inv); border-color: rgba(252,250,248,.3); }
.btn-outline-inv:hover{ border-color: rgba(252,250,248,.75); background: rgba(252,250,248,.07); }

.btn-lg { font-size: 17px; padding: 18px 32px; }
.btn-sm { font-size: 14px; padding: 10px 18px; }

/* Text link with animated arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 15px; color: var(--ink);
  border-bottom: 1.5px solid var(--rule-strong); padding-bottom: 2px;
  transition: border-color .18s var(--ease), color .18s var(--ease), gap .18s var(--ease);
}
.link-arrow:hover { border-color: var(--coral); color: var(--coral-deep); gap: 11px; }

/* ============================================================ NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 16px 0;
  transition: padding .3s var(--ease), background .3s var(--ease),
              border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1.5px dashed transparent;
}
.nav.is-stuck {
  padding: 9px 0;
  background: rgba(252,250,248,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--rule);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo { height: 54px; width: auto; transition: height .3s var(--ease); }
.nav.is-stuck .nav__logo { height: 44px; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links a {
  font-size: 15px; font-weight: 600; color: var(--ink-2);
  position: relative; padding: 4px 0; transition: color .18s var(--ease);
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .26s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--ink); }
.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; padding: 9px; border-radius: var(--r-sm); color: var(--ink); }
.nav__burger:hover { background: rgba(23,18,15,.05); }

@media (max-width: 940px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; place-items: center; }
  .nav__logo { height: 46px; }
  .nav.is-stuck .nav__logo { height: 40px; }
}
/* The floating WhatsApp button and the menu CTA both cover this action
   on small screens — drop it from the bar so the header stays uncrowded. */
@media (max-width: 620px) {
  .nav__right > .btn { display: none; }
}

.menu {
  position: fixed; top: 76px; left: 14px; right: 14px; z-index: 99;
  background: var(--paper-card); border: 1.5px solid var(--rule);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 10px;
  opacity: 0; transform: translateY(-10px) scale(.985); pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}
.menu.is-open { opacity: 1; transform: none; pointer-events: auto; }
.menu a {
  display: block; padding: 15px 18px; font-size: 17px; font-weight: 700;
  border-radius: var(--r-md); transition: background .16s var(--ease);
}
.menu a:hover { background: var(--paper-2); }
.menu a[aria-current="page"] { color: var(--coral-deep); background: var(--tint-coral); }
.menu__cta { margin: 8px; }

/* ============================================================ HERO */
.hero { padding: 178px 0 0; position: relative; overflow: hidden; }
@media (max-width: 900px) { .hero { padding-top: 132px; } }

/* Soft ambient wash behind hero */
.hero__wash {
  position: absolute; pointer-events: none; border-radius: 50%;
  filter: blur(90px); opacity: .5;
}
.hero__wash--a { width: 620px; height: 620px; top: -220px; right: -160px;
  background: radial-gradient(circle, rgba(255,132,99,.42), transparent 66%); }
.hero__wash--b { width: 460px; height: 460px; top: 200px; left: -200px;
  background: radial-gradient(circle, rgba(237,77,110,.24), transparent 66%); }

.hero__in { position: relative; z-index: 1; text-align: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--paper-card); border: 1.5px solid var(--rule);
  border-radius: var(--r-pill); padding: 8px 18px 8px 12px;
  font-size: 13.5px; font-weight: 600; color: var(--ink-2);
  box-shadow: var(--sh-sm); margin-bottom: 30px;
}
.hero__badge b { color: var(--ink); font-weight: 800; }
.hero__badge-sep { color: var(--rule-strong); }
/* Collapse to the single strongest signal on small screens */
@media (max-width: 560px) {
  .hero__badge-loc, .hero__badge-sep { display: none; }
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--whatsapp);
  position: relative; flex-shrink: 0;
}
.pulse::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--whatsapp); animation: ping 2.4s var(--ease) infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 80%,100% { transform: scale(3); opacity: 0; } }

.hero h1 { margin-bottom: 26px; }
.hero__lede { max-width: 690px; margin: 0 auto 38px; }
.hero__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.hero__note { font-size: 14px; color: var(--ink-3); font-weight: 500; }

@media (max-width: 560px) {
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
}

/* ---------- Hero showcase: the "results board" ---------- */
.board-wrap { position: relative; z-index: 1; margin-top: 72px; }
@media (max-width: 900px) { .board-wrap { margin-top: 52px; } }

.board {
  position: relative; z-index: 1;
  background: var(--paper-card);
  border: 1.5px solid var(--rule);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}
@media (max-width: 900px) { .board { border-radius: var(--r-lg); } }

.board__bar {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 22px; border-bottom: 1.5px solid var(--rule);
  background: var(--paper-2);
}
.board__dots { display: flex; gap: 7px; }
.board__dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.board__label {
  font-family: var(--mono); font-size: 12px; letter-spacing: .08em;
  color: var(--ink-3); text-transform: uppercase;
}
.board__live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 800; color: var(--whatsapp);
  font-family: var(--mono); letter-spacing: .08em;
}

.board__grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 0; align-items: stretch;
}
@media (max-width: 860px) { .board__grid { grid-template-columns: 1fr; } }

.board__main { padding: 40px; border-right: 1.5px dashed var(--rule); }
@media (max-width: 860px) { .board__main { border-right: none; border-bottom: 1.5px dashed var(--rule); padding: 28px; } }

.board__kicker { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 12px; }
.board__headline { margin-bottom: 26px; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat {
  border-radius: var(--r-md); padding: 20px;
  border: 1.5px solid transparent;
}
.stat--coral  { background: var(--tint-coral);  border-color: #F7CFC2; }
.stat--mint   { background: var(--tint-mint);   border-color: #BFE3CE; }
.stat--sky    { background: var(--tint-sky);    border-color: #C6D9F3; }
.stat--butter { background: var(--tint-butter); border-color: #EFDCB0; }
.stat__n {
  font-family: var(--display); font-weight: 800; font-size: 34px;
  letter-spacing: -0.035em; line-height: 1; color: var(--ink); margin-bottom: 5px;
}
.stat__l { font-size: 13px; font-weight: 600; color: var(--ink-2); }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr 1fr; gap: 10px; } .stat { padding: 15px; } .stat__n { font-size: 26px; } }

/* Feed column */
.board__feed { padding: 40px; display: flex; flex-direction: column; gap: 12px; background: var(--paper); }
@media (max-width: 860px) { .board__feed { padding: 28px; } }
.feed__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.feed__title { font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: -.02em; }
.feed__meta { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .06em; }

.evt {
  display: flex; gap: 13px; align-items: flex-start;
  background: var(--paper-card); border: 1.5px solid var(--rule);
  border-radius: var(--r-md); padding: 14px 15px;
}
.evt--live { border-color: #F7CFC2; background: linear-gradient(180deg, #FFF6F2, var(--paper-card)); }
.evt__ic {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  display: grid; place-items: center; color: var(--ink);
}
.evt__ic--coral { background: var(--tint-coral); color: var(--coral-deep); }
.evt__ic--mint  { background: var(--tint-mint);  color: #1F7A4D; }
.evt__ic--sky   { background: var(--tint-sky);   color: #2C5FA8; }
.evt__ic--lilac { background: var(--tint-lilac); color: #6B45B8; }
.evt__t { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.35; }
.evt__s { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.evt__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); margin-left: auto; margin-top: 6px; flex-shrink: 0; }

/* ============================================================ TICKER / TRUST */
.ticker {
  border-top: 1.5px dashed var(--rule-strong);
  border-bottom: 1.5px dashed var(--rule-strong);
  padding: 26px 0; margin-top: 110px;
}
@media (max-width: 900px) { .ticker { margin-top: 72px; } }
.ticker__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ticker__item { display: flex; align-items: baseline; gap: 9px; }
.ticker__n {
  font-family: var(--display); font-weight: 800; font-size: 21px;
  letter-spacing: -0.03em; color: var(--ink);
}
.ticker__l { font-size: 14.5px; color: var(--ink-3); font-weight: 500; }
.ticker__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--rule-strong); flex-shrink: 0; }
@media (max-width: 760px) {
  .ticker__dot { display: none; }
  .ticker__in { gap: 14px 26px; }
  .ticker__item { flex: 0 0 auto; }
}

/* ============================================================ SECTION HEAD */
.head { max-width: 780px; margin-bottom: 68px; }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.head .eyebrow { margin-bottom: 20px; }
.head h2 { margin-bottom: 20px; }
@media (max-width: 900px) { .head { margin-bottom: 46px; } }

/* ============================================================ PROBLEM */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: start;
}
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 46px; } }
.prose > * + * { margin-top: 20px; }
.prose p { font-size: 18px; line-height: 1.72; color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose .punch {
  font-family: var(--display); font-weight: 800; font-size: 23px;
  letter-spacing: -.025em; color: var(--ink); line-height: 1.3;
  padding-top: 8px;
}

.leaks { display: flex; flex-direction: column; gap: 0; }
.leak {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1.5px dashed var(--rule);
}
.leak:first-child { padding-top: 0; }
.leak:last-child { border-bottom: none; padding-bottom: 0; }
.leak__ic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
}
.leak__ic--coral  { background: var(--tint-coral);  color: var(--coral-deep); }
.leak__ic--butter { background: var(--tint-butter); color: #A17410; }
.leak__ic--sky    { background: var(--tint-sky);    color: #2C5FA8; }
.leak__ic--lilac  { background: var(--tint-lilac);  color: #6B45B8; }
.leak h4 { margin-bottom: 4px; }
.leak p { font-size: 15px; line-height: 1.55; color: var(--ink-3); }

/* ============================================================ SERVICES */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 980px) { .cards { grid-template-columns: 1fr; gap: 18px; } }

.card {
  position: relative; overflow: hidden;
  border-radius: var(--r-xl); padding: 40px 36px 36px;
  border: 1.5px solid transparent;
  display: flex; flex-direction: column;
  min-height: 400px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.card--coral { background: var(--tint-coral);  border-color: #F7CFC2; }
.card--sky   { background: var(--tint-sky);    border-color: #C6D9F3; }
.card--mint  { background: var(--tint-mint);   border-color: #BFE3CE; }
@media (max-width: 980px) { .card { min-height: 0; padding: 32px 28px; } }

.card__n {
  font-family: var(--mono); font-size: 12px; letter-spacing: .16em;
  color: var(--ink-3); margin-bottom: 26px;
}
.card__ic {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 24px;
  background: rgba(255,255,255,.72); border: 1.5px solid rgba(255,255,255,.9);
  display: grid; place-items: center; color: var(--ink);
}
.card h3 { margin-bottom: 12px; }
.card p { font-size: 15.5px; line-height: 1.62; color: var(--ink-2); margin-bottom: 26px; }
.card .link-arrow { margin-top: auto; align-self: flex-start; border-color: rgba(23,18,15,.22); }
.card .link-arrow:hover { border-color: var(--ink); color: var(--ink); }

/* Big watermark numeral */
.card__wm {
  position: absolute; right: -14px; bottom: -34px;
  font-family: var(--display); font-weight: 800; font-size: 150px;
  letter-spacing: -.06em; line-height: 1;
  color: rgba(23,18,15,.05); pointer-events: none; user-select: none;
}

/* ============================================================ STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
@media (max-width: 940px) { .steps { grid-template-columns: 1fr; gap: 0; } }

.step { position: relative; padding-top: 34px; border-top: 1.5px dashed var(--rule-strong); }
@media (max-width: 940px) {
  .step { border-top: none; padding: 30px 0 30px 0; border-bottom: 1.5px dashed var(--rule); }
  .step:last-child { border-bottom: none; }
}
.step__n {
  font-family: var(--display); font-weight: 800; font-size: 15px;
  letter-spacing: .04em; color: var(--coral-deep);
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.step__n::after { content: ''; width: 30px; height: 1.5px; background: var(--rule-strong); }
.step h3 { margin-bottom: 12px; }
.step p { font-size: 16px; line-height: 1.65; color: var(--ink-2); }

/* ============================================================ INDUSTRIES */
.inds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 940px) { .inds { grid-template-columns: 1fr; } }
.ind {
  background: var(--paper-card); border: 1.5px solid var(--rule);
  border-radius: var(--r-lg); padding: 30px 28px;
  transition: border-color .24s var(--ease), transform .24s var(--ease), box-shadow .24s var(--ease);
}
.ind:hover { border-color: var(--rule-strong); transform: translateY(-3px); box-shadow: var(--sh-md); }
.ind__ic {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 20px;
  display: grid; place-items: center;
}
.ind h4 { margin-bottom: 6px; font-size: 19px; }
.ind p { font-size: 14.5px; color: var(--ink-3); line-height: 1.5; }
.inds__more {
  margin-top: 22px; font-size: 15px; color: var(--ink-3);
  display: flex; align-items: center; gap: 10px;
}
.inds__more::before { content: ''; width: 28px; height: 1.5px; background: var(--rule-strong); flex-shrink: 0; }

/* ============================================================ QUOTE */
.quote { max-width: 900px; margin: 0 auto; text-align: center; }
.quote__stars { display: flex; gap: 5px; justify-content: center; margin-bottom: 30px; color: var(--coral); }
.quote blockquote {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(23px, 3.1vw, 40px);
  line-height: 1.3; letter-spacing: -0.03em;
  color: var(--ink-inv); margin-bottom: 40px;
}
.quote__by { display: inline-flex; align-items: center; gap: 15px; }
.quote__av {
  width: 52px; height: 52px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; flex-shrink: 0;
  font-family: var(--display); font-weight: 800; font-size: 21px; color: #fff;
}
.quote__nm { font-weight: 800; font-size: 16px; color: var(--ink-inv); text-align: left; }
.quote__rl { font-size: 14px; color: var(--ink-inv-3); text-align: left; margin-top: 1px; }

/* ============================================================ CTA */
.cta {
  position: relative; overflow: hidden;
  background: var(--grad); color: #fff;
}
/* subtle paper-grain wash so the gradient doesn't read flat */
.cta__wash {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 420px at 50% -10%, rgba(255,255,255,.28), transparent 70%),
    radial-gradient(600px 380px at 12% 110%, rgba(214,58,92,.35), transparent 68%);
}
.cta__in { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.cta .eyebrow { color: rgba(255,255,255,.8); }
.cta .eyebrow::before { background: rgba(255,255,255,.75); }
.cta h2 { color: #fff; margin: 22px 0 20px; }
.cta__lede { font-size: 18.5px; line-height: 1.65; color: rgba(255,255,255,.9); margin-bottom: 40px; }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.cta__fine { font-size: 14px; color: rgba(255,255,255,.72); }
/* On coral, the primary action inverts to ink for maximum contrast */
.cta .btn-coral {
  background: var(--ink); color: var(--ink-inv);
  box-shadow: 0 8px 24px -8px rgba(23,18,15,.5);
}
.cta .btn-coral:hover { background: #241c17; box-shadow: 0 16px 36px -10px rgba(23,18,15,.55); }
.cta .btn-outline-inv { border-color: rgba(255,255,255,.55); color: #fff; }
.cta .btn-outline-inv:hover { border-color: #fff; background: rgba(255,255,255,.14); }
@media (max-width: 560px) {
  .cta__btns { flex-direction: column; align-items: stretch; }
  .cta__btns .btn { width: 100%; }
}

/* ============================================================ FOOTER */
.foot { background: var(--ink); color: var(--ink-inv-2); padding-top: 88px; }
.foot__top {
  display: grid; grid-template-columns: 1.5fr 2fr; gap: 72px; padding-bottom: 64px;
}
@media (max-width: 900px) { .foot__top { grid-template-columns: 1fr; gap: 48px; } }
.foot__wm {
  font-family: var(--display); font-weight: 800; font-size: 40px;
  letter-spacing: -.04em; line-height: 1; margin-bottom: 18px;
}
.foot__wm span { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.foot__tag { font-size: 16px; line-height: 1.62; color: var(--ink-inv-2); max-width: 330px; margin-bottom: 28px; }
.foot__contact { display: flex; flex-direction: column; gap: 13px; }
.foot__contact a, .foot__contact span {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 15px; color: var(--ink-inv-2); transition: color .16s var(--ease);
}
.foot__contact a:hover { color: var(--ink-inv); }
.foot__contact svg { color: var(--coral); flex-shrink: 0; }

.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 560px) { .foot__cols { grid-template-columns: repeat(2, 1fr); gap: 34px 20px; } }
.foot__h {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-inv-3); margin-bottom: 18px;
}
.foot__cols ul { display: flex; flex-direction: column; gap: 12px; }
.foot__cols a { font-size: 15px; color: var(--ink-inv-2); transition: color .16s var(--ease); }
.foot__cols a:hover { color: var(--ink-inv); }

.foot__bar { border-top: 1.5px dashed var(--rule-inv); padding: 22px 0 26px; }
.foot__bar-in {
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--ink-inv-3);
}

/* ============================================================ FAB */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--whatsapp); color: #fff;
  padding: 13px 20px 13px 16px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 15px;
  box-shadow: 0 10px 28px -8px rgba(29,168,81,.6);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.fab:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -10px rgba(29,168,81,.68); }
@media (max-width: 560px) {
  .fab { right: 14px; bottom: 14px; padding: 13px; }
  .fab span { display: none; }
}

/* ============================================================ REVEAL */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-1 { transition-delay: .06s; }
.rv-2 { transition-delay: .12s; }
.rv-3 { transition-delay: .18s; }

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

/* ============================================================
   INNER PAGES — services / work / contact
   ============================================================ */

/* ---------- Page hero ---------- */
.phero { position: relative; overflow: hidden; padding: 172px 0 84px; text-align: center; }
@media (max-width: 900px) { .phero { padding: 128px 0 60px; } }
.phero__in { position: relative; z-index: 1; max-width: 880px; margin: 0 auto; }
.phero h1 { margin-bottom: 24px; }
.phero .lede { max-width: 680px; margin: 0 auto; }

/* ---------- Jump strip ---------- */
.jump {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  padding: 14px; border: 1.5px dashed var(--rule-strong);
  border-radius: var(--r-lg); background: var(--paper-card);
}
@media (max-width: 780px) { .jump { grid-template-columns: 1fr 1fr; } }
.jump a {
  display: flex; align-items: center; gap: 11px;
  padding: 14px 16px; border-radius: var(--r-md);
  background: var(--paper); border: 1.5px solid var(--rule);
  font-weight: 700; font-size: 14.5px;
  transition: background .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.jump a:hover { border-color: var(--rule-strong); transform: translateY(-2px); }
.jump__n { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .08em; }
.jump__ic { width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }

/* ---------- Service block ---------- */
.svc {
  display: grid; grid-template-columns: 1fr 1.45fr; gap: 72px;
  padding: 68px 0; border-bottom: 1.5px dashed var(--rule);
  align-items: start;
}
.svc:last-child { border-bottom: none; }
@media (max-width: 940px) { .svc { grid-template-columns: 1fr; gap: 30px; padding: 48px 0; } }
.svc__n { font-family: var(--mono); font-size: 12px; letter-spacing: .16em; color: var(--ink-3); margin-bottom: 20px; }
.svc__ic {
  width: 64px; height: 64px; border-radius: 17px; margin-bottom: 22px;
  display: grid; place-items: center;
}
.svc h2 { margin-bottom: 10px; }
.svc__price {
  font-family: var(--display); font-weight: 800; font-size: 20px;
  letter-spacing: -.02em; color: var(--coral-deep);
}
.svc__price small { font-family: var(--body); font-weight: 600; font-size: 13px; color: var(--ink-3); letter-spacing: 0; }

.svc__outcome {
  border-radius: var(--r-lg); padding: 24px 26px; margin-bottom: 30px;
  border: 1.5px solid transparent;
}
.svc__outcome-eye {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 9px;
}
.svc__outcome-t {
  font-family: var(--display); font-weight: 700; font-size: 20px;
  line-height: 1.35; letter-spacing: -.02em; color: var(--ink);
}
.svc__inc-h {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px;
}
.svc__list { display: flex; flex-direction: column; gap: 13px; }
.svc__list li { display: flex; gap: 13px; align-items: flex-start; font-size: 16px; line-height: 1.55; }
.svc__list svg { color: var(--coral-deep); flex-shrink: 0; margin-top: 3px; }

/* ---------- Pricing card ---------- */
.pricecard {
  background: var(--ink); color: var(--ink-inv);
  border-radius: var(--r-xl); padding: 56px 52px;
  position: relative; overflow: hidden;
}
@media (max-width: 720px) { .pricecard { padding: 38px 26px; border-radius: var(--r-lg); } }
.pricecard__wash {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  top: -260px; right: -160px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,132,99,.20), transparent 66%); filter: blur(60px);
}
/* Must not re-position the wash — it is absolutely placed and would
   otherwise take real layout space and push the content down. */
.pricecard > *:not(.pricecard__wash) { position: relative; z-index: 1; }
.pricecard h2 { color: var(--ink-inv); margin: 18px 0 18px; }
.pricecard__body { font-size: 17px; line-height: 1.7; color: var(--ink-inv-2); max-width: 640px; margin-bottom: 32px; }
.pricecard__body em { color: var(--ink-inv); font-style: italic; }
.pricelist { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; max-width: 780px; }
.pricelist li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 15px 0; border-bottom: 1.5px dashed var(--rule-inv);
}
.pricelist li:last-child { border-bottom: none; }
@media (max-width: 560px) {
  .pricelist li { flex-direction: column; align-items: flex-start; gap: 4px; }
}
.pricelist__k { font-size: 16px; font-weight: 600; color: var(--ink-inv); }
.pricelist__v { font-family: var(--display); font-weight: 800; font-size: 17px; letter-spacing: -.02em; color: var(--coral); white-space: nowrap; }
.pricecard__foot { font-size: 16px; line-height: 1.65; color: var(--ink-inv-2); margin-bottom: 26px; }
.pricecard__row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.pricecard__note { font-size: 14px; color: var(--ink-inv-3); }

/* ---------- Case studies ---------- */
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 940px) { .cases { grid-template-columns: 1fr; } }
.case {
  background: var(--paper-card); border: 1.5px solid var(--rule);
  border-radius: var(--r-xl); padding: 38px 36px;
  display: flex; flex-direction: column; gap: 20px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease), border-color .26s var(--ease);
}
.case:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: var(--rule-strong); }
@media (max-width: 560px) { .case { padding: 28px 24px; } }
.case__ind { font-family: var(--mono); font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.case__row { display: flex; flex-direction: column; gap: 5px; }
.case__k { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.case__v { font-size: 15.5px; line-height: 1.55; color: var(--ink-2); }
.case__result {
  margin-top: auto; display: flex; align-items: center; gap: 14px;
  background: var(--tint-coral); border: 1.5px solid #F7CFC2;
  border-radius: var(--r-md); padding: 18px 20px;
}
.case__result-ic {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--grad); color: #fff; display: grid; place-items: center;
}
.case__result-t { font-family: var(--display); font-weight: 700; font-size: 16px; line-height: 1.35; letter-spacing: -.015em; color: var(--ink); }

/* ---------- Empty / coming soon ---------- */
.empty {
  border: 1.5px dashed var(--rule-strong); border-radius: var(--r-xl);
  padding: 52px 40px; text-align: center; background: var(--paper-card);
}
.empty h3 { margin-bottom: 10px; }
.empty p { font-size: 16px; line-height: 1.65; color: var(--ink-2); max-width: 520px; margin: 0 auto 26px; }

/* ---------- Contact card ---------- */
.contactcard {
  background: var(--paper-card); border: 1.5px solid var(--rule);
  border-radius: var(--r-xl); box-shadow: var(--sh-md);
  padding: 56px 48px; max-width: 660px; margin: 0 auto; text-align: center;
}
@media (max-width: 560px) { .contactcard { padding: 38px 26px; } }
.contactcard__ic {
  width: 76px; height: 76px; border-radius: 22px; margin: 0 auto 24px;
  background: #DCF7E6; color: var(--whatsapp); display: grid; place-items: center;
}
.contactcard h2 { margin-bottom: 14px; }
.contactcard p { font-size: 16.5px; line-height: 1.68; color: var(--ink-2); margin-bottom: 30px; }
.contactcard__badges { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--paper); border: 1.5px solid var(--rule);
  border-radius: var(--r-pill); padding: 8px 15px;
  font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.badge svg { color: var(--coral-deep); flex-shrink: 0; }

/* ---------- Info tiles ---------- */
.info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 900px; margin: 56px auto 0; }
@media (max-width: 780px) { .info { grid-template-columns: 1fr; } }
.infotile {
  background: var(--paper-card); border: 1.5px solid var(--rule);
  border-radius: var(--r-lg); padding: 26px 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.infotile__ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; }
.infotile__k { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.infotile__v { font-size: 16px; font-weight: 600; line-height: 1.5; color: var(--ink); }
