.decoration-paused,.decoration-paused::before,.decoration-paused::after,
.decoration-paused *,.decoration-paused *::before,.decoration-paused *::after {
  animation-play-state: paused !important;
}

:root {
  --paper: #f6f4ee;
  --paper-strong: #fffdf7;
  --ink: #171712;
  --muted: #66635c;
  --line: rgba(23, 23, 18, 0.14);
  --teal: #0f766e;
  --teal-dark: #0a4f49;
  --copper: #b36b2c;
  --red: #a83228;
  --violet: #3b3678;
  --shadow: 0 22px 70px rgba(23, 23, 18, 0.11);
  --radius: 8px;
  font-family:
    Inter, Pretendard, "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(23, 23, 18, 0.1);
  background: rgba(246, 244, 238, 0.84);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.brand-mark strong,
.brand-mark small {
  display: block;
  white-space: nowrap;
}

.brand-mark strong {
  font-size: 0.96rem;
}

.brand-mark small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.74rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: rgba(23, 23, 18, 0.72);
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Shared navigation: stronger labels, clear current-page state, visible on mobile. */
body .site-header nav.nav-links.nav-links {
  display: flex;
  gap: 6px;
  font-size: 16px;
  font-weight: 750;
  letter-spacing: -.025em;
}
body .site-header nav.nav-links.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 14px;
  border: 1px solid transparent;
  border-radius: 3px;
  color: #283127;
  line-height: 1.35;
  text-decoration: none;
  transition: background .18s, color .18s, border-color .18s;
}
body.home-page .site-header nav.nav-links.nav-links a,
body.page-professional-advertising .site-header nav.nav-links.nav-links a { color: #f2f5e9; }
body .site-header nav.nav-links.nav-links a:hover {
  background: #d4f76b;
  border-color: #d4f76b;
  color: #18200f;
}
body .site-header nav.nav-links.nav-links a.active {
  background: #d4f76b;
  border-color: #d4f76b;
  color: #18200f;
}
body .site-header nav.nav-links.nav-links a::after { display: none; }
body .site-header nav.nav-links.nav-links a:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
@media(max-width:1060px) {
  body .site-header.site-header { display: grid; grid-template-columns: 1fr auto; gap: 10px; padding: 12px 20px; }
  body .site-header .nav-cta { grid-column: 2; grid-row: 1; }
  body .site-header nav.nav-links.nav-links { grid-column: 1/-1; grid-row: 2; justify-content: flex-start; gap: 4px; max-width: 100%; overflow-x: auto; padding: 2px 0; font-size: 14px; }
  body .site-header nav.nav-links.nav-links a { flex: 0 0 auto; padding: 10px 9px; min-height: 42px; }
}
@media(prefers-reduced-motion:reduce) { body .site-header nav.nav-links.nav-links a { transition: none; } }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.nav-cta {
  min-width: 104px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--paper-strong);
  font-size: 0.88rem;
}

.button {
  min-width: 156px;
  padding: 0 22px;
  border: 1px solid var(--ink);
}

.button:hover,
.nav-cta:hover,
.keyword-card:hover,
.field-card:hover,
.note-card:hover {
  transform: translateY(-3px);
}

.button.primary {
  background: var(--ink);
  color: var(--paper-strong);
  box-shadow: 0 18px 36px rgba(23, 23, 18, 0.18);
}

.button.secondary {
  background: rgba(255, 253, 247, 0.65);
  color: var(--ink);
}

.hero,
.service-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 28%, rgba(15, 118, 110, 0.18), transparent 32%),
    linear-gradient(112deg, rgba(255, 253, 247, 0.94), rgba(246, 244, 238, 0.72));
}

.hero {
  min-height: 88vh;
  padding: 126px clamp(20px, 5vw, 72px) 72px;
}

.service-hero {
  min-height: 72vh;
  padding: 132px clamp(20px, 5vw, 72px) 72px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
}

.hero-content,
.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero h1,
.hero h2,
.service-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  word-break: keep-all;
}

.service-hero h1 {
  font-size: clamp(2.7rem, 5.9vw, 6.1rem);
}

.hero-copy,
.service-copy {
  max-width: 740px;
  margin: 28px 0 0;
  color: rgba(23, 23, 18, 0.78);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.75;
  word-break: keep-all;
}

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

.proof-line {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-index {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  bottom: 38px;
  z-index: 2;
  display: flex;
  gap: 10px;
  color: rgba(23, 23, 18, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-index span {
  border-top: 1px solid var(--ink);
  padding-top: 10px;
}

.breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.keyword-pills span {
  border: 1px solid rgba(23, 23, 18, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 253, 247, 0.64);
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.section,
.section-band {
  border-bottom: 1px solid var(--line);
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.section-band {
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper-strong);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.intro-grid,
.service-grid,
.diagnosis-grid,
.system-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.intro-grid {
  align-items: end;
}

.intro .section-kicker,
.notes-section .section-kicker {
  color: #69c9bb;
}

.intro h2,
.section-heading h2,
.diagnosis-grid h2,
.service-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: 0;
  word-break: keep-all;
}

.intro p:last-child {
  margin: 0;
  color: rgba(255, 253, 247, 0.76);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.9;
  word-break: keep-all;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading p:last-child,
.diagnosis-grid > div > p,
.service-grid > div > p,
.service-body p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.86;
  word-break: keep-all;
}

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

.keyword-card {
  min-height: 276px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.56);
  box-shadow: 0 12px 28px rgba(23, 23, 18, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.keyword-card:hover {
  border-color: rgba(15, 118, 110, 0.38);
  box-shadow: var(--shadow);
}

.keyword-card span,
.field-card span,
.project-item span {
  color: var(--copper);
  font-size: 0.86rem;
  font-weight: 900;
}

.keyword-card h3 {
  margin: 76px 0 18px;
  font-size: 1.55rem;
}

.keyword-card p,
.field-card p,
.project-item p,
.service-list li,
.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  word-break: keep-all;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.field-card {
  min-height: 258px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.38);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.field-card:hover {
  background: var(--paper-strong);
}

.field-card h3 {
  margin: 52px 0 18px;
  font-size: 1.32rem;
}

.system-section {
  background: #f0eee6;
}

.system-board {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(23, 23, 18, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 23, 18, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 18, 0.06) 1px, transparent 1px),
    rgba(255, 253, 247, 0.52);
  background-size: 34px 34px;
  box-shadow: var(--shadow);
}

.system-board::before,
.system-board::after {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 78%;
  height: 1px;
  background: rgba(23, 23, 18, 0.16);
  content: "";
  transform-origin: left;
}

.system-board::before {
  transform: rotate(24deg) translateX(-50%);
  animation: systemLineGlow 3.8s ease-in-out infinite;
}

.system-board::after {
  transform: rotate(-24deg) translateX(-50%);
  animation: systemLineGlow 3.8s ease-in-out 1.2s infinite;
}

.system-scanline {
  position: absolute;
  top: -28%;
  bottom: -28%;
  left: 20%;
  z-index: 1;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(15, 118, 110, 0.18), transparent);
  filter: blur(2px);
  opacity: 0.75;
  pointer-events: none;
  transform: skewX(-18deg) translateX(-240%);
  animation: systemScan 5.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.system-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 104px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(23, 23, 18, 0.22);
  border-radius: var(--radius);
  background: var(--paper-strong);
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(23, 23, 18, 0.09);
}

.system-node.core {
  left: 50%;
  top: 50%;
  min-width: 140px;
  min-height: 62px;
  background: var(--ink);
  color: var(--paper-strong);
  transform: translate(-50%, -50%);
  isolation: isolate;
  animation: coreBeacon 2.8s ease-in-out infinite;
}

.system-node.core::before,
.system-node.core::after {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(15, 118, 110, 0.36);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transform: scale(0.84);
  opacity: 0;
  animation: coreRing 2.8s ease-out infinite;
}

.system-node.core::after {
  animation-delay: 1.4s;
}

.node-a {
  left: 12%;
  top: 18%;
}

.node-b {
  right: 10%;
  top: 18%;
}

.node-c {
  left: 10%;
  top: 48%;
}

.node-d {
  right: 10%;
  top: 48%;
}

.node-e {
  left: 16%;
  bottom: 16%;
}

.node-f {
  right: 16%;
  bottom: 16%;
}

.node-g {
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  border-color: rgba(15, 118, 110, 0.44);
  color: var(--teal-dark);
}

.project-list {
  display: grid;
  gap: 18px;
}

.project-item {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: clamp(18px, 4vw, 54px);
  align-items: start;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.project-item:last-child {
  border-bottom: 1px solid var(--line);
}

.project-item span {
  color: var(--red);
}

.project-item h3 {
  margin: 0;
  font-size: clamp(1.24rem, 2.1vw, 2rem);
  line-height: 1.28;
  word-break: keep-all;
}

.notes-section {
  background: var(--ink);
  color: var(--paper-strong);
}

.notes-section .section-heading p:last-child {
  color: rgba(255, 253, 247, 0.68);
}

.notes-grid,
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.note-card,
.service-card {
  min-height: 294px;
  padding: 26px;
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.note-card {
  border: 1px solid rgba(255, 253, 247, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.08), transparent),
    rgba(255, 253, 247, 0.03);
}

.note-card p {
  margin: 16px 0 34px;
  color: #d0a170;
  font-size: 0.86rem;
  font-weight: 900;
}

.note-card h3,
.service-card h3 {
  margin: 0;
  font-size: clamp(1.22rem, 2vw, 1.76rem);
  line-height: 1.38;
  word-break: keep-all;
}



.note-card time,
.note-card small {
  display: block;
  word-break: keep-all;
}

.note-card time {
  color: rgba(255, 253, 247, 0.52);
  font-size: 0.8rem;
  font-weight: 800;
}

.note-card small {
  margin-top: 22px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.94rem;
  line-height: 1.7;
}

.service-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.54);
}

.service-card p {
  color: var(--muted);
  line-height: 1.72;
}

.service-body {
  display: grid;
  gap: 22px;
}

.service-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.faq-section {
  background: var(--paper-strong);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  line-height: 1.5;
  word-break: keep-all;
}

.faq-list p {
  padding: 0 22px 22px;
}

.diagnosis-section {
  background: var(--paper-strong);
}

.diagnosis-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.diagnosis-form label {
  display: grid;
  gap: 8px;
  color: rgba(23, 23, 18, 0.78);
  font-size: 0.9rem;
  font-weight: 900;
}

.diagnosis-form input,
.diagnosis-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 18, 0.18);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  outline: none;
}

.diagnosis-form input {
  min-height: 48px;
  padding: 0 14px;
}

.diagnosis-form textarea {
  resize: vertical;
  min-height: 126px;
  padding: 14px;
}

.diagnosis-form input:focus,
.diagnosis-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}



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

.diagnosis-form select,
.consultation-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(23, 23, 18, 0.18);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--paper-strong);
  color: var(--ink);
  outline: none;
}

.diagnosis-form select:focus,
.consultation-form select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.consent-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 0.84rem !important;
  font-weight: 800 !important;
  line-height: 1.58;
}

.consent-row input {
  width: 18px !important;
  min-width: 18px;
  min-height: 18px !important;
  margin-top: 2px;
  padding: 0 !important;
  accent-color: var(--teal);
}

.consent-row a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper-strong);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 253, 247, 0.62);
}

.footer-company {
  max-width: 820px;
}

.footer-business-meta {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: rgba(255, 253, 247, 0.7);
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-business-meta a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-address summary {
  width: fit-content;
  cursor: pointer;
  color: inherit;
  font-size: 0.82rem;
  font-weight: 400;
  list-style: none;
}

.footer-address summary::-webkit-details-marker { display: none; }
.footer-address summary:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }
.footer-address summary:hover { text-decoration: underline; text-underline-offset: 3px; }

.footer-address > div {
  position: absolute;
  right: 0;
  bottom: calc(100% + 12px);
  z-index: 10;
  width: min(420px, calc(100vw - 40px));
  display: grid;
  gap: 4px;
  padding: 16px;
  background: #222823;
  border: 1px solid #465044;
  color: #e2e7dc;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  word-break: keep-all;
}

.footer-address address {
  font-style: normal;
}

.site-footer a {
  color: #69c9bb;
  font-weight: 900;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-index {
    left: clamp(20px, 5vw, 52px);
    right: auto;
    bottom: 24px;
    flex-wrap: wrap;
  }

  .keyword-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lab-profile-grid,
  .consultation-dialog {
    grid-template-columns: 1fr;
  }

  .lab-profile-panel {
    position: relative;
    top: auto;
  }

  .intro-grid,
  .system-grid,
  .diagnosis-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .field-grid,
  .notes-grid,
  .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .brand-mark strong {
    font-size: 0.86rem;
  }

  .brand-mark small {
    display: none;
  }

  .nav-cta {
    min-width: 82px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .hero,
  .service-hero {
    min-height: 84vh;
    padding: 104px 18px 96px;
  }

  .hero h1,
  .hero h2,
  .service-hero h1 {
    font-size: clamp(2.75rem, 12vw, 4.1rem);
  }

  .button {
    width: 100%;
  }

  .hero-index {
    display: none;
  }

  .keyword-grid,
  .trust-strip,
  .field-grid,
  .notes-grid,
  .service-card-grid,
  .form-two-col {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 18, 0.1);
  }

  .profile-checklist div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .keyword-card,
  .field-card {
    min-height: 220px;
  }

  .system-board {
    min-height: 440px;
  }

  .system-node {
    min-width: 86px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .system-node.core {
    min-width: 116px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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




/* Trust and conversion structure */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid rgba(23, 23, 18, 0.14);
  background: var(--paper-strong);
}

.trust-item {
  position: relative;
  min-height: 132px;
  padding: 26px clamp(18px, 3vw, 34px);
  border-right: 1px solid rgba(23, 23, 18, 0.12);
  overflow: hidden;
}

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

.trust-item::after {
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--copper), transparent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.trust-item strong,
.trust-item span {
  display: block;
  word-break: keep-all;
}

.trust-item strong {
  font-size: clamp(1.18rem, 2vw, 1.68rem);
  line-height: 1.18;
}

.trust-item span {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.62;
}

.lab-profile-section {
  background:
    linear-gradient(90deg, rgba(23, 23, 18, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.lab-profile-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(320px, 0.64fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.lab-profile-panel {
  position: sticky;
  top: 112px;
  border: 1px solid rgba(23, 23, 18, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.74);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.profile-head {
  padding: 26px;
  background: var(--ink);
  color: var(--paper-strong);
}

.profile-head span,
.profile-head strong {
  display: block;
}

.profile-head span {
  color: #69c9bb;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.profile-head strong {
  margin-top: 18px;
  font-size: clamp(1.42rem, 2vw, 2rem);
  line-height: 1.24;
}

.profile-checklist {
  margin: 0;
}

.profile-checklist div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  padding: 22px 26px;
  border-top: 1px solid rgba(23, 23, 18, 0.1);
}

.profile-checklist dt {
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.profile-checklist dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  word-break: keep-all;
}


/* Lower-page motion system */
.section {
  position: relative;
  overflow: hidden;
}

.keyword-card,
.field-card,
.service-card,
.note-card,
.diagnosis-form {
  position: relative;
  overflow: hidden;
}

.keyword-card::before,
.field-card::before,
.service-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(15, 118, 110, 0.12) 42%, transparent 68%);
  content: "";
  opacity: 0;
  transform: translateX(-42%);
  transition:
    opacity 180ms ease,
    transform 520ms ease;
  pointer-events: none;
}

.keyword-card:hover::before,
.field-card:hover::before,
.service-card:hover::before {
  opacity: 1;
  transform: translateX(42%);
}

.keyword-card::after,
.field-card::after,
.note-card::after,
.service-card::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.42);
  content: "";
  opacity: 0.72;
  pointer-events: none;
  animation: cardBeacon 3.6s ease-out infinite;
}

.keyword-card:nth-child(2)::after,
.field-card:nth-child(2)::after,
.note-card:nth-child(2)::after,
.service-card:nth-child(2)::after {
  animation-delay: 0.55s;
}

.keyword-card:nth-child(3)::after,
.field-card:nth-child(3)::after,
.note-card:nth-child(3)::after,
.service-card:nth-child(3)::after {
  animation-delay: 1.1s;
}

.keyword-card:nth-child(4)::after,
.field-card:nth-child(4)::after,
.service-card:nth-child(4)::after {
  animation-delay: 1.65s;
}

.keyword-card,
.field-card,
.note-card,
.service-card {
  transform: perspective(900px) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg)) translateZ(0);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease, border-color 240ms ease;
  will-change: transform;
}

