:root {
    --cream: #f7f4ec;
    --cream-2: #fdfbf6;
    --ink: #15130e;
    --ink-2: #4f4b40;
    --ink-3: #8a8577;
    --line: #e6e1d3;
    --line-2: #d6d0bd;
    --blue: #2b4fd8;
    --green: #2f7e5a;
    --amber: #d99e2b;
    --coral: #d96448;
    --wa-bg: #efeae2;
    --wa-out: #d9fdd3;
    --display: 'Instrument Sans', sans-serif;
    --serif: 'Instrument Serif', serif;
    --mono: 'IBM Plex Mono', monospace;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --shadow-sm: 0 1px 2px rgba(21,19,14,0.05), 0 2px 10px rgba(21,19,14,0.04);
    --shadow-md: 0 6px 24px rgba(21,19,14,0.09);
    --shadow-lg: 0 24px 64px rgba(21,19,14,0.12);
    --spring: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--display);
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* film grain */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='linear' slope='0.05'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
main, header, footer { position: relative; z-index: 2; }

::selection { background: var(--blue); color: #fff; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── Type ── */
.serif-em { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; }
.kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--mono);
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--ink-2);
    margin-bottom: 22px;
}
.kicker .sq { width: 8px; height: 8px; background: var(--blue); display: inline-block; }
.h-display {
    font-size: clamp(34px, 4.2vw, 56px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.h-display .serif-em { font-size: 1.06em; }
.sub {
    font-size: 17px;
    color: var(--ink-2);
    max-width: 560px;
}

/* ── Pill buttons ── */
.pill {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-family: var(--mono);
    font-size: 11.5px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
    padding: 13px 26px;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 180ms var(--spring), box-shadow 180ms var(--spring), background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.pill:active { transform: scale(0.98); }
.pill:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.pill-ink { background: var(--ink); color: var(--cream); }
.pill-ink:hover { background: var(--blue); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(43,79,216,0.25); }
.pill-ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.pill-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }

.text-link {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--mono);
    font-size: 11.5px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--blue);
    border-bottom: 1px solid transparent;
    transition: gap 180ms var(--spring);
}
.text-link:hover { gap: 11px; }

/* ── Reveal ── */
.fade-up { opacity: 0; transform: translateY(16px); transition: opacity 500ms var(--spring), transform 500ms var(--spring); }
.fade-up.visible { opacity: 1; transform: none; }

/* ── Hue bars ── */
.bar { width: 34px; height: 8px; border-radius: 2px; display: inline-block; }
.hue-blue  { background: var(--blue); }
.hue-green { background: var(--green); }
.hue-amber { background: var(--amber); }
.hue-coral { background: var(--coral); }

/* ════════════════════════
   HEADER
════════════════════════ */
header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 100;
    padding: 16px 0;
    background: rgba(247,244,236,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: padding 220ms ease, border-color 220ms ease;
}
header.scrolled { padding: 11px 0; border-bottom-color: var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 20px; font-weight: 700; letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a:not(.pill) {
    font-family: var(--mono);
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--ink-2);
    transition: color 160ms ease;
}
.nav-links a:not(.pill):hover { color: var(--blue); }
.nav-links a.active { color: var(--ink); }
.nav-links .pill { padding: 10px 20px; }
.mobile-btn { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 4px; }

/* ════════════════════════
   HERO
════════════════════════ */
.hero { padding: 170px 0 72px; position: relative; overflow: hidden; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    opacity: 0.5;
}
.orb-1 { width: 480px; height: 480px; top: -120px; right: -100px; background: radial-gradient(circle at 30% 30%, rgba(43,79,216,0.35), rgba(47,126,90,0.18) 60%, transparent 75%); }
.orb-2 { width: 420px; height: 420px; bottom: -180px; left: -140px; background: radial-gradient(circle at 60% 40%, rgba(217,158,43,0.28), rgba(217,100,72,0.16) 55%, transparent 75%); }

.hero-center { text-align: center; max-width: 780px; margin: 0 auto; position: relative; }
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 9px;
    font-family: var(--mono);
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--ink-2);
    border: 1px solid var(--line-2);
    background: var(--cream-2);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.35;} }

