:root {
  color-scheme: light;
  --ink-950: #07111f;
  --ink-900: #0b1728;
  --ink-850: #0f1b2d;
  --ink-700: #243247;
  --graphite-600: #435063;
  --paper-000: #ffffff;
  --paper-050: #f9f8f5;
  --bone-100: #f3f0ea;
  --mist-100: #eaf0f6;
  --mist-200: #dce5ee;
  --blue-600: #0a57ff;
  --blue-700: #0647d9;
  --blue-soft: #e8f0ff;
  --brass-500: #c8a052;
  --brass-600: #a77c2c;
  --brass-soft: #f3e7c8;
  --green-soft: #dff5e8;
  --sky-soft: #e7f3ff;
  --violet-soft: #ececff;
  --danger: #b42318;
  --container: 1280px;
  --gutter: 24px;
  --section-y: clamp(72px, 10vw, 128px);
  --section-y-sm: clamp(48px, 7vw, 88px);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-card: 0 18px 48px rgba(7, 17, 31, 0.08);
  --shadow-deep: 0 32px 80px rgba(7, 17, 31, 0.24);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 180ms;
  --duration-mid: 420ms;
  --duration-slow: 900ms;
  font-family:
    Pretendard,
    "SUIT",
    "Inter",
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-050);
  color: var(--ink-900);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(10, 87, 255, 0.34);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

::selection {
  background: var(--blue-600);
  color: var(--paper-000);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--blue-600);
  color: var(--paper-000);
  font-weight: 800;
  transform: translateY(-140%);
}

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

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(28px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(10, 87, 255, 0.18), transparent 34%),
    var(--ink-950);
  color: var(--paper-000);
  transition:
    opacity var(--duration-slow) var(--ease-soft),
    visibility var(--duration-slow) var(--ease-soft);
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader p {
  margin: 0;
  color: var(--brass-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.preloader strong {
  max-width: 920px;
  font-size: clamp(3.5rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.preloader span {
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.preloader i {
  display: block;
  width: var(--load, 0%);
  height: 100%;
  background: var(--blue-600);
  transition: width 120ms linear;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: var(--progress, 0%);
  height: 3px;
  background: var(--blue-600);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 140;
  transition:
    background var(--duration-mid) var(--ease-out),
    border-color var(--duration-mid) var(--ease-out),
    box-shadow var(--duration-mid) var(--ease-out);
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(220, 229, 238, 0.86);
  background: rgba(249, 248, 245, 0.92);
  box-shadow: 0 12px 36px rgba(7, 17, 31, 0.06);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--paper-000);
}

.site-header.is-scrolled .brand {
  color: var(--ink-900);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(7, 17, 31, 0.14);
  background: var(--ink-900);
  color: var(--paper-000);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1rem;
  font-weight: 900;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-header.is-scrolled .brand small {
  color: var(--graphite-600);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
}

.site-header.is-scrolled .desktop-nav {
  color: var(--ink-700);
}

.desktop-nav a {
  position: relative;
  padding: 29px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 2px;
  background: var(--blue-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-fast) var(--ease-out);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue-600);
  color: var(--paper-000);
  box-shadow: 0 16px 36px rgba(10, 87, 255, 0.28);
}

.btn-primary:hover {
  background: var(--blue-700);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper-000);
}

.btn-light {
  border: 1px solid var(--mist-200);
  background: var(--paper-000);
  color: var(--ink-900);
}

.btn-block {
  width: 100%;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-000);
}

.site-header.is-scrolled .menu-button {
  border-color: var(--mist-200);
  background: var(--paper-000);
  color: var(--ink-900);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  top: 78px;
  right: 20px;
  z-index: 139;
  display: grid;
  width: min(320px, calc(100% - 40px));
  padding: 12px;
  border: 1px solid rgba(220, 229, 238, 0.88);
  border-radius: var(--radius-lg);
  background: var(--paper-000);
  box-shadow: var(--shadow-deep);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition:
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  padding: 16px;
  border-bottom: 1px solid var(--mist-200);
  color: var(--ink-900);
  font-weight: 900;
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  min-height: 940px;
  padding: 168px 0 104px;
  overflow: hidden;
  background: var(--ink-950);
  color: var(--paper-000);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 26%, rgba(10, 87, 255, 0.28), transparent 28%),
    radial-gradient(circle at 64% 72%, rgba(200, 160, 82, 0.18), transparent 24%),
    linear-gradient(110deg, var(--ink-950), var(--ink-900) 48%, #101d31);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.64;
  overflow: hidden;
  transform: scale(1.04);
  animation: hero-image-in 1400ms var(--ease-soft) forwards;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.24);
  transform-origin: center top;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.66) 52%, rgba(7, 17, 31, 0.42)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 80px);
}

.cadastral-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to right, black 0%, black 70%, transparent 100%);
}

.route-line {
  position: absolute;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-600), var(--brass-500), transparent);
  opacity: 0.78;
  transform-origin: left;
  animation: route-draw 3400ms var(--ease-soft) infinite;
}

.route-line-a {
  top: 34%;
  left: 52%;
  width: 420px;
  transform: rotate(-17deg);
}

.route-line-b {
  right: 10%;
  bottom: 31%;
  width: 520px;
  transform: rotate(13deg);
  animation-delay: 700ms;
}

.route-node {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 72px;
  height: 72px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper-000);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  animation: node-pulse 2800ms var(--ease-soft) infinite alternate;
}

.route-node-a {
  top: 27%;
  right: 36%;
}

.route-node-b {
  top: 48%;
  right: 12%;
  animation-delay: 400ms;
}

.route-node-c {
  right: 28%;
  bottom: 20%;
  animation-delay: 900ms;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  max-width: 790px;
}

.eyebrow {
  margin: 0;
  color: var(--brass-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.audience-copy h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.hero h1 {
  margin-top: 18px;
  max-width: 840px;
  font-size: clamp(2.89rem, 5.1vw, 4.675rem);
}

.hero h1 .muted-line {
  display: block;
  color: rgba(255, 255, 255, 0.78);
}

.split-line {
  display: block;
  overflow: hidden;
}

.split-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
  animation: split-up 760ms var(--ease-soft) forwards;
  animation-delay: calc(var(--char-index, 0) * 22ms + 220ms);
}

.hero-lead {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.75;
  word-break: keep-all;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-actions .btn,
.final-actions .btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08),
    0 14px 32px rgba(7, 17, 31, 0.24);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
}

.hero-actions .btn::before,
.final-actions .btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.72;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.hero-actions .btn-primary,
.final-actions .btn-primary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(10, 87, 255, 0.96);
  color: var(--paper-000);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -2px 0 rgba(0, 55, 176, 0.26),
    0 18px 38px rgba(10, 87, 255, 0.32);
}

.hero-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: var(--paper-000);
}

.final-actions .btn-light {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-900);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 32px rgba(7, 17, 31, 0.12);
}

.hero-actions .btn:hover,
.final-actions .btn:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 22px 48px rgba(10, 87, 255, 0.22),
    0 12px 28px rgba(7, 17, 31, 0.18);
}

.hero-actions .btn:hover::before,
.final-actions .btn:hover::before {
  opacity: 1;
}

.hero-actions .btn {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 8px 20px rgba(7, 17, 31, 0.14);
  backdrop-filter: blur(8px) saturate(1.02);
  -webkit-backdrop-filter: blur(8px) saturate(1.02);
}

