:root {
  --ink: #111817;
  --ink-2: #1c2927;
  --forest: #214f4a;
  --forest-2: #2e6861;
  --lime: #d9f66f;
  --amber: #e8a85f;
  --sand: #f3efe6;
  --paper: #fbfaf6;
  --white: #fff;
  --muted: #66716e;
  --line: rgba(17, 24, 23, .14);
  --shadow: 0 24px 60px rgba(17, 24, 23, .12);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 40px;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

.site-progress {
  position: fixed;
  z-index: 180;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}
.site-progress span { display: block; width: 100%; height: 100%; background: var(--lime); transform: scaleX(0); transform-origin: 0 50%; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
  transition: transform .2s ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }

.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-dark { color: var(--white); background: var(--ink); }
.section-forest { color: var(--white); background: var(--forest); }
.section-sand { background: var(--sand); }
.section-line { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--forest-2);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-forest .eyebrow { color: var(--lime); }

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.04; letter-spacing: -.04em; }
h1 { margin-bottom: 28px; font-size: clamp(3.1rem, 7vw, 6.35rem); font-weight: 720; }
h2 { margin-bottom: 26px; font-size: clamp(2.35rem, 5vw, 4.7rem); font-weight: 700; }
h3 { margin-bottom: 16px; font-size: clamp(1.45rem, 2.6vw, 2.1rem); font-weight: 680; }

.display-serif {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.06em;
}

.lead { max-width: 760px; color: #45524f; font-size: clamp(1.16rem, 2vw, 1.45rem); }
.section-dark .lead, .section-forest .lead { color: rgba(255,255,255,.72); }
.muted { color: var(--muted); }

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); background: var(--forest); }
.button-light { background: var(--lime); color: var(--ink); }
.button-light:hover { background: var(--white); }
.button-ghost { border-color: var(--line); background: transparent; color: var(--ink); }
.button-ghost:hover { border-color: var(--ink); background: transparent; }
.section-dark .button-ghost, .section-forest .button-ghost { border-color: rgba(255,255,255,.24); color: var(--white); }
.section-dark .button-ghost:hover, .section-forest .button-ghost:hover { border-color: var(--white); }

.button-arrow::after { content: "↗"; font-size: 1.1em; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251,250,246,.9);
  backdrop-filter: blur(16px);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.site-header[data-scrolled] { border-color: var(--line); box-shadow: 0 10px 30px rgba(17,24,23,.05); }
