@font-face {
  font-family: "Pretendard";
  src: url("assets/pretendard-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

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

:root {
  --ink: #151619;
  --navy: #17345d;
  --navy-deep: #102642;
  --blue: #149ed9;
  --green: #3b9c6d;
  --green-soft: #edf6f0;
  --soft: #f5f3ef;
  --paper: #ffffff;
  --muted: #697078;
  --line: #d8dadd;
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 30px 70px rgba(21, 22, 25, 0.14);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: -0.018em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.shell {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

.section {
  padding: clamp(92px, 9vw, 148px) 0;
}

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

h1,
h2,
h3 {
  margin-bottom: 0;
  line-height: 1.05;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.55rem, 6.3vw, 6.1rem);
  font-weight: 690;
}

h2 {
  font-size: clamp(2.45rem, 4.6vw, 4.55rem);
  font-weight: 660;
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 680;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 0.77rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow span {
  color: var(--muted);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  border-color: rgba(21, 22, 25, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 32px rgba(21, 22, 25, 0.04);
}

.header-inner {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand img,
.footer-brand img {
  width: 172px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #3e444b;
  font-size: 0.9rem;
  font-weight: 620;
}

.primary-nav > a:not(.nav-cta) {
  position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: var(--navy);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.primary-nav > a:not(.nav-cta):hover::after,
.primary-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 17px;
  border-radius: 4px;
  color: #fff;
  background: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 900px;
  padding: 170px 0 105px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(20, 158, 217, 0.065), transparent 29%),
    radial-gradient(circle at 88% 13%, rgba(59, 156, 109, 0.09), transparent 29%),
    #fff;
}

.hero::before {
  position: absolute;
  top: -260px;
  right: -220px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(23, 52, 93, 0.08);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(520px, 1.06fr);
  align-items: center;
  gap: clamp(54px, 7vw, 104px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero h1 {
  max-width: 760px;
}

.hero-lede {
  max-width: 650px;
  margin: 32px 0 36px;
  color: #565d65;
  font-size: clamp(1.1rem, 1.4vw, 1.32rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 720;
  letter-spacing: -0.01em;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--navy);
}

.button-primary:hover {
  background: #0f2a50;
}

.text-link {
  padding: 7px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 0.95rem;
  font-weight: 680;
}

.hero-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  margin: 48px 0 0;
  padding: 19px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 620;
  list-style: none;
}

.hero-principles li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-principles li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.hero-product {
  position: relative;
  z-index: 1;
  min-width: 0;
  margin-right: -10vw;
}

.product-window {
  position: relative;
  width: min(790px, 64vw);
  overflow: hidden;
  border: 1px solid rgba(21, 22, 25, 0.13);
  border-radius: 11px;
  background: #fff;
  box-shadow: var(--shadow);
}

.window-bar {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 6px;
  padding: 0 13px;
  border-bottom: 1px solid #e6e8ea;
  color: #81868b;
  background: #f4f5f6;
  font-size: 0.58rem;
  letter-spacing: 0.03em;
}

.window-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8cbd0;
}

.window-bar i:first-child {
  background: #ec6a5f;
}

.window-bar i:nth-child(2) {
  background: #e8bd50;
}

.window-bar i:nth-child(3) {
  margin-right: 6px;
  background: #62bc68;
}

.product-window > img {
  width: 100%;
  height: auto;
}

.agent-strip {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 22px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(16, 38, 66, 0.96);
  box-shadow: 0 12px 30px rgba(16, 38, 66, 0.2);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.agent-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
}

.agent-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55d392;
  box-shadow: 0 0 0 4px rgba(85, 211, 146, 0.12);
}

.media-note {
  width: min(640px, calc(100vw - 48px));
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: left;
}

.media-note span {
  color: var(--navy);
  font-weight: 740;
}

.hero-rule {
  position: absolute;
  right: 0;
  bottom: 0;
  left: max(24px, calc((100vw - 1200px) / 2));
  height: 1px;
  background: var(--line);
}

.problem-section {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: start;
  gap: 70px;
}

.section-heading .eyebrow {
  margin-top: 12px;
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading.compact {
  grid-template-columns: 0.45fr 1.55fr;
}

.problem-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
  margin-top: 85px;
}

.problem-intro {
  max-width: 420px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.72;
}

.issue-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.issue-list li {
  display: grid;
  grid-template-columns: 48px minmax(145px, 0.8fr) 1.4fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.issue-list span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 740;
  letter-spacing: 0.12em;
}

.issue-list strong {
  font-size: 1.05rem;
}

.issue-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.burden-callout {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 34px;
  max-width: 860px;
  margin: 88px 0 0 auto;
  padding: 34px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.burden-mark {
  color: var(--navy);
  font-size: clamp(3.8rem, 6vw, 6rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.07em;
}

.burden-callout strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.2rem;
}

.burden-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.workflow-section {
  color: #fff;
  background: var(--navy-deep);
}

.workflow-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 80px;
}

.workflow-heading p:last-child {
  max-width: 480px;
  margin: 0 0 8px auto;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.05rem;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 78px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid var(--line-dark);
  list-style: none;
}

.workflow-steps li {
  position: relative;
  min-height: 240px;
  padding: 24px 21px 28px;
  border-right: 1px solid var(--line-dark);
}

.workflow-steps li:last-child {
  border-right: 0;
}

.workflow-steps span {
  display: block;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.workflow-steps strong {
  display: block;
  margin-top: 70px;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.workflow-steps p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.5;
}

.workflow-steps li:last-child::after {
  position: absolute;
  top: -5px;
  right: 18px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--navy-deep);
  border-radius: 50%;
  background: #55d392;
  box-shadow: 0 0 0 4px rgba(85, 211, 146, 0.14);
  content: "";
}

.workflow-boundary {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 760px;
  margin: 38px 0 0 auto;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}

.workflow-boundary span {
  flex: 0 0 auto;
  color: #fff;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-section {
  background: #fff;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.principle {
  min-height: 410px;
  padding: 30px 34px 32px 0;
  border-right: 1px solid var(--line);
}

.principle + .principle {
  padding-left: 34px;
}

.principle:last-child {
  padding-right: 0;
  border-right: 0;
}

.principle-number {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.15em;
}

.principle h3 {
  max-width: 280px;
  margin-top: 72px;
}

.principle p {
  margin: 24px 0 0;
  color: #4f565d;
}

.principle small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.technology-section {
  background: var(--soft);
}

.technology-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 80px;
}

.technology-intro > p {
  max-width: 460px;
  margin: 0 0 8px auto;
  color: var(--muted);
  font-size: 1.02rem;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 80px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.pipeline li {
  position: relative;
  padding: 24px 20px 28px;
  border-right: 1px solid var(--line);
}

.pipeline li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -7px;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-top: 1px solid var(--navy);
  border-right: 1px solid var(--navy);
  background: var(--soft);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.pipeline li:last-child {
  border-right: 0;
}

.pipeline span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.pipeline strong {
  display: block;
  margin-top: 38px;
  font-size: 1rem;
}

.pipeline small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.benchmark-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 70px;
  margin-top: 105px;
}

.benchmark-copy h3 {
  max-width: 450px;
}

.benchmark-copy > p:last-child {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.benchmark-values {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.benchmark-values > div {
  padding: 32px 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.benchmark-values strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -0.045em;
}

.benchmark-values span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.benchmark-values i {
  color: var(--muted);
  font-size: 1.8rem;
  font-style: normal;
}

.benchmark-result strong {
  color: var(--green);
}

.benchmark-disclaimer {
  max-width: 770px;
  margin: 24px 0 0 auto;
  color: var(--muted);
  font-size: 0.76rem;
}

.benchmark-disclaimer strong {
  color: #3d444a;
}

.knowledge-stats {
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 0.75fr 1fr;
  margin-top: 105px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.knowledge-stats > div {
  min-height: 190px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.knowledge-stats > div:first-child {
  padding-left: 0;
}

.knowledge-stats > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.knowledge-stats strong {
  display: block;
  color: var(--navy);
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.knowledge-stats span {
  display: block;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.stat-boundary {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.73rem;
}

.readiness-section {
  background: #fff;
}

.readiness-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 90px;
}

.section-lede {
  max-width: 570px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.readiness-list {
  margin: 58px 0 0;
  border-top: 1px solid var(--ink);
}

.readiness-list > div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.readiness-list dt {
  color: var(--navy);
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.readiness-list dd {
  margin: 0;
  color: #565d65;
  font-size: 0.86rem;
}

.readiness-media {
  margin: 0;
}

.claim-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 22, 25, 0.11);
  border-radius: 10px;
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.claim-screen img {
  width: 100%;
  height: auto;
}

.screen-label {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(16, 38, 66, 0.9);
  font-size: 0.65rem;
  font-weight: 670;
}

.screen-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55d392;
}

.readiness-media figcaption {
  max-width: 520px;
  margin: 14px 0 0 auto;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: right;
}

.readiness-media figcaption strong {
  color: var(--navy);
}

.partnership-section {
  background: var(--green-soft);
}

.partnership-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 100px;
}

.partnership-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 30px 0 0;
  color: #58625d;
  font-size: 1.02rem;
}

.partner-types {
  margin: 58px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.partner-types li {
  position: relative;
  padding: 18px 34px 18px 0;
  border-bottom: 1px solid rgba(21, 22, 25, 0.14);
  font-size: 0.92rem;
  font-weight: 650;
}

.partner-types li::after {
  position: absolute;
  top: 22px;
  right: 6px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--navy);
  border-right: 1px solid var(--navy);
  content: "";
  transform: rotate(45deg);
}

.pilot-plan {
  padding-top: 46px;
}

.pilot-plan ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.pilot-plan li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(21, 22, 25, 0.14);
}

.pilot-plan li > span {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.pilot-plan li p {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) 1.2fr;
  gap: 22px;
  margin: 0;
  color: #667069;
  font-size: 0.82rem;
}

.pilot-plan li strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.singapore-note {
  margin: 40px 0 0;
  padding: 24px 26px;
  border-left: 3px solid var(--green);
  color: #59645e;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.singapore-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.95rem;
}

.company-section {
  background: var(--soft);
}

.company-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 80px;
}

.company-heading img {
  width: 168px;
  height: auto;
  margin-bottom: 35px;
}

.company-heading > p {
  max-width: 450px;
  margin: 0 0 7px auto;
  color: var(--muted);
}

.company-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--ink);
}

.company-metrics > div {
  min-height: 205px;
  padding: 28px 28px 30px 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-metrics > div:nth-child(3n + 2),
.company-metrics > div:nth-child(3n + 3) {
  padding-left: 28px;
}

.company-metrics > div:nth-child(3n) {
  padding-right: 0;
  border-right: 0;
}

.company-metrics strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.company-metrics span {
  display: block;
  max-width: 250px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}

.company-boundary {
  margin: 25px 0 0;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.final-cta {
  padding: clamp(100px, 11vw, 165px) 0;
  color: #fff;
  background: var(--navy-deep);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 100px;
}

.final-cta h2 {
  max-width: 790px;
}

.final-cta-grid > div:first-child > p:last-child {
  max-width: 680px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 1.05rem;
}

.contact-card {
  padding: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.65);
}

.button-light {
  width: 100%;
  color: var(--navy-deep);
  background: #fff;
}

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

.contact-card address {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.86rem;
  font-style: normal;
}

.contact-card address strong {
  color: #fff;
  font-size: 1rem;
}

.contact-card address a {
  width: fit-content;
  margin-top: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.contact-warning {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.73rem;
}

.contact-warning strong {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 35px;
  color: var(--muted);
  font-size: 0.72rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner p:nth-child(2) {
  justify-self: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 21px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    gap: 45px;
  }

  .readiness-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 55px;
  }

  .partnership-grid {
    gap: 65px;
  }

  .pilot-plan li p {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 40px, 760px);
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    inset: 80px 0 auto;
    display: grid;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    border-bottom: 1px solid transparent;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s var(--ease), opacity 0.2s ease, border-color 0.2s ease;
  }

  .primary-nav.open {
    max-height: calc(100dvh - 80px);
    border-color: var(--line);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 17px 24px;
    border-top: 1px solid var(--line);
  }

  .primary-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin: 14px 20px 20px;
    padding: 14px 18px !important;
    text-align: center;
  }

  .hero {
    min-height: 0;
    padding: 142px 0 88px;
  }

  .hero-grid,
  .section-heading,
  .problem-layout,
  .workflow-heading,
  .technology-intro,
  .benchmark-grid,
  .readiness-grid,
  .partnership-grid,
  .company-heading,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 70px;
  }

  .hero-product {
    margin-right: -160px;
  }

  .product-window,
  .media-note {
    width: 790px;
  }

  .media-note {
    width: min(640px, calc(100vw - 40px));
  }

  .section-heading,
  .workflow-heading,
  .technology-intro,
  .company-heading {
    gap: 28px;
  }

  .section-heading .eyebrow {
    margin-top: 0;
  }

  .problem-layout {
    gap: 42px;
    margin-top: 60px;
  }

  .problem-intro {
    max-width: 610px;
  }

  .workflow-heading p:last-child,
  .technology-intro > p,
  .company-heading > p {
    max-width: 650px;
    margin: 0;
  }

  .workflow-steps,
  .pipeline {
    grid-template-columns: 1fr;
  }

  .workflow-steps li {
    min-height: 0;
    padding: 21px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .workflow-steps strong {
    margin-top: 16px;
  }

  .workflow-steps li:last-child::after {
    top: 25px;
  }

  .pipeline li {
    display: grid;
    grid-template-columns: 50px 1fr 1fr;
    align-items: center;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pipeline li:not(:last-child)::after {
    display: none;
  }

  .pipeline strong,
  .pipeline small {
    margin: 0;
  }

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

  .principle,
  .principle + .principle {
    min-height: 0;
    padding: 28px 0 35px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .principle h3 {
    max-width: 620px;
    margin-top: 34px;
  }

  .benchmark-grid {
    gap: 40px;
  }

  .knowledge-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .knowledge-stats > div:nth-child(2) {
    border-right: 0;
  }

  .knowledge-stats > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .readiness-grid,
  .partnership-grid,
  .final-cta-grid {
    gap: 70px;
  }

  .readiness-media {
    max-width: 680px;
  }

  .pilot-plan {
    padding-top: 0;
  }

  .company-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-metrics > div,
  .company-metrics > div:nth-child(3n + 2),
  .company-metrics > div:nth-child(3n + 3) {
    padding: 28px 24px 30px 0;
    border-right: 1px solid var(--line);
  }

  .company-metrics > div:nth-child(even) {
    padding-right: 0;
    padding-left: 24px;
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 32px, 520px);
  }

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: clamp(3.05rem, 14.6vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11.5vw, 3.45rem);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img,
  .footer-brand img {
    width: 148px;
  }

  .primary-nav {
    inset: 72px 0 auto;
  }

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

  .hero-lede {
    margin: 25px 0 30px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .button-primary {
    width: 100%;
  }

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

  .hero-principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px 16px;
    margin-top: 36px;
  }

  .hero-product {
    margin-right: -245px;
  }

  .product-window,
  .media-note {
    width: 690px;
  }

  .media-note {
    width: calc(100vw - 32px);
  }

  .agent-strip {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .agent-strip span:not(:first-child) {
    display: none;
  }

  .media-note {
    padding-right: 0;
    font-size: 0.64rem;
  }

  .issue-list li {
    grid-template-columns: 36px 1fr;
    gap: 10px 14px;
  }

  .issue-list p {
    grid-column: 2;
  }

  .burden-callout {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 60px;
  }

  .workflow-steps,
  .pipeline,
  .principle-grid {
    margin-top: 55px;
  }

  .workflow-boundary {
    flex-direction: column;
    gap: 7px;
  }

  .pipeline li {
    grid-template-columns: 38px 1fr;
  }

  .pipeline small {
    grid-column: 2;
  }

  .benchmark-grid,
  .knowledge-stats {
    margin-top: 75px;
  }

  .benchmark-values {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .benchmark-values i {
    transform: rotate(90deg);
    text-align: center;
  }

  .benchmark-disclaimer {
    margin-left: 0;
  }

  .knowledge-stats {
    grid-template-columns: 1fr;
  }

  .knowledge-stats > div,
  .knowledge-stats > div:first-child,
  .knowledge-stats > div:last-child {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .knowledge-stats span {
    margin-top: 18px;
  }

  .readiness-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .screen-label {
    top: 10px;
    right: 10px;
  }

  .readiness-media figcaption {
    text-align: left;
  }

  .pilot-plan li p {
    grid-template-columns: 1fr;
  }

  .company-metrics {
    grid-template-columns: 1fr;
    margin-top: 65px;
  }

  .company-metrics > div,
  .company-metrics > div:nth-child(3n + 2),
  .company-metrics > div:nth-child(3n + 3),
  .company-metrics > div:nth-child(even) {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
  }

  .company-metrics span {
    margin-top: 23px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 17px;
    text-align: center;
  }

  .footer-brand,
  .footer-inner p:nth-child(2) {
    justify-self: center;
  }
}

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

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

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