.hero-actions .btn::before {
  background: rgba(255, 255, 255, 0.055);
  opacity: 0.36;
}

.hero-actions .btn-primary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 87, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 55, 176, 0.14),
    0 10px 24px rgba(10, 87, 255, 0.18);
}

.hero-actions .btn-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.hero-actions .btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 28px rgba(10, 87, 255, 0.13),
    0 8px 20px rgba(7, 17, 31, 0.12);
}

.hero-actions .btn:hover::before {
  opacity: 0.7;
}

.final-actions .btn {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 8px 20px rgba(7, 17, 31, 0.14);
  backdrop-filter: blur(8px) saturate(1.02);
  -webkit-backdrop-filter: blur(8px) saturate(1.02);
}

.final-actions .btn::before {
  background: rgba(255, 255, 255, 0.055);
  opacity: 0.36;
}

.final-actions .btn-primary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 87, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 55, 176, 0.14),
    0 10px 24px rgba(10, 87, 255, 0.18);
}

.final-actions .btn-light {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-900);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 8px 20px rgba(7, 17, 31, 0.08);
}

.final-actions .btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 12px 28px rgba(10, 87, 255, 0.13),
    0 8px 20px rgba(7, 17, 31, 0.12);
}

.final-actions .btn:hover::before {
  opacity: 0.7;
}

.keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.keyword-chips span {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 6px 16px rgba(7, 17, 31, 0.1);
  backdrop-filter: blur(6px) saturate(1.02);
  -webkit-backdrop-filter: blur(6px) saturate(1.02);
}


.quick-intake {
  position: relative;
  display: grid;
  gap: clamp(10px, 1.1vw, 14px);
  padding: clamp(24px, 2.3vw, 32px);
  border: 1px solid rgba(226, 236, 248, 0.72);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 10%, rgba(10, 87, 255, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(225, 241, 255, 0.82)),
    rgba(224, 241, 255, 0.82);
  color: var(--ink-900);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 30px 80px rgba(7, 17, 31, 0.24);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(22px) saturate(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
}

.quick-intake > * {
  position: relative;
  z-index: 1;
}

.quick-intake::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 32px;
  left: 32px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--brass-500));
  opacity: 0.82;
  pointer-events: none;
}

.panel-kicker {
  color: var(--brass-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-top: 10px;
}

.quick-intake h2 {
  margin: 0;
  font-size: clamp(1.82rem, 2.3vw, 2.42rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.quick-intake p {
  margin: 0;
  color: var(--graphite-600);
  line-height: 1.65;
}

.chip-group {
  display: grid;
  gap: 10px;
  width: 100%;
}

.chip-group-funding {
  grid-template-columns: 1fr 1.18fr 0.82fr 0.92fr 1.32fr;
}

.chip-group-stage {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.chip-group button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 0.65vw, 9px);
  min-width: 0;
  min-height: clamp(50px, 4.5vw, 60px);
  padding: 0 clamp(8px, 0.95vw, 14px);
  border: 1px solid rgba(198, 211, 226, 0.86);
  border-radius: 999px;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.96), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.76)),
    rgba(255, 255, 255, 0.46);
  color: var(--ink-800);
  font-size: clamp(0.78rem, 0.88vw, 0.98rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(177, 195, 217, 0.16),
    0 16px 30px rgba(7, 17, 31, 0.1);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.chip-group button::before {
  content: "";
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(26px, 2.6vw, 34px);
  height: clamp(26px, 2.6vw, 34px);
  border-radius: 999px;
  background: var(--hero-button-icon) center / contain no-repeat;
  line-height: 1;
  box-shadow:
    0 10px 20px rgba(7, 17, 31, 0.08);
}

.icon-funding-pf {
  --hero-button-icon: url("../img/chatgpt/hero-icon-funding-pf.png");
}

.icon-funding-bridge {
  --hero-button-icon: url("../img/chatgpt/hero-icon-funding-bridge.png");
}

.icon-funding-pi {
  --hero-button-icon: url("../img/chatgpt/hero-icon-funding-pi.png");
}

.icon-funding-collateral {
  --hero-button-icon: url("../img/chatgpt/hero-icon-funding-collateral.png");
}

.icon-funding-equity {
  --hero-button-icon: url("../img/chatgpt/hero-icon-funding-equity.png");
}

.icon-stage-land {
  --hero-button-icon: url("../img/chatgpt/hero-icon-stage-land.png");
}

.icon-stage-permit {
  --hero-button-icon: url("../img/chatgpt/hero-icon-stage-permit.png");
}

.icon-stage-prebuild {
  --hero-button-icon: url("../img/chatgpt/hero-icon-stage-prebuild.png");
}

.icon-stage-build {
  --hero-button-icon: url("../img/chatgpt/hero-icon-stage-build.png");
}

.chip-group button::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(135deg, rgba(10, 87, 255, 0.06), rgba(200, 160, 82, 0.06));
  opacity: 0.76;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.chip-group button:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 87, 255, 0.28);
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 1), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(233, 243, 255, 0.86)),
    rgba(255, 255, 255, 0.64);
  color: var(--ink-950);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 34px rgba(10, 87, 255, 0.13),
    0 8px 18px rgba(7, 17, 31, 0.08);
}

.chip-group button:hover::after {
  opacity: 1;
}

.chip-group button.is-active {
  border-color: rgba(255, 255, 255, 0.54);
  background:
    radial-gradient(circle at 28% 18%, rgba(104, 168, 255, 0.74), transparent 34%),
    linear-gradient(135deg, rgba(36, 127, 255, 0.98), rgba(10, 87, 255, 0.98)),
    var(--blue-600);
  color: var(--paper-000);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -2px 0 rgba(2, 63, 195, 0.26),
    0 18px 38px rgba(10, 87, 255, 0.32);
}

.chip-group button.is-active:hover {
  transform: translateY(-2px);
  background:
    radial-gradient(circle at 28% 18%, rgba(132, 185, 255, 0.8), transparent 36%),
    linear-gradient(135deg, rgba(62, 143, 255, 0.98), rgba(0, 78, 230, 0.98)),
    var(--blue-700);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 22px 44px rgba(10, 87, 255, 0.34);
}

.chip-group button.is-active::before {
  box-shadow:
    0 10px 22px rgba(0, 37, 128, 0.22);
}

.chip-group-stage button::before {
  box-shadow:
    0 10px 20px rgba(7, 17, 31, 0.08);
}

