:root {
  --paper: #f4f0e7;
  --paper-bright: #fffdf8;
  --paper-deep: #e7e0d3;
  --ink: #121412;
  --muted: #60645e;
  --line: rgba(18, 20, 18, 0.16);
  --forest: #143f34;
  --forest-deep: #0d2923;
  --forest-soft: #2d6857;
  --acid: #d8ef42;
  --violet: #7d5cff;
  --violet-deep: #5235cb;
  --coral: #ff7658;
  --orange: #ff9b3f;
  --sky: #bdeaff;
  --blue: #49aee9;
  --pink: #ffb6d2;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow-soft: 0 20px 60px rgba(22, 27, 23, 0.12);
  --shell: min(1420px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.16em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--acid); color: var(--ink); }

.shell { width: var(--shell); margin-inline: auto; }
.shell--narrow { max-width: 850px; }
.section { padding-block: clamp(88px, 10vw, 156px); }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; transform: translateY(-180%); z-index: 1000;
  padding: 12px 18px; background: var(--ink); color: #fff; border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 0.98; letter-spacing: -0.055em; text-wrap: balance; }
h1 { font-size: clamp(58px, 8.2vw, 130px); font-weight: 650; }
h2 { font-size: clamp(46px, 6.2vw, 94px); font-weight: 620; }
h3 { font-size: clamp(28px, 3vw, 46px); font-weight: 620; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  font-size: 12px; line-height: 1; font-weight: 760; letter-spacing: 0.14em; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.eyebrow--light { color: rgba(255, 255, 255, 0.74); }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 24px; min-height: 54px;
  padding: 14px 22px; border: 1px solid transparent; border-radius: 13px; text-decoration: none;
  font-weight: 680; line-height: 1; transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); }
