:root {
  --ink: #071a18;
  --ink-soft: #14302d;
  --paper: #f4f0e7;
  --paper-bright: #fffdf8;
  --acid: #dfff45;
  --coral: #ff6c4c;
  --mint: #9be7cf;
  --line: rgba(7, 26, 24, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --muted: #60716d;
  --shadow: 0 28px 80px rgba(4, 20, 17, 0.14);
  --radius: 24px;
  --shell: min(1180px, calc(100vw - 40px));
  --ease-out: cubic-bezier(.2, .72, .22, 1);
}

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
main { background: var(--paper); }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, summary { -webkit-tap-highlight-color: transparent; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; 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: 10px; left: 10px; z-index: 1000; transform: translateY(-140%); padding: 10px 14px; background: var(--acid); color: var(--ink); border-radius: 8px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  color: white;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(7, 26, 24, .88); border-color: rgba(255,255,255,.09); backdrop-filter: blur(18px); }
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 20px; font-weight: 850; letter-spacing: -0.04em; }
.brand-mark { width: 31px; height: 31px; border: 1px solid currentColor; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; gap: 2px; }
.brand-mark i { display: block; width: 3px; border-radius: 3px; background: var(--acid); transform-origin: bottom; animation: brand-signal 2.8s ease-in-out infinite; }
.brand-mark i:nth-child(1) { height: 7px; }
.brand-mark i:nth-child(2) { height: 14px; animation-delay: .15s; }
.brand-mark i:nth-child(3) { height: 10px; animation-delay: .3s; }
.site-nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 650; }
.site-nav > a:not(.button) { opacity: .75; transition: opacity .2s ease; }
.site-nav > a:not(.button):hover { opacity: 1; }
.menu-toggle { display: none; background: none; border: 0; color: inherit; width: 42px; height: 42px; padding: 10px; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; background: currentColor; margin: 7px 0; transition: transform .2s ease; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 0 22px; border: 0; border-radius: 100px; font-weight: 800; font-size: 14px; letter-spacing: -.01em; cursor: pointer; transition: transform .25s var(--ease-out), box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; transition: transform .2s ease; }
.button:hover span { transform: translate(2px, -2px); }
.button-primary { background: var(--acid); color: var(--ink); box-shadow: 0 12px 34px rgba(211, 255, 69, .14); }
.hero .button-primary, .footer-cta .button-primary { animation: cta-breathe 3.8s ease-in-out infinite; }
.button-dark { background: var(--ink); color: white; }
.button-small { min-height: 42px; padding: 0 18px; color: var(--ink); background: var(--acid); }
.button-login { border: 1px solid rgba(255,255,255,.36); color: white; background: transparent; }
.button-login:hover { border-color: var(--acid); background: rgba(223,255,69,.08); }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: white; padding: 14px 4px; font-size: 14px; font-weight: 750; border-bottom: 1px solid rgba(255,255,255,.24); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: calc(152px + env(safe-area-inset-top, 0px)) 0 42px;
  color: white;
  background: var(--ink);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .2; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.ambient { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.ambient-one { width: 650px; height: 650px; right: -240px; top: -150px; background: radial-gradient(circle, rgba(155,231,207,.22), rgba(155,231,207,0) 68%); }
.ambient-two { width: 520px; height: 520px; left: 28%; bottom: -350px; background: radial-gradient(circle, rgba(223,255,69,.16), rgba(223,255,69,0) 65%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow > span { width: 22px; height: 2px; background: var(--coral); }
.eyebrow.light { color: rgba(255,255,255,.58); }
.eyebrow.light > span { background: var(--acid); }
.hero h1 { margin: 0; max-width: 720px; font-size: clamp(54px, 6vw, 86px); line-height: .94; letter-spacing: -.068em; font-weight: 800; }
h1 em, h2 em { color: var(--acid); font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.hero-lede { max-width: 620px; margin: 30px 0 0; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.8vw, 20px); line-height: 1.58; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 24px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 22px; margin-top: 34px; color: rgba(255,255,255,.48); font-size: 12px; }
.trust-row span::before { content: "•"; color: var(--mint); margin-right: 8px; }

.hero-visual { position: relative; min-height: 470px; }
.signal-card { position: absolute; border: 1px solid rgba(255,255,255,.14); background: rgba(16,48,43,.72); box-shadow: 0 40px 100px rgba(0,0,0,.25); backdrop-filter: blur(18px); }
.card-top { z-index: 2; top: 20px; right: 2px; width: min(430px, 100%); padding: 25px; border-radius: 24px; transform: rotate(2deg); }
.card-bottom { z-index: 3; left: 0; bottom: 24px; width: 310px; padding: 23px; border-radius: 20px; transform: rotate(-4deg); }
.signal-heading { display: flex; align-items: center; gap: 9px; padding-bottom: 20px; border-bottom: 1px solid var(--line-light); color: rgba(255,255,255,.64); font-size: 12px; font-weight: 700; }
.signal-heading strong { margin-left: auto; color: var(--acid); font-size: 10px; letter-spacing: .12em; }
.status-dot { width: 8px; height: 8px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 0 7px rgba(223,255,69,.08); animation: status-pulse 2.2s ease-out infinite; }
.loop-list { display: grid; gap: 9px; padding-top: 18px; }
.loop-row { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 8px; padding: 14px 13px; border-radius: 12px; color: rgba(255,255,255,.5); font-size: 12px; border: 1px solid transparent; }
.loop-row span { font-size: 10px; }
.loop-row b { color: rgba(255,255,255,.82); font-weight: 650; }
.loop-row i { font-style: normal; font-size: 10px; }
.loop-row.is-active { border-color: rgba(223,255,69,.3); background: rgba(223,255,69,.08); }
.loop-row.is-active i { color: var(--acid); }
.card-bottom small { color: var(--mint); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; font-weight: 900; }
.card-bottom p { margin: 7px 0 20px; font-size: 18px; font-weight: 700; }
.pulse-chart { height: 56px; display: flex; align-items: end; gap: 6px; }
.pulse-chart span { flex: 1; border-radius: 4px 4px 1px 1px; background: var(--acid); opacity: .42; }
.pulse-chart span:nth-child(1) { height: 20%; }.pulse-chart span:nth-child(2) { height: 46%; }.pulse-chart span:nth-child(3) { height: 34%; }.pulse-chart span:nth-child(4) { height: 68%; }.pulse-chart span:nth-child(5) { height: 51%; }.pulse-chart span:nth-child(6) { height: 83%; opacity: .76; }.pulse-chart span:nth-child(7) { height: 100%; opacity: 1; }
.orbit-label { position: absolute; z-index: 4; padding: 8px 11px; color: var(--ink); background: var(--paper-bright); border-radius: 7px; font-size: 8px; font-weight: 900; letter-spacing: .12em; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.orbit-a { left: 20px; top: 40px; }.orbit-b { right: -4px; bottom: 115px; background: var(--coral); color: white; }.orbit-c { left: 47%; bottom: 4px; background: var(--mint); }
.hero-visual.in-view .card-top { animation: card-float-top 7s ease-in-out infinite; }
.hero-visual.in-view .card-bottom { animation: card-float-bottom 6.5s ease-in-out .35s infinite; }
.hero-visual.in-view .pulse-chart span { transform-origin: bottom; animation: chart-rise .8s var(--ease-out) both; }
.hero-visual.in-view .pulse-chart span:nth-child(2) { animation-delay: .08s; }.hero-visual.in-view .pulse-chart span:nth-child(3) { animation-delay: .16s; }.hero-visual.in-view .pulse-chart span:nth-child(4) { animation-delay: .24s; }.hero-visual.in-view .pulse-chart span:nth-child(5) { animation-delay: .32s; }.hero-visual.in-view .pulse-chart span:nth-child(6) { animation-delay: .4s; }.hero-visual.in-view .pulse-chart span:nth-child(7) { animation-delay: .48s; }
.hero-visual.in-view .orbit-a { animation: label-float 4.8s ease-in-out infinite; }.hero-visual.in-view .orbit-b { animation: label-float 5.3s ease-in-out .6s infinite; }.hero-visual.in-view .orbit-c { animation: label-float 4.5s ease-in-out 1s infinite; }
.capability-strip { position: relative; margin-top: 84px; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.52); font-size: 11px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.capability-strip i { width: 4px; height: 4px; background: var(--acid); border-radius: 50%; }

.system-section { padding: 120px 0; }
.section-intro { max-width: 800px; margin-bottom: 54px; }
.section-intro h2 { margin: 0; font-size: clamp(42px, 5vw, 67px); line-height: 1.02; letter-spacing: -.058em; }
.section-intro h2 em { color: var(--coral); }
.section-intro > p:last-child { max-width: 650px; margin: 24px 0 0; color: var(--muted); line-height: 1.65; font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card { min-height: 530px; display: flex; flex-direction: column; padding: 26px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 1px 0 rgba(255,255,255,.3) inset; }
.dark-card { color: white; background: var(--ink); }
.light-card { background: var(--paper-bright); border: 1px solid rgba(7,26,24,.08); }
.accent-card { background: var(--coral); color: #280c06; }
.service-number { font-size: 11px; font-weight: 900; opacity: .56; letter-spacing: .12em; }
.mini-visual { height: 190px; margin: 26px 0 22px; border-radius: 17px; position: relative; overflow: hidden; }
.content-visual { display: flex; align-items: center; justify-content: center; gap: 10px; background: #113a34; }
.content-visual::before { content: "CONTENT / SYSTEM"; position: absolute; top: 15px; left: 16px; color: rgba(255,255,255,.35); font-size: 8px; letter-spacing: .13em; font-weight: 800; }
.content-visual div { width: 25%; height: 54%; border: 1px solid rgba(255,255,255,.18); border-radius: 8px; background: linear-gradient(160deg, rgba(223,255,69,.22), rgba(255,255,255,.04)); transform: translateY(8px); }
.content-visual div:nth-child(2) { height: 69%; transform: translateY(-3px); background: linear-gradient(160deg, rgba(255,108,76,.7), rgba(255,255,255,.06)); }
.media-visual { background: #e8e3d9; }
.media-ring { position: absolute; width: 132px; height: 132px; border: 1px solid rgba(7,26,24,.2); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.media-ring::before, .media-ring::after { content: ""; position: absolute; border: 1px solid rgba(7,26,24,.15); border-radius: 50%; inset: 22px; }
.media-ring::after { inset: 44px; background: var(--ink); }
.media-target { position: absolute; width: 14px; height: 14px; top: 39px; right: 77px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 8px rgba(255,108,76,.18); }
.direction-visual { background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; gap: 7px; }
.direction-visual span { width: 20%; border-radius: 6px; background: #260d07; }
.direction-visual span:nth-child(1) { height: 32%; opacity: .35; }.direction-visual span:nth-child(2) { height: 54%; opacity: .65; }.direction-visual span:nth-child(3) { height: 78%; }
.service-card h3 { margin: 0 0 12px; font-size: 25px; letter-spacing: -.035em; }
.service-card > p { margin: 0; opacity: .7; font-size: 14px; line-height: 1.6; }
.service-card ul { list-style: none; padding: 22px 0 0; margin: auto 0 0; border-top: 1px solid currentColor; border-color: rgba(128,128,128,.23); }
.service-card li { padding: 6px 0; font-size: 12px; font-weight: 700; }
.service-card li::before { content: "↗"; margin-right: 9px; opacity: .5; }

.visual-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 18px; }
.visual-card { position: relative; aspect-ratio: 4 / 5; margin: 0; overflow: hidden; border-radius: 22px; background: var(--ink-soft); box-shadow: var(--shadow); isolation: isolate; opacity: 0; transform: translateY(28px) scale(.985); transition: opacity .7s ease, transform .8s var(--ease-out), box-shadow .35s ease; }
.visual-card::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, rgba(3,18,15,.03) 42%, rgba(3,18,15,.82) 100%); }
.visual-card img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.visual-card:hover img { transform: scale(1.025); }
.visual-card figcaption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 21px; display: grid; gap: 7px; color: white; }
.visual-card figcaption span { color: var(--acid); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.visual-card figcaption strong { max-width: 290px; font-size: 16px; line-height: 1.25; letter-spacing: -.025em; }

.responsibility-grid { margin-top: 100px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.responsibility-copy h3, .process-heading h3, .proof-copy h3, .faq-heading h3, .inquiry-copy h3 { margin: 0; font-size: clamp(34px, 4vw, 50px); line-height: 1.05; letter-spacing: -.05em; }
.responsibility-copy > p:last-child { color: var(--muted); line-height: 1.6; }
.responsibility-table { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: rgba(255,255,255,.3); }
.responsibility-column { padding: 28px; }
.responsibility-column + .responsibility-column { border-left: 1px solid var(--line); }
.column-title { display: flex; align-items: center; gap: 10px; font-weight: 850; font-size: 14px; }
.column-title span { min-width: 32px; height: 32px; padding: 0 8px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; background: var(--ink); color: var(--acid); font-size: 9px; letter-spacing: .08em; }
.client-title span { background: var(--coral); color: white; }
.responsibility-column ul { list-style: none; margin: 23px 0 0; padding: 0; }
.responsibility-column li { display: flex; gap: 10px; padding: 12px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.35; }
.responsibility-column li span { color: var(--ink); font-weight: 900; }

.process-block { margin-top: 120px; }
.process-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 38px; }
.process-steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-steps li { position: relative; display: grid; grid-template-columns: 90px 1fr; gap: 26px; padding: 28px 0; border-bottom: 1px solid var(--line); opacity: 0; transform: translateX(-16px); transition: opacity .55s ease, transform .65s var(--ease-out); }
.process-steps li::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .75s var(--ease-out); }
.process-steps > li > span { color: var(--coral); font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.process-steps div { display: grid; grid-template-columns: .38fr .62fr; gap: 40px; }
.process-steps h4 { margin: 0; font-size: 23px; letter-spacing: -.03em; }
.process-steps p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.proof-block { margin-top: 120px; padding: 58px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; color: white; background: var(--ink); border-radius: 28px; overflow: hidden; position: relative; }
.proof-block::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; right: -220px; bottom: -220px; border: 70px solid rgba(223,255,69,.08); }
.proof-copy p:last-child { color: rgba(255,255,255,.57); line-height: 1.65; }
.proof-placeholders { display: grid; gap: 10px; position: relative; z-index: 1; }
.proof-placeholders article { display: grid; grid-template-columns: 44px 1fr; align-items: center; column-gap: 14px; padding: 17px; border: 1px dashed rgba(255,255,255,.22); border-radius: 14px; background: rgba(255,255,255,.035); opacity: 0; transform: translateX(18px); transition: opacity .5s ease, transform .65s var(--ease-out), background .25s ease; }
.placeholder-icon { grid-row: 1 / 3; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; background: rgba(223,255,69,.12); color: var(--acid); font-size: 19px; }
.proof-placeholders p { margin: 0; font-size: 13px; font-weight: 750; }
.proof-placeholders span { color: rgba(255,255,255,.45); font-size: 10px; }

.fit-section { position: relative; overflow: hidden; padding: 120px 0 0; color: white; background: #071a18; }
.fit-glow { position: absolute; width: 900px; height: 900px; top: -470px; left: -420px; border-radius: 50%; background: radial-gradient(circle, rgba(255,108,76,.17), transparent 63%); }
.fit-intro { position: relative; }
.fit-intro h2 em { color: var(--mint); }
.fit-intro > p:last-child { color: rgba(255,255,255,.58); }
.fit-layout { position: relative; display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: start; }
.fit-marker { color: var(--mint); font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.fit-aside ul { list-style: none; margin: 22px 0 30px; padding: 0; }
.fit-aside li { display: grid; grid-template-columns: 34px 1fr; gap: 8px; padding: 16px 0; border-bottom: 1px solid var(--line-light); color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.4; }
.fit-aside li span { color: var(--acid); font-size: 9px; font-weight: 900; padding-top: 3px; }
.not-fit { padding: 20px; background: rgba(255,255,255,.045); border-radius: 15px; border: 1px solid rgba(255,255,255,.08); }
.not-fit strong { color: var(--coral); font-size: 12px; }
.not-fit p { margin: 8px 0 0; color: rgba(255,255,255,.46); font-size: 11px; line-height: 1.6; }
.quiz-card { min-height: 510px; background: var(--paper-bright); color: var(--ink); border-radius: 24px; box-shadow: 0 36px 90px rgba(0,0,0,.22); overflow: hidden; }
.quiz-topbar { display: flex; justify-content: space-between; align-items: end; padding: 24px 28px 14px; }
.quiz-topbar > div { display: flex; flex-direction: column; gap: 4px; }
.quiz-topbar small { font-size: 9px; letter-spacing: .13em; color: var(--coral); font-weight: 900; }
.quiz-topbar span { color: var(--muted); font-size: 11px; }
.quiz-reset { padding: 6px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--muted); cursor: pointer; font-size: 11px; }
.progress-track { height: 3px; background: #eae6dd; }
.progress-track span { display: block; width: 20%; height: 100%; background: var(--coral); transition: width .35s ease; }
.quiz-stage { padding: 42px 42px 38px; }
.quiz-question h3 { max-width: 560px; margin: 0 0 10px; font-size: clamp(28px, 3vw, 38px); line-height: 1.1; letter-spacing: -.04em; }
.quiz-question > p { margin: 0 0 28px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.answer-grid { display: grid; gap: 10px; }
.answer-button { width: 100%; display: grid; grid-template-columns: 34px 1fr auto; gap: 12px; align-items: center; padding: 15px; border: 1px solid var(--line); border-radius: 13px; background: white; color: var(--ink); cursor: pointer; text-align: left; transition: border-color .2s ease, transform .2s ease, background .2s ease; }
.answer-button:hover, .answer-button:focus-visible { transform: translateX(3px); border-color: var(--ink); background: #f7f5ef; outline: none; }
.answer-key { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 7px; color: var(--muted); background: #f0ede6; font-size: 10px; font-weight: 850; }
.answer-label { font-size: 13px; font-weight: 750; }
.answer-arrow { color: var(--coral); font-size: 17px; }
.quiz-result { text-align: left; }
.result-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 16px; background: var(--acid); font-size: 24px; margin-bottom: 24px; }
.quiz-result h3 { margin: 0; font-size: clamp(32px, 4vw, 46px); letter-spacing: -.05em; }
.quiz-result > p { margin: 15px 0 24px; color: var(--muted); line-height: 1.65; font-size: 14px; }
.result-points { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.result-points span { padding: 8px 11px; border-radius: 100px; background: #eeebe4; color: var(--ink-soft); font-size: 10px; font-weight: 750; }

.inquiry-panel { scroll-margin-top: 100px; margin-top: 80px; padding: 54px; display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; color: var(--ink); background: var(--acid); border-radius: 28px; }
.inquiry-copy .eyebrow > span { background: var(--ink); }
.inquiry-copy > p:not(.eyebrow) { color: rgba(7,26,24,.68); line-height: 1.6; }
.fit-summary { margin-top: 26px; padding: 16px; border: 1px solid rgba(7,26,24,.2); border-radius: 13px; font-size: 11px; line-height: 1.55; }
.fit-summary strong { display: block; margin-bottom: 4px; }
.inquiry-form { display: grid; gap: 14px; padding: 28px; background: var(--paper-bright); border-radius: 20px; box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inquiry-form label:not(.consent-row) { display: grid; gap: 7px; }
.inquiry-form label > span { font-size: 10px; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.inquiry-form input:not([type="checkbox"]), .inquiry-form textarea { width: 100%; padding: 14px 15px; color: var(--ink); background: #f5f2eb; border: 1px solid transparent; border-radius: 10px; outline: none; font-size: 13px; }
.inquiry-form input:focus, .inquiry-form textarea:focus { border-color: var(--ink); background: white; }
.inquiry-form textarea { resize: vertical; min-height: 112px; }
.consent-row { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 10px; padding: 4px 0; }
.consent-row input { width: 17px; height: 17px; accent-color: var(--ink); }
.consent-row span { text-transform: none; letter-spacing: 0; line-height: 1.45; color: var(--muted); font-size: 10px; }
.form-note { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.45; text-align: center; }
.form-message { padding: 13px; border-radius: 9px; background: #e9f4ef; color: #174a3e; font-size: 11px; line-height: 1.5; }
.form-message.error { color: #782315; background: #ffe8e1; }

.faq-block { margin-top: 120px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; padding-bottom: 110px; }
.faq-heading p { color: rgba(255,255,255,.5); }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; cursor: pointer; font-size: 14px; font-weight: 750; transition: color .25s ease, padding-left .25s var(--ease-out); }
.faq-list summary:hover { color: var(--acid); padding-left: 6px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { width: 29px; height: 29px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: 50%; font-size: 17px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); color: var(--acid); }
.faq-list details p { max-width: 650px; margin: -4px 40px 24px 0; color: rgba(255,255,255,.54); font-size: 13px; line-height: 1.7; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 64px 0 28px; border-top: 1px solid var(--line-light); }
.brand-light { color: white; }
.footer-brand p { color: rgba(255,255,255,.45); font-size: 12px; }
.footer-cta { text-align: right; }
.footer-cta p { margin: 0 0 14px; color: rgba(255,255,255,.55); font-size: 12px; }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; margin-top: 54px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.32); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

[hidden] { display: none !important; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: .09s; }.delay-2 { transition-delay: .18s; }
.visual-card-grid.in-view .visual-card { opacity: 1; transform: none; }
.visual-card-grid.in-view .visual-card:nth-child(2) { transition-delay: .12s; }
.visual-card-grid.in-view .visual-card:nth-child(3) { transition-delay: .24s; }
.process-block.in-view .process-steps li { opacity: 1; transform: none; }
.process-block.in-view .process-steps li::after { transform: scaleX(1); }
.process-block.in-view .process-steps li:nth-child(2) { transition-delay: .08s; }
.process-block.in-view .process-steps li:nth-child(3) { transition-delay: .16s; }
.process-block.in-view .process-steps li:nth-child(4) { transition-delay: .24s; }
.proof-block.in-view .proof-placeholders article { opacity: 1; transform: none; }
.proof-block.in-view .proof-placeholders article:nth-child(2) { transition-delay: .1s; }
.proof-block.in-view .proof-placeholders article:nth-child(3) { transition-delay: .2s; }
.proof-placeholders article:hover { background: rgba(255,255,255,.075); }

@keyframes brand-signal {
  0%, 100% { transform: scaleY(.78); opacity: .72; }
  50% { transform: scaleY(1.08); opacity: 1; }
}
@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(223,255,69,.28); }
  65%, 100% { box-shadow: 0 0 0 10px rgba(223,255,69,0); }
}
@keyframes cta-breathe {
  0%, 100% { box-shadow: 0 12px 34px rgba(211,255,69,.14); }
  50% { box-shadow: 0 14px 42px rgba(211,255,69,.28); }
}
@keyframes chart-rise {
  from { transform: scaleY(.18); opacity: .16; }
  to { transform: scaleY(1); }
}
@keyframes label-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes card-float-top {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(1.4deg) translateY(-7px); }
}
@keyframes card-float-bottom {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-3.3deg) translateY(7px); }
}

@media (hover: hover) {
  .service-card.in-view:hover { transform: translateY(-7px); box-shadow: 0 24px 54px rgba(4,20,17,.14); }
  .visual-card-grid.in-view .visual-card:hover { transform: translateY(-6px); box-shadow: 0 34px 90px rgba(4,20,17,.2); }
  .service-card .content-visual div, .service-card .media-target, .service-card .direction-visual span { transition: transform .4s var(--ease-out), opacity .3s ease; }
  .service-card:hover .content-visual div:first-of-type { transform: translateY(1px); }
  .service-card:hover .content-visual div:nth-of-type(2) { transform: translateY(-11px); }
  .service-card:hover .content-visual div:nth-of-type(3) { transform: translateY(3px); }
  .service-card:hover .media-target { transform: scale(1.2); }
  .service-card:hover .direction-visual span:nth-child(1) { transform: scaleY(1.25); }
  .service-card:hover .direction-visual span:nth-child(2) { transform: scaleY(.82); }
  .service-card:hover .direction-visual span:nth-child(3) { transform: scaleY(1.08); }
}

@media (max-width: 960px) {
  :root { --shell: min(100% - 32px, 760px); }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: calc(82px + env(safe-area-inset-top, 0px)) 0 auto; min-height: calc(100vh - 82px - env(safe-area-inset-top, 0px)); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 30px 20px; background: var(--ink); }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: 17px 2px; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 17px; }
  .site-nav .button { margin-top: 16px; }
  .menu-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: calc(138px + env(safe-area-inset-top, 0px)); }
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero-copy { max-width: 700px; }
  .hero-visual { max-width: 560px; width: 100%; justify-self: center; }
  .capability-strip { margin-top: 42px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / -1; min-height: 440px; }
  .responsibility-grid, .proof-block, .fit-layout, .inquiry-panel, .faq-block { grid-template-columns: 1fr; }
  .responsibility-grid, .fit-layout { gap: 38px; }
  .proof-block, .inquiry-panel { gap: 40px; }
  .faq-block { gap: 34px; }
  .visual-card figcaption { left: 17px; right: 17px; bottom: 17px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 28px); --radius: 19px; }
  html { scroll-padding-top: 76px; }
  .nav-wrap { height: 72px; }
  .site-nav { top: calc(72px + env(safe-area-inset-top, 0px)); min-height: calc(100vh - 72px - env(safe-area-inset-top, 0px)); }
  .hero { padding: calc(116px + env(safe-area-inset-top, 0px)) 0 26px; }
  .hero h1 { font-size: clamp(49px, 14vw, 68px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .text-link { width: fit-content; }
  .trust-row { display: grid; gap: 8px; }
  .hero-visual { min-height: 440px; margin-top: -12px; }
  .card-top { top: 10px; width: 95%; padding: 19px; }
  .card-bottom { width: 72%; bottom: 30px; }
  .orbit-a { left: 0; }.orbit-b { right: 0; }.orbit-c { left: auto; right: 36px; }
  .capability-strip { overflow: hidden; justify-content: flex-start; white-space: nowrap; gap: 17px; }
  .system-section, .fit-section { padding-top: 86px; }
  .section-intro { margin-bottom: 38px; }
  .section-intro h2 { font-size: 43px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card, .service-card:last-child { grid-column: auto; min-height: 500px; }
  .visual-card-grid { grid-template-columns: 1fr; margin-top: 14px; }
  .visual-card { aspect-ratio: 4 / 5; }
  .visual-card:not(:first-child) { display: none; }
  .visual-card figcaption strong { font-size: 15px; }
  .responsibility-grid, .process-block, .proof-block, .faq-block { margin-top: 86px; }
  .responsibility-table { grid-template-columns: 1fr; }
  .responsibility-column + .responsibility-column { border-left: 0; border-top: 1px solid var(--line); }
  .process-heading { align-items: start; flex-direction: column; }
  .process-steps li { grid-template-columns: 42px 1fr; gap: 10px; }
  .process-steps div { grid-template-columns: 1fr; gap: 8px; }
  .proof-block { padding: 28px 20px; }
  .fit-aside { display: none; }
  .quiz-card { min-height: 500px; }
  .quiz-stage { padding: 34px 21px 26px; }
  .quiz-topbar { padding-inline: 21px; }
  .answer-button { grid-template-columns: 30px 1fr auto; }
  .inquiry-panel { padding: 30px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .inquiry-form { padding: 20px 16px; }
  .faq-block { padding-bottom: 80px; }
  .site-footer { grid-template-columns: 1fr; gap: 28px; }
  .footer-cta { text-align: left; }
  .footer-bottom { grid-column: auto; margin-top: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { background: var(--ink); scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal, .visual-card, .process-steps li, .proof-placeholders article { opacity: 1; transform: none; }
}

/* Photography inside the existing service visuals. */
.content-visual > div, .direction-visual > span { overflow: hidden; }
.content-visual img, .direction-visual img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.service-card .direction-visual > span:has(img) { opacity: 1; }
.media-visual > img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 48%; }
.brand-mark { flex-shrink: 0; }

/* Reuse the site logo in the responsibility heading. */
.column-title .brand-mark { width: 32px; padding: 0; border-radius: 50%; }
/* Preserve all three mobile photos; fill the center frame. */
@media (max-width: 640px) {
  .service-card .content-visual > div:nth-child(2) { transform: translateY(8px); background: #113a34; }
  .service-card .content-visual > div:nth-child(2) img { object-fit: cover; object-position: 35% center; }
}

/* Give mobile browser chrome an opaque hero-colored header to sample. */
@media (max-width: 960px) {
  .site-header, .site-header.scrolled { background-color: var(--ink); }
}

/* Hero palette matches the cream, forest and coral section beneath it. */
html, body { background-color: var(--paper); }
.hero { background: var(--paper); color: var(--ink); }
.hero::before { background-image: linear-gradient(rgba(7,26,24,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(7,26,24,.08) 1px, transparent 1px); }
.hero .ambient-one { background: radial-gradient(circle, rgba(255,108,76,.10), transparent 68%); }
.hero .ambient-two { background: radial-gradient(circle, rgba(155,231,207,.16), transparent 65%); }
.hero h1 em { color: var(--coral); }
.hero .eyebrow, .hero .hero-lede, .hero .trust-row { color: var(--muted); }
.hero .eyebrow > span, .hero .capability-strip i { background: var(--coral); }
.hero .trust-row span::before { color: var(--coral); }
.hero .button-primary { background: var(--ink); color: var(--paper-bright); box-shadow: 0 12px 34px rgba(7,26,24,.14); }
.hero .text-link { color: var(--ink); border-color: var(--line); }
.hero .capability-strip { color: var(--muted); border-color: var(--line); }
.hero .signal-card { color: white; }
.site-header:not(.scrolled) { background-color: var(--paper); color: var(--ink); }
.site-header:not(.scrolled) .brand-mark i { background: var(--ink); }
.site-header:not(.scrolled) .button-small { background: var(--ink); color: var(--paper-bright); }
@media (max-width: 960px) {
  .site-header:not(.scrolled) .site-nav { color: white; }
  .site-header:not(.scrolled) .site-nav .button-small { background: var(--paper); color: var(--ink); }
}