.hero h1 {
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 26px;
}
.hero h1 .serif-em { font-size: 1.06em; }
.hero .sub { margin: 0 auto 38px; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Showcase frame ── */
.showcase { margin-top: 72px; position: relative; }
.frame {
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
}
.frame-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 22px;
    border-bottom: 1px solid var(--line);
}
.frame-dots { display: flex; gap: 6px; }
.frame-dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--line-2); }
.frame-dots span:first-child { background: var(--coral); }
.frame-dots span:nth-child(2) { background: var(--amber); }
.frame-dots span:nth-child(3) { background: var(--green); }
.frame-name { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.frame-live {
    font-family: var(--mono); font-size: 9.5px; font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--green);
    border: 1px solid rgba(47,126,90,0.35);
    background: rgba(47,126,90,0.08);
    padding: 3px 10px;
    border-radius: 100px;
}
.frame-body {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
}

/* workflow canvas */
.wf {
    padding: 34px 38px;
    border-right: 1px solid var(--line);
    background-image: radial-gradient(var(--line) 1px, transparent 1px);
    background-size: 22px 22px;
}
.wf-label {
    font-family: var(--mono);
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--ink-3);
    margin-bottom: 22px;
}
.wf-node {
    display: flex; align-items: center; gap: 14px;
    background: var(--cream-2);
    border: 1px solid var(--line-2);
    border-radius: var(--r-sm);
    padding: 13px 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
    max-width: 380px;
}
.wf-node::before {
    content: '';
    position: absolute;
    left: 0; top: 10px; bottom: 10px;
    width: 3px;
    border-radius: 3px;
}
.wf-node.nb::before { background: var(--blue); }
.wf-node.ng::before { background: var(--green); }
.wf-node.na::before { background: var(--amber); }
.wf-node.nc::before { background: var(--coral); }
.wf-node svg { color: var(--ink-2); flex-shrink: 0; }
.wf-node .t { font-size: 13.5px; font-weight: 600; line-height: 1.3; }
.wf-node .d { font-family: var(--mono); font-size: 10px; color: var(--ink-3); margin-top: 1px; }
.wf-link { width: 2px; height: 20px; background: var(--line-2); margin-left: 32px; }