.button--ink { background: var(--ink); color: #fff; }
.button--paper { background: var(--paper-bright); color: var(--ink); }
.button--acid { background: var(--acid); color: var(--ink); }
.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.text-link { font-weight: 720; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 3px; }

.announcement { position: relative; z-index: 31; background: #531044; color: #fff; }
.announcement__inner {
  width: var(--shell); min-height: 42px; margin-inline: auto; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; font-size: 13px; letter-spacing: 0.01em;
}
.announcement__inner a { color: var(--acid); font-size: 12px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.pulse-dot, .live-dot { width: 7px; height: 7px; display: inline-block; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(216, 239, 66, 0.13); }

.site-header {
  position: sticky; top: 0; z-index: 30; width: 100%; padding: 12px 0 0; transition: padding 180ms ease;
}
.site-header__inner {
  width: var(--shell); min-height: 78px; margin-inline: auto; padding: 10px 12px 10px 20px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px;
  background: rgba(255, 253, 248, 0.94); border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 22px; box-shadow: 0 12px 36px rgba(13, 31, 25, 0.11); backdrop-filter: blur(18px);
}
.site-header.is-scrolled { padding-top: 7px; }
.site-header.is-scrolled .site-header__inner { min-height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 790; letter-spacing: -0.055em; text-decoration: none; white-space: nowrap; }
.brand-mark { position: relative; width: 34px; height: 28px; display: inline-block; }
.brand-mark i { position: absolute; width: 18px; height: 18px; border-radius: 7px 7px 7px 2px; transform: rotate(45deg); }
.brand-mark i:nth-child(1) { left: 0; top: 5px; background: var(--coral); }
.brand-mark i:nth-child(2) { left: 8px; top: 0; background: var(--violet); }
.brand-mark i:nth-child(3) { left: 16px; top: 7px; background: var(--acid); }
.primary-nav { display: flex; justify-content: center; align-items: center; gap: 6px; }
.primary-nav a { padding: 12px 14px; border-radius: 10px; text-decoration: none; font-size: 15px; font-weight: 570; }
.primary-nav a:hover { background: var(--paper); }
.header-cta { min-height: 51px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; background: transparent; border: 0; }
.menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--ink); }

.hero {
  --pointer-x: 70%; --pointer-y: 25%; position: relative; min-height: 990px; margin-top: -102px; padding-top: 114px;
  overflow: hidden; color: #fff; background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(180deg, #bceaff 0%, #98d4f2 47%, var(--forest-soft) 47.2%, var(--forest) 69%, var(--forest-deep) 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
}
.hero::after {
  content: ""; position: absolute; inset: 42% -10% auto; height: 260px; opacity: 0.7; filter: blur(1px);
  background: radial-gradient(ellipse at center, rgba(96, 173, 142, 0.82), rgba(20, 63, 52, 0) 66%);
}
.hero-art { position: relative; height: 535px; z-index: 1; }
.shape { position: absolute; filter: drop-shadow(0 20px 24px rgba(22, 60, 64, 0.15)); }
.shape--orb { width: 68px; height: 68px; border-radius: 50%; top: 155px; left: 8%; background: linear-gradient(145deg, #ff7b6e, #b93978); box-shadow: inset -11px -12px 20px rgba(85, 16, 56, 0.16); }
.shape--pill { width: 150px; height: 38px; border-radius: 999px; top: 93px; right: 11%; transform: rotate(-13deg); background: linear-gradient(90deg, var(--acid), #8bbd3a); }
.shape--spark { width: 48px; height: 48px; top: 315px; right: 3%; background: var(--orange); clip-path: polygon(50% 0, 63% 35%, 100% 50%, 63% 65%, 50% 100%, 37% 65%, 0 50%, 37% 35%); }
.machine { position: absolute; inset: 55px 8% auto; height: 350px; }
.machine-card {
  position: absolute; left: 3%; top: 80px; width: 260px; min-height: 190px; padding: 24px;
  color: var(--ink); background: #fffaf0; border: 1px solid rgba(18, 20, 18, 0.14); border-radius: 22px;
  box-shadow: 0 24px 60px rgba(27, 72, 74, 0.23); transform: rotate(-4deg);
}
.machine-card span, .output-card span { font-size: 10px; font-weight: 780; letter-spacing: 0.12em; }
.machine-card strong { display: block; margin: 20px 0 24px; font-size: 25px; line-height: 1.03; letter-spacing: -0.045em; }
.machine-card i { display: block; width: 78%; height: 7px; margin-top: 8px; border-radius: 99px; background: #d8d3c9; }
.machine-card i:nth-of-type(2) { width: 60%; background: var(--pink); }
.machine-card i:nth-of-type(3) { width: 43%; background: var(--acid); }
.machine-track { position: absolute; height: 14px; display: flex; gap: 15px; align-items: center; }
.machine-track::before { content: ""; position: absolute; left: 0; right: 0; top: 6px; height: 3px; border-radius: 5px; background: #185d78; }
.machine-track b { position: relative; z-index: 1; width: 14px; height: 14px; border-radius: 50%; background: var(--coral); box-shadow: inset -3px -3px 5px rgba(0,0,0,.15); }
.machine-track--one { left: 24%; right: 48%; top: 174px; transform: rotate(3deg); }
.machine-track--two { left: 54%; right: 25%; top: 178px; transform: rotate(-4deg); }
.machine-dial {
  position: absolute; left: 42%; top: 72px; width: 170px; height: 170px; display: grid; place-items: center;
  color: var(--ink); background: radial-gradient(circle at 34% 30%, #fff, #d8e4eb 47%, #579cc0 49%, #246584 66%, #123a4d 68%);
  border: 13px solid #fff5df; border-radius: 50%; box-shadow: 0 25px 45px rgba(19, 65, 81, 0.24);
}
.machine-dial::before { content: ""; position: absolute; width: 58px; height: 58px; border-radius: 50%; background: var(--violet); box-shadow: inset -9px -10px 16px rgba(53, 31, 137, 0.34); }
.machine-dial span { position: absolute; bottom: -47px; padding: 8px 13px; background: #fff; border-radius: 10px; font-size: 9px; line-height: 1.2; font-weight: 800; letter-spacing: .12em; text-align: center; }
.machine-output { position: absolute; right: 2%; top: 60px; width: 290px; height: 220px; }
.output-card { position: absolute; width: 170px; height: 210px; padding: 16px; border-radius: 18px; border: 2px solid rgba(18,20,18,.25); box-shadow: 0 20px 40px rgba(25, 55, 58, .22); }
.output-card--one { left: 0; top: 18px; background: linear-gradient(155deg, #ffac9f, #ef5d76 50%, #531044); transform: rotate(-10deg); }
.output-card--two { left: 56px; top: 0; background: linear-gradient(155deg, #d7ff7a, #5ccf8d 47%, #14585c); transform: rotate(-1deg); }
.output-card--three { left: 112px; top: 17px; background: linear-gradient(155deg, #d6caff, #8768ff 54%, #33217b); transform: rotate(9deg); }
.machine-caption { position: absolute; right: 9%; bottom: 26px; display: flex; align-items: center; gap: 12px; padding: 10px 15px; color: var(--ink); background: rgba(255,255,255,.78); border-radius: 999px; font-size: 12px; font-weight: 680; backdrop-filter: blur(12px); }
.hero-copy { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, .65fr); gap: 8vw; align-items: end; padding: 44px 0 74px; }
.hero-copy h1 { margin-bottom: 0; }
.hero-copy h1 em { color: var(--acid); font-style: normal; }
.hero-copy__aside { padding-bottom: 10px; }
.hero-copy__aside p { max-width: 520px; margin-bottom: 30px; color: rgba(255,255,255,.85); font-size: clamp(18px, 1.7vw, 25px); line-height: 1.38; letter-spacing: -0.02em; }

.trust-band { position: relative; z-index: 3; margin-top: -1px; background: var(--paper-bright); border-radius: 42px 42px 0 0; }
.trust-band__inner { min-height: 210px; display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.trust-band__inner > p { max-width: 470px; margin: 0; font-size: clamp(24px, 2.3vw, 36px); line-height: 1.12; letter-spacing: -0.045em; }
.trust-tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 9px; }
.trust-tags span { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 680; }

.section-heading { max-width: 980px; margin-bottom: 62px; }
.section-heading h2 { margin-bottom: 26px; }
.section-heading > p, .section-heading--split > p { max-width: 610px; color: var(--muted); font-size: clamp(18px, 1.6vw, 23px); line-height: 1.5; }
.section-heading--split { max-width: none; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .58fr); gap: 9vw; align-items: end; }
.section-heading--split > p { margin-bottom: 9px; }

.outcomes { background: var(--paper); }
.outcome-tabs { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 24px; }
.outcome-tab { padding: 12px 17px; background: transparent; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 14px; font-weight: 670; }
.outcome-tab:hover, .outcome-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.outcome-stage { min-height: 600px; border-radius: var(--radius-lg); overflow: hidden; background: var(--sky); box-shadow: inset 0 0 0 1px rgba(18,20,18,.08); }
.outcome-panel { min-height: 600px; display: grid; grid-template-columns: .9fr 1.1fr; }
.outcome-panel__copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(36px, 6vw, 92px); }
.outcome-panel__copy > span { margin-bottom: 36px; font-size: 11px; font-weight: 790; letter-spacing: .15em; }
.outcome-panel__copy h3 { margin-bottom: 24px; }
.outcome-panel__copy p { max-width: 520px; margin-bottom: 34px; color: rgba(18,20,18,.72); font-size: 19px; }
.outcome-panel__copy a { width: fit-content; font-weight: 720; text-decoration: none; border-bottom: 1px solid; }
.outcome-visual { position: relative; min-height: 600px; overflow: hidden; }
.outcome-visual::before { content: ""; position: absolute; inset: 8%; border: 1px solid rgba(18,20,18,.18); border-radius: 28px; }
.visual-product { background: radial-gradient(circle at 52% 38%, #fff6d9 0 18%, transparent 19%), linear-gradient(145deg, #8bd0ef, #6f6ef3); }
.product-plinth { position: absolute; left: 50%; top: 50%; width: 220px; height: 300px; transform: translate(-50%, -46%); display: grid; place-items: center; color: #fff; background: linear-gradient(155deg, #ff8c72, #b93274); border-radius: 45% 45% 20px 20px; box-shadow: 0 40px 70px rgba(58,32,106,.28); }
.product-plinth::before { content: ""; position: absolute; inset: -24px -24px auto; height: 64px; background: #efdccc; border-radius: 50%; box-shadow: 0 12px 20px rgba(43,27,27,.14); }
.product-plinth i { position: absolute; top: -57px; width: 70px; height: 44px; background: #2c2145; border-radius: 12px 12px 4px 4px; }
.product-plinth b { font-size: 30px; letter-spacing: .18em; }
.visual-note { position: absolute; padding: 9px 13px; background: var(--paper-bright); border-radius: 999px; font-size: 11px; font-weight: 740; box-shadow: var(--shadow-soft); }
.note-one { left: 14%; top: 18%; transform: rotate(-6deg); }
.note-two { right: 14%; bottom: 18%; transform: rotate(4deg); }
.visual-ads { background: linear-gradient(155deg, #ffef70, #ff9b64 50%, #ef4d83); }
.ad-card { position: absolute; width: 230px; height: 320px; display: flex; align-items: flex-end; padding: 22px; border: 2px solid var(--ink); border-radius: 22px; font-size: 34px; line-height: .9; font-weight: 850; letter-spacing: -.06em; box-shadow: 18px 24px 0 rgba(18,20,18,.14); }
.ad-card--a { left: 12%; top: 21%; background: var(--paper-bright); transform: rotate(-11deg); }
.ad-card--b { left: 36%; top: 13%; background: var(--acid); transform: rotate(2deg); }
.ad-card--c { left: 58%; top: 23%; background: var(--violet); color: #fff; transform: rotate(12deg); }
.visual-video { background: linear-gradient(145deg, #20164f, #6241bf 54%, #f47c87); }
.film-frame { position: absolute; width: 265px; height: 170px; padding: 13px; border-radius: 19px; background: #f6efe3; box-shadow: var(--shadow-soft); }
.film-frame::before, .film-frame::after { content: ""; position: absolute; left: 14px; right: 14px; height: 8px; background: repeating-linear-gradient(90deg, var(--ink) 0 12px, transparent 12px 22px); }
.film-frame::before { top: 6px; } .film-frame::after { bottom: 6px; }
.film-frame span { position: absolute; right: 14px; top: 17px; z-index: 2; font-size: 10px; font-weight: 800; }
.film-frame i { display: block; width: 100%; height: 100%; border-radius: 12px; background: linear-gradient(145deg, var(--sky), var(--coral)); }
.film-frame:nth-child(1) { left: 10%; top: 16%; transform: rotate(-8deg); }
.film-frame:nth-child(2) { right: 13%; top: 20%; transform: rotate(8deg); }
.film-frame:nth-child(3) { left: 29%; bottom: 13%; transform: rotate(2deg); }
.play-orb { position: absolute; left: 50%; top: 49%; width: 92px; height: 92px; display: grid; place-items: center; transform: translate(-50%,-50%); background: var(--acid); border: 8px solid var(--paper-bright); border-radius: 50%; color: var(--ink); font-size: 26px; box-shadow: 0 16px 42px rgba(0,0,0,.24); }
.visual-campaign { display: grid; place-items: center; background: radial-gradient(circle at center, #ffb4ce 0 24%, transparent 25%), linear-gradient(145deg, #a8eff2, #7c74ed); }
.campaign-core { position: relative; z-index: 2; width: 190px; height: 190px; display: grid; place-items: center; border-radius: 34px; background: var(--ink); color: #fff; font-size: 38px; line-height: .9; font-weight: 850; letter-spacing: -.06em; text-align: center; transform: rotate(-4deg); }
.visual-campaign > span { position: absolute; display: grid; place-items: center; width: 100px; height: 120px; background: var(--paper-bright); border: 2px solid var(--ink); border-radius: 18px; font-size: 17px; font-weight: 780; }
.visual-campaign > span:nth-of-type(1) { left: 13%; top: 13%; transform: rotate(-12deg); }
.visual-campaign > span:nth-of-type(2) { right: 13%; top: 14%; transform: rotate(10deg); }
.visual-campaign > span:nth-of-type(3) { left: 14%; bottom: 12%; transform: rotate(8deg); }
.visual-campaign > span:nth-of-type(4) { right: 14%; bottom: 12%; transform: rotate(-8deg); }

.services { background: var(--paper-bright); }
.bento-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.bento-card { position: relative; min-height: 470px; padding: clamp(30px, 4vw, 56px); overflow: hidden; border-radius: var(--radius-lg); }
.bento-card h3 { position: relative; z-index: 2; max-width: 520px; margin: 255px 0 16px; }
.bento-card p { position: relative; z-index: 2; max-width: 590px; margin: 0; font-size: 18px; }
.card-index { position: absolute; top: 28px; right: 30px; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.bento-card--direction { color: #fff; background: #5a35ce; }
.bento-card--models { color: var(--ink); background: var(--acid); }
.bento-card--refine { color: var(--ink); background: var(--sky); }
.bento-card--delivery { color: #fff; background: var(--forest); }
.mini-board { position: absolute; left: 7%; right: 7%; top: 45px; height: 210px; background: #f5efe6; border-radius: 22px; transform: rotate(-2deg); box-shadow: 12px 18px 0 rgba(24,15,74,.25); }
.mini-board i { position: absolute; width: 120px; height: 120px; border-radius: 18px; }
.mini-board i:nth-child(1) { left: 7%; top: 34px; background: linear-gradient(145deg, var(--coral), #742f78); }
.mini-board i:nth-child(2) { left: 34%; top: 22px; background: linear-gradient(145deg, var(--sky), var(--blue)); }
.mini-board i:nth-child(3) { right: 7%; top: 43px; background: linear-gradient(145deg, var(--acid), #7bbd3f); }
.mini-board b { position: absolute; left: 42%; bottom: -15px; padding: 8px 14px; border: 2px solid var(--ink); background: var(--acid); color: var(--ink); border-radius: 99px; transform: rotate(4deg); font-size: 11px; letter-spacing: .12em; }
.model-stack { position: absolute; left: 12%; top: 63px; display: flex; align-items: flex-end; }
.model-stack i { width: 126px; height: 160px; display: grid; place-items: center; margin-left: -24px; border: 2px solid var(--ink); border-radius: 62px 62px 18px 18px; font-style: normal; font-size: 13px; font-weight: 850; box-shadow: 10px 14px 0 rgba(18,20,18,.12); }
.model-stack i:nth-child(1) { margin-left: 0; background: var(--coral); transform: rotate(-9deg); }
.model-stack i:nth-child(2) { background: var(--sky); transform: translateY(-18px); }
.model-stack i:nth-child(3) { background: var(--pink); transform: rotate(9deg); }
.refine-meter { position: absolute; left: 8%; right: 8%; top: 70px; height: 145px; display: flex; align-items: center; gap: 10px; }
.refine-meter::before { content: ""; position: absolute; left: 0; right: 0; height: 7px; background: rgba(18,20,18,.24); border-radius: 99px; }
.refine-meter span { position: relative; z-index: 1; width: 74px; height: 74px; border: 5px solid var(--paper-bright); border-radius: 50%; box-shadow: 0 12px 24px rgba(18,20,18,.12); }
.refine-meter span:nth-child(1) { background: #8799a1; }
.refine-meter span:nth-child(2) { background: #7fb8b1; }
.refine-meter span:nth-child(3) { background: #58c68a; }
.refine-meter span:nth-child(4) { background: var(--acid); }
.refine-meter b { position: relative; z-index: 2; margin-left: auto; padding: 14px 18px; background: var(--ink); color: #fff; border-radius: 12px; font-size: 12px; letter-spacing: .1em; }
.delivery-folders { position: absolute; left: 8%; right: 8%; top: 52px; height: 210px; }
.delivery-folders i { position: absolute; width: 64%; height: 105px; padding: 22px; border-radius: 16px; color: var(--ink); font-style: normal; font-size: 12px; font-weight: 830; letter-spacing: .1em; box-shadow: 0 16px 30px rgba(0,0,0,.16); }
.delivery-folders i::before { content: ""; position: absolute; left: 18px; top: -13px; width: 84px; height: 22px; border-radius: 9px 9px 0 0; background: inherit; }
.delivery-folders i:nth-child(1) { left: 2%; top: 0; background: var(--coral); transform: rotate(-5deg); }
.delivery-folders i:nth-child(2) { left: 18%; top: 48px; background: var(--sky); transform: rotate(2deg); }
.delivery-folders i:nth-child(3) { right: 1%; top: 92px; background: var(--acid); transform: rotate(7deg); }

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.work-card { position: relative; overflow: hidden; border-radius: var(--radius-lg); background: var(--paper-bright); box-shadow: inset 0 0 0 1px var(--line); }
.work-card:first-child { grid-column: span 2; }
.concept-label { position: absolute; top: 22px; left: 22px; z-index: 3; padding: 8px 11px; border: 1px solid rgba(18,20,18,.2); border-radius: 999px; background: rgba(255,253,248,.78); backdrop-filter: blur(8px); font-size: 10px; font-weight: 790; letter-spacing: .12em; text-transform: uppercase; }
.work-art { position: relative; min-height: 520px; overflow: hidden; }
.work-card:not(:first-child) .work-art { min-height: 430px; }
.work-meta { display: flex; justify-content: space-between; gap: 30px; align-items: flex-end; padding: 30px; }
.work-meta span { font-size: 11px; font-weight: 740; letter-spacing: .08em; text-transform: uppercase; }
.work-meta h3 { max-width: 690px; margin: 10px 0 0; font-size: clamp(28px, 3.3vw, 50px); }
.work-meta > span { color: var(--muted); text-align: right; }
.work-card--skincare .work-art { background: radial-gradient(circle at 68% 20%, rgba(255,255,255,.7), transparent 22%), linear-gradient(135deg, #bfeadd, #77b79d 55%, #255a48); }
.bottle { position: absolute; left: 23%; top: 50%; width: 190px; height: 310px; transform: translateY(-45%) rotate(-4deg); display: grid; place-items: center; background: linear-gradient(135deg, rgba(255,255,255,.82), rgba(209,239,231,.36)); border: 2px solid rgba(255,255,255,.62); border-radius: 46% 46% 28px 28px; box-shadow: 0 42px 70px rgba(17,63,48,.29); backdrop-filter: blur(10px); }
.bottle::before { content: ""; position: absolute; top: -48px; width: 82px; height: 65px; background: #f5eee2; border-radius: 13px 13px 6px 6px; box-shadow: inset -8px -8px 14px rgba(0,0,0,.08); }
.bottle i { position: absolute; top: 30px; width: 70px; height: 4px; background: var(--forest); }
.bottle span { color: var(--forest); font-size: 28px; font-weight: 790; letter-spacing: .25em; transform: translateX(.13em); }
.work-copy-art { position: absolute; right: 8%; bottom: 16%; font-size: clamp(45px, 6vw, 90px); line-height: .88; font-weight: 780; letter-spacing: -.07em; }
.work-card--coffee .work-art { background: radial-gradient(circle at 48% 50%, #ffe7bc 0 20%, transparent 21%), linear-gradient(145deg, #ffbd54, #ed5e4b); }
.coffee-orbit { position: absolute; left: 50%; top: 44%; width: 190px; height: 250px; transform: translate(-50%,-50%) rotate(8deg); border-radius: 30px 30px 70px 70px; background: #331f1b; box-shadow: 0 34px 50px rgba(90,30,24,.3); }
.coffee-orbit::before { content: ""; position: absolute; inset: 33px 27px; border: 2px solid var(--acid); border-radius: 50%; }
.coffee-orbit i { position: absolute; inset: -65px; border: 3px solid rgba(51,31,27,.6); border-radius: 50%; transform: rotate(-24deg); }
.coffee-orbit b { position: absolute; width: 36px; height: 36px; right: -57px; top: 37px; background: var(--acid); border-radius: 50%; }
.work-card--coffee .work-copy-art { left: 7%; right: auto; top: 8%; bottom: auto; color: #fff8e8; font-size: clamp(38px, 4.3vw, 68px); }
.work-card--software .work-art { background: linear-gradient(145deg, #c9bdff, #7b63e7 54%, #3d257c); }
.software-window { position: absolute; inset: 13% 10%; padding: 68px 32px 32px; background: #f8f4ec; border: 2px solid var(--ink); border-radius: 22px; box-shadow: 18px 22px 0 rgba(28,17,72,.23); }
.software-window::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 45px; border-bottom: 2px solid var(--ink); background: var(--acid); border-radius: 20px 20px 0 0; }
.software-window span { position: relative; display: block; width: 88%; height: 10px; margin: 13px 0; background: #d8d1c6; border-radius: 99px; }
.software-window span:nth-child(2) { width: 64%; background: var(--pink); }
.software-window span:nth-child(3) { width: 76%; background: var(--sky); }
.software-window b { position: absolute; left: 30px; bottom: 30px; font-size: clamp(25px, 3vw, 42px); line-height: .95; letter-spacing: -.06em; }
.section-action { margin-top: 34px; text-align: right; }

.process { position: relative; overflow: hidden; background: var(--forest-deep); color: #fff; }
.process::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: radial-gradient(circle at 20% 30%, var(--violet) 0 2px, transparent 3px), radial-gradient(circle at 80% 60%, var(--acid) 0 2px, transparent 3px); background-size: 80px 80px, 110px 110px; }
.process__inner { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; }
.process-heading { position: sticky; top: 130px; align-self: start; }
.process-heading h2 { margin-bottom: 28px; font-size: clamp(44px, 5vw, 76px); }
.process-heading p { max-width: 530px; color: rgba(255,255,255,.7); font-size: 20px; }
.process-steps { border-top: 1px solid rgba(255,255,255,.22); }
.process-step { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 26px; padding: 44px 0 80px; border-bottom: 1px solid rgba(255,255,255,.22); }
.process-step > span { color: var(--acid); font-size: 12px; font-weight: 810; letter-spacing: .14em; }
.process-step h3 { margin-bottom: 14px; font-size: clamp(33px, 3.7vw, 56px); }
.process-step p { max-width: 580px; margin: 0; color: rgba(255,255,255,.7); font-size: 18px; }
.process-step i { position: absolute; right: 0; bottom: 25px; color: rgba(255,255,255,.15); font-size: 12px; font-style: normal; font-weight: 800; letter-spacing: .18em; }

.quote-model { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.quote-card { min-height: 610px; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(34px, 5vw, 72px); border-radius: var(--radius-lg); }
.quote-card h2 { margin-bottom: 24px; font-size: clamp(44px, 5vw, 72px); }
.quote-card p { max-width: 560px; font-size: 20px; }
.quote-card ul { margin: 25px 0 42px; padding: 0; list-style: none; }
.quote-card li { padding: 13px 0; border-bottom: 1px solid currentColor; font-weight: 620; }
.quote-card li::before { content: "✓"; margin-right: 10px; }
.quote-card .button { margin-top: auto; }
.quote-card--simple { background: var(--sky); }
.quote-card--discovery { background: var(--violet); color: #fff; }

.faq { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; }
.faq-heading { align-self: start; position: sticky; top: 130px; }
.faq-heading h2 { font-size: clamp(46px, 5vw, 75px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { min-height: 100px; display: flex; align-items: center; justify-content: space-between; gap: 28px; cursor: pointer; list-style: none; font-size: clamp(21px, 2vw, 29px); font-weight: 620; letter-spacing: -.035em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 36px; height: 36px; flex: 0 0 36px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 760px; padding: 0 70px 35px 0; color: var(--muted); font-size: 18px; }

.insights { padding-top: 40px; }
.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insight-card { min-height: 350px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper-bright); transition: transform 180ms ease, box-shadow 180ms ease; }
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.insight-card > span { margin-bottom: 70px; font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.insight-card h3 { margin-bottom: 17px; font-size: clamp(28px, 2.7vw, 42px); }
.insight-card h3 a { text-decoration: none; }
.insight-card p { color: var(--muted); }
.insight-card .text-link { margin-top: auto; }
.insight-card--placeholder:nth-child(1) { background: #ffdfb5; }
.insight-card--placeholder:nth-child(2) { background: #d9cffd; }
.insight-card--placeholder:nth-child(3) { background: #caeecb; }

.site-footer { padding: 22px 0 0; background: var(--paper); }
.footer-cta { min-height: 540px; display: grid; grid-template-columns: 1.1fr .55fr; gap: 9vw; align-items: end; padding: clamp(38px, 6vw, 90px); background: var(--ink); color: #fff; border-radius: var(--radius-lg); }
.footer-cta h2 { margin-bottom: 0; }
.footer-cta__action p { margin-bottom: 32px; color: rgba(255,255,255,.7); font-size: 20px; }
.footer-main { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding-block: 82px; }
.brand--footer { width: fit-content; margin-bottom: 20px; }
.footer-brand p { max-width: 430px; color: var(--muted); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links > div { display: flex; flex-direction: column; gap: 11px; }
.footer-links span { margin-bottom: 7px; font-size: 10px; font-weight: 820; letter-spacing: .14em; text-transform: uppercase; }
.footer-links a { width: fit-content; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }

.page-hero { min-height: 550px; display: flex; align-items: end; padding: 190px 0 75px; background: var(--sky); }
.page-hero__inner h1 { max-width: 1120px; margin-bottom: 0; }
.page-hero__inner > p { max-width: 700px; margin: 36px 0 0; font-size: clamp(20px, 2.2vw, 30px); line-height: 1.4; letter-spacing: -.025em; }
.page-hero--brief { min-height: 680px; color: #fff; background: radial-gradient(circle at 83% 24%, rgba(216,239,66,.6), transparent 15%), radial-gradient(circle at 72% 64%, rgba(125,92,255,.8), transparent 20%), var(--forest-deep); }
.page-hero--insights { min-height: 650px; color: #fff; background: radial-gradient(circle at 80% 20%, var(--coral), transparent 20%), linear-gradient(145deg, var(--violet-deep), #2e1c67); }
.page-hero--insights h1 { max-width: 950px; }

.prose { max-width: 880px; padding-block: clamp(72px, 10vw, 150px); }
.prose h2 { margin: 1.2em 0 .45em; font-size: clamp(39px, 5vw, 66px); }
.prose h3 { margin: 1.4em 0 .45em; font-size: clamp(28px, 3.3vw, 43px); }
.prose p, .prose li { font-size: clamp(18px, 1.6vw, 21px); line-height: 1.7; }
.prose p { margin-bottom: 1.3em; }
.prose ul, .prose ol { margin: 1.4em 0; padding-left: 1.3em; }
.prose li { margin-bottom: .75em; }
.prose a { font-weight: 650; }

.brief-section { display: grid; grid-template-columns: .55fr 1.15fr; gap: 8vw; padding-block: clamp(80px, 10vw, 150px); }
.brief-sidebar { align-self: start; position: sticky; top: 130px; }
.brief-sidebar ol { margin: 10px 0 45px; padding: 0; list-style: none; }
.brief-sidebar li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.brief-sidebar li > span { color: var(--violet-deep); font-size: 11px; font-weight: 820; letter-spacing: .12em; }
.brief-sidebar li p { margin: 0; }
.brief-note { padding: 24px; background: var(--acid); border-radius: 18px; }
.brief-note strong { display: block; margin-bottom: 8px; }
.brief-note p { margin: 0; font-size: 15px; }
.brief-form-wrap { padding: clamp(28px, 4.5vw, 62px); background: var(--paper-bright); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.brief-form label { display: block; }
.brief-form label > span:first-child { display: block; margin-bottom: 9px; font-size: 13px; font-weight: 700; }
.brief-form input:not([type="checkbox"]), .brief-form select, .brief-form textarea { width: 100%; padding: 15px 16px; border: 1px solid rgba(18,20,18,.25); border-radius: 12px; background: #fff; color: var(--ink); outline: 0; }
.brief-form input:focus, .brief-form select:focus, .brief-form textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(125,92,255,.13); }
.form-full { margin-top: 22px; }
.brief-form textarea { min-height: 190px; resize: vertical; }
.consent { display: grid !important; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; margin: 25px 0; color: var(--muted); font-size: 13px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--violet); }
.consent span { margin: 0 !important; font-weight: 450 !important; }
.button--submit { min-width: 210px; border: 0; cursor: pointer; }
.form-fineprint { margin: 15px 0 0; color: var(--muted); font-size: 12px; }
.honey-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-message { margin-bottom: 25px; padding: 20px; border-radius: 14px; }
.form-message strong { display: block; margin-bottom: 5px; }
.form-message p { margin: 0; }
.form-message--success { background: #dbf7d8; border: 1px solid #85bf7d; }
.form-message--error { background: #ffe0da; border: 1px solid #e99484; }

.post-index { min-height: 500px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.post-card { overflow: hidden; background: var(--paper-bright); border: 1px solid var(--line); border-radius: var(--radius-md); }
.post-card__image { aspect-ratio: 1.35; display: block; overflow: hidden; background: var(--sky); }
.post-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
.post-card:hover .post-card__image img { transform: scale(1.03); }
.post-card__image--placeholder { display: grid; place-items: center; color: var(--violet-deep); background: radial-gradient(circle at center, var(--acid) 0 20%, transparent 21%), linear-gradient(145deg, var(--sky), var(--pink)); text-decoration: none; font-size: 11px; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.post-card__body { padding: 28px; }
.post-card__body > span, .article-meta, .article-kicker { font-size: 11px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.post-card h2 { margin: 40px 0 16px; font-size: clamp(28px, 3vw, 42px); }
.post-card h2 a { text-decoration: none; }
.post-card p { color: var(--muted); }
.empty-state { min-height: 370px; display: grid; place-content: center; padding: 60px; text-align: center; background: var(--paper-bright); border-radius: var(--radius-lg); }
.empty-state h2 { max-width: 800px; margin: 0 auto 22px; }
.empty-state p { max-width: 630px; margin-inline: auto; color: var(--muted); font-size: 20px; }
.pagination { margin-top: 50px; }
.nav-links { display: flex; gap: 10px; }
.page-numbers { min-width: 42px; min-height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 10px; text-decoration: none; }
.page-numbers.current { background: var(--ink); color: #fff; }

.article-header { padding: 210px 0 80px; background: var(--sky); }
.article-kicker { display: inline-block; margin-bottom: 50px; text-decoration: none; }
.article-header h1 { margin-bottom: 35px; font-size: clamp(54px, 7.4vw, 110px); }
.article-meta { display: flex; gap: 30px; }
.article-image { margin-top: 45px; }
.article-image img { width: 100%; max-height: 760px; object-fit: cover; border-radius: var(--radius-lg); }
.not-found { min-height: 80vh; display: grid; place-items: center; padding: 180px 0 100px; text-align: center; }
.not-found h1 { max-width: 900px; margin-inline: auto; font-size: clamp(54px, 7vw, 100px); }
.not-found p { margin-bottom: 30px; color: var(--muted); font-size: 20px; }
.error-code { display: block; color: var(--violet); font-size: 14px; font-weight: 830; letter-spacing: .2em; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  :root { --shell: min(100% - 32px, 1050px); }
  .primary-nav { gap: 0; }
  .primary-nav a { padding-inline: 9px; }
  .hero { min-height: 960px; }
  .hero-art { height: 485px; }
  .machine { inset-inline: 2%; }
  .machine-card { left: 0; transform: scale(.88) rotate(-4deg); }
  .machine-dial { left: 40%; transform: scale(.9); }
  .machine-output { right: -1%; transform: scale(.86); }
  .hero-copy { grid-template-columns: 1.25fr .65fr; gap: 5vw; }
  .outcome-panel { grid-template-columns: .95fr 1.05fr; }
  .outcome-panel__copy { padding: 45px; }
  .ad-card { width: 190px; height: 280px; }
  .work-copy-art { right: 4%; }
  .process__inner, .brief-section { gap: 5vw; }
}

@media (max-width: 880px) {
  .announcement__inner span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: 100px 16px auto; display: none; flex-direction: column; align-items: stretch; padding: 18px; background: var(--paper-bright); border-radius: 20px; box-shadow: var(--shadow-soft); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 16px; font-size: 18px; }
  .hero { margin-top: -102px; padding-top: 110px; min-height: auto; }
  .hero-art { height: 520px; }
  .machine { inset: 55px 0 auto; transform: scale(.82); transform-origin: center top; }
  .shape--orb { left: 2%; }
  .hero-copy { grid-template-columns: 1fr; gap: 35px; padding-top: 0; }
  .hero-copy h1 { font-size: clamp(56px, 12vw, 96px); }
  .hero-copy__aside { max-width: 630px; }
  .trust-band__inner { min-height: 260px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .trust-tags { justify-content: flex-start; }
  .section-heading--split, .process__inner, .faq, .footer-cta, .footer-main, .brief-section { grid-template-columns: 1fr; }
  .outcome-panel { grid-template-columns: 1fr; }
  .outcome-stage, .outcome-panel { min-height: auto; }
  .outcome-visual { min-height: 500px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card { min-height: 460px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card:first-child { grid-column: auto; }
  .work-art, .work-card:not(:first-child) .work-art { min-height: 440px; }
  .work-copy-art { font-size: 60px; }
  .process-heading, .faq-heading, .brief-sidebar { position: static; margin-bottom: 40px; }
  .quote-model { grid-template-columns: 1fr; }
  .quote-card { min-height: 540px; }
  .insight-grid, .post-grid { grid-template-columns: 1fr 1fr; }
  .insight-card:last-child { grid-column: span 2; }
  .footer-cta { min-height: 620px; }
  .footer-links { max-width: 650px; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 24px); --radius-lg: 27px; }
  body { font-size: 16px; }
  .section { padding-block: 82px; }
  .announcement__inner { min-height: 36px; }
  .announcement__inner > span { font-size: 11px; }
  .announcement__inner a { display: none; }
  .site-header { padding-top: 8px; }
  .site-header__inner { min-height: 65px; padding: 8px 10px 8px 15px; border-radius: 17px; }
  .brand { font-size: 19px; }
  .brand-mark { transform: scale(.85); transform-origin: left center; margin-right: -5px; }
  .primary-nav { top: 86px; }
  .hero { margin-top: -82px; padding-top: 92px; }
  .hero-art { height: 390px; }
  .machine { width: 800px; left: 50%; right: auto; transform: translateX(-50%) scale(.53); transform-origin: center top; }
  .shape--orb { width: 42px; height: 42px; top: 120px; }
  .shape--pill { width: 100px; height: 28px; right: 4%; top: 72px; }
  .shape--spark { top: 260px; }
  .machine-caption { right: 2%; bottom: 17px; font-size: 10px; }
  .hero-copy { gap: 28px; padding-bottom: 54px; }
  .hero-copy h1 { font-size: clamp(48px, 14.5vw, 76px); }
  .hero-copy__aside p { font-size: 18px; }
  .button-row { align-items: stretch; }
  .button-row .button { width: 100%; justify-content: space-between; }
  .trust-band { border-radius: 28px 28px 0 0; }
  .trust-band__inner { min-height: 330px; }
  .trust-tags span { font-size: 11px; }
  .section-heading { margin-bottom: 42px; }
  .outcome-tabs { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
  .outcome-tabs::-webkit-scrollbar { display: none; }
  .outcome-tab { flex: 0 0 auto; }
  .outcome-panel__copy { padding: 32px 25px 40px; }
  .outcome-panel__copy h3 { font-size: 36px; }
  .outcome-visual { min-height: 390px; }
  .product-plinth { transform: translate(-50%,-45%) scale(.75); }
  .ad-card { width: 140px; height: 220px; font-size: 26px; }
  .ad-card--a { left: 5%; } .ad-card--b { left: 31%; } .ad-card--c { left: 55%; }
  .film-frame { width: 180px; height: 120px; }
  .campaign-core { width: 140px; height: 140px; font-size: 30px; }
  .visual-campaign > span { width: 75px; height: 90px; }
  .bento-card { min-height: 430px; padding: 26px; }
  .bento-card h3 { margin-top: 250px; }
  .model-stack { transform: scale(.78); transform-origin: left top; }
  .work-meta { flex-direction: column; align-items: flex-start; }
  .work-meta > span { text-align: left; }
  .work-art, .work-card:not(:first-child) .work-art { min-height: 370px; }
  .bottle { left: 17%; transform: translateY(-45%) rotate(-4deg) scale(.78); }
  .work-copy-art { right: 5%; font-size: 43px; }
  .work-card--coffee .work-copy-art { font-size: 40px; }
  .software-window { inset: 16% 7%; }
  .process-step { grid-template-columns: 38px 1fr; gap: 15px; padding-bottom: 72px; }
  .quote-card { min-height: 590px; padding: 30px 25px; }
  .faq-list summary { min-height: 92px; font-size: 21px; }
  .faq-list details p { padding-right: 0; }
  .insight-grid, .post-grid { grid-template-columns: 1fr; }
  .insight-card:last-child { grid-column: auto; }
  .footer-cta { min-height: 650px; padding: 32px 25px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-main { padding-block: 60px; }
  .footer-bottom { min-height: 140px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; }
  .page-hero { min-height: 480px; padding: 160px 0 60px; }
  .page-hero--brief, .page-hero--insights { min-height: 620px; }
  .form-grid { grid-template-columns: 1fr; }
  .brief-form-wrap { padding: 28px 18px; }
  .article-header { padding-top: 170px; }
}

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

