:root {
  --ink: #070707;
  --paper: #f6f6f3;
  --white: #ffffff;
  --muted: #777873;
  --line: rgba(7, 7, 7, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --max-width: 1200px;
  --gutter: clamp(18px, 2.6vw, 40px);
  --section-space: clamp(64px, 6vw, 96px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Pretendard Variable", Pretendard, "SUIT Variable", -apple-system, BlinkMacSystemFont,
    "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

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

button {
  color: inherit;
  font: inherit;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

::selection {
  background: #d9ff45;
  color: var(--ink);
}

.container {
  width: min(100%, calc(var(--max-width) + var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.scroll-progress {
  position: fixed;
  z-index: 1001;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--white);
  mix-blend-mode: difference;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  transition:
    transform 260ms var(--ease-out),
    background-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 7, 0.84);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header.is-hidden {
  transform: translateY(-102%);
}

.header-inner {
  width: min(100%, calc(var(--max-width) + var(--gutter) * 2));
  height: 66px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  width: 136px;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 26px);
}

.desktop-nav a,
.footer-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: color 180ms ease;
}

.desktop-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right center;
  background: currentColor;
  content: "";
  transition: transform 300ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-cta {
  justify-self: end;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.025em;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: #e9e9e4;
}

.button-small {
  min-height: 36px;
  padding: 0 14px;
  gap: 12px;
  font-size: 11px;
}

.button-large {
  min-height: 52px;
  padding-inline: 22px;
}

.button-icon {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 300ms var(--ease-out);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: -1;
  inset: 0;
  padding: 112px var(--gutter) 32px;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-6px);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 220ms var(--ease-out),
    visibility 180ms;
}

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

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  padding: 14px 0;
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-bottom: 1px solid var(--line-light);
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.15;
}

.mobile-menu nav a span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.hero {
  position: relative;
  min-height: clamp(600px, 88svh, 760px);
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

#wave-canvas,
#cta-wave-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  contain: strict;
  pointer-events: none;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

.hero-glow {
  position: absolute;
  right: -20vw;
  bottom: -60%;
  width: 90vw;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.11), transparent 68%);
  filter: blur(30px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, transparent 95%);
  mask-image: linear-gradient(to bottom, transparent, black 30%, transparent 95%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(600px, 88svh, 760px);
  padding-top: clamp(100px, 12vh, 132px);
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-copy {
  width: min(780px, 76%);
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
}

.hero-eyebrow {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.58);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d9ff45;
  box-shadow: 0 0 0 6px rgba(217, 255, 69, 0.08);
  animation: livePulse 2.4s ease-in-out infinite;
}

@keyframes livePulse {
  50% {
    box-shadow: 0 0 0 10px rgba(217, 255, 69, 0);
  }
}

.hero h1 {
  max-width: 860px;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 760;
  letter-spacing: -0.052em;
  line-height: 1.1;
}

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

.hero h1 span {
  color: rgba(255, 255, 255, 0.62);
}

.hero h1.hero-title-question {
  max-width: 900px;
  font-size: clamp(34px, 3.55vw, 52px);
  line-height: 1.17;
}

.hero h1 .hero-title-visual {
  display: block;
  color: inherit;
}

.hero h1 .hero-question-line {
  display: inline-block;
  white-space: nowrap;
}

.hero h1 .rotating-keyword {
  display: inline-block;
  min-width: 3.2em;
  margin-inline: 0.04em;
  color: var(--white);
  text-align: center;
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease-out);
}

.hero h1 .rotating-keyword.is-changing {
  opacity: 0;
  transform: translateY(0.18em);
}

.hero-description {
  max-width: 640px;
  margin-top: clamp(18px, 2.4vh, 26px);
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: -0.018em;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}

.text-link span {
  transition: transform 180ms var(--ease-out);
}

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

.text-link-light {
  color: rgba(255, 255, 255, 0.66);
}

.hero-bottom {
  padding-top: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-bottom > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.55;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  list-style: none;
}

.hero-tags li {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg);
  transform-origin: right bottom;
  color: rgba(255, 255, 255, 0.36);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
}

.scroll-line {
  position: relative;
  display: block;
  width: 52px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-line::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: var(--white);
  content: "";
  animation: scrollLine 2.1s ease-in-out infinite;
}

@keyframes scrollLine {
  65%,
  100% {
    transform: translateX(100%);
  }
}

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

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.64fr);
  gap: 32px;
  align-items: end;
}

.section-intro > .section-label {
  grid-column: 1 / -1;
}

.section-intro h2,
.split-intro h2,
.projects-intro h2,
.faq-heading h2 {
  font-size: clamp(30px, 3.15vw, 46px);
  font-weight: 690;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.section-intro h2 em,
.split-intro h2 em,
.final-cta h2 em {
  color: var(--muted);
  font-style: normal;
  font-weight: inherit;
}

.section-intro > p:last-child,
.split-intro > div > p,
.faq-heading > p {
  color: var(--muted);
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: -0.012em;
  line-height: 1.78;
}

.split-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(30px, 5vw, 64px);
}