.keyword-card:hover,
.field-card:hover,
.note-card:hover,
.service-card:hover {
  transform: perspective(900px) rotateX(var(--card-rotate-x, 0deg)) rotateY(var(--card-rotate-y, 0deg)) translateY(-5px) translateZ(6px);
}

.system-board {
  animation: gridDrift 18s linear infinite;
}

.system-node {
  will-change: transform;
}

.flow-section {
  background: #151713;
  color: var(--paper-strong);
}

.flow-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 247, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 18% 28%, rgba(15, 118, 110, 0.25), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(179, 107, 44, 0.19), transparent 30%);
  background-size: 46px 46px, 46px 46px, auto, auto;
  opacity: 0.9;
  pointer-events: none;
}

.flow-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
}

.flow-copy {
  max-width: 540px;
}

.flow-copy .section-kicker {
  color: #69c9bb;
}

.flow-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5.4vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  word-break: keep-all;
}

.flow-copy p:last-child {
  color: rgba(255, 253, 247, 0.68);
  font-size: 1.06rem;
  line-height: 1.88;
  word-break: keep-all;
}

.flow-stage {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  border: 1px solid rgba(255, 253, 247, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.035);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.flow-stage::after {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: 24%;
  z-index: 0;
  width: 14%;
  background: linear-gradient(90deg, transparent, rgba(105, 201, 187, 0.12), transparent);
  content: "";
  pointer-events: none;
  transform: skewX(-18deg) translateX(-360%);
  animation: flowStageScan 5.2s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.flow-lines {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2;
}

.flow-orb {
  fill: #d0a170;
  filter: drop-shadow(0 0 8px rgba(208, 161, 112, 0.82));
}

.flow-orb-b {
  fill: #69c9bb;
  filter: drop-shadow(0 0 8px rgba(105, 201, 187, 0.82));
}

.muted-line {
  stroke: rgba(255, 253, 247, 0.16);
}

.strong-line {
  stroke: #69c9bb;
  stroke-dasharray: 920;
  stroke-dashoffset: 920;
  filter: drop-shadow(0 0 8px rgba(105, 201, 187, 0.45));
}

.signal-card {
  position: absolute;
  width: min(226px, 42%);
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: var(--radius);
  background: rgba(246, 244, 238, 0.09);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  z-index: 2;
}

.signal-card::after {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #69c9bb;
  box-shadow: 0 0 0 0 rgba(105, 201, 187, 0.55);
  content: "";
  animation: signalPulse 2.4s ease-out infinite;
}

.signal-card span {
  color: #d0a170;
  font-size: 0.78rem;
  font-weight: 900;
}

.signal-card strong {
  display: block;
  margin-top: 24px;
  font-size: 1.12rem;
}

.signal-card p {
  margin: 10px 0 0;
  color: rgba(255, 253, 247, 0.66);
  font-size: 0.92rem;
  line-height: 1.58;
  word-break: keep-all;
}

.signal-a {
  left: 7%;
  top: 8%;
}

.signal-b {
  right: 8%;
  top: 18%;
}

.signal-c {
  left: 12%;
  bottom: 10%;
}

.signal-d {
  right: 7%;
  bottom: 14%;
}

.flow-steps {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.flow-step {
  border-top: 1px solid rgba(255, 253, 247, 0.22);
  padding-top: 18px;
}

.flow-step span {
  color: #69c9bb;
  font-size: 0.78rem;
  font-weight: 900;
}

.flow-step strong {
  display: block;
  min-height: 58px;
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.52;
  word-break: keep-all;
}

.flow-meter {
  height: 3px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(255, 253, 247, 0.14);
}

.flow-meter i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #69c9bb, #d0a170);
  transform: scaleX(0);
  transform-origin: left;
}

.project-list {
  position: relative;
}

.project-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 90px;
  width: 1px;
  background: linear-gradient(var(--teal), rgba(15, 118, 110, 0.08));
  content: "";
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

.project-list.is-visible::before {
  transform: scaleY(1);
}

.project-item {
  position: relative;
}

.project-item::before {
  position: absolute;
  top: 37px;
  left: 84px;
  z-index: 2;
  width: 13px;
  height: 13px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.32);
  content: "";
}

.project-item::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--copper), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
}

.project-item.is-visible::after {
  animation: projectSweep 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.project-item.is-visible::before {
  animation: signalPulse 1.8s ease-out 1;
}

.notes-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(105, 201, 187, 0.1) 42%, transparent 58%),
    linear-gradient(rgba(255, 253, 247, 0.035) 1px, transparent 1px);
  background-size: auto, 100% 34px;
  content: "";
  animation: notesScan 9s ease-in-out infinite alternate;
  pointer-events: none;
}

.note-card::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, #69c9bb, #d0a170, transparent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.note-card.is-visible::before {
  transform: scaleX(1);
}

.faq-list details {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-list details:hover,
.faq-list details[open] {
  border-color: rgba(15, 118, 110, 0.36);
  box-shadow: 0 14px 34px rgba(23, 23, 18, 0.08);
  transform: translateY(-2px);
}

.diagnosis-form::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--copper), var(--red));
  content: "";
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 68px 68px, 68px 68px, 0 0;
  }
}

@keyframes systemScan {
  0% {
    transform: skewX(-18deg) translateX(-240%);
  }

  55%, 100% {
    transform: skewX(-18deg) translateX(620%);
  }
}

@keyframes systemLineGlow {
  0%, 100% {
    opacity: 0.45;
    filter: none;
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 5px rgba(15, 118, 110, 0.42));
  }
}

@keyframes coreBeacon {
  0%, 100% {
    box-shadow: 0 14px 30px rgba(23, 23, 18, 0.16), 0 0 0 0 rgba(15, 118, 110, 0.28);
  }

  50% {
    box-shadow: 0 18px 44px rgba(23, 23, 18, 0.22), 0 0 0 10px rgba(15, 118, 110, 0.02);
  }
}

@keyframes coreRing {
  0% {
    transform: scale(0.84);
    opacity: 0;
  }

  24% {
    opacity: 1;
  }

  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@keyframes cardBeacon {
  0%, 38% {
    box-shadow: 0 0 0 0 rgba(15, 118, 110, 0.42);
  }

  72%, 100% {
    box-shadow: 0 0 0 12px rgba(15, 118, 110, 0);
  }
}

@keyframes projectSweep {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes signalPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(105, 201, 187, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(105, 201, 187, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(105, 201, 187, 0);
  }
}

@keyframes notesScan {
  from {
    transform: translateX(-18%);
  }

  to {
    transform: translateX(18%);
  }
}

@keyframes heroLightSweep {
  0%, 18% {
    opacity: 0;
    transform: translateX(-90%);
  }

  35% {
    opacity: 1;
  }

  62%, 100% {
    opacity: 0;
    transform: translateX(90%);
  }
}

@keyframes flowStageScan {
  0%, 16% {
    opacity: 0;
    transform: skewX(-18deg) translateX(-360%);
  }

  34% {
    opacity: 1;
  }

  70%, 100% {
    opacity: 0;
    transform: skewX(-18deg) translateX(760%);
  }
}

@media (max-width: 1060px) {
  .flow-layout {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-list::before {
    left: 6px;
  }

  .project-item {
    padding-left: 30px;
  }

  .project-item::before {
    left: 0;
  }
}

@media (max-width: 640px) {
  .flow-layout,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .flow-stage {
    display: grid;
    gap: 16px;
    min-height: auto;
    padding: 16px;
  }

  .signal-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .flow-lines {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-board,
  .system-scanline,
  .system-node.core,
  .system-node.core::before,
  .system-node.core::after,
  .keyword-card::after,
  .field-card::after,
  .note-card::after,
  .service-card::after,
  .video-hero::before,
  .flow-stage::after,
  .signal-card::after,
  .notes-section::before,
  .project-item.is-visible::before {
    animation: none !important;
  }

  .keyword-card,
  .field-card,
  .note-card,
  .service-card {
    transform: none !important;
    transition: none !important;
  }

  .flow-orb {
    display: none;
  }

  .strong-line,
  .flow-meter i,
  .project-list::before,
  .project-item::after,
  .note-card::before {
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}


/* Video hero and policy pages */
.video-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 5vw, 72px) 72px;
  isolation: isolate;
  background: #11130f;
  color: var(--paper-strong);
}

.video-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(112deg, transparent 34%, rgba(105, 201, 187, 0.16) 48%, transparent 62%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-90%);
  animation: heroLightSweep 8.5s cubic-bezier(0.22, 1, 0.36, 1) 1.2s infinite;
}

.video-fallback,
.direct-video,
.youtube-bg,
.video-overlay {
  position: absolute;
  inset: 0;
}

.video-fallback {
  z-index: -3;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 247, 0.04) 1px, transparent 1px),
    linear-gradient(136deg, transparent 0 48%, rgba(105, 201, 187, 0.1) 49%, transparent 50% 100%),
    linear-gradient(28deg, transparent 0 58%, rgba(179, 107, 44, 0.1) 59%, transparent 60% 100%),
    #11130f;
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
  animation: videoFallbackDrift 22s linear infinite;
}

.video-fallback::before,
.video-fallback::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.video-fallback::before {
  background:
    linear-gradient(90deg, transparent 0 57%, rgba(105, 201, 187, 0.2) 57.1%, transparent 57.3%),
    linear-gradient(0deg, transparent 0 28%, rgba(255, 253, 247, 0.12) 28.1%, transparent 28.3%);
  opacity: 0.62;
  transform: translateX(-2%);
  animation: fallbackGridShift 11s ease-in-out infinite alternate;
}

.video-fallback::after {
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(105, 201, 187, 0.18), transparent);
  filter: blur(6px);
  opacity: 0.7;
  transform: skewX(-18deg) translateX(-420%);
  animation: fallbackBeam 7.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.fallback-frame,
.fallback-focus,
.fallback-track,
.fallback-scan {
  position: absolute;
  display: block;
}

.fallback-frame {
  border: 1px solid rgba(105, 201, 187, 0.28);
  box-shadow: 0 0 0 1px rgba(255, 253, 247, 0.035), 0 0 38px rgba(105, 201, 187, 0.08);
  transform-origin: center;
  animation: fallbackFrameDrift 12s ease-in-out infinite alternate;
}

.frame-wide {
  top: 16%;
  right: 6%;
  width: 48vw;
  height: 31vh;
  transform: rotate(-4deg);
}

.frame-tall {
  top: 26%;
  right: 19%;
  width: 30vw;
  height: 53vh;
  border-color: rgba(179, 107, 44, 0.3);
  transform: rotate(7deg);
  animation-delay: 1.2s;
}

.fallback-focus {
  top: 35%;
  right: 20%;
  width: 184px;
  height: 184px;
  border: 1px solid rgba(105, 201, 187, 0.56);
  background: rgba(17, 19, 15, 0.24);
  box-shadow: 0 0 0 14px rgba(105, 201, 187, 0.035), 0 0 48px rgba(105, 201, 187, 0.12);
  transform: rotate(45deg);
  animation: fallbackFocusTurn 18s linear infinite;
}

.fallback-focus::before,
.fallback-focus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 253, 247, 0.42);
  content: "";
  transform: translate(-50%, -50%);
}

.fallback-focus::before {
  width: 132%;
  height: 1px;
}

.fallback-focus::after {
  width: 1px;
  height: 132%;
}

.fallback-focus i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 2px solid #d0a170;
  background: #11130f;
  box-shadow: 0 0 18px rgba(208, 161, 112, 0.8);
  transform: translate(-50%, -50%);
  animation: fallbackFocusPulse 2.8s ease-in-out infinite;
}

.fallback-track {
  right: 8%;
  bottom: 18%;
  width: 36vw;
  height: 1px;
  background: rgba(255, 253, 247, 0.25);
  box-shadow: 0 14px 0 rgba(105, 201, 187, 0.24), 0 28px 0 rgba(179, 107, 44, 0.22);
}

.fallback-track::before {
  position: absolute;
  top: -4px;
  right: 0;
  width: 8px;
  height: 8px;
  border: 1px solid #69c9bb;
  background: #11130f;
  content: "";
  animation: fallbackTrackPulse 2.2s ease-in-out infinite;
}

.fallback-track i {
  position: absolute;
  top: -3px;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 253, 247, 0.54);
  background: #11130f;
}