.panel-callout {
  position: relative;
  display: grid;
  justify-content: start;
  min-height: clamp(104px, 8vw, 124px);
  padding: clamp(18px, 1.7vw, 24px);
  border: 1px solid rgba(204, 216, 232, 0.84);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 50%, rgba(10, 87, 255, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 255, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 34px rgba(7, 17, 31, 0.08);
  overflow: hidden;
  backdrop-filter: blur(18px) saturate(1.05);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
}

.panel-callout::after {
  content: "☎";
  position: absolute;
  right: clamp(18px, 2vw, 28px);
  top: 50%;
  color: rgba(10, 87, 255, 0.08);
  font-size: clamp(3.4rem, 5.2vw, 5.2rem);
  line-height: 1;
  transform: translateY(-50%) rotate(-10deg);
  pointer-events: none;
}

.panel-callout span,
.panel-callout small {
  display: block;
  color: var(--graphite-600);
  font-size: 0.78rem;
  font-weight: 800;
}

.panel-callout strong {
  display: block;
  margin: 6px 0 5px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.quick-intake .hero-doc-cta {
  position: relative;
  min-height: clamp(60px, 5vw, 70px);
  padding: 0 clamp(22px, 2vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 76% 22%, rgba(112, 181, 255, 0.7), transparent 28%),
    linear-gradient(135deg, #1b73ff, var(--blue-600) 52%, #0047de);
  color: var(--paper-000);
  font-size: clamp(1rem, 1.02vw, 1.14rem);
  letter-spacing: -0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -3px 0 rgba(0, 63, 203, 0.22),
    0 18px 34px rgba(10, 87, 255, 0.26);
}

.quick-intake .hero-doc-cta::after {
  content: "›";
  display: grid;
  place-items: center;
  width: clamp(34px, 3vw, 42px);
  height: clamp(34px, 3vw, 42px);
  margin-left: 14px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.54), transparent 36%),
    rgba(255, 255, 255, 0.16);
  color: var(--paper-000);
  font-size: 1.5rem;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 22px rgba(0, 52, 172, 0.2);
}

.quick-intake .hero-doc-cta:hover {
  background:
    radial-gradient(circle at 76% 22%, rgba(132, 192, 255, 0.76), transparent 30%),
    linear-gradient(135deg, #2f82ff, var(--blue-600) 52%, #003fc9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -3px 0 rgba(0, 63, 203, 0.22),
    0 22px 42px rgba(10, 87, 255, 0.34);
}

.trust-strip {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(255, 255, 255, 0.14),
    0 22px 54px rgba(7, 17, 31, 0.14),
    0 10px 28px rgba(10, 87, 255, 0.08);
  backdrop-filter: blur(22px) saturate(1.16);
  -webkit-backdrop-filter: blur(22px) saturate(1.16);
  overflow: hidden;
}

.trust-strip::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
  pointer-events: none;
}

.trust-strip span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 82px;
  padding: 14px;
  border-right: 1px solid rgba(151, 170, 193, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(11, 23, 40, 0.96);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  word-break: keep-all;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  padding: var(--section-y) 0;
}

.section-head {
  max-width: 870px;
  margin-bottom: 42px;
}

.section-head-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  max-width: none;
  gap: 24px;
}

.section-head h2,
.audience-copy h2,
.final-cta h2 {
  margin-top: 14px;
  color: var(--ink-900);
  font-size: clamp(1.9125rem, 3.4vw, 3.4rem);
}

.section-head p:not(.eyebrow),
.audience-copy p,
.final-cta p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--graphite-600);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.75;
  word-break: keep-all;
}

.funding {
  background:
    linear-gradient(180deg, rgba(238, 242, 248, 0.9), rgba(238, 242, 248, 0.98)),
    url("../img/chatgpt/funding-section-bg-1672.jpg") center top / cover no-repeat,
    radial-gradient(circle at 92% 10%, rgba(10, 87, 255, 0.1), transparent 26%),
    #eef2f8;
}

.funding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.media-card {
  padding: 0;
  overflow: hidden;
}

.media-card img,
.media-card-link {
  display: block;
  width: 100%;
  height: 100%;
}

.media-card img {
  object-fit: cover;
}

.media-card-link {
  color: inherit;
}

.funding-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 34px 34px 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 76%, var(--card-glow, rgba(255, 255, 255, 0.22)), transparent 32%),
    linear-gradient(145deg, var(--card-bg), var(--card-bg-2, var(--card-bg)));
  box-shadow: 0 26px 70px rgba(7, 17, 31, 0.14);
  color: var(--paper-000);
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 450ms var(--ease-out),
    border-color 450ms var(--ease-out),
    box-shadow 450ms var(--ease-out),
    filter 450ms var(--ease-out);
}

.funding-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.02), rgba(7, 17, 31, 0.36)),
    radial-gradient(circle at 78% 78%, rgba(255, 255, 255, 0.28), transparent 34%);
  pointer-events: none;
}

.funding-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow: 0 34px 90px rgba(7, 17, 31, 0.22);
  filter: saturate(1.08) brightness(1.02);
}

.glow-blue {
  --card-bg: #6f91f7;
  --card-bg-2: #7198ff;
  --card-glow: rgba(255, 255, 255, 0.3);
  --art-main: #dce8ff;
  --art-accent: #0a57ff;
}

.glow-green {
  --card-bg: #0b19b4;
  --card-bg-2: #06128c;
  --card-glow: rgba(55, 120, 255, 0.32);
  --art-main: #1f64ff;
  --art-accent: #ffffff;
}

.glow-brass {
  --card-bg: #8171d7;
  --card-bg-2: #7864ca;
  --card-glow: rgba(255, 255, 255, 0.26);
  --art-main: #9fe0ff;
  --art-accent: #274ec7;
}

.glow-sky {
  --card-bg: #55b5ad;
  --card-bg-2: #48a9a2;
  --card-glow: rgba(255, 255, 255, 0.28);
  --art-main: #e9f7ff;
  --art-accent: #0a57ff;
}

.glow-violet {
  --card-bg: #2a3bbd;
  --card-bg-2: #17258f;
  --card-glow: rgba(138, 124, 255, 0.34);
  --art-main: #f3e7c8;
  --art-accent: #6f91f7;
}

.glow-mist {
  --card-bg: #5f88ed;
  --card-bg-2: #80a0ff;
  --card-glow: rgba(255, 255, 255, 0.28);
  --art-main: #0b1728;
  --art-accent: #f3e7c8;
}