.split-intro > div > p {
  max-width: 600px;
  margin-top: 18px;
}

.expert-question-copy > span {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 620;
  line-height: 1.7;
}

.problem {
  background: var(--paper);
}

.problem-list {
  margin-top: clamp(56px, 7vw, 96px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.problem-list article {
  min-height: 326px;
  padding: 24px clamp(24px, 3vw, 44px) 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.problem-list article:first-child {
  border-left: 1px solid var(--line);
}

.problem-number {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.problem-icon {
  width: 72px;
  height: 72px;
  margin: 46px 0 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    transform 420ms var(--ease-out),
    border-color 220ms ease,
    background-color 220ms ease;
}

.knowledge-icon {
  position: relative;
  grid-template-columns: repeat(2, 17px);
  grid-template-rows: repeat(2, 17px);
  gap: 4px;
}

.knowledge-icon span {
  width: 17px;
  height: 17px;
  border: 1px solid var(--ink);
  transition:
    transform 420ms var(--ease-out),
    background-color 220ms ease;
}

.loop-icon span {
  font-size: 42px;
  font-weight: 220;
  line-height: 1;
  transition: transform 420ms var(--ease-out);
}

.search-icon span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.search-icon span::after {
  position: absolute;
  right: -15px;
  bottom: -8px;
  width: 21px;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: left center;
  background: var(--ink);
  content: "";
}

.problem-list h3 {
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 650;
  letter-spacing: -0.05em;
}

.problem-list article > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: -0.025em;
  line-height: 1.7;
}

.services {
  background: var(--white);
}

.service-grid {
  margin-top: clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 640px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  overflow: hidden;
  flex-direction: column;
}

.service-card-dark {
  background: var(--ink);
  color: var(--white);
}

.service-card-light {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.service-card-dark .card-head {
  color: rgba(255, 255, 255, 0.42);
}

.service-card-light .card-head {
  color: var(--muted);
}

.service-visual {
  position: relative;
  height: clamp(180px, 18vw, 230px);
  margin: 28px 0 22px;
  padding-inline: clamp(10px, 2vw, 24px);
  display: grid;
  grid-template-columns:
    52px minmax(16px, 1fr)
    52px minmax(16px, 1fr)
    52px minmax(16px, 1fr)
    52px;
  align-items: center;
  gap: clamp(6px, 1vw, 12px);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.service-card-dark .service-visual {
  border-color: rgba(255, 255, 255, 0.14);
}

.service-card-light .service-visual {
  border-color: var(--line);
}

.flow-node {
  position: relative;
  z-index: 2;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.06em;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.service-card-dark .flow-node {
  border-color: rgba(255, 255, 255, 0.34);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
}

.service-card-light .flow-node {
  border-color: rgba(7, 7, 7, 0.26);
  background: var(--paper);
  color: rgba(7, 7, 7, 0.64);
}

.service-card-dark .flow-node-output {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.service-card-light .flow-node-output {
  border-color: var(--ink);
  color: var(--ink);
}

.flow-link {
  position: relative;
  width: 100%;
  height: 1px;
  overflow: visible;
  background: currentColor;
  opacity: 0.24;
}

.flow-link::after {
  position: absolute;
  top: -2px;
  right: -1px;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
}

.flow-link i {
  position: absolute;
  top: -2.5px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  transition:
    left 620ms var(--ease-out),
    opacity 180ms ease;
}

.service-card-dark .flow-link {
  color: var(--white);
}

.service-card-light .flow-link {
  color: var(--ink);
}

.service-card-light .flow-node-core {
  background: var(--ink);
  color: var(--white);
}

.service-card-dark .flow-node-core {
  background: var(--white);
  color: var(--ink);
}

.service-content {
  margin-top: auto;
}

.service-kicker {
  margin-bottom: 16px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-card-dark .service-kicker {
  color: rgba(255, 255, 255, 0.46);
}

.service-card-light .service-kicker {
  color: var(--muted);
}

.service-content h3 {
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.18;
}

.service-content > p:not(.service-kicker) {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  letter-spacing: -0.01em;
  line-height: 1.82;
}

.service-card-dark .service-content > p:not(.service-kicker) {
  color: rgba(255, 255, 255, 0.68);
}

.service-content ul {
  margin-top: 22px;
  list-style: none;
}

.service-content li {
  padding: 10px 0;
  display: flex;
  gap: 13px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.service-card-dark .service-content li {
  border-color: var(--line-light);
  color: rgba(255, 255, 255, 0.76);
}

.service-content li::before {
  flex: 0 0 auto;
  content: "↳";
  font-family: "SFMono-Regular", Consolas, monospace;
}

.choice-nudge {
  margin-top: 16px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--line);
}

.choice-nudge > p {
  font-weight: 650;
  letter-spacing: -0.03em;
}

.choice-nudge > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.choice-nudge a {
  min-height: 48px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 2px;
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  transition:
    background 220ms ease,
    color 220ms ease;
}

.choice-nudge a span {
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.choice-nudge a:hover {
  background: var(--ink);
  color: var(--white);
}

.choice-nudge a:hover span {
  color: var(--white);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-label-light {
  color: rgba(255, 255, 255, 0.42);
}

.section-dark .split-intro > div > p {
  color: rgba(255, 255, 255, 0.66);
}

.section-dark .split-intro h2 em {
  color: rgba(255, 255, 255, 0.62);
}

.process-list {
  margin-top: clamp(60px, 7vw, 96px);
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.process-list li {
  min-height: 124px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 0.26fr 1fr auto;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line-light);
}

.process-list li > span:first-child {
  color: rgba(255, 255, 255, 0.35);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.process-list li > div {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 34px;
}

.process-list h3 {
  font-size: clamp(22px, 2.3vw, 34px);
  font-weight: 580;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.process-list p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  letter-spacing: -0.02em;
}

.process-arrow {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-size: 14px;
  transition:
    background 250ms ease,
    color 250ms ease,
    transform 350ms var(--ease-out);
}

.process-list li:hover .process-arrow {
  transform: translate(2px, -2px);
  background: var(--white);
  color: var(--ink);
}

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

.projects-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(40px, 8vw, 120px);
}

.projects-grid {
  margin-top: clamp(56px, 7vw, 88px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  min-height: 520px;
  padding: clamp(26px, 2.8vw, 38px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
}

.project-card-invert {
  background: var(--ink);
  color: var(--white);
}

.project-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.project-card-invert .project-top {
  color: rgba(255, 255, 255, 0.42);
}

.project-art {
  position: relative;
  min-height: 220px;
  margin: auto 0;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.radar-circle {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 800ms var(--ease-out);
}

.circle-1 {
  width: 60px;
  height: 60px;
}

.circle-2 {
  width: 126px;
  height: 126px;
}

.circle-3 {
  width: 194px;
  height: 194px;
}

.radar-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 96px;
  height: 1px;
  transform: rotate(-38deg);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--ink), transparent);
  transition: transform 520ms var(--ease-out);
}

.radar-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}

.dot-1 {
  transform: translate(-72px, -38px);
}

.dot-2 {
  transform: translate(64px, 52px);
}

.dot-3 {
  transform: translate(26px, -92px);
}

.art-caption {
  position: absolute;
  bottom: 4px;
  left: 0;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
}

.project-art-safety .art-caption {
  color: var(--muted);
}

.project-card-invert .art-caption {
  color: rgba(255, 255, 255, 0.42);
}

.project-art-trade {
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  gap: 18px;
  align-items: center;
  justify-items: stretch;
}

.country {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  justify-self: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  transition:
    background 300ms ease,
    color 300ms ease;
}

.trade-line {
  position: relative;
  width: 100%;
  min-width: 72px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-self: stretch;
}

.trade-line::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  content: "";
}

.trade-line i {
  position: relative;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  transition:
    transform 420ms var(--ease-out),
    opacity 220ms ease;
}

.trade-line::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--white);
  content: "";
  opacity: 0.35;
  transition:
    left 720ms var(--ease-out),
    opacity 220ms ease;
}

.project-copy {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.project-card-invert .project-copy {
  border-color: var(--line-light);
}

.project-copy h3 {
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 640;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.project-copy p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: -0.025em;
}

.project-card-invert .project-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.project-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(40px, 6vw, 72px);
}

.faq-heading {
  align-self: start;
}

.faq-heading h2 {
  margin-top: 18px;
}

.faq-heading > p {
  margin-top: 18px;
}

.copy-email {
  width: 100%;
  max-width: 420px;
  margin-top: 22px;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.copy-email > span:first-child {
  font-weight: 650;
}

.copy-label {
  color: var(--muted);
  font-size: 11px;
}

.copy-status {
  min-height: 22px;
  margin-top: 8px !important;
  font-size: 12px !important;
}

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

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

.faq-list summary {
  min-height: 72px;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  cursor: pointer;
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 620;
  letter-spacing: -0.04em;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  position: relative;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: var(--ink);
  content: "";
  transition: transform 180ms var(--ease-out);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details > div {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 240ms var(--ease-out),
    opacity 160ms ease;
}

.faq-list details[open] > div {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-list details > div > p {
  max-width: 640px;
  padding: 0 60px 28px 4px;
  overflow: hidden;
  color: var(--muted);
  letter-spacing: -0.02em;
}

.final-cta {
  position: relative;
  min-height: 450px;
  padding: var(--section-space) 0;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: var(--ink);
  color: var(--white);
}

.final-cta::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.09), transparent 38%);
  content: "";
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta .section-label {
  justify-content: center;
}

.final-cta h2 {
  max-width: 1050px;
  margin-top: 18px;
  margin-inline: auto;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 680;
  letter-spacing: -0.048em;
  line-height: 1.18;
}

.final-cta h2 em {
  color: rgba(255, 255, 255, 0.62);
}

.final-cta-inner > p:not(.section-label) {
  max-width: 690px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: -0.01em;
  line-height: 1.8;
}

.final-cta .button {
  margin-top: 26px;
}

.cta-helper {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.site-footer {
  padding: 52px 0 24px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid var(--line-light);
}

.footer-top {
  padding-bottom: 46px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  gap: 50px;
}

.footer-brand {
  align-self: start;
}

.footer-statement p:first-child {
  color: rgba(255, 255, 255, 0.4);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.footer-statement p:last-child {
  margin-top: 12px;
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.3;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-links a {
  width: fit-content;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 900;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 14px;
  min-height: 54px;
  padding: 0 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  transform: translateY(110%);
  opacity: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.9);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition:
    transform 240ms var(--ease-out),
    opacity 180ms ease;
}

.mobile-sticky-cta.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.mobile-sticky-cta.is-obscured {
  transform: translateY(110%);
  opacity: 0;
}

.js [data-reveal] {
  transform: translateY(12px);
  opacity: 0;
  transition:
    transform 480ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 380ms ease-out;
}

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

@media (hover: hover) and (pointer: fine) {
  .problem-list article:hover .problem-icon {
    transform: translateY(-3px);
    border-color: rgba(7, 7, 7, 0.42);
    background: rgba(7, 7, 7, 0.025);
  }

  .problem-list article:hover .knowledge-icon span:nth-child(1) {
    transform: translate(-2px, -2px);
    background: var(--ink);
  }

  .problem-list article:hover .knowledge-icon span:nth-child(4) {
    transform: translate(2px, 2px);
  }

  .problem-list article:hover .loop-icon span {
    transform: rotate(10deg);
  }

  .service-card:hover .flow-link i {
    left: calc(100% - 6px);
    opacity: 0.92;
  }

  .service-card:hover .flow-link-b i {
    transition-delay: 70ms;
  }

  .service-card:hover .flow-link-c i {
    transition-delay: 140ms;
  }

  .service-card-dark:hover .flow-node-output {
    border-color: var(--white);
  }

  .service-card-light:hover .flow-node-output {
    background: var(--ink);
    color: var(--white);
  }

  .project-card:hover .radar-line {
    transform: rotate(-28deg);
  }

  .project-card:hover .circle-1 {
    transform: scale(1.04);
  }

  .project-card:hover .circle-3 {
    transform: scale(0.98);
  }

  .project-card:hover .trade-line::after {
    left: calc(100% - 7px);
    opacity: 1;
  }

  .project-card:hover .country-kr {
    border-color: rgba(255, 255, 255, 0.72);
  }
}

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

  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-copy {
    width: min(940px, 92%);
  }

  .problem-list article {
    min-height: 310px;
    padding-inline: 24px;
  }

  .service-card {
    min-height: 620px;
  }

  .choice-nudge {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --section-space: 64px;
  }

  .header-inner {
    height: 60px;
    gap: 8px;
  }

  .brand {
    width: 118px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: clamp(600px, 88svh, 700px);
  }

  .hero-inner {
    padding-top: 92px;
    padding-bottom: 24px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(32px, 7.2vw, 42px);
    line-height: 1.15;
  }

  .hero-description {
    max-width: 520px;
  }

  .hero-bottom {
    padding-top: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-tags {
    justify-content: flex-start;
  }

  .scroll-cue {
    display: none;
  }

  .split-intro,
  .projects-intro,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .split-intro,
  .projects-intro {
    gap: 28px;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

  .problem-list article {
    min-height: 280px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .problem-icon {
    width: 72px;
    height: 72px;
  }

  .service-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 600px;
  }

  .process-list li {
    grid-template-columns: 50px 1fr auto;
  }

  .process-list li > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .project-card {
    min-height: 520px;
  }

  .faq-layout {
    gap: 40px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

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

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 20px;
  }

  body {
    word-break: keep-all;
  }

  .desktop-break {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero-inner {
    padding-top: 88px;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.17;
  }

  .hero-description {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.66;
  }

  .hero-actions {
    margin-top: 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: space-between;
  }

  .hero-bottom > p {
    display: none;
  }

  .hero-tags {
    gap: 5px;
  }

  .hero-tags li {
    padding: 6px 9px;
    font-size: 8px;
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .section-intro h2,
  .split-intro h2,
  .projects-intro h2,
  .faq-heading h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.24;
  }

  .section-intro > p:last-child {
    margin-top: 12px;
  }

  .problem-list {
    margin-top: 48px;
  }

  .problem-list article {
    min-height: 260px;
  }

  .service-grid {
    margin-top: 48px;
  }

  .service-card {
    min-height: 580px;
    padding: 22px 18px;
  }

  .service-visual {
    height: 176px;
    margin-top: 20px;
    padding-inline: 4px;
    grid-template-columns:
      44px minmax(10px, 1fr)
      44px minmax(10px, 1fr)
      44px minmax(10px, 1fr)
      44px;
    gap: 5px;
  }

  .flow-node {
    width: 44px;
    height: 44px;
    font-size: 7px;
  }

  .service-content h3 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.22;
  }

  .service-content li {
    font-size: 13px;
  }

  .choice-nudge {
    padding: 20px 16px;
  }

  .choice-nudge > div {
    grid-template-columns: 1fr;
  }

  .process-list {
    margin-top: 48px;
  }

  .process-list li {
    min-height: 132px;
    grid-template-columns: 32px 1fr;
    gap: 16px;
  }

  .process-arrow {
    display: none;
  }

  .process-list p {
    font-size: 13px;
  }

  .projects-grid {
    margin-top: 48px;
  }

  .project-card {
    min-height: 480px;
    padding: 22px 18px;
  }

  .project-art {
    min-height: 200px;
  }

  .circle-3 {
    width: 176px;
    height: 176px;
  }

  .country {
    width: 56px;
    height: 56px;
  }

  .project-note {
    text-align: left;
  }

  .faq-list summary {
    min-height: 68px;
    padding-block: 15px;
    font-size: 16px;
  }

  .faq-list details > div > p {
    padding-right: 20px;
  }

  .final-cta {
    min-height: 420px;
  }

  .final-cta h2 {
    font-size: clamp(28px, 7.5vw, 36px);
    line-height: 1.26;
  }

  .final-cta .button {
    width: 100%;
    justify-content: space-between;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-links {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-bottom {
    padding-bottom: calc(74px + env(safe-area-inset-bottom));
  }

  .footer-bottom > div {
    flex-direction: column;
    gap: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .hero h1 .rotating-keyword {
    transform: none;
  }
}

/* Renewal product, AX subpage, and static editorial pages */

.hero-copy-wide {
  width: min(840px, 80%);
}

.hero-copy-wide .hero-description {
  max-width: 640px;
}

.discovery-problem {
  background: var(--paper);
}

.reason-grid {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reason-card {
  min-height: 240px;
  padding: clamp(20px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.22);
  transition:
    background-color 220ms ease,
    transform 320ms var(--ease-out);
}

.reason-index,
.reason-label {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.reason-label {
  margin-top: 30px;
}

.reason-card h3 {
  margin-top: 10px;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.28;
}

.reason-card > p:last-child {
  max-width: 340px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.66;
}

.answer-flow {
  margin-top: clamp(42px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.answer-flow li {
  position: relative;
  min-height: 176px;
  padding: 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.answer-flow li:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  top: 39px;
  right: -13px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.56);
  content: "→";
  font-size: 10px;
}

.answer-flow li > span {
  color: rgba(255, 255, 255, 0.34);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.answer-flow strong {
  margin-top: 32px;
  display: block;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.answer-flow p {
  max-width: 220px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.66;
}

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

.definition-card,
.foundation-promise {
  border: 1px solid var(--line-light);
}

.definition-card {
  min-height: 210px;
  padding: clamp(22px, 2.5vw, 32px);
}

.definition-card > span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.definition-card h3 {
  margin-top: 24px;
  font-size: clamp(21px, 1.9vw, 27px);
  font-weight: 620;
  letter-spacing: -0.04em;
}

.definition-card p {
  max-width: 460px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.75;
}

.foundation-promise {
  padding: clamp(24px, 3vw, 40px);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.52fr 0.9fr 1fr;
  align-items: start;
  gap: 36px;
  background: var(--white);
  color: var(--ink);
}

.foundation-promise .section-label {
  color: var(--muted);
}

.foundation-promise h3 {
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.28;
}

.foundation-promise > p:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.renewal-section {
  background: var(--white);
}

.renewal-compare {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--line);
}

.renewal-compare article {
  min-height: 286px;
  padding: clamp(24px, 2.8vw, 36px);
}

.renewal-compare article:first-child {
  background: var(--paper);
}

.renewal-compare .compare-after {
  background: var(--ink);
  color: var(--white);
}

.compare-label {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.compare-after .compare-label {
  color: rgba(255, 255, 255, 0.42);
}

.renewal-compare h3 {
  margin-top: 28px;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 650;
  letter-spacing: -0.045em;
}

.renewal-compare ul {
  margin-top: 24px;
  display: grid;
  gap: 11px;
  list-style: none;
}

.renewal-compare li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.renewal-compare li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.compare-after li {
  color: rgba(255, 255, 255, 0.7);
}

.compare-arrow {
  position: relative;
  z-index: 2;
  align-self: center;
  width: 44px;
  height: 44px;
  margin-inline: -22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
}

.pricing-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.pricing-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pricing-heading h2 {
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 690;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.pricing-heading p {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.price-grid {
  width: min(100%, 980px);
  margin: clamp(34px, 4vw, 48px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-card {
  position: relative;
  min-height: 520px;
  padding: clamp(22px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(7, 7, 7, 0.14);
  border-radius: 18px;
  background: var(--white);
}

.price-card-featured {
  border-color: rgba(7, 7, 7, 0.26);
  background: var(--white);
  color: var(--ink);
}

.price-recommend {
  position: absolute;
  top: -15px;
  left: 50%;
  min-width: 62px;
  min-height: 30px;
  padding-inline: 14px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 10px;
  font-weight: 750;
  box-shadow: 0 0 0 1px rgba(7, 7, 7, 0.26);
}

.price-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.price-kicker,
.price-number {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.price-card-featured .price-kicker,
.price-card-featured .price-number {
  color: var(--muted);
}

.price-card h3 {
  margin-top: 10px;
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.price {
  margin-top: 26px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  line-height: 1;
}

.price strong {
  font-size: clamp(48px, 4.8vw, 64px);
  font-weight: 620;
  letter-spacing: -0.07em;
}

.price > span {
  padding-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
}

.price-card-featured .price > span {
  color: var(--muted);
}

.price-summary {
  max-width: 470px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.68;
}

.price-card-featured .price-summary {
  color: var(--muted);
}

.price-features {
  margin-top: 22px;
  display: grid;
  list-style: none;
  border-top: 1px solid var(--line);
}

.price-card-featured .price-features {
  border-color: var(--line);
}

.price-features li {
  position: relative;
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.price-card-featured .price-features li {
  border-color: var(--line);
  color: var(--ink);
}

.price-features li::before {
  position: absolute;
  top: 16px;
  left: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.price-note {
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.price-card-featured .price-note {
  color: var(--muted);
}

.price-card-action {
  min-height: 42px;
  margin-top: 14px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f1f1ee;
  color: var(--ink);
  font-size: 12px;
  font-weight: 720;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms ease;
}

.price-card-featured .price-card-action {
  border-color: var(--line);
  background: var(--white);
  color: var(--ink);
}

.price-card-action:hover {
  transform: translateY(-1px);
}

.partial-renewal {
  margin-top: 18px;
  padding: clamp(22px, 2.4vw, 30px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 36px;
  border: 1px solid var(--line);
  background: var(--white);
}

.partial-renewal h3 {
  margin-top: 12px;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.partial-renewal > div > p:last-child {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.insights-preview {
  background: var(--white);
}

.insight-grid {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-card {
  min-width: 0;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.insight-cover {
  position: relative;
  min-height: 220px;
  padding: 18px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
}

.cover-code {
  position: absolute;
  top: 20px;
  left: 20px;
  color: rgba(255, 255, 255, 0.48);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.insight-cover-signal {
  flex-direction: column;
  gap: 12px;
}

.insight-cover-signal i {
  display: block;
  width: 72%;
  height: 1px;
  transform-origin: center;
  background: rgba(255, 255, 255, 0.54);
  transition: transform 560ms var(--ease-out);
}

.insight-cover-signal i:nth-of-type(1) {
  transform: translateX(-12%) scaleX(0.6);
}

.insight-cover-signal i:nth-of-type(2) {
  transform: translateX(6%) scaleX(0.9);
}

.insight-cover-signal i:nth-of-type(3) {
  transform: translateX(-4%) scaleX(0.72);
}

.insight-cover-signal i:nth-of-type(4) {
  transform: translateX(14%) scaleX(0.46);
}

.insight-cover-foundation {
  gap: 64px;
}

.insight-cover-foundation::before {
  position: absolute;
  width: 42%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  content: "";
}

.cover-node {
  position: relative;
  z-index: 1;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.insight-cover-renewal {
  gap: 16px;
}

.cover-panel {
  display: grid;
  width: 88px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.66);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.cover-panel:last-child {
  background: var(--white);
  color: var(--ink);
}

.cover-arrow {
  color: rgba(255, 255, 255, 0.5);
}

.insight-meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 10px;
}

.insight-card h3,
.insight-card > h2 {
  margin-top: 12px;
  font-size: clamp(18px, 1.6vw, 23px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.insight-card > p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.read-more {
  margin-top: auto;
  padding-top: 22px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.section-link-row {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}

.ax-crosslink {
  padding: clamp(56px, 6vw, 84px) 0;
  background: #151515;
  color: var(--white);
  border-bottom: 1px solid var(--line-light);
}

.ax-crosslink-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(42px, 8vw, 120px);
}

.ax-crosslink h2 {
  margin-top: 18px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 650;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.ax-crosslink-inner > div:last-child > p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.subpage-hero,
.editorial-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.subpage-hero {
  min-height: 620px;
}

.subpage-hero-inner {
  min-height: 620px;
  padding-top: 96px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.breadcrumbs-dark {
  color: rgba(255, 255, 255, 0.42);
}

.breadcrumbs a {
  transition: color 180ms ease;
}

.breadcrumbs a:hover {
  color: currentColor;
}

.subpage-hero-grid {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.subpage-hero-copy {
  position: relative;
  z-index: 1;
}

.subpage-hero-copy h1 {
  font-size: clamp(36px, 4.3vw, 58px);
  font-weight: 690;
  letter-spacing: -0.052em;
  line-height: 1.12;
}

.subpage-hero-copy h1 span {
  color: rgba(255, 255, 255, 0.6);
}

.subpage-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.78;
}

.ax-hero-flow {
  min-height: 250px;
  padding: 28px;
  display: grid;
  grid-template-columns:
    58px minmax(18px, 1fr)
    58px minmax(18px, 1fr)
    58px minmax(18px, 1fr)
    58px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-light);
}

.ax-hero-flow .flow-node {
  width: 58px;
  height: 58px;
  border-color: rgba(255, 255, 255, 0.36);
  color: rgba(255, 255, 255, 0.72);
}

.ax-hero-flow .flow-link {
  border-color: rgba(255, 255, 255, 0.2);
}

.ax-hero-flow .flow-node-core {
  background: var(--white);
  color: var(--ink);
}

.ax-hero-flow .flow-node-output {
  background: rgba(255, 255, 255, 0.13);
}

.ax-solutions {
  background: var(--white);
}

.ax-reason-grid {
  margin-top: clamp(40px, 5vw, 60px);
}

.editorial-hero {
  min-height: 570px;
}

.editorial-hero-inner {
  min-height: 570px;
  padding-top: 96px;
  padding-bottom: 46px;
  display: flex;
  flex-direction: column;
}

.editorial-hero-copy {
  margin-top: auto;
  max-width: 900px;
}

.editorial-hero-copy h1 {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 690;
  letter-spacing: -0.052em;
  line-height: 1.12;
}

.editorial-hero-copy h1 span {
  color: rgba(255, 255, 255, 0.58);
}

.editorial-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.78;
}

.editorial-hero-note {
  margin-top: 38px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.36);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.editorial-hero-note i {
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.blog-listing {
  background: var(--white);
}

.listing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.listing-head h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 660;
  letter-spacing: -0.045em;
}

.insight-grid-listing {
  margin-top: 48px;
}

.blog-principle {
  padding: clamp(60px, 7vw, 96px) 0;
  background: var(--ink);
  color: var(--white);
}

.blog-principle-inner {
  display: grid;
  grid-template-columns: 0.55fr 1fr 0.85fr;
  align-items: start;
  gap: clamp(32px, 6vw, 90px);
}

.blog-principle h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 650;
  letter-spacing: -0.048em;
  line-height: 1.2;
}

.blog-principle h2 em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.blog-principle-inner > p:last-child {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.82;
}

.article-hero {
  min-height: 560px;
}

.article-hero-inner {
  min-height: 560px;
  padding-top: 96px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
}

.article-hero-copy {
  margin-top: auto;
  max-width: 1000px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 20px;
  color: rgba(255, 255, 255, 0.48);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.article-hero h1 {
  max-width: 1000px;
  margin-top: 20px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 690;
  letter-spacing: -0.052em;
  line-height: 1.17;
}

.article-deck,
.article-hero-copy > p:last-child {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
  line-height: 1.8;
}

.article-section {
  padding: clamp(72px, 8vw, 116px) 0;
  background: var(--white);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(200px, 270px);
  justify-content: center;
  align-items: start;
  gap: clamp(54px, 8vw, 112px);
}

.article-body,
.article-content {
  min-width: 0;
}

.article-body > * + *,
.article-content > * + * {
  margin-top: 24px;
}

.article-body h2,
.article-content h2 {
  margin-top: 70px;
  font-size: clamp(27px, 2.6vw, 38px);
  font-weight: 680;
  letter-spacing: -0.045em;
  line-height: 1.34;
}

.article-body h3,
.article-content h3 {
  margin-top: 48px;
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.42;
}

.article-body p,
.article-content p,
.article-body li,
.article-content li {
  color: #393a37;
  font-size: clamp(16px, 1.25vw, 18px);
  letter-spacing: -0.012em;
  line-height: 1.9;
  word-break: keep-all;
}

.article-body ul,
.article-body ol,
.article-content ul,
.article-content ol {
  padding-left: 24px;
}

.article-body li + li,
.article-content li + li {
  margin-top: 8px;
}

.article-body strong,
.article-content strong {
  color: var(--ink);
  font-weight: 700;
}

.article-summary {
  margin: 0 0 54px;
  padding: 28px 30px;
  border-left: 3px solid var(--ink);
  background: var(--paper);
}

.article-summary > p:first-child,
.article-summary > strong:first-child {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.article-summary p {
  font-size: 16px;
  line-height: 1.78;
}

.article-quote,
.article-body blockquote,
.article-content blockquote {
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 630;
  letter-spacing: -0.04em;
  line-height: 1.5;
}

.article-toc {
  position: sticky;
  top: 112px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.article-toc > p,
.article-toc > strong {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.article-toc ol,
.article-toc ul {
  margin-top: 18px;
  display: grid;
  gap: 11px;
  list-style: none;
}

.article-toc a {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  transition: color 180ms ease;
}

.article-toc a:hover {
  color: var(--ink);
}

.article-checklist {
  margin-top: 48px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.article-checklist h2,
.article-checklist h3 {
  margin-top: 0;
}

.article-checklist ul {
  padding-left: 0;
  display: grid;
  gap: 0;
  list-style: none;
}

.article-checklist li {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.65;
}

.article-checklist li::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 1px solid var(--ink);
  content: "";
}

.article-cta {
  margin-top: 64px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--ink);
  color: var(--white);
}

.article-cta h2,
.article-cta h3 {
  margin-top: 0;
  color: var(--white);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.68);
}

.article-cta .button {
  margin-top: 28px;
}

.article-related {
  padding: clamp(72px, 8vw, 110px) 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.article-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.article-related h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 660;
  letter-spacing: -0.045em;
}

.article-related-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.article-related-grid > a {
  min-height: 190px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--white);
}

.article-related-grid span {
  color: var(--muted);
  font-size: 10px;
}

.article-related-grid h3 {
  margin-top: auto;
  padding-top: 28px;
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  .reason-card:hover {
    transform: translateY(-2px);
    background: var(--white);
  }

  .insight-card:hover .insight-cover-signal i:nth-of-type(odd) {
    transform: translateX(7%) scaleX(0.86);
  }

  .insight-card:hover .insight-cover-signal i:nth-of-type(even) {
    transform: translateX(-7%) scaleX(0.68);
  }

  .insight-card:hover h3,
  .insight-card:hover > h2 {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
  }
}

@media (max-width: 1080px) {
  .answer-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .answer-flow li:nth-child(2)::after {
    display: none;
  }

  .foundation-promise {
    grid-template-columns: 0.45fr 1fr;
  }

  .foundation-promise > p:last-child {
    grid-column: 2;
  }

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

  .insight-grid .insight-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 9px);
  }

  .subpage-hero-grid {
    grid-template-columns: 1fr;
  }

  .ax-hero-flow {
    min-height: 190px;
  }

  .blog-principle-inner {
    grid-template-columns: 0.45fr 1fr;
  }

  .blog-principle-inner > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .hero-copy-wide {
    width: 100%;
  }

  .hero h1 .hero-question-line {
    white-space: normal;
  }

  .reason-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    min-height: 210px;
  }

  .reason-label {
    margin-top: 26px;
  }

  .foundation-grid,
  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .foundation-promise {
    grid-template-columns: 1fr;
  }

  .foundation-promise > p:last-child {
    grid-column: 1;
  }

  .renewal-compare {
    grid-template-columns: 1fr;
  }

  .compare-arrow {
    transform: rotate(90deg);
    margin-block: -22px;
    margin-inline: auto;
  }

  .price-card {
    min-height: 520px;
  }

  .partial-renewal,
  .ax-crosslink-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

  .insight-grid .insight-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .insight-cover {
    min-height: 230px;
  }

  .subpage-hero,
  .subpage-hero-inner {
    min-height: 620px;
  }

  .subpage-hero-inner {
    padding-top: 84px;
    padding-bottom: 32px;
  }

  .subpage-hero-grid {
    margin-top: 46px;
    gap: 36px;
  }

  .editorial-hero,
  .editorial-hero-inner {
    min-height: 540px;
  }

  .editorial-hero-inner {
    padding-top: 84px;
    padding-bottom: 34px;
  }

  .listing-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .blog-principle-inner {
    grid-template-columns: 1fr;
  }

  .blog-principle-inner > p:last-child {
    grid-column: 1;
  }

  .article-hero,
  .article-hero-inner {
    min-height: 540px;
  }

  .article-hero-inner {
    padding-top: 84px;
    padding-bottom: 38px;
  }

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

  .article-toc {
    position: static;
    grid-row: 1;
  }
}

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

  .answer-flow li {
    min-height: 150px;
  }

  .answer-flow li::after {
    display: none;
  }

  .answer-flow strong {
    margin-top: 32px;
  }

  .foundation-grid {
    gap: 12px;
  }

  .definition-card {
    min-height: 190px;
  }

  .renewal-compare article {
    min-height: auto;
  }

  .price-card {
    min-height: 0;
  }

  .price-note {
    margin-top: 34px;
  }

  .partial-renewal .text-link {
    width: fit-content;
  }

  .insight-cover {
    min-height: 210px;
  }

  .ax-crosslink h2 {
    font-size: 28px;
    line-height: 1.28;
  }

  .subpage-hero,
  .subpage-hero-inner {
    min-height: 620px;
  }

  .subpage-hero-copy h1,
  .editorial-hero-copy h1 {
    font-size: clamp(30px, 8.5vw, 38px);
    line-height: 1.24;
  }

  .subpage-hero-copy > p:not(.eyebrow),
  .editorial-hero-copy > p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.72;
  }

  .ax-hero-flow {
    min-height: 148px;
    padding: 18px 12px;
    grid-template-columns:
      44px minmax(10px, 1fr)
      44px minmax(10px, 1fr)
      44px minmax(10px, 1fr)
      44px;
    gap: 4px;
  }

  .ax-hero-flow .flow-node {
    width: 44px;
    height: 44px;
  }

  .editorial-hero-note {
    margin-top: 28px;
  }

  .article-hero h1 {
    font-size: clamp(30px, 8.4vw, 38px);
    line-height: 1.28;
  }

  .article-deck,
  .article-hero-copy > p:last-child {
    font-size: 15px;
    line-height: 1.72;
  }

  .article-layout {
    gap: 42px;
  }

  .article-body h2,
  .article-content h2 {
    margin-top: 54px;
    font-size: 27px;
    line-height: 1.38;
  }

  .article-body h3,
  .article-content h3 {
    margin-top: 40px;
    font-size: 21px;
    line-height: 1.46;
  }

  .article-body p,
  .article-content p,
  .article-body li,
  .article-content li {
    font-size: 16px;
    line-height: 1.86;
  }

  .article-summary {
    padding: 22px 20px;
  }

  .article-related-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