.fallback-track i:nth-child(1) { left: 18%; }
.fallback-track i:nth-child(2) { left: 52%; border-color: #d0a170; }
.fallback-track i:nth-child(3) { right: 20%; border-color: #69c9bb; }

.fallback-scan {
  top: 12%;
  bottom: 12%;
  right: 33%;
  width: 1px;
  background: rgba(255, 253, 247, 0.34);
  box-shadow: 0 0 18px rgba(105, 201, 187, 0.6);
  transform-origin: center;
  animation: fallbackScan 5.8s ease-in-out infinite;
}

.youtube-bg {
  z-index: -2;
  overflow: hidden;
  opacity: 0;
  transition: opacity 600ms ease;
}

.direct-video {
  z-index: -2;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 600ms ease;
}

.direct-video.is-ready {
  opacity: 1;
}

.youtube-bg.is-ready {
  opacity: 1;
}

.youtube-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 19, 15, 0.9), rgba(17, 19, 15, 0.54) 48%, rgba(17, 19, 15, 0.86)),
    linear-gradient(0deg, rgba(17, 19, 15, 0.95), transparent 42%);
}

.video-hero-content {
  width: min(1020px, 100%);
  margin: 0 auto;
}

.video-hero .eyebrow {
  color: #69c9bb;
}

.video-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.1rem, 7.2vw, 7.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  word-break: keep-all;
}

.video-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 253, 247, 0.74);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.8;
  word-break: keep-all;
}

.button.secondary.light {
  border-color: rgba(255, 253, 247, 0.46);
  background: rgba(255, 253, 247, 0.1);
  color: var(--paper-strong);
}

.video-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 32px;
  color: rgba(255, 253, 247, 0.4);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.policy-hero {
  padding: 132px clamp(20px, 5vw, 72px) 58px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 20%, rgba(15, 118, 110, 0.12), transparent 26%),
    var(--paper-strong);
}

.policy-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.policy-hero p:last-child {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.8;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.policy-toc {
  position: sticky;
  top: 96px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.64);
}

.policy-toc strong {
  display: block;
  margin-top: 16px;
  font-size: 0.84rem;
}

.policy-toc strong:first-child {
  margin-top: 0;
}

.policy-toc p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.policy-content {
  display: grid;
  gap: 24px;
}

.policy-content h2 {
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.28;
}

.policy-content h2:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-content p {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.86;
  word-break: keep-all;
}

.footer-links {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  color: rgba(255, 253, 247, 0.72);
  font-weight: 900;
}

.footer-links a:hover {
  color: #69c9bb;
}

@keyframes videoFallbackDrift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }

  to {
    background-position: 104px 104px, 104px 104px, 0 0, 0 0, 0 0;
  }
}

@keyframes fallbackGridShift {
  from { transform: translateX(-3%) scale(1); }
  to { transform: translateX(3%) scale(1.04); }
}

@keyframes fallbackBeam {
  0%, 18% { opacity: 0; transform: skewX(-18deg) translateX(-420%); }
  38% { opacity: 1; }
  72%, 100% { opacity: 0; transform: skewX(-18deg) translateX(560%); }
}

@keyframes fallbackFrameDrift {
  from { opacity: 0.48; transform: rotate(-4deg) translate3d(0, 0, 0); }
  to { opacity: 0.9; transform: rotate(-2deg) translate3d(-14px, 10px, 0); }
}

@keyframes fallbackFocusTurn {
  to { transform: rotate(405deg); }
}

@keyframes fallbackFocusPulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(0.72); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes fallbackTrackPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes fallbackScan {
  0%, 100% { opacity: 0.18; transform: translateY(-14%); }
  50% { opacity: 0.9; transform: translateY(14%); }
}

@media (max-width: 780px) {
  .video-hero {
    min-height: 92vh;
    padding: 108px 18px 64px;
  }

  .video-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .frame-wide {
    top: 18%;
    right: -30%;
    width: 88vw;
    height: 25vh;
  }

  .frame-tall {
    top: 34%;
    right: -17%;
    width: 62vw;
    height: 42vh;
  }

  .fallback-focus {
    top: 44%;
    right: -8%;
    width: 138px;
    height: 138px;
  }

  .fallback-track {
    right: -4%;
    bottom: 17%;
    width: 86vw;
  }

  .fallback-scan {
    right: 22%;
  }

  .video-note {
    display: none;
  }

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    position: static;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-fallback,
  .video-fallback::before,
  .video-fallback::after,
  .fallback-frame,
  .fallback-focus,
  .fallback-focus i,
  .fallback-track::before,
  .fallback-scan {
    animation: none !important;
  }
}


/* Embedded media-platform accents */
.media-field {
  isolation: isolate;
}

.media-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.media-stack em {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.22);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 253, 247, 0.68);
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.media-stack em::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(105, 201, 187, 0.28), transparent);
  content: "";
  transform: translateX(-110%);
  animation: mediaChipScan 3.8s ease-in-out infinite;
}

.media-stack em:nth-child(2)::after {
  animation-delay: 0.3s;
}

.media-stack em:nth-child(3)::after {
  animation-delay: 0.6s;
}

.media-stack em:nth-child(4)::after {
  animation-delay: 0.9s;
}

@keyframes mediaChipScan {
  0%, 42% {
    transform: translateX(-110%);
  }

  68%, 100% {
    transform: translateX(110%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .media-stack em::after {
    animation: none !important;
  }
}




/* Consultation modal */
body.modal-open {
  overflow: hidden;
}

.consultation-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(17, 19, 15, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.consultation-modal[hidden] {
  display: none;
}

.consultation-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.consultation-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(20px, 4vw, 40px);
  width: min(880px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 38px);
  background: var(--paper-strong);
  color: var(--ink);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Service pages use one shared frame, then change visual language by intent. */
body.page-lawyer-advertising {
  --page-accent: #0f766e;
  --page-accent-soft: rgba(15, 118, 110, 0.18);
  --page-accent-line: rgba(15, 118, 110, 0.34);
}

body.page-lawyer-marketing {
  --page-accent: #3b3678;
  --page-accent-soft: rgba(59, 54, 120, 0.16);
  --page-accent-line: rgba(59, 54, 120, 0.32);
}

body.page-legal-advertising {
  --page-accent: #a83228;
  --page-accent-soft: rgba(168, 50, 40, 0.14);
  --page-accent-line: rgba(168, 50, 40, 0.3);
}

body.page-legal-marketing {
  --page-accent: #b36b2c;
  --page-accent-soft: rgba(179, 107, 44, 0.16);
  --page-accent-line: rgba(179, 107, 44, 0.34);
}

body.page-hospital-advertising {
  --page-accent: #176b80;
  --page-accent-soft: rgba(23, 107, 128, 0.16);
  --page-accent-line: rgba(23, 107, 128, 0.34);
}

body.page-professional-advertising {
  --page-accent: #0f766e;
  --page-accent-soft: rgba(15, 118, 110, 0.17);
  --page-accent-line: rgba(15, 118, 110, 0.32);
}

body.page-professional-marketing {
  --page-accent: #b36b2c;
  --page-accent-soft: rgba(179, 107, 44, 0.16);
  --page-accent-line: rgba(179, 107, 44, 0.34);
}

body[class*="page-"] .service-hero {
  background:
    radial-gradient(circle at 82% 48%, var(--page-accent-soft), transparent 34%),
    linear-gradient(112deg, rgba(255, 253, 247, 0.95), rgba(246, 244, 238, 0.72));
}

body[class*="page-"] .service-hero-content {
  width: min(820px, 57vw);
}

body[class*="page-"] .service-hero .hero-canvas {
  display: none;
}

body[class*="page-"] .service-hero .eyebrow,
body[class*="page-"] .service-hero .keyword-pills span,
body[class*="page-"] .service-grid .section-kicker {
  color: var(--page-accent);
}

body[class*="page-"] .keyword-pills span {
  border-color: var(--page-accent-line);
}

body[class*="page-"] .service-card {
  position: relative;
  overflow: hidden;
}

body[class*="page-"] .service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--page-accent);
  content: "";
  transform: scaleX(0.24);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[class*="page-"] .service-card:hover::before {
  transform: scaleX(1);
}

.service-hero-visual {
  position: absolute;
  top: 50%;
  right: clamp(20px, 5vw, 82px);
  z-index: 1;
  width: min(430px, 34vw);
  height: min(430px, 58vh);
  min-height: 320px;
  overflow: hidden;
  color: var(--ink);
  pointer-events: none;
  transform: translateY(-44%);
}

.service-hero-visual::before {
  position: absolute;
  inset: 8px;
  border: 1px solid var(--page-accent-line);
  content: "";
  opacity: 0.72;
}

.visual-caption {
  position: absolute;
  top: 22px;
  left: 26px;
  right: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--page-accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.visual-caption i,
.policy-rail i {
  display: block;
  width: 44px;
  height: 4px;
  background: var(--page-accent);
  box-shadow: 0 0 18px var(--page-accent-soft);
  animation: visualSignal 2.4s ease-in-out infinite;
}

.result-stack {
  padding: 70px 26px 26px;
  border: 1px solid var(--page-accent-line);
  background: rgba(255, 253, 247, 0.46);
}

.result-row {
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  margin-bottom: 10px;
  border: 1px solid rgba(23, 23, 18, 0.14);
  padding: 0 16px;
  background: rgba(255, 253, 247, 0.78);
  box-shadow: 0 12px 26px rgba(23, 23, 18, 0.06);
  animation: visualFloat 3.8s ease-in-out infinite;
}

.result-row:nth-of-type(3) {
  animation-delay: 0.6s;
}

.result-row:nth-of-type(4) {
  animation-delay: 1.2s;
}

.result-row::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: var(--page-accent);
  content: "";
  transform: scaleY(0.35);
  transform-origin: center;
  animation: rowScan 2.8s ease-in-out infinite;
}

.result-row b {
  color: var(--page-accent);
  font-size: 0.78rem;
}

.result-row span {
  font-size: 1.05rem;
  font-weight: 900;
}

.result-row em {
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.result-row.active {
  border-color: var(--page-accent-line);
  transform: translateX(14px);
}

.visual-route {
  position: absolute;
  right: 42px;
  bottom: 36px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.visual-route::before {
  position: absolute;
  right: 6px;
  left: 6px;
  height: 1px;
  background: var(--page-accent-line);
  content: "";
}

.visual-route i {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 2px solid var(--page-accent);
  border-radius: 50%;
  background: var(--paper-strong);
  animation: routePulse 2.4s ease-in-out infinite;
}

.visual-route i:nth-child(2) {
  animation-delay: 0.45s;
}

.visual-route i:nth-child(3) {
  animation-delay: 0.9s;
}

.content-orbit {
  isolation: isolate;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid var(--page-accent-line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 18s linear infinite;
}

.orbit-one {
  width: 84%;
  height: 58%;
}

.orbit-two {
  width: 58%;
  height: 82%;
  border-style: dashed;
  animation-direction: reverse;
  animation-duration: 24s;
}

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid var(--page-accent);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.82);
  box-shadow: 0 0 0 14px rgba(255, 253, 247, 0.38), 0 22px 46px rgba(23, 23, 18, 0.12);
  transform: translate(-50%, -50%);
  animation: coreBeacon 2.8s ease-in-out infinite;
}

.orbit-core span,
.orbit-core strong {
  display: block;
  text-align: center;
}

.orbit-core span {
  color: var(--page-accent);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.orbit-core strong {
  margin-top: 5px;
  font-size: 2.3rem;
  line-height: 1;
}

.orbit-label {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 62px;
  min-height: 30px;
  border: 1px solid var(--page-accent-line);
  background: rgba(255, 253, 247, 0.86);
  color: var(--page-accent);
  font-size: 0.76rem;
  font-weight: 900;
  animation: labelFloat 3.2s ease-in-out infinite;
}

.orbit-label-a { top: 14%; left: 14%; }
.orbit-label-b { top: 18%; right: 10%; animation-delay: 0.55s; }
.orbit-label-c { right: 16%; bottom: 14%; animation-delay: 1.1s; }
.orbit-label-d { bottom: 12%; left: 12%; animation-delay: 1.65s; }

.policy-gate {
  padding: 68px 30px 30px;
  border-left: 3px solid var(--page-accent);
  background:
    linear-gradient(90deg, var(--page-accent-soft), transparent 74%),
    rgba(255, 253, 247, 0.44);
}

.policy-rail {
  position: absolute;
  top: 22px;
  right: 26px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--page-accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gate-check {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 66px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(23, 23, 18, 0.14);
  animation: gateReveal 3.6s ease-in-out infinite;
}

.gate-check:nth-of-type(3) { animation-delay: 0.6s; }
.gate-check:nth-of-type(4) { animation-delay: 1.2s; }

.gate-check > span {
  color: var(--page-accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.gate-check strong {
  font-size: 1.04rem;
}

.gate-check em {
  color: var(--page-accent);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.gate-beacon {
  position: absolute;
  right: 30px;
  bottom: 28px;
  width: 12px;
  height: 12px;
  border: 3px solid var(--page-accent);
  border-radius: 50%;
  background: var(--paper-strong);
  box-shadow: 0 0 0 10px var(--page-accent-soft), 0 0 28px var(--page-accent-soft);
  animation: routePulse 2.5s ease-in-out infinite;
}

.journey-flow {
  border: 1px solid var(--page-accent-line);
  background: rgba(255, 253, 247, 0.42);
}

.journey-line {
  position: absolute;
  top: 42%;
  right: 13%;
  left: 13%;
  height: 2px;
  background: var(--page-accent-line);
}

.journey-line::after {
  position: absolute;
  top: -3px;
  left: 0;
  width: 28%;
  height: 8px;
  border-radius: 99px;
  background: var(--page-accent);
  box-shadow: 0 0 22px var(--page-accent-soft);
  content: "";
  animation: journeyScan 3.4s ease-in-out infinite;
}

.journey-point {
  position: absolute;
  top: calc(42% - 18px);
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--page-accent);
  animation: labelFloat 3.4s ease-in-out infinite;
}

.journey-point b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--page-accent);
  border-radius: 50%;
  background: var(--paper-strong);
  font-size: 0.68rem;
}

.journey-point span {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.point-a { left: 10%; }
.point-b { left: calc(50% - 20px); animation-delay: 0.55s; }
.point-c { right: 8%; animation-delay: 1.1s; }

.journey-panel {
  position: absolute;
  right: 18%;
  bottom: 18%;
  display: grid;
  gap: 8px;
  min-width: 166px;
  padding: 16px 18px;
  border: 1px solid var(--page-accent-line);
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 18px 36px rgba(23, 23, 18, 0.08);
  animation: panelLift 4s ease-in-out infinite;
}

.journey-panel small {
  color: var(--page-accent);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.journey-panel strong {
  font-size: 1.1rem;
}

.intent-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 38px;
  border: 1px solid var(--page-accent-line);
  background:
    linear-gradient(rgba(23, 23, 18, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 18, 0.07) 1px, transparent 1px),
    rgba(255, 253, 247, 0.42);
  background-size: 32px 32px;
}

.intent-cell {
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px solid var(--page-accent-line);
  background: rgba(255, 253, 247, 0.74);
  color: var(--page-accent);
  font-size: 0.9rem;
  font-weight: 900;
  animation: cellPulse 3.8s ease-in-out infinite;
}

.cell-b { animation-delay: 0.55s; }
.cell-c { animation-delay: 1.1s; }
.cell-d { animation-delay: 1.65s; }

.intent-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 124px;
  height: 74px;
  border: 2px solid var(--page-accent);
  background: var(--ink);
  color: var(--paper-strong);
  box-shadow: 0 0 0 8px rgba(255, 253, 247, 0.75);
  transform: translate(-50%, -50%);
  animation: coreBeacon 2.8s ease-in-out infinite;
}

.intent-core span,
.intent-core strong {
  display: block;
  line-height: 1;
}

.intent-core span {
  color: #8ed8d0;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.intent-core strong {
  margin-top: 7px;
  font-size: 1.1rem;
}

.intent-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 96px;
  border: 1px solid var(--page-accent-line);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.72);
  animation: intentPulse 3.2s ease-out infinite;
}

.pulse-b {
  animation-delay: 1.6s;
}

.sector-network {
  overflow: hidden;
}

.sector-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border: 1px solid var(--page-accent);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-strong);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 0 0 14px rgba(255, 253, 247, 0.52);
  transform: translate(-50%, -50%);
  animation: coreBeacon 3s ease-in-out infinite;
}

.sector-chip {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 68px;
  min-height: 36px;
  border: 1px solid var(--page-accent-line);
  background: rgba(255, 253, 247, 0.82);
  color: var(--page-accent);
  font-size: 0.76rem;
  font-weight: 900;
  animation: labelFloat 3.6s ease-in-out infinite;
}

.sector-law { top: 16%; left: 14%; }
.sector-medical { top: 10%; right: 12%; animation-delay: 0.5s; }
.sector-tax { top: 47%; left: 2%; animation-delay: 1s; }
.sector-labor { top: 47%; right: 0; animation-delay: 1.5s; }
.sector-accounting { bottom: 10%; left: 38%; animation-delay: 2s; }

.sector-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42%;
  height: 1px;
  background: var(--page-accent-line);
  transform-origin: left center;
}