.funding-card p,
.project-info p,
.insight-card p {
  margin: 0;
  color: var(--brass-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.funding-card > p {
  color: rgba(255, 255, 255, 0.92);
}

.funding-card h3,
.process-card h3,
.audience-card h3,
.project-info h3,
.notice-card h3,
.insight-card h3 {
  margin: 12px 0;
  color: var(--ink-900);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.funding-card h3 {
  color: var(--paper-000);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.2;
}

.funding-card span,
.insight-card span {
  display: block;
  color: var(--graphite-600);
  line-height: 1.68;
  word-break: keep-all;
}

.funding-card > span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.funding-card a,
.audience-card a,
.project-info a,
.text-link {
  justify-self: start;
  margin-top: 26px;
  color: var(--blue-600);
  font-weight: 900;
}

.funding-card a {
  margin-top: auto;
  color: var(--paper-000);
}

.funding-card.media-card {
  min-height: 0;
  padding: 0;
  aspect-ratio: 4 / 5;
  background: var(--card-bg, var(--paper-000));
}

.funding-card.media-card .media-card-link {
  margin: 0;
  justify-self: stretch;
}

.funding-card.media-card .media-card-link::after {
  display: none;
}

.funding-card.media-card::before {
  display: none;
}

.funding-card.media-card img {
  object-fit: cover;
  transition: transform var(--duration-mid) var(--ease-out);
}

.funding-card.media-card:nth-child(3) img,
.funding-card.media-card:nth-child(6) img {
  transform: scale(1.06);
  transform-origin: center center;
}

.funding-card.media-card:hover img {
  transform: scale(1.035);
}

.funding-card.media-card:nth-child(3):hover img,
.funding-card.media-card:nth-child(6):hover img {
  transform: scale(1.09);
}

.funding-card a::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 2px;
  margin-left: 10px;
  background: currentColor;
  vertical-align: middle;
  transition: width var(--duration-fast) var(--ease-out);
}

.funding-card:hover a::after {
  width: 34px;
}

.card-art {
  position: relative;
  height: 150px;
  margin: 24px 0 20px;
  perspective: 800px;
  transform-style: preserve-3d;
}

.card-art::before {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 4px;
  width: 210px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  filter: blur(10px);
  transform: rotateX(62deg);
}

.card-art i,
.card-art b,
.card-art em {
  position: absolute;
  display: block;
  transform-style: preserve-3d;
}

.art-document i {
  right: 22%;
  bottom: 20px;
  width: 120px;
  height: 92px;
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(10, 87, 255, 0.65) 0 9px, transparent 9px),
    linear-gradient(180deg, #ffffff, var(--art-main));
  box-shadow: inset -10px -12px 0 rgba(10, 87, 255, 0.13), 0 18px 30px rgba(0, 0, 0, 0.2);
  transform: rotateX(58deg) rotateZ(-12deg);
}

.art-document b {
  right: 42%;
  bottom: 60px;
  width: 70px;
  height: 70px;
  border: 9px solid rgba(11, 23, 40, 0.82);
  border-radius: 50%;
  transform: rotateX(54deg) rotateZ(-18deg);
}

.art-document em {
  right: 36%;
  bottom: 42px;
  width: 58px;
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 23, 40, 0.82);
  transform: rotateZ(42deg);
}

.art-growth i {
  right: 18%;
  bottom: 24px;
  width: 132px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(145deg, #4d8cff, #0a57ff);
  box-shadow: inset -12px -14px 0 rgba(7, 17, 31, 0.16), 0 18px 30px rgba(0, 0, 0, 0.28);
  transform: rotateX(58deg) rotateZ(-10deg);
}

.art-growth b,
.art-growth em {
  bottom: 78px;
  width: 24px;
  border-radius: 999px 999px 6px 6px;
  background: var(--art-accent);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.art-growth b {
  right: 42%;
  height: 58px;
}

.art-growth em {
  right: 30%;
  height: 88px;
}

.art-routing i {
  right: 16%;
  bottom: 26px;
  width: 138px;
  height: 82px;
  border-radius: 20px;
  background: linear-gradient(145deg, #e7f3ff, #74d2ff);
  box-shadow: inset -16px -16px 0 rgba(39, 78, 199, 0.2), 0 20px 34px rgba(0, 0, 0, 0.2);
  transform: rotateX(58deg) rotateZ(8deg);
}

.art-routing b,
.art-routing em {
  border-radius: 50%;
  background: var(--art-accent);
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.18);
}

.art-routing b {
  right: 48%;
  bottom: 78px;
  width: 42px;
  height: 42px;
}

.art-routing em {
  right: 20%;
  bottom: 66px;
  width: 34px;
  height: 34px;
}

.art-collateral i {
  right: 20%;
  bottom: 26px;
  width: 132px;
  height: 86px;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(145deg, #ffffff, #d8edff);
  box-shadow: inset -14px -16px 0 rgba(10, 87, 255, 0.15), 0 18px 30px rgba(0, 0, 0, 0.18);
  transform: rotateX(58deg) rotateZ(-8deg);
}

.art-collateral b {
  right: 32%;
  bottom: 92px;
  width: 68px;
  height: 48px;
  border-radius: 12px 12px 6px 6px;
  background: var(--art-accent);
  clip-path: polygon(50% 0, 100% 34%, 100% 100%, 0 100%, 0 34%);
}

.art-collateral em {
  right: 28%;
  bottom: 42px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3e7c8, #c8a052);
}

.art-equity i {
  right: 18%;
  bottom: 28px;
  width: 124px;
  height: 92px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--art-main), #c8a052);
  box-shadow: inset -14px -16px 0 rgba(7, 17, 31, 0.16), 0 18px 32px rgba(0, 0, 0, 0.24);
  transform: rotateX(58deg) rotateZ(-12deg);
}

.art-equity b,
.art-equity em {
  border-radius: 50%;
  background: var(--art-accent);
}

.art-equity b {
  right: 45%;
  bottom: 88px;
  width: 42px;
  height: 42px;
}

.art-equity em {
  right: 24%;
  bottom: 68px;
  width: 58px;
  height: 58px;
  opacity: 0.78;
}

.art-construction i {
  right: 14%;
  bottom: 25px;
  width: 152px;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(145deg, #17258f, #07111f);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.25);
  transform: rotateX(58deg) rotateZ(-8deg);
}

.art-construction b {
  right: 35%;
  bottom: 70px;
  width: 34px;
  height: 92px;
  border-radius: 18px;
  background: linear-gradient(145deg, #f3e7c8, #c8a052);
  transform: rotateZ(34deg);
}

.art-construction em {
  right: 20%;
  bottom: 92px;
  width: 92px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(145deg, #ffffff, #dce5ee);
  transform: rotateZ(-10deg);
}

.stage-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--mist-200);
  border-bottom: 1px solid var(--mist-200);
  background:
    linear-gradient(180deg, rgba(237, 247, 255, 0.64), rgba(247, 251, 255, 0.62) 54%, rgba(245, 240, 233, 0.78)),
    url("../img/chatgpt/funding-section-bg-1672.jpg") center / cover no-repeat,
    radial-gradient(circle at 86% 22%, rgba(10, 87, 255, 0.12), transparent 32%);
}

.stage-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.46), transparent 30%),
    radial-gradient(circle at 86% 28%, rgba(10, 87, 255, 0.12), transparent 36%);
  opacity: 0.74;
  pointer-events: none;
}

.stage-shell {
  display: grid;
}

.stage-full-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.1);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
  overflow: hidden;
}

.stage-full-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.stage-hotspots {
  position: absolute;
  top: 16.5%;
  left: 46.2%;
  display: grid;
  width: 22.2%;
  height: 68%;
  grid-template-rows: repeat(6, 1fr);
  gap: 1.7%;
}

.stage-hotspots button {
  border-radius: 14px;
  background: transparent;
}

.stage-hotspots button:focus-visible {
  outline: 3px solid rgba(10, 87, 255, 0.44);
  outline-offset: -3px;
}

.stage-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(580px, 1.28fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 28px 76px rgba(7, 17, 31, 0.1);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
  overflow: hidden;
}

.stage-grid::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 82% 22%, rgba(10, 87, 255, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.stage-copy {
  position: relative;
  z-index: 1;
  max-width: none;
  margin-bottom: 0;
}

.stage-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.84fr) minmax(320px, 1.16fr);
  gap: clamp(14px, 2vw, 20px);
  align-items: stretch;
  padding: clamp(12px, 1.8vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 18px 48px rgba(7, 17, 31, 0.08);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
}

.stage-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.stage-tabs button {
  display: flex;
  align-items: center;
  min-height: 58px;
  gap: 12px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.24);
  color: var(--ink-700);
  font-weight: 900;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 14px 30px rgba(7, 17, 31, 0.05);
  backdrop-filter: blur(10px) saturate(1.04);
  -webkit-backdrop-filter: blur(10px) saturate(1.04);
  transition:
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.stage-tabs button:hover {
  background: rgba(255, 255, 255, 0.34);
}

.stage-tabs button::before {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brass-500), #ffeec2);
  box-shadow: 0 0 0 5px rgba(200, 160, 82, 0.14);
}

.stage-tabs button.is-active {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(10, 87, 255, 0.88);
  color: var(--paper-000);
}

.stage-tabs button.is-active::before {
  background: var(--paper-000);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.18);
}