/* WhatsApp chat panel */
.chat { background: var(--wa-bg); display: flex; flex-direction: column; }
.chat-head {
    display: flex; align-items: center; gap: 11px;
    padding: 13px 20px;
    background: var(--cream-2);
    border-bottom: 1px solid var(--line);
}
.chat-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
}
.chat-name { font-size: 13.5px; font-weight: 600; line-height: 1.2; }
.chat-status { font-family: var(--mono); font-size: 9.5px; color: var(--green); }
.chat-body { padding: 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.msg {
    max-width: 86%;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 12.5px;
    line-height: 1.45;
    box-shadow: var(--shadow-sm);
}
.msg .time { display: block; font-family: var(--mono); font-size: 8.5px; color: var(--ink-3); text-align: right; margin-top: 3px; }
.msg.out { background: var(--wa-out); align-self: flex-end; border-top-right-radius: 3px; }
.msg.in { background: #fff; align-self: flex-start; border-top-left-radius: 3px; }
.msg .cta-line { color: var(--blue); font-weight: 600; display: block; margin-top: 5px; }
.chat-chip {
    align-self: center;
    font-family: var(--mono);
    font-size: 9.5px; font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--green);
    background: rgba(47,126,90,0.1);
    border: 1px solid rgba(47,126,90,0.3);
    padding: 5px 12px;
    border-radius: 100px;
    margin-top: 8px;
}

/* ════════════════════════
   TICKER
════════════════════════ */
.ticker {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--cream-2);
    overflow: hidden;
    padding: 16px 0;
}
.ticker-track {
    display: flex;
    gap: 56px;
    width: max-content;
    animation: tick 36s linear infinite;
}
.ticker-track span {
    font-family: var(--mono);
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--ink-2);
    display: inline-flex; align-items: center; gap: 56px;
    white-space: nowrap;
}
.ticker-track .star { color: var(--amber); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ════════════════════════
   NUMBERED SECTIONS
════════════════════════ */
.numbered { padding: 110px 0; }
.numbered-head { margin-bottom: 64px; }
.num-row {
    display: grid;
    grid-template-columns: 90px 170px 1fr auto;
    gap: 36px;
    align-items: start;
    padding: 40px 0;
    border-top: 1px solid var(--line);
}
.num-row:last-of-type { border-bottom: 1px solid var(--line); }
.num-row .num {
    font-family: var(--mono);
    font-size: 13px; font-weight: 500;
    color: var(--ink-3);
    padding-top: 6px;
}
.num-row .label { padding-top: 4px; }
.num-row .label .bar { margin-bottom: 10px; display: block; }
.num-row .label .lt {
    font-family: var(--mono);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.16em;
}
.num-row h3 {
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 10px;
}
.num-row h3 .serif-em { font-size: 1.05em; }
.num-row p { font-size: 15px; color: var(--ink-2); max-width: 520px; }
.num-row .text-link { padding-top: 10px; }

/* ════════════════════════
   CASE STUDY CARD
════════════════════════ */
.case-section { padding: 110px 0; background: var(--cream-2); border-top: 1px solid var(--line); }
.case-card {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.case-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; }
.case-left, .case-right { min-width: 0; }
.case-left { padding: 48px 52px; }
.case-label {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--mono);
    font-size: 10.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--ink-3);
    margin-bottom: 24px;
}
.case-label .bar { width: 26px; height: 6px; }
.case-card h3 {
    font-size: clamp(26px, 2.8vw, 36px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 6px;
}
.case-sub { font-family: var(--mono); font-size: 11.5px; color: var(--green); margin-bottom: 28px; }
.cs-block { margin-bottom: 22px; }
.cs-block h4 {
    font-family: var(--mono);
    font-size: 10.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.16em;
    color: var(--ink-3);
    margin-bottom: 7px;
}
.cs-block p { font-size: 15px; color: var(--ink-2); }
.cs-block p strong { color: var(--ink); font-weight: 600; }
.cs-list { display: flex; flex-direction: column; gap: 9px; }
.cs-list li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); }
.cs-list li svg { flex-shrink: 0; color: var(--green); margin-top: 4px; }

/* price table mockup */
.case-right {
    border-left: 1px solid var(--line);
    background: var(--cream-2);
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.ptable {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    overflow-x: auto;
    box-shadow: var(--shadow-md);
}
.ptable-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 9.5px; font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.ptable-head .live { color: var(--green); }
.ptable table { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 11px; }
.ptable th {
    text-align: left;
    font-weight: 600;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-3);
    padding: 9px 14px;
    border-bottom: 1px solid var(--line);
}
.ptable td { padding: 9px 14px; border-bottom: 1px solid var(--line); color: var(--ink-2); white-space: nowrap; }
.ptable tr:last-child td { border-bottom: none; }
.ptable .up { color: var(--green); font-weight: 600; }
.ptable .dn { color: var(--coral); font-weight: 600; }
.ptable-foot {
    font-family: var(--mono);
    font-size: 9.5px;
    color: var(--ink-3);
    display: flex; align-items: center; gap: 7px;
}
.ptable-foot svg { color: var(--green); }

.case-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}
.case-stat { padding: 24px 30px; border-right: 1px solid var(--line); }
.case-stat:last-child { border-right: none; }
.case-stat .n { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
.case-stat .n em { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--blue); }
.case-stat .l {
    font-family: var(--mono);
    font-size: 9.5px;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--ink-3);
    margin-top: 4px;
}
.case-foot {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
    padding: 20px 52px;
    border-top: 1px solid var(--line);
}
.chip-row { display: flex; gap: 7px; flex-wrap: wrap; }
.chip {
    font-family: var(--mono);
    font-size: 10.5px;
    padding: 4px 11px;
    border-radius: 100px;
    background: var(--cream-2);
    border: 1px solid var(--line);
    color: var(--ink-2);
}