.nav { display: flex; height: 84px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 138px; height: 58px; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav > a, .nav-dropdown summary { font-size: .92rem; font-weight: 680; text-decoration: none; }
.desktop-nav > a:hover, .nav-dropdown summary:hover { color: var(--forest-2); }
.nav-dropdown { position: relative; }
.nav-dropdown summary { cursor: pointer; list-style: none; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown summary::after { margin-left: 6px; content: "⌄"; }
.nav-dropdown-panel {
  position: absolute;
  top: 36px;
  left: -24px;
  width: 280px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.nav-dropdown-panel a { display: block; padding: 11px 12px; border-radius: 10px; font-size: .9rem; font-weight: 650; text-decoration: none; }
.nav-dropdown-panel a:hover { background: var(--sand); }
.menu-button { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-button span, .menu-button::before, .menu-button::after { display: block; width: 20px; height: 2px; background: var(--ink); content: ""; transition: transform .2s ease, opacity .2s ease; }
.menu-button span { margin: 4px 0; }
.menu-button[aria-expanded="true"] span { opacity: 0; }
.menu-button[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu { position: fixed; z-index: 99; inset: 84px 0 0; padding: 34px 20px; background: var(--paper); opacity: 0; visibility: hidden; pointer-events: none; translate: 0 -14px; transition: opacity .28s ease, translate .28s ease, visibility .28s; }
.mobile-menu[data-open] { opacity: 1; visibility: visible; pointer-events: auto; translate: 0 0; }
.mobile-menu a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.25rem; font-weight: 700; text-decoration: none; }
.mobile-menu .button { display: flex; margin-top: 28px; border: 0; color: var(--white); }

.hero { position: relative; overflow: hidden; padding: 42px 0 66px; }
.hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -220px;
  top: -260px;
  border-radius: 50%;
  background: var(--lime);
  filter: blur(1px);
  opacity: .58;
  content: "";
  animation: hero-orb 8s ease-in-out infinite alternate;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: 46px; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 { max-width: 760px; margin-bottom: 22px; }
.hero h1 { font-size: clamp(3.4rem, 5.5vw, 4.65rem); }
.hero .lead { max-width: 680px; font-size: 1.18rem; line-height: 1.55; }
.proof-inline { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line); }
.proof-inline span { display: inline-flex; align-items: center; gap: 9px; color: #3c4845; font-size: .86rem; font-weight: 700; }
.proof-inline span::before { color: var(--forest-2); content: "●"; font-size: .62rem; }

.signal-board {
  position: relative;
  min-height: 560px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .2s ease-out;
}
.signal-board::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 25%, rgba(217,246,111,.08) 48%, transparent 70%);
  background-size: 250% 100%;
  content: "";
  pointer-events: none;
  animation: signal-scan 5.5s linear infinite;
}
.signal-board > * { position: relative; z-index: 1; }
.signal-top { display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.48); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.signal-live { display: inline-flex; align-items: center; gap: 8px; color: var(--lime); }
.signal-live::before { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 6px rgba(217,246,111,.12); content: ""; }
.signal-search { margin-top: 70px; padding: 24px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.05); }
.signal-search small { color: rgba(255,255,255,.5); }
.signal-search strong { display: block; margin-top: 9px; font-size: 1.25rem; line-height: 1.3; }
.signal-path { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 16px; }
.signal-step { min-height: 112px; padding: 16px; border-radius: 16px; background: rgba(255,255,255,.07); animation: signal-pulse 4.8s ease-in-out infinite; }
.signal-step:nth-child(2) { animation-delay: .45s; }
.signal-step:nth-child(3) { animation-delay: .9s; }
.signal-step b { display: block; color: var(--lime); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.signal-step span { display: block; margin-top: 24px; font-size: .86rem; font-weight: 700; line-height: 1.25; }
.signal-conversion { position: absolute; right: -28px; bottom: 38px; width: 250px; padding: 18px; border-radius: 18px; background: var(--lime); color: var(--ink); box-shadow: 0 16px 40px rgba(0,0,0,.3); transform: rotate(-2deg); animation: conversion-float 4s ease-in-out infinite; }
.signal-conversion small { font-weight: 700; }
.signal-conversion strong { display: block; margin-top: 8px; font-size: 1.15rem; line-height: 1.25; }

.logo-strip { overflow: hidden; border-block: 1px solid var(--line); background: var(--white); }
.logo-grid { display: grid; grid-template-columns: repeat(7, 1fr); align-items: center; min-height: 104px; }
.logo-grid span { text-align: center; color: #59635f; font-size: .8rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 58px; }
.section-heading h2 { max-width: 820px; margin-bottom: 0; }
.section-heading .lead { max-width: 420px; margin-bottom: 6px; font-size: 1.05rem; }

.outcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.outcome-card { position: relative; min-height: 430px; padding: 42px; overflow: hidden; border-radius: var(--radius); background: var(--white); text-decoration: none; }
.outcome-card:nth-child(2) { background: var(--forest); color: var(--white); }
.outcome-card::after { position: absolute; right: 34px; bottom: 28px; content: "↗"; font-size: 2rem; transition: transform .2s ease; }
.outcome-card:hover::after { transform: translate(4px, -4px); }
.outcome-number { color: var(--forest-2); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.outcome-card:nth-child(2) .outcome-number { color: var(--lime); }
.outcome-card h3 { max-width: 500px; margin-top: 100px; font-size: clamp(2rem, 4vw, 3.5rem); }
.outcome-card p { max-width: 470px; color: var(--muted); }
.outcome-card:nth-child(2) p { color: rgba(255,255,255,.68); }

.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); overflow: hidden; background: rgba(255,255,255,.14); }
.method-card { min-height: 360px; padding: 34px; background: var(--ink); }
.method-card span { color: var(--lime); font-family: Georgia, serif; font-size: 3rem; font-style: italic; }
.method-card h3 { margin-top: 88px; }
.method-card p { color: rgba(255,255,255,.62); }

.section-system { overflow: hidden; background: linear-gradient(135deg, #e9eee7, var(--sand)); }
.system-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  padding: clamp(26px, 5vw, 72px);
  border: 1px solid rgba(17,24,23,.1);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  box-shadow: 0 40px 100px rgba(17,24,23,.12);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .2s ease-out;
}
.system-copy { align-self: center; padding-right: clamp(0px, 3vw, 34px); }
.system-copy h2 { font-size: clamp(2.4rem, 4.4vw, 4.3rem); }
.system-proof { display: grid; gap: 6px; margin-top: 38px; padding: 20px; border-left: 3px solid var(--forest); background: var(--sand); }
.system-proof span { color: var(--muted); font-size: .9rem; }
.system-map { position: relative; display: grid; gap: 10px; }
.system-map::before { position: absolute; z-index: 0; left: 33px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(var(--forest), var(--lime)); content: ""; transform-origin: top; animation: line-grow 3.8s ease-in-out infinite alternate; }
.system-node { position: relative; z-index: 1; display: grid; min-height: 130px; grid-template-columns: 54px 1fr auto; align-items: center; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: var(--paper); transition: transform .3s ease, border-color .3s ease; }
.system-node:hover { z-index: 2; border-color: var(--forest); transform: translateX(-10px); }
.system-node b { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: var(--ink); color: var(--lime); font-size: .72rem; letter-spacing: .08em; }
.system-node h3 { margin-bottom: 8px; font-size: 1.35rem; }
.system-node p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }
.system-node small { color: var(--forest-2); font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.system-node-active { background: var(--ink); color: var(--white); box-shadow: 0 24px 50px rgba(17,24,23,.2); }
.system-node-active p { color: rgba(255,255,255,.65); }
.system-node-active small { color: var(--lime); }
.system-node-active b { background: var(--lime); color: var(--ink); box-shadow: 0 0 0 9px rgba(217,246,111,.12); animation: active-node 2.2s ease-in-out infinite; }

.case-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 22px; }
.case-card { grid-column: span 6; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-decoration: none; transform: perspective(1100px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)); transition: transform .25s ease, box-shadow .25s ease; }
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.case-card-wide { grid-column: span 12; display: grid; grid-template-columns: 1.25fr .75fr; }
.case-image { aspect-ratio: 16/10; overflow: hidden; background: #e8ece9; }
.case-card-wide .case-image { aspect-ratio: auto; min-height: 470px; }
.case-image img { width: 100%; height: 100%; padding: clamp(8px, 1.4vw, 18px); object-fit: contain; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.case-card:hover .case-image img { transform: scale(1.025); }
.case-content { padding: 28px; }
.case-card-wide .case-content { display: flex; flex-direction: column; justify-content: end; padding: 44px; background: var(--forest); color: var(--white); }
.case-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 26px; }
.tag { padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .71rem; font-weight: 800; text-transform: uppercase; }
.case-card-wide .tag { border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.66); }
.case-content p { color: var(--muted); }
.case-card-wide .case-content p { color: rgba(255,255,255,.7); }
.case-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; font-weight: 800; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.stat { padding: 30px 24px; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { display: block; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.06em; }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-size: .82rem; font-weight: 700; }

.process-list { border-top: 1px solid rgba(255,255,255,.18); }
.process-item { display: grid; grid-template-columns: 90px 1fr 1fr; gap: 30px; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.process-item > span { color: var(--lime); font-family: Georgia, serif; font-size: 2rem; font-style: italic; }
.process-item p { margin: 0; color: rgba(255,255,255,.65); }

.portrait-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; gap: 22px; }
.portrait { min-height: 640px; overflow: hidden; border-radius: var(--radius); }
.portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.portrait-copy { display: flex; flex-direction: column; justify-content: center; padding: 64px; border-radius: var(--radius); background: var(--sand); }
.signature { margin-top: 28px; font-family: Georgia, serif; font-size: 1.6rem; font-style: italic; }

.insight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.insight-card { display: flex; min-height: 390px; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); text-decoration: none; }
.insight-card:hover { border-color: var(--forest); }
.insight-card small { color: var(--forest-2); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.insight-card h3 { margin-top: 70px; font-size: 2rem; }
.insight-card span { font-weight: 800; }

.cta-panel { position: relative; padding: 78px; overflow: hidden; border-radius: var(--radius-lg); background: var(--lime); }
.cta-panel::after { position: absolute; right: -70px; bottom: -110px; width: 300px; height: 300px; border: 55px solid rgba(17,24,23,.12); border-radius: 50%; content: ""; }
.cta-panel h2 { max-width: 850px; }
.cta-panel .lead { max-width: 620px; }

.page-hero { padding: 48px 0 72px; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 60px; }
.page-hero h1 { font-size: clamp(3rem, 5.3vw, 4.55rem); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: var(--muted); font-size: .79rem; font-weight: 700; }
.breadcrumb a { text-decoration: none; }
.breadcrumb span::before { margin-right: 8px; content: "/"; opacity: .5; }
.hero-media { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-media img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.website-preview { background: #e8ece9; }
.website-preview img { aspect-ratio: 16/10; padding: clamp(10px, 1.8vw, 24px); object-fit: contain; }
.project-stage { padding: clamp(12px, 2vw, 28px); background: var(--ink); }
.project-stage img { padding: 0; border-radius: calc(var(--radius) - 8px); }
.case-insight { padding: clamp(28px, 5vw, 54px); border-left: 4px solid var(--lime); border-radius: 0 var(--radius) var(--radius) 0; background: var(--ink); color: var(--white); }
.case-insight .lead { margin-bottom: 0; color: rgba(255,255,255,.7); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease; }
.service-card:hover { border-color: rgba(46,104,97,.38); box-shadow: 0 24px 50px rgba(17,24,23,.1); transform: translateY(-8px); }
.service-card .icon { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 55px; border-radius: 50%; background: var(--lime); font-weight: 900; }
.service-card p { margin-bottom: 0; color: var(--muted); }

.check-list { display: grid; gap: 12px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink); }
.check-list li::before { position: absolute; left: 0; color: var(--forest-2); content: "✓"; font-weight: 900; }
.section-dark .check-list li::before, .section-forest .check-list li::before { color: var(--lime); }
.check-list-detailed { gap: 0; }
.check-list-detailed li { padding: 24px 0 24px 42px; border-bottom: 1px solid var(--line); }
.check-list-detailed li:last-child { border-bottom: 0; }
.check-list-detailed li::before { top: 25px; display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--lime); color: var(--ink); font-size: .75rem; }
.check-list-detailed strong, .check-list-detailed span { display: block; }
.check-list-detailed strong { margin-bottom: 6px; font-size: 1.05rem; }
.check-list-detailed span { color: var(--muted); font-size: .92rem; line-height: 1.55; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 80px; }
.split-sticky { position: sticky; top: 120px; }
.content-stack > * + * { margin-top: 28px; }
.content-card { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--ink); }
.content-card p:last-child { margin-bottom: 0; }
.content-card-list { padding: 18px 32px; box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.section-note { max-width: 560px; color: rgba(255,255,255,.6); }

.answer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.answer-card { position: relative; min-height: 360px; padding: 32px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .35s cubic-bezier(.2,.8,.2,1), background .35s ease, color .35s ease; }
.answer-card::after { position: absolute; right: -42px; bottom: -52px; width: 150px; height: 150px; border: 28px solid rgba(46,104,97,.09); border-radius: 50%; content: ""; transition: transform .5s ease; }
.answer-card:hover { background: var(--forest); color: var(--white); transform: translateY(-8px); }
.answer-card:hover::after { transform: scale(1.25) rotate(18deg); }
.answer-card > span { display: block; color: var(--forest-2); font-family: Georgia, serif; font-size: 2.5rem; font-style: italic; }
.answer-card h3 { margin-top: 74px; font-size: 1.75rem; }
.answer-card p { position: relative; z-index: 1; margin-bottom: 0; color: var(--muted); }
.answer-card:hover > span { color: var(--lime); }
.answer-card:hover p { color: rgba(255,255,255,.7); }

.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.region-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); text-decoration: none; }
.region-card[aria-current="page"] { border-color: var(--forest); background: var(--forest); color: var(--white); }
.region-card span { display: block; margin-top: 28px; color: var(--muted); font-size: .84rem; }
.region-card[aria-current="page"] span { color: rgba(255,255,255,.65); }