.document-card {
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(124, 142, 164, 0.24);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(10, 87, 255, 0.1), transparent 32%),
    var(--paper-000);
  box-shadow: var(--shadow-card);
}

.document-card p {
  margin: 0;
  color: var(--brass-600);
  font-size: 0.78rem;
  font-weight: 900;
}

.document-card h3 {
  margin: 12px 0 22px;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.stage-preview {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 486 / 618;
  justify-self: end;
  margin: 0;
  border: 1px solid rgba(124, 142, 164, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 38px rgba(7, 17, 31, 0.08);
  overflow: hidden;
}

.stage-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.document-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.document-card li {
  position: relative;
  padding-left: 24px;
  color: var(--graphite-600);
  line-height: 1.58;
}

.document-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--brass-500);
}

.stage-document-card {
  position: relative;
  min-height: 430px;
  padding: clamp(26px, 3vw, 36px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), 0 24px 58px rgba(7, 17, 31, 0.09);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
  overflow: hidden;
}

.stage-document-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 80%, rgba(10, 87, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.stage-document-copy {
  position: relative;
  z-index: 2;
  max-width: 66%;
}

.stage-document-card ul {
  max-width: 68%;
}

.stage-document-card .stage-preview {
  position: absolute;
  right: 18px;
  bottom: 14px;
  z-index: 1;
  width: min(52%, 310px);
  max-width: none;
  aspect-ratio: 260 / 245;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  opacity: 0.72;
  pointer-events: none;
}

.stage-visual-frame {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.stage-document-card .stage-preview img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  mix-blend-mode: multiply;
  filter: saturate(0.96) contrast(1.02);
  transition: opacity 240ms var(--ease-out);
}

.stage-document-card .stage-preview img.is-active {
  opacity: 1;
}

.process {
  padding: var(--section-y-sm) 0;
  background: var(--paper-050);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 1.1vw, 14px);
  align-items: stretch;
}

.process-card {
  position: relative;
  min-height: 0;
  padding: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.1)),
    rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 22px 60px rgba(7, 17, 31, 0.1);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
  transition:
    transform var(--duration-mid) var(--ease-out),
    border-color var(--duration-mid) var(--ease-out),
    box-shadow var(--duration-mid) var(--ease-out),
    filter var(--duration-mid) var(--ease-out);
}

.process-card-clean {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.process-card:nth-child(4),
.process-card:nth-child(5) {
  grid-column: auto;
}

.process-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brass-500), var(--blue-600));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--ease-soft);
}

.process-card.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 34%),
    radial-gradient(circle at 74% 18%, rgba(10, 87, 255, 0.2), transparent 32%),
    linear-gradient(180deg, transparent 58%, rgba(7, 17, 31, 0.1));
  opacity: 0.42;
  pointer-events: none;
  transition: opacity var(--duration-mid) var(--ease-out);
}

.process-card.media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform var(--duration-mid) var(--ease-out);
}

.process-card.media-card:nth-child(5) img {
  transform: scale(1);
  transform-origin: center center;
}

.process-card.media-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 32px 86px rgba(7, 17, 31, 0.18),
    0 18px 42px rgba(10, 87, 255, 0.12);
}

.process-card.media-card:hover::before {
  opacity: 0.74;
}

.process-card.media-card:hover img {
  transform: scale(1.04);
}

.process-card.media-card:nth-child(5):hover img {
  transform: scale(1);
}

.process-card.is-visible::after,
.process-card:hover::after {
  transform: scaleX(1);
}

.process-card span,
.audience-card span {
  color: var(--brass-500);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.process-card h3 {
  margin-top: 22px;
}

.process-card p,
.audience-card p,
.notice-card a,
.project-info dd {
  color: var(--graphite-600);
  line-height: 1.68;
  word-break: keep-all;
}

.audience {
  position: relative;
  overflow: hidden;
  background: var(--ink-950);
  color: var(--paper-000);
}

.audience::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 14%, rgba(10, 87, 255, 0.3), transparent 28%),
    linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.72), rgba(7, 17, 31, 0.88));
}

.audience-inner {
  position: relative;
  display: grid;
  gap: 34px;
}

.audience-visual {
  position: absolute;
  inset: 0 0 auto 64%;
  height: 420px;
  opacity: 0.58;
}

.audience-media,
.audience-media img {
  width: 100%;
  height: 100%;
}

.audience-media {
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.audience-media img {
  display: block;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.08);
  transform-origin: right center;
}

.audience-copy {
  position: relative;
  max-width: 840px;
  padding-top: 34px;
}

.audience-copy h2,
.audience-copy p {
  color: var(--paper-000);
}

.audience-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.audience-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 75%;
  max-width: 960px;
  margin-top: 44px;
}

.audience-card {
  min-height: 0;
  padding: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: transparent;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
  transition:
    transform var(--duration-mid) var(--ease-out),
    box-shadow var(--duration-mid) var(--ease-out);
}

.audience-card.media-card img {
  object-fit: cover;
  border-radius: inherit;
  transition: transform var(--duration-mid) var(--ease-out);
}

.audience-card.media-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.audience-card.media-card:hover img {
  transform: scale(1.03);
}

.projects,
.insight {
  background: var(--paper-050);
}

.project-layout {
  display: grid;
  grid-template-columns: 1.22fr 0.78fr;
  gap: 18px;
}

.project-card,
.notice-card,
.insight-card,
.insight-question-card,
.video-card {
  border: 1px solid rgba(124, 142, 164, 0.24);
  border-radius: var(--radius-lg);
  background: var(--paper-000);
  box-shadow: var(--shadow-card);
}

.project-card {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  overflow: hidden;
}

.project-glass-card {
  border: 1px solid rgba(124, 142, 164, 0.18);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 28px 80px rgba(7, 17, 31, 0.1);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
}

.project-card.project-glass-card {
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  min-height: 530px;
  padding: 0;
  color: var(--ink-900);
  text-decoration: none;
}

.project-visual-panel {
  position: relative;
  min-height: 530px;
  overflow: hidden;
}

.project-visual-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.5vw, 58px);
  border-left: 1px solid rgba(124, 142, 164, 0.18);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
}

.project-info-panel p {
  margin: 0 0 18px;
  color: var(--brass-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.project-info-panel h3 {
  margin: 0 0 24px;
  color: var(--ink-900);
  font-size: clamp(1.85rem, 3vw, 3.35rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  word-break: keep-all;
}

.project-info-panel dl {
  display: grid;
  margin: 0 0 24px;
}

.project-info-panel dl div {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(124, 142, 164, 0.22);
}

.project-info-panel dt {
  color: var(--ink-800);
  font-weight: 900;
}

.project-info-panel dd {
  margin: 0;
  color: var(--graphite-600);
  font-weight: 800;
}

.project-info-panel span {
  color: var(--blue-600);
  font-weight: 900;
}

@supports selector(:has(*)) {
  .project-card:has(.project-map) {
    grid-template-columns: 1fr;
  }

  .project-card:has(.project-map) .project-map {
    grid-column: 1 / -1;
    width: 100%;
    height: 100%;
  }

  .project-card:has(.project-map) .project-info {
    display: none;
  }
}

.project-card.media-card {
  display: block;
  aspect-ratio: 4 / 3;
  padding: 0;
  background: transparent;
}

.project-card.media-card img,
.notice-card.media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice-card.media-card {
  aspect-ratio: 4 / 3;
  padding: 0;
  background: transparent;
  overflow: hidden;
}

.notice-live-card {
  display: flex;
  min-height: 530px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.2vw, 52px);
}

.notice-live-card h3 {
  margin: 0 0 32px;
  color: var(--ink-900);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  line-height: 1.1;
}

.notice-live-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice-live-card li {
  display: grid;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid rgba(124, 142, 164, 0.22);
}

.notice-live-card strong {
  color: var(--ink-900);
  font-size: 1.02rem;
  line-height: 1.45;
}

.notice-live-card time {
  color: var(--graphite-600);
  font-weight: 900;
}

.project-info,
.notice-card,
.insight-card,
.insight-question-card {
  padding: 32px;
}

.notice-card.media-card,
.insight-card.media-card,
.video-card.media-card {
  padding: 0;
}

.project-info dl {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}

.project-info dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--mist-200);
}