/* ════════════════════════
   WORK GRID (v2 cards)
════════════════════════ */
.work-section { padding: 96px 0 110px; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.wcard {
    display: flex; flex-direction: column;
    background: var(--cream-2);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 0 0 28px;
    overflow: hidden;
    transition: transform 200ms var(--spring), box-shadow 200ms var(--spring), border-color 200ms ease;
}
.wcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.wcard-top {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 30px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
}
.wcard-top .idx { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.wcard-top .wtag {
    font-family: var(--mono);
    font-size: 9.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--ink-2);
    display: flex; align-items: center; gap: 9px;
}
.wcard-top .wtag .bar { width: 20px; height: 6px; }
.wcard h3 {
    font-size: 21px; font-weight: 600;
    letter-spacing: -0.015em; line-height: 1.2;
    padding: 0 30px;
    margin-bottom: 10px;
}
.wcard > p { font-size: 14px; color: var(--ink-2); padding: 0 30px; margin-bottom: 20px; }
.wflow-label {
    font-family: var(--mono);
    font-size: 9.5px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: var(--ink-3);
    padding: 0 30px;
    margin-bottom: 9px;
}
.wflow {
    display: flex; flex-wrap: wrap; row-gap: 5px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--ink-2);
    padding: 0 30px;
    margin-bottom: 22px;
}
.wflow span { display: inline-flex; align-items: center; }
.wflow span + span::before { content: '\2192'; color: var(--blue); margin: 0 8px; }
.wcard .chip-row { margin-top: auto; padding: 18px 30px 0; border-top: 1px solid var(--line); }
.wcard.wide { grid-column: 1 / -1; }
.wide-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.wcard.wide .chip-row { border-top: none; padding-top: 0; margin-top: 18px; }

/* ════════════════════════
   STAGES (services v2)
════════════════════════ */
.stages-section { padding: 96px 0 110px; }
.stage-line {
    display: grid;
    grid-template-columns: 90px 200px 1fr 320px;
    gap: 32px;
    align-items: center;
    padding: 34px 0;
    border-top: 1px solid var(--line);
}
.stage-line:last-of-type { border-bottom: 1px solid var(--line); }
.stage-line .num { font-family: var(--mono); font-size: 13px; color: var(--ink-3); }
.stage-line .label .bar { margin-bottom: 9px; display: block; }
.stage-line .label .lt {
    font-family: var(--mono);
    font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.16em;
}
.stage-line .benefit { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; }
.stage-line .chip-row { justify-content: flex-end; }

/* ════════════════════════
   PROCESS (v2)
════════════════════════ */
.process-section { padding: 96px 0 110px; background: var(--cream-2); border-top: 1px solid var(--line); }
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.pcard {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 34px 32px;
}
.pcard .pn {
    font-family: var(--serif);
    font-style: italic;
    font-size: 40px;
    color: var(--blue);
    line-height: 1;
    display: block;
    margin-bottom: 18px;
}
.pcard h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 9px; }
.pcard p { font-size: 14.5px; color: var(--ink-2); }
.own-line {
    margin-top: 30px;
    display: flex; align-items: center; gap: 10px;
    font-size: 14.5px; font-weight: 600;
}
.own-line svg { color: var(--green); }

/* ════════════════════════
   PAGE HEAD (inner)
════════════════════════ */
.page-head { padding: 168px 0 56px; position: relative; overflow: hidden; }
.page-head .h-display { max-width: 800px; }
.page-head .sub { margin-bottom: 0; }