.article-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: center; gap: 56px; }
.article-toc { position: sticky; top: 120px; align-self: start; padding-left: 18px; border-left: 1px solid var(--line); }
.article-toc strong { display: block; margin-bottom: 12px; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.article-toc a { display: block; padding: 5px 0; color: var(--muted); font-size: .82rem; text-decoration: none; }
.article-body { font-size: 1.08rem; }
.article-body h2 { margin-top: 72px; font-size: clamp(2rem, 4vw, 3.2rem); }
.article-body h3 { margin-top: 44px; }
.article-body p, .article-body ul { color: #3e4a47; }
.article-note { margin: 44px 0; padding: 28px; border-left: 4px solid var(--forest); background: var(--sand); }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-button { display: grid; width: 100%; grid-template-columns: 1fr auto; gap: 20px; padding: 24px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 750; }
.faq-button::after { content: "+"; font-size: 1.5rem; font-weight: 400; }
.faq-button[aria-expanded="true"]::after { content: "−"; }
.faq-answer { max-width: 780px; max-height: 0; overflow: hidden; color: var(--muted); opacity: 0; translate: 0 -8px; transition: max-height .45s cubic-bezier(.2,.8,.2,1), opacity .3s ease, translate .35s ease, padding .35s ease; }
.faq-item[data-open] .faq-answer { max-height: 520px; padding: 0 0 26px; opacity: 1; translate: 0 0; }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 60px; }
.contact-meta { display: grid; gap: 14px; margin-top: 40px; }
.contact-meta a { font-weight: 760; text-decoration: none; }
.contact-card { padding: 42px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.goal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.goal-choice { min-height: 90px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: transparent; text-align: left; cursor: pointer; font-weight: 720; }
.goal-choice:hover, .goal-choice[data-selected] { border-color: var(--forest); background: var(--sand); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 800; }
.field input, .field textarea { width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--paper); }
.field textarea { min-height: 120px; resize: vertical; }
.form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.privacy { margin: 18px 0; color: var(--muted); font-size: .76rem; }
.consent-field { display: grid; grid-template-columns: 22px 1fr; gap: 11px; margin-top: 20px; padding: 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--sand); color: #394542; font-size: .78rem; line-height: 1.5; cursor: pointer; }
.consent-field input { width: 19px; height: 19px; margin-top: 2px; accent-color: var(--forest); }
.consent-field a { font-weight: 800; }
.feedback { margin-top: 18px; color: var(--forest); font-weight: 750; }
.feedback[tabindex] { outline: none; }
.feedback[data-state="pending"] { color: var(--muted); }
.feedback[data-state="error"] { color: #9d2d20; }
.contact-card button[type="submit"]:disabled { cursor: wait; opacity: .65; }

.author-card { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 32px; padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.author-card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; object-position: 50% 35%; }
.author-card h2 { margin-bottom: 14px; font-size: 2.25rem; }
.author-card p:not(.eyebrow) { color: var(--muted); }
.author-card a { font-weight: 800; text-decoration: none; }

.site-footer { padding: 72px 0 28px; background: var(--ink); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footer-brand p { max-width: 380px; color: rgba(255,255,255,.58); }
.footer-logo { width: 150px; padding: 10px; border-radius: 10px; background: var(--white); }
.footer-col strong { display: block; margin-bottom: 18px; color: var(--lime); font-size: .73rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; padding: 5px 0; color: rgba(255,255,255,.68); font-size: .88rem; text-decoration: none; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.45); font-size: .76rem; }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links button { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; font-size: inherit; }
.footer-bottom-links a, .footer-bottom-links button { text-decoration: none; }
.footer-bottom-links a:hover, .footer-bottom-links button:hover { color: var(--white); }

.cookie-banner { position: fixed; z-index: 300; right: 20px; bottom: 20px; display: grid; width: min(720px, calc(100% - 40px)); grid-template-columns: 1fr auto; gap: 28px; padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; background: rgba(17,24,23,.97); color: var(--white); box-shadow: 0 28px 90px rgba(0,0,0,.42); backdrop-filter: blur(18px); animation: cookie-in .55s cubic-bezier(.2,.9,.2,1) both; }
.cookie-banner[hidden] { display: none; }
.cookie-banner .eyebrow { margin-bottom: 10px; color: var(--lime); }
.cookie-banner h2 { margin-bottom: 12px; font-size: 1.65rem; }
.cookie-banner p:not(.eyebrow) { margin-bottom: 10px; color: rgba(255,255,255,.68); font-size: .86rem; line-height: 1.55; }
.cookie-link { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--lime); cursor: pointer; font-size: .8rem; font-weight: 800; }
.cookie-categories { display: grid; gap: 8px; margin-top: 14px; }
.cookie-categories > div { display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; padding: 11px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; }
.cookie-categories strong { font-size: .8rem; }
.cookie-categories span { grid-column: 1; color: rgba(255,255,255,.55); font-size: .72rem; }
.cookie-categories em { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--lime); font-size: .66rem; font-style: normal; font-weight: 850; text-transform: uppercase; }
.cookie-actions { display: flex; min-width: 220px; flex-direction: column; justify-content: end; gap: 9px; }
.cookie-actions .button { min-height: 48px; padding-inline: 18px; font-size: .78rem; }
.cookie-actions .button:first-child { background: var(--lime); color: var(--ink); }
.cookie-actions .button-ghost { border-color: rgba(255,255,255,.24); color: var(--white); }