.line-a { transform: rotate(-148deg); }
.line-b { transform: rotate(-32deg); }
.line-c { transform: rotate(92deg); }

.channel-radar {
  overflow: hidden;
}

.channel-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border: 1px solid var(--page-accent);
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper-strong);
  box-shadow: 0 0 0 12px rgba(255, 253, 247, 0.48), 0 20px 50px rgba(23, 23, 18, 0.14);
  transform: translate(-50%, -50%);
  animation: coreBeacon 2.8s ease-in-out infinite;
}

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

.channel-core small {
  color: #e1b785;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.channel-core strong {
  margin-top: 8px;
  font-size: 1.2rem;
}

.channel-chip {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 72px;
  min-height: 34px;
  border: 1px solid var(--page-accent-line);
  background: rgba(255, 253, 247, 0.84);
  color: var(--page-accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  animation: labelFloat 3.4s ease-in-out infinite;
}

.channel-blog { top: 14%; left: 14%; }
.channel-cafe { top: 18%; right: 10%; animation-delay: 0.55s; }
.channel-video { right: 8%; bottom: 16%; animation-delay: 1.1s; }
.channel-ai { bottom: 12%; left: 14%; animation-delay: 1.65s; }

.channel-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px dashed var(--page-accent-line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbitSpin 20s linear infinite;
}

.ring-a { width: 72%; height: 52%; }
.ring-b { width: 54%; height: 76%; animation-direction: reverse; animation-duration: 15s; }

@keyframes visualSignal {
  0%, 100% { opacity: 0.35; transform: scaleX(0.55); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes visualFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes rowScan {
  0%, 100% { transform: scaleY(0.28); opacity: 0.42; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes routePulse {
  0%, 100% { opacity: 0.55; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes orbitSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes labelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes gateReveal {
  0%, 100% { opacity: 0.68; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(7px); }
}

@keyframes journeyScan {
  0% { left: 0; transform: scaleX(0.55); }
  50% { left: 72%; transform: scaleX(1); }
  100% { left: 0; transform: scaleX(0.55); }
}

@keyframes panelLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes cellPulse {
  0%, 100% { border-color: var(--page-accent-line); background: rgba(255, 253, 247, 0.7); }
  50% { border-color: var(--page-accent); background: rgba(255, 253, 247, 0.94); }
}

@keyframes intentPulse {
  0% { opacity: 0.7; transform: translate(-50%, -50%) scale(0.72); }
  80%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.42); }
}

@media (min-width: 1081px) {
  body[class*="page-"] .service-hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.75fr);
    column-gap: clamp(32px, 4vw, 72px);
  }

  body[class*="page-"] .service-hero-content {
    grid-column: 1;
    width: 100%;
    max-width: 760px;
  }

  .service-hero-visual {
    position: relative;
    top: auto;
    right: auto;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    width: 100%;
    height: min(430px, 52vh);
    min-height: 300px;
    transform: none;
  }
}

@media (max-width: 1080px) {
  body[class*="page-"] .service-hero-content {
    width: 100%;
  }

  .service-hero-visual {
    display: none;
  }
}

@media (max-width: 640px) {
  .result-stack {
    padding: 44px 18px 18px;
  }

  .result-row {
    min-height: 48px;
    padding: 0 11px;
  }

  .result-row span,
  .gate-check strong {
    font-size: 0.86rem;
  }

  .intent-matrix {
    gap: 8px;
    padding: 24px;
  }

  .intent-cell {
    min-height: 58px;
    font-size: 0.76rem;
  }

  .intent-core {
    width: 96px;
    height: 60px;
  }

  .channel-core,
  .sector-core {
    width: 104px;
    height: 104px;
  }

  .orbit-core {
    width: 102px;
    height: 102px;
  }

  .orbit-label,
  .sector-chip,
  .channel-chip {
    min-width: 56px;
    min-height: 28px;
    font-size: 0.64rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-hero-visual *,
  .service-hero-visual::before {
    animation: none !important;
  }
}

.consultation-modal.is-open .consultation-dialog {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 23, 18, 0.16);
  border-radius: 50%;
  background: rgba(246, 244, 238, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.consultation-copy {
  padding-right: 6px;
}

.consultation-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  word-break: keep-all;
}

.consultation-copy p:last-child {
  color: var(--muted);
  line-height: 1.82;
  word-break: keep-all;
}

.consultation-form {
  display: grid;
  gap: 14px;
}

.consultation-form label {
  display: grid;
  gap: 8px;
  color: rgba(23, 23, 18, 0.78);
  font-size: 0.9rem;
  font-weight: 900;
}

.consultation-form input,
.consultation-form textarea {
  width: 100%;
  border: 1px solid rgba(23, 23, 18, 0.18);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  outline: none;
}

.consultation-form input {
  min-height: 48px;
  padding: 0 14px;
}

.consultation-form textarea {
  resize: vertical;
  min-height: 120px;
  padding: 14px;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}


/* Persistent consultation CTA */
.floating-contact {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 40;
  display: flex;
  gap: 10px;
}

.floating-contact-link {
  display: grid;
  grid-template-columns: 32px auto;
  align-items: center;
  gap: 9px;
  min-width: 132px;
  min-height: 48px;
  border: 1px solid rgba(23, 23, 18, 0.16);
  border-radius: var(--radius);
  padding: 8px 12px 8px 8px;
  background: rgba(255, 253, 247, 0.9);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(23, 23, 18, 0.16);
  backdrop-filter: blur(16px);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.floating-contact-link:hover {
  border-color: rgba(15, 118, 110, 0.42);
  box-shadow: 0 22px 56px rgba(23, 23, 18, 0.22);
  transform: translateX(-4px);
}

.floating-contact-link.primary {
  background: rgba(23, 23, 18, 0.94);
  color: var(--paper-strong);
}

.floating-contact-link.kakao {
  background: rgba(255, 231, 77, 0.94);
  color: #211f16;
}

.floating-contact-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.16);
  font-size: 0.78rem;
  font-weight: 1000;
}

.floating-contact-link.kakao .floating-contact-icon {
  background: rgba(33, 31, 22, 0.12);
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .floating-contact {
    top: auto;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    transform: none;
  }

  .floating-contact-link {
    grid-template-columns: 26px minmax(0, max-content);
    justify-content: center;
    min-width: 0;
    min-height: 46px;
    padding: 8px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .floating-contact-link:hover {
    transform: translateY(-2px);
  }

  .floating-contact-icon {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-contact-link,
  .consultation-modal,
  .consultation-dialog {
    transition: none !important;
  }
}


/* Visibility hardening for floating CTA */
.floating-contact {
  z-index: 2147483000 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.floating-contact-link {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Final responsive overrides for consultation and trust sections */
@media (max-width: 1060px) {
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lab-profile-grid,
  .consultation-dialog {
    grid-template-columns: 1fr;
  }

  .lab-profile-panel {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .trust-strip,
  .form-two-col {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 23, 18, 0.1);
  }

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

  .profile-checklist div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .consultation-dialog {
    padding: 22px 18px;
  }
}

/* Automated research notes */
.article-page,
.posts-page {
  min-height: 100vh;
}

.article-shell {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
}

.article-hero,
.posts-hero {
  position: relative;
  overflow: hidden;
  padding: 172px 0 82px;
  background: var(--ink);
  color: var(--paper-strong);
}

.article-hero::after,
.posts-hero::after {
  position: absolute;
  inset: 28px clamp(20px, 5vw, 72px);
  border: 1px solid rgba(255, 253, 247, 0.11);
  content: "";
  pointer-events: none;
}

.article-hero .article-shell,
.posts-hero .article-shell {
  position: relative;
  z-index: 1;
}

.article-hero .breadcrumbs {
  margin-bottom: 44px;
  color: rgba(255, 253, 247, 0.7);
}

.article-hero .breadcrumbs a:hover {
  color: #6ee7db;
}

.article-hero .eyebrow,
.posts-hero .eyebrow {
  color: #6ee7db;
}

.article-hero h1,
.posts-hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: 4.7rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.article-dek,
.posts-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 253, 247, 0.78);
  font-size: 1.1rem;
  line-height: 1.8;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 38px;
  color: rgba(255, 253, 247, 0.62);
  font-size: 0.9rem;
}

.article-meta span::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 20px 2px 0;
  border-radius: 50%;
  background: #6ee7db;
  content: "";
}

.post-cover {
  width: min(100% - 40px, 1180px);
  margin: 58px auto 0;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 18, 0.14);
  border-radius: var(--radius);
  background: #dfddd5;
  box-shadow: var(--shadow);
}

.post-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.article-body {
  padding: 68px 0 128px;
}

.article-intro {
  max-width: 760px;
  margin: 0;
  color: #34332d;
  font-size: 1.3rem;
  font-weight: 650;
  line-height: 1.78;
}

.post-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 66px;
}

.post-keywords span {
  border: 1px solid rgba(15, 118, 110, 0.24);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.post-section {
  max-width: 760px;
  margin: 0 0 66px;
}

.post-section h2,
.post-related h2,
.posts-list-heading h2 {
  margin: 0 0 20px;
  font-size: 2rem;
  line-height: 1.2;
}

.post-section p {
  margin: 0 0 18px;
  color: #403e37;
  font-size: 1.04rem;
  line-height: 1.92;
}

.post-section ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.post-section li {
  position: relative;
  padding-left: 22px;
  color: #403e37;
  line-height: 1.65;
}

.post-section li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--copper);
  content: "";
}

.post-faq {
  margin-top: 12px;
}

.post-faq .section-kicker {
  margin-bottom: 12px;
}

.post-related {
  max-width: 820px;
  margin-top: 82px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.post-related h2 {
  max-width: 450px;
}

.post-related-kicker {
  margin: 42px 0 12px;
}

@media (max-width: 720px) {
  body.page-notes .posts-hero {
    min-height: 440px;
  }

  body.page-notes .posts-hero h1 {
    font-size: 2.7rem;
    line-height: 1.08;
    word-break: keep-all;
    overflow-wrap: normal;
  }
}

.post-related > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.post-related a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border: 1px solid rgba(23, 23, 18, 0.14);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--paper-strong);
  font-size: 0.92rem;
  font-weight: 850;
  transition: border-color 180ms ease, transform 180ms ease;
}

.post-related a:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
}

.posts-list-section {
  padding: 78px 0 128px;
}

.posts-list-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.posts-list-heading .section-kicker {
  margin-bottom: 10px;
}

.rss-link {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 8px 11px;
  font-size: 0.78rem;
  font-weight: 900;
}

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

.post-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.post-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.post-card .section-kicker {
  margin: 0;
  color: var(--teal-dark);
}

.post-card time {
  color: var(--muted);
  font-size: 0.82rem;
}

.post-card h2 {
  margin: 26px 0 12px;
  font-size: 1.55rem;
  line-height: 1.28;
}

.post-card h2 a:hover {
  color: var(--teal-dark);
}

.post-card p {
  margin: 0;
  color: #4d4a42;
  line-height: 1.7;
}