.project-info dt {
  color: var(--graphite-600);
  font-weight: 900;
}

.project-info dd {
  margin: 0;
  font-weight: 800;
}

.notice-card ul {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.notice-card li {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--mist-200);
}

.notice-card a {
  color: var(--ink-900);
  font-weight: 900;
}

.notice-card time {
  color: var(--graphite-600);
  font-size: 0.82rem;
  font-weight: 800;
}

.field {
  border-top: 1px solid var(--mist-200);
  border-bottom: 1px solid var(--mist-200);
  background: var(--bone-100);
}

.field-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 42px;
  align-items: start;
}

.field-title-media {
  max-width: none;
  margin-bottom: 0;
  padding: clamp(10px, 1vw, 16px) 0;
  background: transparent;
}

.field-title-media h2 {
  max-width: 560px;
  font-size: clamp(1.7rem, 2.5925vw, 2.7625rem);
  line-height: 1.12;
}

.field-title-media p:not(.eyebrow) {
  max-width: 520px;
}

.evidence-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.evidence-item {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(124, 142, 164, 0.24);
  border-radius: var(--radius-md);
  background: var(--paper-000);
  color: var(--ink-700);
  font-weight: 900;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.evidence-item.media-card {
  min-height: 0;
  padding: 0;
  aspect-ratio: 4 / 5;
  background: transparent;
}

.evidence-glass-card {
  position: relative;
  min-height: clamp(220px, 17vw, 320px);
  padding: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(180, 198, 220, 0.24);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.09);
  backdrop-filter: blur(15px) saturate(1.08);
  -webkit-backdrop-filter: blur(15px) saturate(1.08);
}

.evidence-glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 16%, rgba(255, 255, 255, 0.5), transparent 34%),
    linear-gradient(135deg, rgba(10, 87, 255, 0.08), rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.evidence-item.evidence-glass-card img {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 70%;
  height: 70%;
  max-height: none;
  padding: 0;
  object-fit: contain;
  transform: translateX(-50%);
}

.evidence-glass-card strong {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  color: var(--ink-900);
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  word-break: keep-all;
}

.evidence-item img {
  display: block;
  width: min(100%, 164px);
  height: auto;
  max-height: 132px;
  object-fit: contain;
}

.evidence-item.media-card img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.evidence-item span {
  margin-top: 10px;
}

.evidence-item.large {
  grid-column: span 2;
  min-height: 320px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(10, 87, 255, 0.12), transparent 42%),
    repeating-linear-gradient(0deg, rgba(7, 17, 31, 0.06) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(7, 17, 31, 0.06) 0 1px, transparent 1px 34px),
    var(--paper-000);
  color: var(--graphite-600);
  font-size: 0.82rem;
  overflow: hidden;
}

.evidence-item.large picture,
.evidence-item.large img {
  display: block;
  width: 100%;
  height: 100%;
}

.evidence-item.large img {
  max-height: none;
  object-fit: cover;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.insight-card,
.insight-question-card,
.video-card {
  grid-column: span 2;
  min-height: 300px;
  cursor: default !important;
  user-select: none;
}

.insight-card *,
.insight-question-card *,
.video-card * {
  cursor: default !important;
}

.insight-card.media-card {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.insight-card-horizontal.media-card {
  grid-column: span 3;
  aspect-ratio: 16 / 9;
}

.insight-question-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(204, 216, 232, 0.84);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 10%, rgba(10, 87, 255, 0.12), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(226, 239, 252, 0.88));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 20px 54px rgba(7, 17, 31, 0.08);
}

.insight-entry-card {
  position: relative;
  min-height: 218px;
  cursor: pointer !important;
  user-select: auto;
  transition:
    transform var(--duration-mid) var(--ease-out),
    border-color var(--duration-mid) var(--ease-out),
    box-shadow var(--duration-mid) var(--ease-out),
    background var(--duration-mid) var(--ease-out);
}

.insight-entry-card * {
  cursor: pointer !important;
}

.insight-entry-card::after {
  content: "→";
  position: absolute;
  right: 28px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(10, 87, 255, 0.08);
  color: var(--blue-600);
  font-weight: 900;
  transition:
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.insight-entry-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 87, 255, 0.24);
  background:
    radial-gradient(circle at 90% 10%, rgba(10, 87, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(220, 237, 255, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 26px 68px rgba(7, 17, 31, 0.12),
    0 16px 38px rgba(10, 87, 255, 0.1);
}

.insight-entry-card:hover::after {
  transform: translateX(3px);
  background: var(--blue-600);
  color: var(--paper-000);
}

.insight-question-card p {
  margin: 0 0 18px;
  color: var(--brass-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.insight-question-card h3 {
  margin: 0;
  color: var(--ink-900);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.insight-question-card span {
  display: block;
  margin-top: 24px;
  color: var(--graphite-600);
  font-size: 1rem;
  line-height: 1.72;
  word-break: keep-all;
}

.video-card.media-card {
  position: relative;
  grid-column: span 4;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 76% 28%, rgba(10, 87, 255, 0.34), transparent 34%),
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(10, 42, 94, 0.9));
  overflow: hidden;
}

.video-card.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.42;
  pointer-events: none;
}

.insight-card.media-card img,
.video-card.media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-mid) var(--ease-out);
}

.video-card.media-card img {
  object-position: center 58%;
}

.video-copy {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  display: grid;
  gap: 6px;
  max-width: min(520px, calc(100% - 40px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.48);
  color: var(--paper-000);
  backdrop-filter: blur(12px);
}

.video-copy span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-copy strong {
  font-size: clamp(1.05rem, 1.6vw, 1.42rem);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.insight-card.media-card:hover img,
.video-card.media-card:hover img {
  transform: none;
}

.insight-detail-page {
  min-height: 100vh;
  background: var(--paper-050);
}

.insight-detail-hero {
  padding: 148px 0 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(10, 87, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f8fbff, var(--paper-050));
}

.insight-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.insight-detail-copy h1 {
  margin: 18px 0 0;
  color: var(--ink-950);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.insight-detail-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--graphite-600);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  line-height: 1.72;
  word-break: keep-all;
}

.insight-detail-media {
  margin: 0;
  border: 1px solid rgba(204, 216, 232, 0.8);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.insight-detail-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.insight-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.insight-article {
  display: grid;
  gap: 26px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(204, 216, 232, 0.86);
  border-radius: var(--radius-xl);
  background: var(--paper-000);
  box-shadow: var(--shadow-card);
}

.insight-lead {
  margin: 0;
  color: var(--ink-700);
  font-size: 1.18rem;
  line-height: 1.78;
  word-break: keep-all;
}

.insight-body-section {
  padding-top: 28px;
  border-top: 1px solid var(--mist-200);
}

.insight-body-section h2,
.insight-side-card h2 {
  margin: 0 0 16px;
  color: var(--ink-950);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.insight-body-section ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.insight-body-section li {
  position: relative;
  padding-left: 18px;
  color: var(--graphite-600);
  line-height: 1.72;
  word-break: keep-all;
}

.insight-body-section li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brass-500);
}

.insight-side-card {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(204, 216, 232, 0.84);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 10%, rgba(10, 87, 255, 0.12), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(226, 239, 252, 0.88));
  box-shadow: var(--shadow-card);
}