[data-reveal] { opacity: 0; translate: 0 34px; scale: .985; filter: blur(8px); transition: opacity .85s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms), translate .85s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms), scale .85s ease var(--reveal-delay, 0ms), filter .75s ease var(--reveal-delay, 0ms); }
[data-reveal][data-visible] { opacity: 1; translate: 0 0; scale: 1; filter: blur(0); }
.hero-media[data-reveal], .portrait[data-reveal] { clip-path: inset(12% 0 12% 0 round var(--radius)); transition: opacity .9s ease var(--reveal-delay, 0ms), translate .9s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms), scale .9s ease var(--reveal-delay, 0ms), filter .8s ease var(--reveal-delay, 0ms), clip-path 1.1s cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms); }
.hero-media[data-reveal][data-visible], .portrait[data-reveal][data-visible] { clip-path: inset(0 round var(--radius)); }

@keyframes hero-orb { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(-46px,52px,0) scale(1.08); } }
@keyframes signal-scan { from { background-position: 180% 0; } to { background-position: -80% 0; } }
@keyframes signal-pulse { 0%, 100% { background: rgba(255,255,255,.07); } 50% { background: rgba(217,246,111,.11); } }
@keyframes conversion-float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-11px) rotate(1deg); } }
@keyframes line-grow { from { transform: scaleY(.15); opacity: .35; } to { transform: scaleY(1); opacity: 1; } }
@keyframes active-node { 0%, 100% { box-shadow: 0 0 0 9px rgba(217,246,111,.12); } 50% { box-shadow: 0 0 0 16px rgba(217,246,111,.03); } }
@keyframes cookie-in { from { opacity: 0; transform: translateY(28px) scale(.97); } to { opacity: 1; transform: translateY(0) scale(1); } }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; flex-direction: column; }
  .hero-grid, .page-hero-grid, .portrait-grid, .contact-grid { grid-template-columns: 1fr; }
  .signal-board { width: min(100%, 650px); margin-inline: auto; }
  .section-heading { display: block; }
  .section-heading .lead { margin-top: 24px; }
  .method-grid, .service-grid, .insight-grid, .region-grid { grid-template-columns: 1fr 1fr; }
  .answer-grid { grid-template-columns: 1fr 1fr; }
  .system-shell { grid-template-columns: 1fr; }
  .case-card-wide { grid-template-columns: 1fr; }
  .case-card-wide .case-image { min-height: auto; aspect-ratio: 16/10; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process-item { grid-template-columns: 60px 1fr; }
  .process-item p { grid-column: 2; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split-sticky { position: static; }
  .article-layout { grid-template-columns: 1fr; }
  .article-toc { display: none; }
  .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .section-sm { padding: 54px 0; }
  .nav { height: 72px; }
  .brand img { width: 112px; height: 48px; }
  .mobile-menu { inset-block-start: 72px; }
  .hero { padding: 60px 0 70px; }
  .hero-grid { gap: 46px; }
  h1 { font-size: clamp(3rem, 15vw, 4.35rem); }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.15rem); }
  h2 { font-size: clamp(2.25rem, 12vw, 3.4rem); }
  .button-row .button { width: 100%; }
  .signal-board { min-height: 500px; padding: 18px; border-radius: 28px; }
  .signal-search { margin-top: 50px; padding: 18px; }
  .signal-path { grid-template-columns: 1fr; }
  .signal-step { display: flex; min-height: auto; align-items: center; justify-content: space-between; gap: 20px; }
  .signal-step span { margin-top: 0; }
  .signal-conversion { right: 10px; bottom: -20px; width: 220px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); padding: 18px 0; }
  .logo-grid span { padding: 12px 0; }
  .outcome-grid, .method-grid, .service-grid, .insight-grid, .region-grid { grid-template-columns: 1fr; }
  .answer-grid { grid-template-columns: 1fr; }
  .outcome-card { min-height: 370px; padding: 28px; }
  .outcome-card h3 { margin-top: 70px; }
  .method-card { min-height: 300px; }
  .method-card h3 { margin-top: 54px; }
  .case-card, .case-card-wide { grid-column: 1 / -1; }
  .case-card-wide .case-content { padding: 28px; }
  .case-image, .case-card-wide .case-image { aspect-ratio: 16/11; }
  .case-image img { padding: 10px; }
  .website-preview img { aspect-ratio: 16/11; padding: 10px; }
  .process-item { grid-template-columns: 42px 1fr; gap: 18px; }
  .portrait { min-height: 500px; }
  .portrait-copy { padding: 34px 26px; }
  .cta-panel { padding: 48px 24px; border-radius: 28px; }
  .page-hero { padding: 58px 0 50px; }
  .goal-grid, .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .contact-card { padding: 28px 20px; }
  .content-card, .content-card-list { padding: 20px; }
  .check-list-detailed li { padding: 20px 0 20px 38px; }
  .check-list-detailed li::before { top: 21px; }
  .answer-card { min-height: 310px; padding: 26px; }
  .answer-card h3 { margin-top: 54px; }
  .system-shell { padding: 24px 16px; border-radius: 28px; }
  .system-copy { padding: 8px; }
  .system-node { grid-template-columns: 44px 1fr; gap: 12px; padding: 18px 14px; }
  .system-node b { width: 36px; height: 36px; }
  .system-node small { grid-column: 2; }
  .system-node:hover { transform: none; }
  .system-map::before { left: 31px; }
  .author-card { grid-template-columns: 1fr; padding: 24px; }
  .author-card img { width: 110px; height: 110px; }
  .cookie-banner { right: 10px; bottom: 10px; width: calc(100% - 20px); max-height: calc(100vh - 20px); grid-template-columns: 1fr; gap: 16px; overflow: auto; padding: 20px; border-radius: 20px; }
  .cookie-actions { min-width: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom-links { margin-top: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  [data-reveal] { opacity: 1; translate: none; scale: 1; filter: none; clip-path: none; }
}