/* ════════════════════════
   CTA
════════════════════════ */
.cta-section {
    padding: 130px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
}
.cta-section .orb-1 { right: 8%; top: -180px; opacity: 0.45; }
.cta-section .orb-2 { left: 5%; bottom: -220px; opacity: 0.45; }
.cta-inner { position: relative; max-width: 680px; margin: 0 auto; }
.cta-section h2 {
    font-size: clamp(36px, 4.6vw, 60px);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.04;
    margin-bottom: 20px;
}
.cta-section p { font-size: 17px; color: var(--ink-2); max-width: 480px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.cta-mail {
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing: 0.08em;
    color: var(--ink-3);
    transition: color 160ms ease;
}
.cta-mail:hover { color: var(--blue); }

/* ════════════════════════
   FOOTER
════════════════════════ */
footer { border-top: 1px solid var(--line); background: var(--cream-2); padding: 64px 0 0; overflow: hidden; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}
.footer-brand p { font-size: 14px; color: var(--ink-2); margin-top: 12px; max-width: 260px; }
.fcol h4 {
    font-family: var(--mono);
    font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.18em;
    color: var(--ink-3);
    margin-bottom: 16px;
}
.fcol ul { display: flex; flex-direction: column; gap: 10px; }
.fcol a { font-size: 14px; color: var(--ink-2); transition: color 160ms ease; }
.fcol a:hover { color: var(--blue); }
.footer-meta {
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.06em;
    color: var(--ink-3);
}
.footer-wordmark {
    font-size: clamp(40px, 15vw, 210px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.78;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px var(--line-2);
    user-select: none;
    transform: translateY(12%);
}

/* ════════════════════════
   RESPONSIVE
════════════════════════ */
@media (max-width: 1024px) {
    .frame-body { grid-template-columns: 1fr; }
    .wf { border-right: none; border-bottom: 1px solid var(--line); }
    .num-row { grid-template-columns: 60px 1fr; row-gap: 14px; }
    .num-row .label { grid-column: 2; padding-top: 0; }
    .num-row .nbody { grid-column: 1 / -1; }
    .num-row .text-link { grid-column: 1 / -1; padding-top: 0; }
    .case-grid { grid-template-columns: 1fr; }
    .case-right { border-left: none; border-top: 1px solid var(--line); }
    .case-stats { grid-template-columns: repeat(2, 1fr); }
    .case-stat:nth-child(2) { border-right: none; }
    .case-stat:nth-child(1), .case-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
    .work-grid { grid-template-columns: 1fr; }
    .wide-grid { grid-template-columns: 1fr; gap: 0; }
    .stage-line { grid-template-columns: 60px 1fr; row-gap: 12px; }
    .stage-line .benefit { grid-column: 1 / -1; }
    .stage-line .chip-row { grid-column: 1 / -1; justify-content: flex-start; }
    .proc-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--cream-2);
        flex-direction: column;
        align-items: stretch;
        padding: 18px 28px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
    }
    .nav-links.open { display: flex; }
    .nav-links .pill { justify-content: center; }
    .mobile-btn { display: block; }
    .hero { padding: 140px 0 56px; }
    .page-head { padding: 132px 0 44px; }
    .frame-name { display: none; }
    .wf { padding: 26px 20px; }
    .chat-body { padding: 16px; }
    .case-left { padding: 30px 20px; }
    .case-right { padding: 28px 16px; }
    .case-foot { padding: 18px 20px; }
    .case-stat { padding: 18px 20px; }
    .ptable th, .ptable td { padding: 8px 10px; }
    .ptable table { font-size: 10.5px; }
    .numbered, .work-section, .stages-section, .process-section { padding: 72px 0 84px; }
    .case-section { padding: 72px 0; }
    .cta-section { padding: 88px 0; }
    .wcard h3, .wcard > p, .wflow-label, .wflow { padding-left: 24px; padding-right: 24px; }
    .wcard-top { padding: 16px 24px; }
    .wcard .chip-row { padding: 18px 24px 0; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-eyebrow { font-size: 9.5px; letter-spacing: 0.1em; text-align: center; }
    .hero h1 { font-size: clamp(36px, 11vw, 44px); }
    .h-display { font-size: clamp(27px, 8vw, 34px); }
    .page-head .h-display { font-size: clamp(30px, 9vw, 38px); }
    .cta-section h2 { font-size: clamp(30px, 9vw, 38px); }
    .pill { padding: 12px 20px; font-size: 11px; }
    .ptable th:nth-child(3), .ptable td:nth-child(3),
    .ptable th:nth-child(5), .ptable td:nth-child(5) { display: none; }
    .ptable-head { flex-wrap: wrap; gap: 4px; }
    .case-stat .n { font-size: 24px; }
    .stage-line .benefit { font-size: 16px; }
    .num-row h3 { font-size: 21px; }
    .wcard h3 { font-size: 19px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .fade-up { opacity: 1; transform: none; }
    .ticker-track { animation: none; }
}