.insight-side-card p:not(.eyebrow) {
  margin: 0;
  color: var(--graphite-600);
  line-height: 1.68;
  word-break: keep-all;
}

.faq {
  background: var(--paper-050);
  padding-top: var(--section-y-sm);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--mist-200);
}

details {
  border-bottom: 1px solid var(--mist-200);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--ink-900);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  color: var(--blue-600);
  font-size: 1.8rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin: 0;
  padding: 0 0 26px;
  color: var(--graphite-600);
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.8)),
    url("../img/chatgpt/final-cta-bg-1672.jpg") center / cover no-repeat,
    var(--ink-950);
  color: var(--paper-000);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 10%, rgba(10, 87, 255, 0.32), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 96px 96px;
}

.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: end;
  padding: var(--section-y-sm) 0;
}

.final-cta h2,
.final-cta p {
  color: var(--paper-000);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.7);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 0%, rgba(10, 87, 255, 0.14), transparent 34%),
    radial-gradient(circle at 12% 100%, rgba(200, 160, 82, 0.08), transparent 30%),
    var(--ink-950);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  padding: 36px clamp(22px, 3vw, 34px) 62px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 70px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.site-footer strong {
  display: block;
  color: var(--paper-000);
  font-size: 1.5rem;
  font-weight: 900;
}

.site-footer p,
.site-footer small {
  display: block;
  max-width: 780px;
  line-height: 1.72;
}

.footer-note {
  margin-top: 8px;
}

.footer-business {
  display: grid;
  gap: 2px;
  margin: 14px 0 18px;
}

.footer-business small {
  line-height: 1.45;
  font-weight: 300;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 300;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 4px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: start;
  color: var(--paper-000);
  font-weight: 800;
}

.footer-contact-actions {
  display: inline-flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.footer-kakao-cta,
.footer-mail-cta {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink-900);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  transition:
    transform var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.footer-kakao-cta span,
.footer-mail-cta span {
  display: grid;
  width: 28px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink-950);
  color: var(--paper-000);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out);
}

.footer-kakao-cta:hover,
.footer-mail-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.footer-kakao-cta:hover {
  border-color: rgba(254, 229, 0, 0.86);
  background: #fee500;
  color: var(--ink-950);
}

.footer-kakao-cta:hover span {
  background: var(--ink-950);
  color: #fee500;
}

.footer-mail-cta:hover {
  border-color: rgba(10, 87, 255, 0.82);
  background: var(--blue-600);
  color: var(--paper-000);
}

.footer-mail-cta:hover span {
  background: rgba(255, 255, 255, 0.94);
  color: var(--blue-600);
}

.mobile-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 130;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(220, 229, 238, 0.9);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(14px);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--paper-000);
  font-weight: 900;
}

.mobile-cta a:last-child {
  background: var(--blue-600);
}

.docs-body {
  background:
    radial-gradient(circle at 78% 12%, rgba(10, 87, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #f3f0ea 100%);
}

.docs-header {
  border-bottom: 1px solid rgba(220, 229, 238, 0.86);
  background: rgba(249, 248, 245, 0.94);
  box-shadow: 0 12px 36px rgba(7, 17, 31, 0.06);
  backdrop-filter: blur(18px);
}

.docs-header .brand,
.docs-header .desktop-nav {
  color: var(--ink-900);
}

.docs-header .brand-mark {
  border-color: rgba(7, 17, 31, 0.14);
  background: var(--ink-900);
  color: var(--paper-000);
}

.docs-header .brand small {
  color: var(--graphite-600);
}

.docs-hero {
  position: relative;
  padding: 140px 0 56px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(249, 248, 245, 0.98), rgba(249, 248, 245, 0.74)),
    url("../img/chatgpt/funding-section-bg-1672.jpg") center / cover no-repeat;
}

.docs-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(10, 87, 255, 0.14), transparent 30%),
    linear-gradient(90deg, rgba(10, 87, 255, 0.055) 1px, transparent 1px);
  background-size: auto, 96px 96px;
  pointer-events: none;
}

.docs-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.74fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: end;
}

.docs-hero h1 {
  max-width: 840px;
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.docs-hero-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--ink-700);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  word-break: keep-all;
}