.post-card-link {
  display: inline-flex;
  gap: 9px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.empty-posts {
  margin: 42px 0 0;
  color: var(--muted);
}

.not-found-page {
  min-height: 100vh;
  margin: 0;
  background: #f4f2ec;
  color: #1b1a17;
}

.not-found-main {
  display: grid;
  min-height: 100vh;
  align-content: center;
  width: min(100% - 48px, 760px);
  margin: 0 auto;
  padding: 88px 0;
}

.not-found-main h1 {
  max-width: 680px;
  margin: 14px 0 20px;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.not-found-main > p:not(.eyebrow) {
  max-width: 530px;
  margin: 0;
  color: #4f4b43;
  font-size: 1.03rem;
  line-height: 1.8;
}

.not-found-main .button {
  justify-self: start;
  margin-top: 34px;
}

@media (max-width: 720px) {
  .article-shell,
  .post-cover {
    width: min(100% - 36px, 920px);
  }

  .article-hero,
  .posts-hero {
    padding: 132px 0 64px;
  }

  .article-hero::after,
  .posts-hero::after {
    inset: 16px 18px;
  }

  .article-hero .breadcrumbs {
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .article-hero h1,
  .posts-hero h1 {
    font-size: 2.7rem;
    line-height: 1.04;
  }

  .article-dek,
  .posts-hero p:not(.eyebrow) {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.74;
  }

  .article-meta {
    margin-top: 28px;
  }

  .article-meta span::before {
    margin-right: 10px;
  }

  .post-cover {
    margin-top: 32px;
  }

  .article-body {
    padding: 48px 0 96px;
  }

  .article-intro {
    font-size: 1.12rem;
  }

  .post-keywords {
    margin: 24px 0 48px;
  }

  .post-section {
    margin-bottom: 50px;
  }

  .post-section h2,
  .post-related h2,
  .posts-list-heading h2 {
    font-size: 1.65rem;
  }

  .post-section p {
    font-size: 1rem;
    line-height: 1.82;
  }

  .post-related {
    margin-top: 62px;
  }

  .post-related > div,
  .posts-list {
    grid-template-columns: 1fr;
  }

  .posts-list-section {
    padding: 52px 0 96px;
  }

  .posts-list-heading {
    align-items: start;
  }

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

  .not-found-main {
    width: min(100% - 40px, 760px);
    padding: 64px 0;
  }
}

/* Bright execution-led homepage rebuild */
:root {
  --paper: #f8faf8;
  --paper-strong: #ffffff;
  --ink: #151918;
  --muted: #626a68;
  --line: rgba(21, 25, 24, 0.14);
  --teal: #0b53e5;
  --teal-dark: #073db4;
  --copper: #f15d38;
  --red: #e33d2f;
  --violet: #0b53e5;
  --shadow: 0 28px 74px rgba(21, 25, 24, 0.12);
}

.home-page {
  overflow-x: clip;
  background: var(--paper);
}

.home-page .site-header {
  border-color: rgba(21, 25, 24, 0.1);
  background: rgba(255, 255, 255, 0.84);
}

.home-page .nav-links a::after {
  height: 2px;
  background: #0b53e5;
}

.home-page .nav-cta,
.home-page .button.primary {
  background: #0b53e5;
  color: #fff;
}

.execution-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: max(760px, 100svh);
  overflow: hidden;
  align-items: center;
  background: #e8edf2;
  color: var(--ink);
}

.hero-fallback,
.execution-hero .direct-video,
.hero-video-wash,
.hero-gridline {
  position: absolute;
  inset: 0;
}

.hero-fallback {
  z-index: 0;
  overflow: hidden;
  background:
    linear-gradient(128deg, rgba(11, 83, 229, 0.16), transparent 54%),
    repeating-linear-gradient(90deg, rgba(21, 25, 24, 0.07) 0 1px, transparent 1px 68px),
    #e8edf2;
}

.hero-fallback span,
.hero-fallback i {
  position: absolute;
  display: block;
  border: 1px solid rgba(11, 83, 229, 0.32);
}

.hero-fallback span:first-child {
  top: 14%;
  right: 5%;
  width: 52vw;
  height: 64%;
  transform: rotate(-8deg);
}

.hero-fallback span:nth-child(2) {
  right: 17%;
  bottom: 12%;
  width: 30vw;
  height: 37%;
  border-color: rgba(241, 93, 56, 0.48);
  transform: rotate(8deg);
}

.hero-fallback i {
  top: 50%;
  right: 27%;
  width: 12px;
  height: 12px;
  background: #d9ff38;
  box-shadow: 0 0 0 12px rgba(217, 255, 56, 0.22);
  animation: homeSignalPulse 2.8s ease-in-out infinite;
}

.execution-hero .direct-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0;
  transition: opacity 680ms ease;
}

.execution-hero .direct-video.is-ready {
  opacity: 1;
}

.hero-video-wash {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(248, 250, 248, 0.92) 0%, rgba(248, 250, 248, 0.84) 13%, rgba(248, 250, 248, 0.5) 27%, rgba(248, 250, 248, 0.14) 43%, rgba(248, 250, 248, 0.02) 62%, transparent 100%),
    linear-gradient(0deg, rgba(248, 250, 248, 0.18), transparent 40%);
}

.hero-gridline {
  z-index: 3;
  opacity: 0.46;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 65%, rgba(21, 25, 24, 0.13) 65.05% 65.12%, transparent 65.2%),
    linear-gradient(0deg, transparent 0 11%, rgba(21, 25, 24, 0.12) 11.05% 11.12%, transparent 11.2%);
}

.execution-hero-inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 290px);
  align-items: end;
  gap: 44px;
  width: min(100% - 96px, 1320px);
  margin: 84px auto 100px;
}

.execution-hero-copy {
  max-width: 650px;
}

.execution-hero .eyebrow {
  margin-bottom: 24px;
  color: #0b53e5;
}

.execution-hero h1 {
  margin: 0;
  font-size: clamp(3.35rem, 6.35vw, 6.55rem);
  line-height: 0.91;
  letter-spacing: 0;
  word-break: keep-all;
}

.hero-description {
  max-width: 590px;
  margin: 30px 0 0;
  color: #434b49;
  font-size: clamp(1.04rem, 1.45vw, 1.22rem);
  line-height: 1.75;
  word-break: keep-all;
}

.hero-action-row {
  align-items: center;
  margin-top: 32px;
}

.hero-primary {
  min-width: 154px;
  box-shadow: 0 16px 34px rgba(11, 83, 229, 0.26);
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 6px;
  border-bottom: 1px solid rgba(21, 25, 24, 0.36);
  font-size: 0.93rem;
  font-weight: 900;
  transition: color 180ms ease, border-color 180ms ease;
}

.hero-text-link span {
  color: #0b53e5;
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.hero-text-link:hover {
  border-color: #0b53e5;
  color: #0b53e5;
}

.hero-text-link:hover span {
  transform: translateY(3px);
}

.hero-signal {
  padding: 22px 0 0 24px;
  border-left: 2px solid #0b53e5;
  color: #151918;
}

.signal-label {
  display: block;
  margin-bottom: 18px;
  color: #0b53e5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.hero-signal strong {
  display: block;
  font-size: clamp(1.15rem, 1.9vw, 1.74rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.signal-rule {
  position: relative;
  height: 2px;
  margin: 24px 0 14px;
  overflow: hidden;
  background: rgba(21, 25, 24, 0.16);
}

.signal-rule i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 36%;
  background: #d9ff38;
  animation: signalRuleTravel 2.8s ease-in-out infinite;
}

.hero-signal p {
  margin: 0;
  color: #59615f;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.6;
}

.hero-bottomline {
  position: absolute;
  z-index: 4;
  right: 48px;
  bottom: 30px;
  left: 48px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(21, 25, 24, 0.2);
  color: #4d5654;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.execution-ticker {
  overflow: hidden;
  padding: 19px 0 17px;
  background: #0b53e5;
  color: #fff;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 26px;
  padding-left: 26px;
  font-size: clamp(1rem, 1.45vw, 1.36rem);
  font-weight: 900;
  white-space: nowrap;
  animation: executionTicker 24s linear infinite;
}

.ticker-track i {
  color: #d9ff38;
  font-size: 0.84em;
  font-style: normal;
}

.execution-section {
  padding: clamp(90px, 13vw, 176px) 0 0;
  background: #f8faf8;
}

.execution-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  column-gap: clamp(42px, 8vw, 126px);
  align-items: end;
  padding-bottom: 66px;
}

.execution-heading .section-kicker {
  grid-column: 1 / -1;
  color: #0b53e5;
}

.execution-heading h2,
.sector-intro h2,
.channel-copy h2,
.runway-copy h2,
.insight-layout h2,
.diagnosis-rebuild h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
  word-break: keep-all;
}

.execution-heading > p:last-child,
.sector-intro > p,
.channel-copy > p,
.runway-copy > p,
.insight-layout > p,
.diagnosis-rebuild h2 + p {
  margin: 0 0 7px;
  color: #5b6462;
  font-size: 1.02rem;
  line-height: 1.8;
  word-break: keep-all;
}

.execution-ledger {
  border-top: 1px solid rgba(21, 25, 24, 0.22);
}

.execution-row {
  display: grid;
  grid-template-columns: 82px minmax(220px, 1fr) minmax(280px, 0.9fr) 40px;
  align-items: center;
  gap: 20px;
  min-height: 138px;
  padding: 20px max(48px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid rgba(21, 25, 24, 0.18);
  background: #f8faf8;
  transition: background 260ms ease, color 260ms ease, padding 260ms ease;
}

.execution-row:hover {
  padding-right: max(62px, calc((100vw - 1288px) / 2));
  background: #d9ff38;
}

.execution-row > span {
  color: #0b53e5;
  font-size: 0.76rem;
  font-weight: 900;
}

.execution-row strong {
  font-size: clamp(1.34rem, 2vw, 2rem);
  line-height: 1.15;
  word-break: keep-all;
}

.execution-row p {
  margin: 0;
  color: #5b6462;
  font-size: 0.94rem;
  line-height: 1.65;
}

.execution-row b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform 220ms ease, background 220ms ease;
}

.execution-row:hover b {
  background: #0b53e5;
  color: #fff;
  transform: rotate(45deg);
}

.channel-section {
  overflow: hidden;
  padding: clamp(92px, 12vw, 166px) 0;
  background: #0b53e5;
  color: #fff;
}

.channel-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(44px, 9vw, 148px);
  align-items: center;
}

.channel-copy .section-kicker,
.runway-copy .section-kicker {
  color: #d9ff38;
}

.channel-copy > p,
.runway-copy > p {
  max-width: 430px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
}

.channel-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  padding: clamp(24px, 4vw, 52px);
  background: rgba(255, 255, 255, 0.08);
}

.channel-console::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -18%;
  width: 14%;
  background: linear-gradient(90deg, transparent, rgba(217, 255, 56, 0.72), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: consoleSweep 5.6s ease-in-out infinite;
}

.console-head,
.console-stream,
.platform-lines div {
  position: relative;
  z-index: 1;
}

.console-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.console-head i {
  color: #d9ff38;
  font-style: normal;
}

.console-stream {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 28px 0;
  color: #d9ff38;
  font-size: clamp(0.75rem, 1vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.07em;
}

.console-stream b {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.64);
}

.platform-lines {
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.platform-lines div {
  display: grid;
  grid-template-columns: 108px 1fr 22px;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-lines strong {
  color: #d9ff38;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.platform-lines span {
  font-size: 0.92rem;
  line-height: 1.45;
}

.platform-lines i {
  width: 9px;
  height: 9px;
  background: #fff;
  animation: platformBlink 1.8s ease-in-out infinite;
}

.platform-lines div:nth-child(2) i { animation-delay: 0.3s; }
.platform-lines div:nth-child(3) i { animation-delay: 0.6s; }
.platform-lines div:nth-child(4) i { animation-delay: 0.9s; }

.sector-section {
  padding: clamp(92px, 13vw, 178px) 0;
  background: #fff;
}

.sector-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: clamp(38px, 10vw, 154px);
  align-items: end;
}

.sector-intro .section-kicker {
  color: #f15d38;
}

.sector-tabs {
  --sector-indicator-x: 0px;
  --sector-indicator-width: 0px;
  position: relative;
  display: flex;
  gap: 26px;
  margin-top: 78px;
  border-bottom: 1px solid rgba(21, 25, 24, 0.18);
}

.sector-tabs::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: var(--sector-indicator-width);
  height: 3px;
  background: #f15d38;
  content: "";
  transform: translateX(var(--sector-indicator-x));
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), width 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sector-tabs button {
  position: relative;
  padding: 0 0 18px;
  border: 0;
  background: none;
  color: #7b8380;
  cursor: pointer;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0;
}

.sector-tabs button::after {
  display: none;
}

.sector-tabs button[aria-selected="true"] {
  color: #151918;
}

.sector-tabs button[aria-selected="true"]::after {
  display: none;
}

.sector-panels {
  margin-top: 42px;
}

.sector-panel {
  display: grid;
  grid-template-columns: 0.48fr 1fr minmax(190px, 0.54fr);
  gap: 40px;
  align-items: start;
  min-height: 304px;
  padding: clamp(28px, 4vw, 58px) 0;
  border-top: 1px solid #151918;
  border-bottom: 1px solid rgba(21, 25, 24, 0.22);
}

.sector-panel > span {
  color: #f15d38;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.sector-panel h3 {
  max-width: 500px;
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: 0;
  word-break: keep-all;
}

.sector-panel p {
  grid-column: 2 / 3;
  max-width: 500px;
  margin: 12px 0 0;
  color: #59615f;
  line-height: 1.8;
}

.sector-panel a {
  justify-self: end;
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #151918;
  font-size: 0.9rem;
  font-weight: 900;
  transition: color 180ms ease, border-color 180ms ease;
}

.sector-panel a b {
  color: #f15d38;
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.sector-panel a:hover {
  border-color: #f15d38;
  color: #f15d38;
}

.sector-panel a:hover b {
  transform: translate(3px, -3px);
}

@media (prefers-reduced-motion: reduce) {
  .sector-tabs::after {
    transition: none;
  }
}

.runway-section {
  overflow: hidden;
  padding: clamp(90px, 12vw, 170px) 0;
  background: #0b53e5;
  color: #fff;
}

.runway-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 8vw, 122px);
  align-items: center;
}

.runway-stage {
  position: relative;
  min-height: 420px;
}

.runway-track {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
}

.runway-track i {
  display: block;
  width: 100%;
  height: 100%;
  background: #d9ff38;
  transform: scaleX(0);
  transform-origin: left;
}

.runway-stage ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  height: 420px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.runway-stage li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 72px 16px 42px;
}

.runway-stage li:nth-child(odd) {
  justify-content: flex-start;
}

.runway-stage li::before {
  position: absolute;
  top: calc(50% - 7px);
  left: 16px;
  width: 14px;
  height: 14px;
  background: #fff;
  content: "";
  transform: rotate(45deg);
}

.runway-stage li:nth-child(even) {
  justify-content: flex-end;
  padding: 42px 16px 72px;
}

.runway-stage li:nth-child(even)::before {
  top: calc(50% - 7px);
}

.runway-stage li span {
  margin-bottom: 12px;
  color: #d9ff38;
  font-size: 0.74rem;
  font-weight: 900;
}