.docs-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.docs-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.docs-stat {
  min-height: 126px;
  padding: 24px;
  border: 1px solid rgba(124, 142, 164, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.docs-stat span {
  display: block;
  color: var(--brass-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.docs-stat strong {
  display: block;
  margin-top: 18px;
  color: var(--ink-950);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.docs-workbench {
  padding: var(--section-y-sm) 0;
}

.docs-workbench-grid {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.docs-side-panel,
.docs-main-panel,
.docs-source-card {
  border: 1px solid rgba(124, 142, 164, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
}

.docs-side-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
}

.docs-side-panel h2 {
  margin: 10px 0 14px;
  color: var(--ink-950);
  font-size: clamp(1.65rem, 2vw, 2.2rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.docs-side-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--graphite-600);
  line-height: 1.68;
}

.minimum-doc-list {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.minimum-doc-list li {
  display: grid;
  gap: 4px;
  padding: 14px 14px 13px;
  border-radius: 14px;
  background: var(--paper-050);
}

.minimum-doc-list strong {
  color: var(--ink-900);
  font-size: 0.94rem;
  line-height: 1.36;
}

.minimum-doc-list span {
  color: var(--brass-600);
  font-size: 0.75rem;
  font-weight: 900;
}

.docs-main-panel {
  padding: clamp(20px, 3vw, 34px);
}

.docs-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
}

.docs-toolbar > strong {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-700);
  font-weight: 900;
}

.docs-search {
  display: grid;
  gap: 8px;
}

.docs-search span,
.docs-filter-block p {
  margin: 0;
  color: var(--brass-600);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.docs-search input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(124, 142, 164, 0.24);
  border-radius: 16px;
  background: var(--paper-000);
  color: var(--ink-900);
  font: inherit;
  font-weight: 800;
}

.docs-filter-block {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.docs-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.docs-filter-chip {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(124, 142, 164, 0.22);
  border-radius: 999px;
  background: var(--paper-000);
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 900;
  transition:
    background var(--duration-fast) var(--ease-out),
    color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out);
}

.docs-filter-chip.is-active {
  border-color: var(--blue-600);
  background: var(--blue-600);
  color: var(--paper-000);
}

.docs-results {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.doc-category-section {
  display: grid;
  gap: 14px;
}

.doc-category-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding-top: 18px;
  border-top: 1px solid var(--mist-200);
}

.doc-category-head p {
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.doc-category-head span {
  color: var(--brass-600);
  font-weight: 900;
}

.doc-category-summary {
  margin: 0;
  color: var(--graphite-600);
  line-height: 1.68;
}

.doc-item-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.doc-item {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(124, 142, 164, 0.2);
  border-radius: 18px;
  background: var(--paper-000);
  box-shadow: 0 12px 30px rgba(7, 17, 31, 0.05);
}

.doc-item-top,
.doc-meta,
.doc-source-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.doc-item h3 {
  margin: 0;
  color: var(--ink-950);
  font-size: 1.24rem;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.doc-category,
.doc-why,
.doc-note {
  margin: 0;
  line-height: 1.66;
}

.doc-category {
  color: var(--brass-600);
  font-size: 0.78rem;
  font-weight: 900;
}

.doc-why {
  color: var(--ink-700);
  font-weight: 800;
}

.doc-note {
  color: var(--graphite-600);
  font-size: 0.93rem;
}

.doc-priority,
.doc-timing,
.doc-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.doc-priority.is-essential {
  background: var(--blue-600);
  color: var(--paper-000);
}

.doc-priority.is-conditional {
  background: var(--brass-soft);
  color: var(--brass-600);
}

.doc-priority.is-later {
  background: var(--mist-100);
  color: var(--graphite-600);
}

.doc-timing,
.doc-meta span {
  background: var(--paper-050);
  color: var(--graphite-600);
}

.doc-source-row {
  padding-top: 10px;
  border-top: 1px solid var(--mist-200);
}

.doc-source-row a {
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 900;
}

.doc-empty {
  display: grid;
  gap: 8px;
  min-height: 180px;
  place-content: center;
  padding: 32px;
  border: 1px dashed rgba(124, 142, 164, 0.4);
  border-radius: 18px;
  color: var(--graphite-600);
  text-align: center;
}

.doc-empty strong {
  color: var(--ink-900);
  font-size: 1.2rem;
}

.doc-empty p {
  margin: 0;
}

.docs-sources {
  padding: 0 0 var(--section-y-sm);
}

.docs-source-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: 28px;
  padding: clamp(24px, 3vw, 34px);
}

.docs-source-card h2 {
  margin: 10px 0 0;
  color: var(--ink-950);
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.docs-source-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.docs-source-card li {
  display: grid;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--mist-200);
}

.docs-source-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.docs-source-card a {
  color: var(--blue-600);
  font-weight: 900;
}

.docs-source-card span {
  color: var(--graphite-600);
  line-height: 1.6;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms var(--ease-soft),
    transform 700ms var(--ease-soft);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-image-in {
  to {
    transform: scale(1);
  }
}

@keyframes route-draw {
  0%,
  100% {
    clip-path: inset(0 96% 0 0);
    opacity: 0.2;
  }
  48% {
    clip-path: inset(0 0 0 0);
    opacity: 0.88;
  }
}

@keyframes node-pulse {
  to {
    transform: translateY(-10px);
    box-shadow: 0 24px 70px rgba(10, 87, 255, 0.24);
  }
}

@keyframes split-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1120px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    justify-content: end;
  }

  .menu-button {
    display: block;
  }

  .hero-grid,
  .stage-grid,
  .project-layout,
  .field-grid,
  .faq-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    opacity: 0.54;
  }

  .quick-intake {
    max-width: 640px;
  }

  .funding-grid,
  .audience-grid,
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insight-card,
  .insight-card-horizontal.media-card,
  .insight-question-card {
    grid-column: span 1;
  }

  .video-card.media-card {
    grid-column: span 2;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-card,
  .process-card:nth-child(4),
  .process-card:nth-child(5) {
    grid-column: auto;
  }

  .docs-hero-inner,
  .docs-workbench-grid,
  .docs-source-card,
  .insight-detail-grid,
  .insight-detail-layout {
    grid-template-columns: 1fr;
  }

  .docs-side-panel,
  .insight-side-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .header-inner {
    height: 64px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .hero {
    padding: 120px 0 72px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.2rem);
    line-height: 1.13;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .quick-intake {
    max-width: none;
    padding: 22px;
    border-radius: 24px;
  }

  .quick-intake::before {
    right: 24px;
    left: 24px;
  }

  .chip-group-funding,
  .chip-group-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chip-group-funding button:last-child {
    grid-column: span 2;
  }

  .chip-group button {
    min-height: 52px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

  .panel-callout {
    min-height: 104px;
  }

  .panel-callout strong {
    font-size: clamp(2rem, 10vw, 2.5rem);
  }

  .route-line,
  .route-node {
    display: none;
  }

  .hero-actions,
  .final-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .trust-strip,
  .funding-grid,
  .audience-grid,
  .insight-grid,
  .insight-list,
  .section-head-row,
  .project-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    width: 100%;
    max-width: none;
  }

  .project-card.project-glass-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .project-visual-panel {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .project-info-panel {
    border-left: 0;
    border-top: 1px solid rgba(124, 142, 164, 0.18);
    padding: 28px;
  }

  .notice-live-card {
    min-height: 0;
    padding: 28px;
  }

  .project-info-panel dl div {
    grid-template-columns: 96px 1fr;
  }

  .insight-card,
  .insight-card-horizontal.media-card,
  .insight-question-card,
  .video-card.media-card {
    grid-column: auto;
  }

  .trust-strip {
    margin-top: 0;
  }

  .trust-strip span {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--mist-200);
  }

  .trust-strip span:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 64px 0;
  }

  .section-head h2,
  .audience-copy h2,
  .final-cta h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .docs-hero {
    padding: 104px 0 44px;
  }

  .insight-detail-hero {
    padding: 104px 0 52px;
  }

  .insight-detail-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .docs-hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
    line-height: 1.08;
  }

  .docs-hero-actions,
  .docs-toolbar {
    grid-template-columns: 1fr;
  }

  .docs-stat-grid,
  .doc-item-grid {
    grid-template-columns: 1fr;
  }

  .docs-main-panel,
  .docs-side-panel {
    border-radius: 18px;
  }

  .docs-toolbar > strong {
    justify-self: start;
  }

  .funding-card,
  .audience-card,
  .process-card {
    min-height: auto;
    padding: 26px;
  }

  .funding-card.media-card,
  .audience-card.media-card,
  .process-card.media-card,
  .project-card.media-card,
  .notice-card.media-card,
  .insight-card.media-card,
  .evidence-item.media-card {
    padding: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card:nth-child(4),
  .process-card:nth-child(5) {
    grid-column: span 1;
  }

  .process-card h3 {
    margin-top: 18px;
  }

  .audience-visual {
    display: none;
  }

  .audience-card {
    background: transparent;
    backdrop-filter: none;
  }

  .stage-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .stage-grid {
    padding: 22px;
    border-radius: 24px;
  }

  .stage-panel {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 22px;
  }

  .stage-preview {
    justify-self: center;
  }

  .stage-document-card {
    min-height: 460px;
    padding: 24px;
  }

  .stage-document-copy,
  .stage-document-card ul {
    max-width: none;
  }

  .stage-document-card .stage-preview {
    right: -8px;
    bottom: 6px;
    width: 78%;
    opacity: 0.28;
  }

  .evidence-board {
    grid-template-columns: 1fr;
  }

  .evidence-item.large {
    grid-column: auto;
    min-height: 220px;
  }

  .site-footer {
    padding-bottom: 78px;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
  }

  .footer-contact-actions {
    justify-content: flex-start;
  }

  .footer-kakao-cta,
  .footer-mail-cta {
    margin-top: 2px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