.runway-stage li strong {
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  line-height: 1.2;
}

.runway-stage li p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  line-height: 1.55;
  word-break: keep-all;
}

.insight-strip {
  padding: clamp(78px, 10vw, 134px) 0;
  background: #d9ff38;
}

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr) auto;
  gap: 56px;
  align-items: end;
}

.insight-layout .section-kicker {
  color: #0b53e5;
}

.insight-layout > p {
  color: #35403c;
}

.insight-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 18px;
  background: #151918;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.insight-link:hover {
  background: #0b53e5;
  transform: translateY(-3px);
}

.diagnosis-rebuild {
  padding: clamp(96px, 13vw, 176px) 0;
  background: #fff;
}

.diagnosis-rebuild .section-kicker {
  color: #0b53e5;
}

.diagnosis-rebuild .diagnosis-grid {
  gap: clamp(42px, 8vw, 122px);
}

.diagnosis-rebuild .diagnosis-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.diagnosis-rebuild .diagnosis-form input,
.diagnosis-rebuild .diagnosis-form textarea {
  border-color: rgba(21, 25, 24, 0.25);
  background: #f8faf8;
}

.home-page .floating-contact-link.primary {
  background: #0b53e5;
}

.home-page .floating-contact-link.kakao {
  background: #d9ff38;
}

@keyframes homeSignalPulse {
  0%, 100% { transform: scale(0.86) rotate(45deg); opacity: 0.7; }
  50% { transform: scale(1.18) rotate(45deg); opacity: 1; }
}

@keyframes signalRuleTravel {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(178%); }
}

@keyframes executionTicker {
  to { transform: translateX(-38%); }
}

@keyframes consoleSweep {
  0%, 24% { transform: translateX(0) skewX(-18deg); }
  70%, 100% { transform: translateX(950%) skewX(-18deg); }
}

@keyframes platformBlink {
  0%, 100% { opacity: 0.35; transform: scale(0.75); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 1080px) {
  .execution-hero-inner,
  .channel-layout,
  .runway-shell,
  .execution-heading,
  .sector-intro,
  .insight-layout {
    grid-template-columns: 1fr;
  }

  .execution-hero-inner {
    width: min(100% - 56px, 900px);
    gap: 38px;
    margin-bottom: 102px;
  }

  .hero-signal {
    display: none;
  }

  .execution-heading > p:last-child {
    max-width: 570px;
    margin-top: 26px;
  }

  .execution-row {
    grid-template-columns: 68px minmax(220px, 1fr) minmax(200px, 0.9fr) 38px;
    padding-right: 34px;
    padding-left: 34px;
  }

  .channel-layout {
    gap: 64px;
  }

  .sector-intro > p {
    max-width: 580px;
    margin-top: 26px;
  }

  .sector-panel {
    grid-template-columns: 0.4fr 1fr;
  }

  .sector-panel p {
    grid-column: 2;
  }

  .sector-panel a {
    grid-column: 2;
    justify-self: start;
  }

  .insight-layout > p {
    max-width: 520px;
  }

  .insight-link {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  body.page-notes .posts-hero {
    min-height: 440px;
  }

  body.page-notes .posts-hero h1 {
    font-size: 2.7rem;
    line-height: 1.08;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  body.page-notes .posts-list-section {
    padding-bottom: 180px;
  }

  .home-page .site-header {
    gap: 12px;
    padding: 12px 20px;
  }

  .home-page .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .home-page .brand-mark strong {
    font-size: 0.85rem;
  }

  .home-page .brand-mark small,
  .home-page .nav-links {
    display: none;
  }

  .home-page .nav-cta {
    min-width: 86px;
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .execution-hero {
    min-height: max(690px, 100svh);
  }

  .execution-hero .direct-video {
    object-position: 72% top;
  }

  .hero-video-wash {
    background:
      linear-gradient(180deg, rgba(248, 250, 248, 0.04) 0%, rgba(248, 250, 248, 0.12) 34%, rgba(248, 250, 248, 0.5) 66%, rgba(248, 250, 248, 0.9) 100%),
      linear-gradient(90deg, rgba(248, 250, 248, 0.08), transparent 85%);
  }

  .execution-hero-inner {
    width: min(100% - 40px, 620px);
    align-self: start;
    margin: 88px auto 112px;
  }

  .execution-hero h1 {
    font-size: clamp(2.8rem, 12vw, 3.5rem);
    line-height: 0.93;
    text-shadow: 0 2px 22px rgba(248, 250, 248, 0.5);
  }

  .execution-hero .eyebrow,
  .hero-description,
  .hero-action-row {
    text-shadow: 0 1px 16px rgba(248, 250, 248, 0.72);
  }

  .hero-description {
    max-width: 345px;
    margin-top: 24px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero-action-row {
    gap: 14px;
    margin-top: 26px;
  }

  .hero-primary {
    min-width: 126px;
    min-height: 46px;
    padding: 0 16px;
  }

  .hero-text-link {
    min-height: 46px;
    font-size: 0.82rem;
  }

  .hero-bottomline {
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 18px;
    padding-top: 12px;
    font-size: 0.61rem;
  }

  .execution-ticker {
    padding: 15px 0;
  }

  .ticker-track {
    gap: 18px;
    font-size: 0.93rem;
  }

  .execution-section,
  .channel-section,
  .sector-section,
  .runway-section,
  .diagnosis-rebuild {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .execution-heading {
    padding-bottom: 42px;
  }

  .execution-heading h2,
  .sector-intro h2,
  .channel-copy h2,
  .runway-copy h2,
  .insight-layout h2,
  .diagnosis-rebuild h2 {
    font-size: clamp(2.4rem, 11vw, 3.7rem);
  }

  .execution-heading > p:last-child,
  .sector-intro > p,
  .channel-copy > p,
  .runway-copy > p,
  .insight-layout > p,
  .diagnosis-rebuild h2 + p {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .execution-row {
    grid-template-columns: 42px minmax(0, 1fr) 30px;
    gap: 12px;
    min-height: 154px;
    padding: 24px 20px;
  }

  .execution-row p {
    grid-column: 2;
    font-size: 0.82rem;
  }

  .execution-row b {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    width: 30px;
    height: 30px;
  }

  .channel-layout {
    gap: 48px;
  }

  .channel-console {
    padding: 22px 18px;
  }

  .console-stream {
    flex-wrap: wrap;
    padding: 22px 0;
    font-size: 0.67rem;
  }

  .console-stream b {
    width: 16px;
  }

  .platform-lines div {
    grid-template-columns: 75px minmax(0, 1fr) 10px;
    gap: 10px;
    min-height: 78px;
  }

  .platform-lines strong,
  .platform-lines span {
    font-size: 0.72rem;
  }

  .sector-tabs {
    gap: 17px;
    margin-top: 48px;
    overflow-x: auto;
  }

  .sector-tabs button {
    flex: 0 0 auto;
    padding-bottom: 14px;
    font-size: 0.94rem;
  }

  .sector-panels {
    margin-top: 30px;
  }

  .sector-panel {
    display: block;
    min-height: 0;
    padding: 28px 0 38px;
  }

  .sector-panel h3 {
    margin-top: 24px;
    font-size: clamp(2rem, 9.3vw, 3rem);
  }

  .sector-panel p {
    margin-top: 20px;
    font-size: 0.93rem;
  }

  .sector-panel a {
    margin-top: 28px;
    font-size: 0.84rem;
  }

  .runway-stage,
  .runway-stage ol {
    min-height: 0;
    height: auto;
  }

  .runway-track {
    top: 24px;
    right: auto;
    bottom: 24px;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .runway-track i {
    width: 100%;
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
  }

  .runway-stage ol {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .runway-stage li,
  .runway-stage li:nth-child(odd),
  .runway-stage li:nth-child(even) {
    min-height: 118px;
    padding: 0 0 0 38px;
    justify-content: center;
  }

  .runway-stage li::before,
  .runway-stage li:nth-child(even)::before {
    top: 20px;
    left: 0;
  }

  .runway-stage li span {
    margin-bottom: 7px;
  }

  .runway-stage li p {
    margin-top: 5px;
    font-size: 0.77rem;
  }

  .insight-strip {
    padding: 74px 0;
  }

  .insight-layout {
    gap: 28px;
  }

  .diagnosis-rebuild .diagnosis-grid {
    gap: 42px;
  }

  .home-page .floating-contact {
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom)) !important;
    left: 12px !important;
  }

  .home-page .floating-contact-link {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-fallback i,
  .signal-rule i,
  .ticker-track,
  .channel-console::before,
  .platform-lines i {
    animation: none !important;
  }
}

/* Bright execution system for every secondary page */
body[class*="page-"] {
  background: #f8faf8;
  color: #151918;
}

body.page-legal-advertising,
body.page-lawyer-advertising {
  --page-accent: #e95549;
  --page-accent-soft: rgba(233, 85, 73, 0.13);
  --page-accent-line: rgba(233, 85, 73, 0.36);
}

body.page-legal-marketing,
body.page-lawyer-marketing,
body.page-professional-advertising {
  --page-accent: #0b53e5;
  --page-accent-soft: rgba(11, 83, 229, 0.12);
  --page-accent-line: rgba(11, 83, 229, 0.32);
}

body.page-hospital-advertising {
  --page-accent: #087b78;
  --page-accent-soft: rgba(8, 123, 120, 0.12);
  --page-accent-line: rgba(8, 123, 120, 0.34);
}

body.page-professional-marketing {
  --page-accent: #db4d44;
  --page-accent-soft: rgba(219, 77, 68, 0.12);
  --page-accent-line: rgba(219, 77, 68, 0.34);
}

body:not(.home-page) .site-header {
  min-height: 80px;
  border-color: rgba(21, 25, 24, 0.12);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: none;
}

body:not(.home-page) .brand-symbol {
  border-color: #151918;
  background: #fff;
}

body:not(.home-page) .nav-links {
  color: #4d5654;
}

body:not(.home-page) .nav-links a::after {
  height: 2px;
  background: #0b53e5;
}

body:not(.home-page) .nav-cta,
body:not(.home-page) .button.primary {
  border-color: #0b53e5;
  background: #0b53e5;
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 83, 229, 0.2);
}

body[class*="page-"] .service-hero {
  isolation: isolate;
  min-height: 720px;
  padding: 152px clamp(28px, 5vw, 76px) 90px;
  border-bottom: 1px solid rgba(21, 25, 24, 0.14);
  background: #f8faf8;
}

body[class*="page-"] .service-hero::before {
  position: absolute;
  top: 80px;
  right: clamp(28px, 5vw, 76px);
  bottom: 0;
  width: min(34vw, 480px);
  border-right: 1px solid var(--page-accent-line);
  border-left: 1px solid var(--page-accent-line);
  content: "";
  pointer-events: none;
}

body[class*="page-"] .service-hero-content {
  z-index: 2;
  width: min(760px, 56vw);
  max-width: 760px;
}

body[class*="page-"] .service-hero h1 {
  max-width: 780px;
  font-size: clamp(3.5rem, 5.8vw, 6.65rem);
  line-height: 0.94;
}

body[class*="page-"] .breadcrumbs {
  color: #66706d;
}

body[class*="page-"] .service-hero .eyebrow,
body[class*="page-"] .service-grid .section-kicker,
body[class*="page-"] .section-heading .section-kicker {
  color: var(--page-accent);
}

body[class*="page-"] .service-copy {
  max-width: 660px;
  color: #3f4947;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

body[class*="page-"] .keyword-pills span {
  border-radius: 2px;
  border-color: var(--page-accent-line);
  background: #fff;
  color: var(--page-accent);
}

body[class*="page-"] .service-hero-visual {
  z-index: 2;
  border: 1px solid var(--page-accent-line);
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 18px 18px 0 rgba(21, 25, 24, 0.04);
}

body[class*="page-"] .service-hero-visual::after {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 2px;
  background: #d9ff38;
  content: "";
  animation: secondaryPageScan 3.4s ease-in-out infinite;
}

body[class*="page-"] .section {
  padding-top: clamp(82px, 9vw, 144px);
  padding-bottom: clamp(82px, 9vw, 144px);
  border-color: rgba(21, 25, 24, 0.13);
  background: #fff;
}

body[class*="page-"] .system-section {
  background: #edf3ff;
}

body[class*="page-"] .service-grid,
body[class*="page-"] .section-heading {
  max-width: 1210px;
}

body[class*="page-"] .service-grid h2,
body[class*="page-"] .section-heading h2 {
  max-width: 600px;
  font-size: clamp(2.35rem, 3.7vw, 4.25rem);
  line-height: 1.03;
}

body[class*="page-"] .service-body {
  padding-top: 8px;
}

body[class*="page-"] .service-body p,
body[class*="page-"] .service-list li {
  color: #4d5654;
}

body[class*="page-"] .service-list li {
  padding: 18px 0 0;
  border-color: rgba(21, 25, 24, 0.18);
}

body[class*="page-"] .service-list strong {
  color: #151918;
}

body[class*="page-"] .service-card-grid {
  gap: 0;
  border-top: 1px solid rgba(21, 25, 24, 0.18);
  border-left: 1px solid rgba(21, 25, 24, 0.18);
}

body[class*="page-"] .service-card {
  min-height: 256px;
  padding: clamp(24px, 3vw, 38px);
  border: 0;
  border-right: 1px solid rgba(21, 25, 24, 0.18);
  border-bottom: 1px solid rgba(21, 25, 24, 0.18);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

body[class*="page-"] .service-card::before {
  height: 4px;
  background: var(--page-accent);
}

body[class*="page-"] .service-card h3 {
  max-width: 230px;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
}

body[class*="page-"] .service-card p {
  max-width: 280px;
  color: #59615f;
}

body[class*="page-"] .faq-section {
  background: #f8faf8;
}

body[class*="page-"] .faq-list details {
  border-color: rgba(21, 25, 24, 0.2);
  border-radius: 0;
  background: #fff;
}

body[class*="page-"] .faq-list details[open] {
  border-left: 4px solid var(--page-accent);
}

body[class*="page-"] .faq-list summary {
  padding: 22px 24px;
}

body[class*="page-"] .faq-list p {
  padding: 0 24px 24px;
}

body[class*="page-"] .site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  background: #151918;
}

body[class*="page-"] .site-footer a {
  color: #d9ff38;
}

body[class*="page-"] .floating-contact-link.primary {
  border-color: #0b53e5;
  background: #0b53e5;
}

body[class*="page-"] .floating-contact-link.kakao {
  border-color: #c5e928;
  background: #d9ff38;
}

body.page-notes .posts-hero {
  min-height: 620px;
  border-bottom: 0;
  background: #0b53e5;
}

body.page-notes .posts-hero::after {
  inset: 80px clamp(28px, 5vw, 76px) 28px;
  border-color: rgba(255, 255, 255, 0.3);
}

body.page-notes .posts-hero .eyebrow {
  color: #d9ff38;
}

body.page-notes .posts-hero h1 {
  max-width: 860px;
  font-size: clamp(3.4rem, 6.5vw, 7rem);
  line-height: 0.94;
}

body.page-notes .posts-hero p:not(.eyebrow) {
  max-width: 710px;
  color: rgba(255, 255, 255, 0.82);
}

body.page-notes .posts-list-section {
  background: #f8faf8;
}

body.page-notes .posts-list-heading {
  border-color: rgba(21, 25, 24, 0.2);
}

body.page-notes .rss-link {
  border-radius: 0;
  border-color: #0b53e5;
  color: #0b53e5;
}

body.page-policy .policy-hero {
  padding: 148px clamp(28px, 5vw, 76px) 86px;
  border-bottom: 1px solid rgba(21, 25, 24, 0.14);
  background: #edf3ff;
}

body.page-policy .policy-hero h1 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

body.page-policy .policy-section {
  background: #f8faf8;
}

body.page-policy .policy-toc,
body.page-policy .policy-content {
  border-radius: 0;
  box-shadow: none;
}

body.not-found-page {
  background: #f8faf8;
}

body.not-found-page .not-found-main {
  background: #0b53e5;
}

@keyframes secondaryPageScan {
  0%, 100% { transform: translateX(0); opacity: 0.45; }
  50% { transform: translateX(300px); opacity: 1; }
}

@media (max-width: 1080px) {
  body[class*="page-"] .service-hero {
    min-height: 680px;
  }

  body[class*="page-"] .service-hero::before {
    display: none;
  }

  body[class*="page-"] .service-hero-content {
    width: 100%;
  }

  body[class*="page-"] .service-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body:not(.home-page) .site-header {
    min-height: 64px;
  }

  body[class*="page-"] .service-hero {
    min-height: 640px;
    padding: 112px 20px 68px;
  }

  body[class*="page-"] .service-hero h1 {
    font-size: clamp(2.85rem, 12vw, 4rem);
    line-height: 0.95;
  }

  body[class*="page-"] .service-copy {
    font-size: 0.98rem;
  }

  body[class*="page-"] .keyword-pills {
    margin-top: 24px;
  }

  body[class*="page-"] .keyword-pills span {
    font-size: 0.76rem;
  }

  body[class*="page-"] .section {
    padding: 76px 20px;
  }

  body[class*="page-"] .service-card-grid {
    grid-template-columns: 1fr;
  }

  body[class*="page-"] .service-card {
    min-height: 196px;
  }

  body.page-notes .posts-hero {
    min-height: 440px;
  }

  body.page-notes .posts-hero h1 {
    font-size: 2.7rem;
    line-height: 1.08;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  body.page-notes .posts-list-section {
    padding-bottom: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[class*="page-"] .service-hero-visual::after {
    animation: none !important;
  }
}

/* Research-note publishing layout */
body.page-notes .article-hero {
  padding: 156px 0 74px;
  background: #0b53e5;
}

body.page-notes .article-hero::after {
  inset: 80px clamp(28px, 5vw, 76px) 28px;
  border-color: rgba(255, 255, 255, 0.3);
}

body.page-notes .article-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.76);
}

body.page-notes .article-hero .eyebrow {
  color: #d9ff38;
}

body.page-notes .article-hero h1 {
  max-width: 860px;
  font-size: clamp(3.15rem, 6.2vw, 6.8rem);
  line-height: 0.94;
}

body.page-notes .article-hero .article-dek {
  color: rgba(255, 255, 255, 0.84);
}

body.page-notes .article-meta span::before {
  background: #d9ff38;
}

.article-question {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  max-width: 820px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.article-question span {
  color: #d9ff38;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.article-question strong {
  font-size: 1.02rem;
  line-height: 1.6;
  word-break: keep-all;
}

body.page-notes .post-cover {
  margin-top: 42px;
  border-color: rgba(11, 83, 229, 0.26);
  border-radius: 0;
  background: #edf3ff;
  box-shadow: 16px 16px 0 rgba(11, 83, 229, 0.08);
}

body.page-notes .article-body {
  padding-top: 76px;
}

body.page-notes .article-intro {
  max-width: 800px;
  color: #283230;
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  line-height: 1.78;
}

body.page-notes .post-keywords {
  margin-bottom: 54px;
}

body.page-notes .post-keywords span {
  border-radius: 2px;
  border-color: rgba(11, 83, 229, 0.28);
  background: #fff;
  color: #0b53e5;
}

.post-brief {
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  margin: 0 0 44px;
  padding: 34px 0;
  border-top: 2px solid #151918;
  border-bottom: 1px solid rgba(21, 25, 24, 0.18);
}

.post-brief .section-kicker,
.post-section-number,
.post-toc > span,
.post-sources .section-kicker {
  color: #0b53e5;
}

.post-brief h2,
.post-sources h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  line-height: 1.1;
}

.post-brief ol,
.post-toc ol,
.post-sources ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.post-brief ol {
  display: grid;
  gap: 14px;
}

.post-brief li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
}

.post-brief li > span,
.post-toc li span {
  color: #e95549;
  font-size: 0.74rem;
  font-weight: 900;
}

.post-brief li p {
  margin: 0;
  color: #4d5654;
  line-height: 1.65;
  word-break: keep-all;
}

.post-toc {
  margin: 0 0 76px;
  border-bottom: 1px solid rgba(21, 25, 24, 0.18);
}

.post-toc > span {
  display: block;
  padding: 0 0 14px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.post-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(21, 25, 24, 0.18);
  border-left: 1px solid rgba(21, 25, 24, 0.18);
}

.post-toc li {
  border-right: 1px solid rgba(21, 25, 24, 0.18);
  border-bottom: 1px solid rgba(21, 25, 24, 0.18);
}

.post-toc a {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  min-height: 72px;
  align-items: center;
  padding: 16px;
  background: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  transition: background 180ms ease, color 180ms ease;
}

.post-toc a:hover {
  background: #edf3ff;
  color: #0b53e5;
}

body.page-notes .post-section {
  position: relative;
  max-width: 800px;
  margin-bottom: 80px;
  padding-left: 58px;
}

body.page-notes .post-section-number {
  position: absolute;
  top: 7px;
  left: 0;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
}

body.page-notes .post-section h2 {
  margin-bottom: 24px;
  font-size: clamp(1.75rem, 3.1vw, 2.65rem);
  line-height: 1.16;
}

body.page-notes .post-section p,
body.page-notes .post-section li {
  color: #424b49;
}

body.page-notes .post-section li::before {
  background: #e95549;
}

body.page-notes .post-faq {
  max-width: 800px;
  padding-left: 0;
}

/* Field-guide hubs */
body.page-guides {
  background: #f8faf8;
  color: #151918;
}

.guide-index-page {
  min-height: 100vh;
  background: #f8faf8;
}

.guide-index-hero {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  padding: 180px 0 88px;
  overflow: hidden;
  background: #0b53e5;
  color: #fff;
}

.guide-index-hero::before,
.guide-index-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.guide-index-hero::before {
  inset: 80px max(28px, calc((100vw - 1320px) / 2)) 28px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.guide-index-hero::after {
  right: -8vw;
  bottom: -13vw;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(217, 255, 56, 0.7);
  transform: rotate(18deg);
}

.guide-index-hero .article-shell {
  position: relative;
  z-index: 1;
}

.guide-index-hero .breadcrumbs {
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.74);
}

.guide-index-hero .eyebrow {
  color: #d9ff38;
}

.guide-index-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3.4rem, 6.8vw, 7.4rem);
  line-height: 0.92;
  word-break: keep-all;
}

.guide-index-hero p:last-child {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.75;
  word-break: keep-all;
}

.guide-collection-section,
.guide-latest-section,
.guide-check-section {
  padding: 108px 0;
}

.guide-collection-section {
  background: #f8faf8;
}

.guide-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 1.2fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 50px;
}

.guide-section-heading .section-kicker {
  margin: 0;
  color: #0b53e5;
}

.guide-section-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  line-height: 0.96;
  word-break: keep-all;
}

.guide-collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(21, 25, 24, 0.18);
  border-left: 1px solid rgba(21, 25, 24, 0.18);
}

.guide-collection-card {
  position: relative;
  display: grid;
  min-height: 300px;
  align-content: start;
  gap: 18px;
  padding: 34px;
  border-right: 1px solid rgba(21, 25, 24, 0.18);
  border-bottom: 1px solid rgba(21, 25, 24, 0.18);
  background: #fff;
  overflow: hidden;
  transition: background 180ms ease, color 180ms ease;
}

.guide-collection-card span,
.guide-collection-card strong,
.guide-collection-card p,
.guide-collection-card i {
  position: relative;
  z-index: 1;
}

.guide-collection-card span {
  color: #0b53e5;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.guide-collection-card strong {
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.08;
  word-break: keep-all;
}

.guide-collection-card p {
  max-width: 430px;
  margin: 0;
  color: #5b6562;
  line-height: 1.72;
  word-break: keep-all;
}

.guide-collection-card i {
  align-self: end;
  justify-self: end;
  color: #0b53e5;
  font-size: 1.65rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.guide-collection-card::after {
  position: absolute;
  right: -22%;
  bottom: -48%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(11, 83, 229, 0.32);
  content: "";
  transform: rotate(24deg);
  transition: border-color 180ms ease;
}

.guide-collection-card:hover {
  background: #0b53e5;
  color: #fff;
}

.guide-collection-card:hover span,
.guide-collection-card:hover i {
  color: #d9ff38;
}

.guide-collection-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.guide-collection-card:hover i {
  transform: translateX(5px);
}

.guide-collection-card:hover::after {
  border-color: rgba(217, 255, 56, 0.72);
}

.guide-latest-section {
  border-top: 1px solid rgba(21, 25, 24, 0.16);
  background: #eef3f0;
}

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

.guide-card {
  display: grid;
  min-height: 314px;
  align-content: start;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(21, 25, 24, 0.18);
  background: #fff;
}

.guide-card > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.guide-card .section-kicker {
  margin: 0;
  color: #0b53e5;
}

.guide-card time {
  color: #68716f;
  font-size: 0.76rem;
  white-space: nowrap;
}

.guide-card h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.22;
  word-break: keep-all;
}

.guide-card h2 a:hover,
.guide-card-link:hover {
  color: #0b53e5;
}

.guide-card > p {
  margin: 0;
  color: #56615e;
  line-height: 1.68;
  word-break: keep-all;
}

.guide-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.guide-card-tags span {
  padding: 5px 7px;
  border: 1px solid rgba(11, 83, 229, 0.24);
  color: #0b53e5;
  font-size: 0.72rem;
  font-weight: 800;
}

.guide-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  font-weight: 900;
}

.guide-card-link span {
  color: #0b53e5;
  font-size: 1.2rem;
}

.empty-guides {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px 0;
  border-top: 1px solid rgba(21, 25, 24, 0.2);
  color: #5b6562;
  line-height: 1.75;
}

.guide-collection-hero {
  min-height: 500px;
}

.guide-check-section {
  background: #151918;
  color: #fff;
}

.guide-check-section .section-kicker {
  color: #d9ff38;
}

.guide-check-section ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.guide-check-section li {
  display: grid;
  gap: 14px;
  min-height: 136px;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.guide-check-section li span {
  color: #d9ff38;
  font-size: 0.8rem;
  font-weight: 900;
}

.guide-check-section li strong {
  font-size: 1.15rem;
  line-height: 1.4;
  word-break: keep-all;
}

body.page-guide .guide-article-hero {
  background: #0b53e5;
}

body.page-guide .guide-related {
  max-width: 800px;
  margin-top: 82px;
  padding-top: 30px;
  border-top: 1px solid rgba(21, 25, 24, 0.2);
}

body.page-guide .guide-related h2 {
  margin: 10px 0 22px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}

body.page-guide .guide-related > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.page-guide .guide-related a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(11, 83, 229, 0.34);
  color: #0b53e5;
  font-weight: 900;
}

body.page-guide .guide-related a:hover {
  background: #0b53e5;
  color: #fff;
}

@media (max-width: 900px) {
  .guide-section-heading,
  .guide-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .guide-section-heading {
    gap: 24px;
  }

  .guide-section-heading h2 {
    grid-column: 1 / -1;
  }

  .guide-check-section ol {
    grid-template-columns: 1fr;
  }

  .guide-check-section li {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .guide-index-hero {
    min-height: 520px;
    padding: 128px 20px 64px;
  }

  .guide-index-hero::before {
    inset: 64px 20px 20px;
  }

  .guide-index-hero h1 {
    font-size: clamp(2.9rem, 13vw, 4.3rem);
  }

  .guide-index-hero p:last-child {
    margin-top: 24px;
    font-size: 0.98rem;
  }

  .guide-collection-section,
  .guide-latest-section,
  .guide-check-section {
    padding: 76px 20px;
  }

  .guide-section-heading,
  .guide-collection-grid,
  .guide-card-grid {
    grid-template-columns: 1fr;
  }

  .guide-section-heading {
    margin-bottom: 34px;
  }

  .guide-collection-card {
    min-height: 248px;
    padding: 24px;
  }

  .guide-card {
    min-height: 0;
    padding: 22px;
  }

  .guide-check-section ol {
    margin-top: 24px;
  }
}

.post-sources {
  max-width: 800px;
  margin: 0 0 82px;
  padding: 30px 0;
  border-top: 1px solid rgba(21, 25, 24, 0.2);
  border-bottom: 1px solid rgba(21, 25, 24, 0.2);
}

.post-sources h2 {
  margin-bottom: 24px;
}

.post-sources li + li {
  border-top: 1px solid rgba(21, 25, 24, 0.12);
}

.post-sources a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  color: #0b53e5;
  font-weight: 800;
  line-height: 1.5;
}

body.page-notes .post-related {
  max-width: 100%;
  margin-top: 0;
  border-top: 2px solid #151918;
}

body.page-notes .post-related a {
  border-radius: 0;
}

body.page-notes .post-related a:hover {
  border-color: #0b53e5;
}

@media (max-width: 640px) {
  body.page-notes .article-hero {
    padding: 112px 0 62px;
  }

  body.page-notes .article-hero::after {
    inset: 64px 20px 20px;
  }

  body.page-notes .article-hero h1 {
    font-size: clamp(2.9rem, 12vw, 4rem);
  }

  .article-question,
  .post-brief {
    grid-template-columns: 1fr;
  }

  .article-question {
    gap: 8px;
  }

  .post-brief {
    gap: 24px;
    padding: 26px 0;
  }

  .post-toc {
    margin-bottom: 58px;
  }

  .post-toc ol {
    grid-template-columns: 1fr;
  }

  body.page-notes .post-section {
    margin-bottom: 60px;
    padding-left: 0;
  }

body.page-notes .post-section-number {
    position: static;
    margin-bottom: 10px;
  }
}

/* Keep Korean posting headlines intact at every reading width. */
body.page-notes.posting-reader .article-hero h1{font-size:clamp(32px,4vw,58px);line-height:1.35;word-break:keep-all;overflow-wrap:anywhere}
body.page-notes.posting-reader .article-meta{font-size:13px;line-height:1.7;gap:14px;flex-wrap:wrap}
body.page-notes.posting-reader .post-section h2{font-size:clamp(24px,2.4vw,33px);line-height:1.5;word-break:keep-all;overflow-wrap:anywhere}
body.page-notes.posting-reader .post-section p{font-size:17px;line-height:1.95;word-break:keep-all;overflow-wrap:anywhere}
body.page-notes.posting-reader .post-toc a{line-height:1.7;word-break:keep-all;overflow-wrap:anywhere}
@media(max-width:760px){body.page-notes.posting-reader .post-section p{font-size:16px}body.page-notes.posting-reader .article-question{grid-template-columns:1fr}}
body.page-notes .posts-hero h1 { font-size: clamp(34px, 4.5vw, 64px); line-height: 1.3; word-break: keep-all; overflow-wrap: break-word; }
.empty-posts h3 { color: #17251c; font-size: 24px; margin-top: 30px; }
.empty-posts ul { display: grid; gap: 18px; padding: 0; list-style: none; margin: 24px 0; }
.empty-posts a { display: inline-block; color: #284c27; text-underline-offset: 5px; line-height: 1.7; }
/* Home page reframe: high-contrast execution editorial system */
.home-page {
  background: #eef2ef;
  color: #10191d;
}

.home-page .site-header {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(10, 17, 23, 0.88);
  color: #fff;
  backdrop-filter: blur(20px);
  opacity: 1 !important;
  transform: none !important;
}

.home-page .brand-symbol {
  border-color: #d9ff38;
  background: #d9ff38;
  color: #10191d;
}

.home-page .brand-mark small,
.home-page .nav-links {
  color: rgba(255, 255, 255, 0.66);
}

.home-page .nav-links a:hover,
.home-page .nav-links a.active {
  color: #fff;
}

.home-page .nav-links a::after {
  background: #d9ff38;
}

.home-page .nav-cta {
  background: #d9ff38;
  color: #10191d;
  box-shadow: none;
}

.home-page .nav-cta:hover {
  background: #fff;
}

.execution-hero {
  min-height: clamp(760px, 100svh, 940px);
  background: #0a1117;
  color: #fff;
}

.hero-fallback {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 72px),
    #0a1117;
}

.hero-fallback span:first-child,
.hero-fallback span:nth-child(2) {
  border-color: rgba(217, 255, 56, 0.32);
}

.hero-fallback span:nth-child(2) {
  border-color: rgba(11, 83, 229, 0.58);
}

.hero-fallback i {
  background: #d9ff38;
  box-shadow: 0 0 0 12px rgba(217, 255, 56, 0.15);
}

.execution-hero .direct-video {
  filter: none;
  object-position: 64% center;
}

.hero-video-wash {
  background:
    linear-gradient(90deg, rgba(10, 17, 23, 0.55) 0%, rgba(10, 17, 23, 0.38) 20%, rgba(10, 17, 23, 0.14) 42%, transparent 62%, rgba(10, 17, 23, 0.04) 100%),
    linear-gradient(0deg, rgba(10, 17, 23, 0.16) 0%, transparent 28%);
}

.execution-hero-copy h1,
.execution-hero-copy .hero-description,
.execution-hero-copy .eyebrow { text-shadow: 0 2px 8px rgba(0, 0, 0, .55); }

.hero-gridline {
  opacity: 0.78;
  background:
    linear-gradient(90deg, transparent 0 71%, rgba(217, 255, 56, 0.48) 71.05% 71.13%, transparent 71.2%),
    linear-gradient(0deg, transparent 0 14%, rgba(255, 255, 255, 0.24) 14.05% 14.13%, transparent 14.2%);
}

.hero-velocity-lines {
  position: absolute;
  z-index: 3;
  top: 25%;
  right: -5%;
  width: min(44vw, 610px);
  height: 44%;
  pointer-events: none;
}

.hero-velocity-lines i {
  position: absolute;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 255, 56, 0.94), transparent);
  transform: rotate(-32deg);
  transform-origin: right center;
  animation: velocityLine 4.8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero-velocity-lines i:nth-child(1) {
  top: 4%;
  right: 0;
  width: 76%;
}

.hero-velocity-lines i:nth-child(2) {
  top: 45%;
  right: 8%;
  width: 56%;
  animation-delay: 1.1s;
}

.hero-velocity-lines i:nth-child(3) {
  top: 78%;
  right: -4%;
  width: 68%;
  animation-delay: 2.2s;
}

.hero-frame-mark {
  position: absolute;
  z-index: 4;
  top: 116px;
  right: clamp(26px, 4vw, 62px);
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: right;
}

.hero-frame-mark b {
  color: #d9ff38;
  font-size: 0.72rem;
  line-height: 1.2;
}

.execution-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
  width: min(100% - 112px, 1360px);
  margin: 112px auto 112px;
}

.execution-hero .eyebrow,
.signal-label {
  color: #d9ff38;
}

.execution-hero h1 {
  max-width: 780px;
  font-size: clamp(3.7rem, 6.9vw, 7.45rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.execution-hero h1 em {
  color: #d9ff38;
  font-style: normal;
}

.hero-description {
  max-width: 515px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.home-page .hero-primary {
  border-color: #d9ff38;
  background: #d9ff38;
  color: #10191d;
  box-shadow: none;
}

.home-page .hero-primary:hover {
  background: #fff;
}

.hero-text-link {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.hero-text-link span {
  color: #d9ff38;
}

.hero-text-link:hover {
  border-color: #d9ff38;
  color: #d9ff38;
}

.hero-signal {
  padding: 24px 0 0 26px;
  border-color: #0b53e5;
  color: #fff;
}

.signal-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.signal-label i {
  width: 7px;
  height: 7px;
  background: #d9ff38;
  box-shadow: 0 0 0 5px rgba(217, 255, 56, 0.14);
  animation: statusDot 1.9s ease-in-out infinite;
}

.hero-signal strong {
  font-size: clamp(1.25rem, 1.9vw, 1.72rem);
  letter-spacing: 0.05em;
}

.signal-rule {
  background: rgba(255, 255, 255, 0.22);
}

.signal-rule i {
  background: #d9ff38;
}

.hero-signal p,
.hero-bottomline {
  color: rgba(255, 255, 255, 0.62);
}

.hero-bottomline {
  right: 56px;
  bottom: 28px;
  left: 56px;
  border-color: rgba(255, 255, 255, 0.28);
}

.execution-ticker {
  padding: 18px 0 16px;
  background: #d9ff38;
  color: #10191d;
}

.ticker-track i {
  color: #0b53e5;
}

.execution-section {
  background: #eef2ef;
}

.execution-heading .section-kicker {
  color: #0b53e5;
}

.execution-heading h2 {
  max-width: 840px;
  color: #10191d;
  font-size: clamp(3rem, 6vw, 6.4rem);
}

.execution-heading > p:last-child {
  max-width: 390px;
  color: #4e5b5b;
}

.execution-ledger {
  border-color: rgba(16, 25, 29, 0.3);
}

.execution-row {
  position: relative;
  min-height: 154px;
  overflow: hidden;
  border-color: rgba(16, 25, 29, 0.2);
  background: #eef2ef;
  color: #10191d;
}

.execution-row::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #0b53e5;
  content: "";
  transition: width 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.execution-row > * {
  position: relative;
  z-index: 1;
}

.execution-row:hover {
  padding-right: max(62px, calc((100vw - 1288px) / 2));
  background: #10191d;
  color: #fff;
}

.execution-row:hover::before {
  width: 28%;
}

.execution-row > span {
  color: #0b53e5;
}

.execution-row:hover > span {
  color: #d9ff38;
}

.execution-row p,
.execution-row:hover p {
  color: inherit;
  opacity: 0.72;
}

.execution-row b {
  border-color: currentColor;
}

.execution-row:hover b {
  background: #d9ff38;
  color: #10191d;
}

.channel-section {
  position: relative;
  background: #10191d;
}

.channel-section::before {
  position: absolute;
  top: 0;
  right: 0;
  width: min(32vw, 440px);
  height: 8px;
  background: #d9ff38;
  content: "";
}

.channel-copy .section-kicker,
.runway-copy .section-kicker {
  color: #d9ff38;
}

.channel-copy h2 {
  font-size: clamp(3rem, 5.9vw, 6.05rem);
}

.channel-console {
  border-color: rgba(217, 255, 56, 0.58);
  background: #0b1218;
  box-shadow: 22px 22px 0 #0b53e5;
}

.channel-console::before {
  background: linear-gradient(90deg, transparent, rgba(11, 83, 229, 0.92), transparent);
}

.console-head i,
.console-stream,
.platform-lines strong {
  color: #d9ff38;
}

.sector-section {
  background: #fff;
}

.sector-intro .section-kicker,
.sector-panel > span,
.sector-panel a b {
  color: #e8533e;
}

.sector-intro h2 {
  font-size: clamp(3rem, 5.8vw, 6rem);
}

.sector-tabs::after {
  height: 4px;
  background: #e8533e;
}

.sector-panel {
  min-height: 328px;
  border-color: #10191d;
}

.sector-panel[hidden] {
  display: none !important;
}

.sector-panel a:hover {
  border-color: #e8533e;
  color: #e8533e;
}

.runway-section {
  position: relative;
  background: #0b53e5;
}

.runway-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(24vw, 340px);
  height: 9px;
  background: #e8533e;
  content: "";
}

.runway-copy h2 {
  font-size: clamp(3rem, 5.6vw, 5.7rem);
}

.runway-track i {
  background: #d9ff38;
}

.runway-stage li span {
  color: #d9ff38;
}

.runway-stage li::before {
  background: #d9ff38;
}

.insight-strip {
  background: #e8533e;
  color: #fff;
}

.insight-layout .section-kicker {
  color: #d9ff38;
}

.insight-layout > p {
  color: rgba(255, 255, 255, 0.78);
}

.insight-link {
  background: #10191d;
  color: #fff;
}

.insight-link:hover {
  background: #d9ff38;
  color: #10191d;
}

.diagnosis-rebuild {
  background: #10191d;
  color: #fff;
}

.diagnosis-rebuild .section-kicker {
  color: #d9ff38;
}

.diagnosis-rebuild h2 + p {
  color: rgba(255, 255, 255, 0.7);
}

.diagnosis-rebuild .diagnosis-form input,
.diagnosis-rebuild .diagnosis-form textarea {
  border-color: rgba(255, 255, 255, 0.32);
  background: #18242a;
  color: #fff;
}

.diagnosis-rebuild .diagnosis-form input::placeholder,
.diagnosis-rebuild .diagnosis-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

.diagnosis-rebuild .consent-row a {
  color: #d9ff38;
}

.home-page .diagnosis-rebuild .button.primary {
  border-color: #d9ff38;
  background: #d9ff38;
  color: #10191d;
}

.home-page .site-footer {
  background: #060b0f;
  color: #fff;
}

.home-page .footer-links a {
  color: rgba(255, 255, 255, 0.64);
}

.home-page .floating-contact-link.primary {
  background: #0b53e5;
}

.home-page .floating-contact-link.kakao {
  background: #d9ff38;
  color: #10191d;
}

@keyframes velocityLine {
  0%, 18% { opacity: 0; transform: translateX(-24%) rotate(-32deg); }
  40%, 72% { opacity: 1; transform: translateX(7%) rotate(-32deg); }
  100% { opacity: 0; transform: translateX(27%) rotate(-32deg); }
}

@keyframes statusDot {
  0%, 100% { opacity: 0.48; transform: scale(0.78); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 1080px) {
  .home-page .execution-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .home-page .site-header {
    background: rgba(10, 17, 23, 0.94);
  }

  .execution-hero {
    min-height: max(720px, 100svh);
  }

  .execution-hero .direct-video {
    filter: none;
    object-position: 70% top;
  }

  .hero-video-wash {
    background:
      linear-gradient(180deg, transparent 0%, rgba(10, 17, 23, 0.1) 34%, rgba(10, 17, 23, 0.48) 80%, rgba(10, 17, 23, 0.75) 100%),
      linear-gradient(90deg, rgba(10, 17, 23, 0.06), transparent 70%);
  }

  .hero-frame-mark,
  .hero-velocity-lines {
    display: none;
  }

  .execution-hero-inner {
    width: min(100% - 40px, 620px);
    margin: 100px auto 116px;
  }

  .execution-hero h1 {
    font-size: clamp(3.05rem, 13vw, 4.3rem);
    line-height: 1.22;
  }

  .execution-hero .eyebrow,
  .hero-description,
  .hero-action-row {
    text-shadow: none;
  }

  .hero-description {
    max-width: 315px;
    color: rgba(255, 255, 255, 0.78);
  }

  .hero-bottomline {
    right: 20px;
    bottom: 18px;
    left: 20px;
  }

  .execution-heading h2,
  .channel-copy h2,
  .sector-intro h2,
  .runway-copy h2,
  .insight-layout h2,
  .diagnosis-rebuild h2 {
    font-size: clamp(2.8rem, 12vw, 4.15rem);
  }

  .execution-row {
    background: #eef2ef;
  }

  .execution-row::before {
    width: 7px;
  }

  .execution-row:hover {
    padding-right: 20px;
    background: #10191d;
  }

  .execution-row:hover::before {
    width: 7px;
  }

  .channel-console {
    box-shadow: 12px 12px 0 #0b53e5;
  }

  .sector-panel {
    min-height: 0;
  }

  .runway-section::after {
    width: 42vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-velocity-lines i,
  .signal-label i {
    animation: none;
  }
}
