:root {
  --navy-950: #050a18;
  --navy-900: #070d1f;
  --navy-850: #0a1428;
  --navy-800: #0d1b38;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --paper: #f5f7fb;
  --paper-deep: #e8eef9;
  --white: #ffffff;
  --ink: #0b1b33;
  --muted: #5b6b85;
  --line: rgba(11, 27, 51, 0.16);
  --line-dark: rgba(255, 255, 255, 0.14);
  --red: #c9a961;
  --serif: "Noto Serif SC", "Songti SC", serif;
  --sans: "Inter", "PingFang SC", "Microsoft YaHei", sans-serif;
  --shell: min(1520px, calc(100% - clamp(48px, 6vw, 112px)));
  --shadow: 0 24px 70px rgba(2, 9, 22, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
  background: var(--navy-950);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

button {
  border: 0;
}

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

img {
  max-width: 100%;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--blue-500);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: white;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 11, 21, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: var(--shell);
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: linear-gradient(145deg, #60a5fa, #2563eb 64%, #1d4ed8);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.48),
    0 8px 22px rgba(37, 99, 235, 0.32);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
}

.brand-logo {
  display: block;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(37, 99, 235, 0.28));
}

.brand-footer .brand-logo {
  filter: drop-shadow(0 6px 16px rgba(37, 99, 235, 0.34));
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.brand-text strong {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 9px 13px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: white;
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.12);
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.main-nav a.is-active {
  background: rgba(37, 99, 235, 0.18);
  border-color: rgba(96, 165, 250, 0.2);
}

.nav-cta {
  min-height: 42px;
  padding: 0 18px;
  color: white;
  background: var(--blue-500);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.nav-cta:hover {
  background: #1d65f5;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 76% 42%, rgba(37, 99, 235, 0.16), transparent 29%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 52%, #0a1428);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(101, 151, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 151, 255, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-glow-a {
  width: 460px;
  height: 460px;
  right: 5vw;
  top: 20%;
  border: 1px solid rgba(102, 153, 255, 0.3);
  box-shadow:
    0 0 100px rgba(37, 99, 235, 0.16),
    inset 0 0 90px rgba(37, 99, 235, 0.08);
}

.hero-glow-b {
  width: 220px;
  height: 220px;
  right: 18vw;
  top: 36%;
  background: rgba(37, 99, 235, 0.1);
  filter: blur(70px);
}

.hero-inner {
  width: var(--shell);
  min-height: 100vh;
  margin: 0 auto;
  padding: 108px 0 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(500px, 0.92fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: clamp(52px, 6vw, 116px);
  row-gap: 0;
  position: relative;
  z-index: 2;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
}

.eyebrow,
.kicker {
  margin: 0 0 24px;
  color: var(--blue-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(60px, 6vw, 94px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.hero-accent {
  display: block;
  color: var(--blue-400);
  text-shadow: 0 0 38px rgba(37, 99, 235, 0.3);
}

.hero-lead {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.9;
}

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

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button-primary {
  color: white;
  background: var(--blue-500);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.25);
}

.button-primary:hover {
  background: #1d65f5;
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.32);
}

.text-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 600;
}

.text-link span {
  margin-left: 8px;
  color: var(--blue-300);
}

.hero-note {
  margin: 24px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.hero-note i,
.live-head i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: #65e8b1;
  box-shadow: 0 0 14px #65e8b1;
}

.twin-stage {
  min-height: 480px;
  position: relative;
  display: grid;
  place-items: center;
  grid-column: 2;
  grid-row: 1;
}

.console-backdrop {
  width: min(530px, 94%);
  height: 336px;
  position: absolute;
  top: 42px;
  right: -8px;
  padding: 20px;
  color: rgba(96, 165, 250, 0.42);
  background:
    linear-gradient(rgba(96, 165, 250, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.06) 1px, transparent 1px),
    rgba(13, 27, 56, 0.52);
  background-size: 32px 32px;
  border: 1px solid rgba(96, 165, 250, 0.13);
  border-radius: 18px;
  transform: translate(28px, -24px);
}

.console-backdrop span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.console-backdrop i {
  width: 44%;
  height: 1px;
  margin-top: 18px;
  display: block;
  background: rgba(96, 165, 250, 0.14);
}

.console-backdrop i:nth-of-type(2) {
  width: 66%;
}

.console-backdrop i:nth-of-type(3) {
  width: 52%;
}

.twin-console {
  width: min(570px, 100%);
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: white;
  background: rgba(7, 13, 31, 0.96);
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: 18px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    0 0 60px rgba(37, 99, 235, 0.1);
}

.console-topbar {
  min-height: 46px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.console-dots {
  display: flex;
  gap: 5px;
}

.console-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.console-dots i:first-child {
  background: var(--blue-400);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.7);
}

.console-topbar > strong {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #8de6be;
  font-size: 8px;
}

.console-topbar > strong i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.7);
}

.console-body {
  min-height: 326px;
  display: grid;
  grid-template-columns: 148px 1fr;
}

.console-profile {
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.1), transparent 48%),
    rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.console-avatar {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, #60a5fa, #2563eb 65%, #1d4ed8);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.28);
  font-family: var(--serif);
  font-size: 24px;
}

.profile-name {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.profile-name strong {
  font-family: var(--serif);
  font-size: 13px;
}

.profile-name span {
  color: #8de6be;
  font-size: 8px;
}

.profile-modes {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-modes span {
  padding: 8px 9px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.38);
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 8px;
}

.profile-modes span i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.profile-modes span.is-current {
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.11);
  border-color: rgba(96, 165, 250, 0.16);
}

.console-profile > small {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.28);
  font-size: 7px;
  line-height: 1.6;
}

.console-work {
  padding: 24px 24px 20px;
}

.console-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  letter-spacing: 0.06em;
}

.console-status span {
  color: #93c5fd;
}

.console-question {
  margin: 18px 0 20px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.7;
}

.console-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.console-facts div {
  min-height: 70px;
  padding: 11px 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.console-facts div:last-child {
  border-right: 0;
}

.console-facts span,
.console-facts small {
  color: rgba(255, 255, 255, 0.28);
  font-size: 7px;
}

.console-facts strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 600;
}

.console-handoff {
  margin-top: 17px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.13), rgba(37, 99, 235, 0.04));
  border-left: 2px solid var(--blue-400);
}

.console-handoff > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.console-handoff span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 7px;
}

.console-handoff strong {
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 600;
}

.console-handoff .handoff-action {
  flex: 0 0 auto;
  padding: 0;
  color: var(--blue-300);
  background: transparent;
  font-size: 8px;
  font-weight: 700;
}

.console-footer {
  min-height: 42px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.025);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 7px;
}

.console-footer strong {
  color: #8de6be;
  font-weight: 600;
}

.console-proof {
  position: absolute;
  z-index: 3;
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  background: rgba(10, 20, 40, 0.94);
  border: 1px solid rgba(96, 165, 250, 0.23);
  border-radius: 10px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.console-proof span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 7px;
}

.console-proof strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  font-weight: 600;
}

.proof-memory {
  top: 5px;
  left: -16px;
  flex-direction: column;
  align-items: flex-start;
}

.proof-memory > span {
  color: var(--blue-300);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.proof-boundary {
  right: -18px;
  bottom: 4px;
}

.proof-boundary > i {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #8de6be;
  background: rgba(52, 211, 153, 0.09);
  border: 1px solid rgba(52, 211, 153, 0.18);
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
}

.hero-concept {
  width: min(560px, 108%);
  height: 520px;
  margin: 0;
  position: relative;
}

.hero-concept::before {
  content: "";
  position: absolute;
  inset: 8% 7% 5% 18%;
  border: 1px solid rgba(96, 165, 250, 0.12);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.concept-aura {
  width: 70%;
  aspect-ratio: 1;
  position: absolute;
  top: 8%;
  right: 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), rgba(37, 99, 235, 0.035) 50%, transparent 72%);
  filter: blur(10px);
}

.hero-concept img {
  width: auto;
  height: 510px;
  position: absolute;
  right: 2px;
  bottom: -2px;
  z-index: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 22px 44px rgba(0, 0, 0, 0.26))
    drop-shadow(0 0 28px rgba(37, 99, 235, 0.2));
}

.hero-concept figcaption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.concept-label {
  padding: 8px 10px;
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  background: rgba(7, 13, 31, 0.58);
  border: 1px solid rgba(96, 165, 250, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.concept-label span {
  color: var(--blue-300);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.concept-label strong {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.concept-label-self {
  top: 47%;
  left: 3%;
}

.concept-label-twin {
  top: 16%;
  right: 1%;
}

.hero-metrics {
  width: 100%;
  min-height: 178px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics article {
  padding: 36px 28px 30px 0;
  position: relative;
}

.hero-metrics article:not(:first-child) {
  padding-left: 28px;
}

.hero-metrics article:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 58px;
  position: absolute;
  top: 42px;
  right: 0;
  background: rgba(255, 255, 255, 0.1);
}

.hero-metrics strong {
  display: flex;
  align-items: baseline;
  color: white;
  font-family: var(--serif);
  font-size: clamp(36px, 3.1vw, 52px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}

.hero-metrics em {
  margin-left: 5px;
  color: var(--blue-300);
  font-family: var(--sans);
  font-size: 0.4em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hero-metrics p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hero-metrics small {
  margin-left: 6px;
  color: var(--blue-300);
  font-size: 9px;
  letter-spacing: 0.04em;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-paper {
  background:
    radial-gradient(circle at 0 0, rgba(219, 234, 254, 0.72), transparent 30%),
    var(--paper);
}

.section-white {
  background: white;
}

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

.manifesto {
  padding: 152px 0 164px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 110px minmax(460px, 1fr) minmax(460px, 1fr);
  gap: 44px;
}

.section-index {
  padding-top: 9px;
  border-top: 1px solid var(--ink);
}

.section-index span {
  font-family: var(--serif);
  font-size: 40px;
}

.section-index p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.kicker {
  color: var(--red);
}

.kicker-blue {
  color: var(--blue-300);
}

.kicker-red {
  color: var(--blue-300);
}

.manifesto h2,
.section-heading h2,
.chat-copy h2,
.story-heading h2,
.boundary-intro h2,
.faq h2,
.final-inner h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.manifesto h2 {
  font-size: clamp(42px, 3.6vw, 58px);
}

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

.tension-list article {
  padding: 36px 0;
  display: grid;
  grid-template-columns: 42px minmax(150px, 0.7fr) minmax(220px, 1.3fr);
  align-items: start;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.tension-list article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
}

.tension-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
}

.tension-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.how {
  padding: 152px 0 172px;
  position: relative;
  overflow: hidden;
}

.how::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.46;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 13, 31, 0.62), rgba(7, 13, 31, 0.78)),
    url("./assets/how-flow-background-v1.webp") center / cover no-repeat;
}

.how .section-shell {
  position: relative;
  z-index: 1;
}

.heading-split {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.7fr);
  align-items: end;
  gap: 90px;
}

.section-heading h2,
.chat-copy h2,
.story-heading h2,
.boundary-intro h2,
.faq h2 {
  font-size: clamp(46px, 4.5vw, 74px);
}

.heading-split > p,
.story-heading > p,
.boundary-intro > p,
.chat-copy > p {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.9;
}

.flow-line {
  margin: 76px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  counter-reset: flow;
}

.flow-line li {
  min-height: 272px;
  padding: 30px 24px 28px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.flow-line li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue-400);
  box-shadow: 0 0 18px rgba(93, 145, 255, 0.8);
}

.flow-number {
  display: block;
  margin-bottom: 50px;
  color: var(--blue-300);
  font-size: 10px;
  letter-spacing: 0.15em;
}

.flow-line strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
}

.flow-line p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.8;
}

.flow-line .flow-final {
  padding-left: 24px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), transparent);
}

.flow-line .flow-final::before {
  left: 24px;
  background: white;
}

.section-blue {
  color: white;
  background:
    radial-gradient(circle at 90% 20%, rgba(96, 165, 250, 0.2), transparent 24%),
    linear-gradient(135deg, #1d4ed8, #2563eb 55%, #1e3a8a);
}

.experience {
  padding: 152px 0 172px;
}

.heading-split.light > p {
  color: rgba(255, 255, 255, 0.68);
}

.experience-board {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 240px 1fr;
  background: rgba(6, 19, 48, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(4, 19, 55, 0.34);
  overflow: hidden;
}

.scenario-tabs {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.scenario-tabs button {
  min-height: 76px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.56);
  background: transparent;
  border-left: 3px solid transparent;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}

.scenario-tabs button span {
  font-size: 9px;
}

.scenario-tabs button[aria-selected="true"] {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border-left-color: white;
}

.scenario-panel {
  min-height: 600px;
  padding: 60px;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(390px, 1.2fr);
  align-items: center;
  gap: 64px;
}

.scenario-time {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.scenario-brief h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 2.6vw, 44px);
  font-weight: 600;
  line-height: 1.35;
}

.scenario-brief > p:not(.scenario-time) {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.85;
}

.scenario-boundary {
  margin-top: 38px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.scenario-boundary span {
  color: #bfdbfe;
  font-size: 11px;
  font-weight: 700;
}

.scenario-boundary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.75;
}

.workbench {
  color: var(--ink);
  background: #f5f7fb;
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(1, 14, 48, 0.34);
  overflow: hidden;
}

.workbench-top {
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #eef3fb;
  border-bottom: 1px solid #dae1ee;
  color: #697386;
  font-size: 11px;
  font-weight: 600;
}

.traffic-lights {
  display: flex;
  gap: 5px;
}

.traffic-lights i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a8b3c7;
}

.traffic-lights i:first-child {
  background: #f36c5d;
}

.status-pill {
  margin-left: auto;
  padding: 5px 8px;
  color: #2560d4;
  background: #dce8ff;
  border-radius: 5px;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.workbench-body {
  padding: 34px;
}

.workbench-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7b8494;
  font-size: 10px;
}

.workbench-progress strong {
  color: #285ec4;
}

.progress-track {
  height: 4px;
  margin: 10px 0 25px;
  background: #e3e9f2;
  border-radius: 4px;
  overflow: hidden;
}

.progress-track i {
  width: 74%;
  height: 100%;
  display: block;
  background: var(--blue-500);
  transition: width 420ms ease;
}

.draft-label {
  margin: 0 0 10px;
  color: #8a94a4;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.workbench h4 {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.5;
}

.workbench ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.workbench li {
  padding: 12px 0 12px 18px;
  position: relative;
  border-bottom: 1px solid #e6eaf1;
  color: #596271;
  font-size: 12px;
  line-height: 1.6;
}

.workbench li::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 16px;
  left: 1px;
  border-radius: 50%;
  background: var(--blue-500);
}

.workbench-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workbench-actions button {
  min-height: 44px;
  padding: 0 18px;
  color: white;
  background: var(--blue-500);
  border-radius: 8px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.workbench-actions span {
  color: #87909f;
  font-size: 10px;
}

.chat-lab {
  padding: 152px 0 164px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 48%, rgba(37, 99, 235, 0.08), transparent 28%),
    var(--paper);
}

.chat-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(64px, 8vw, 120px);
}

.chat-copy > p {
  max-width: 520px;
  color: var(--muted);
}

.reception-steps {
  max-width: 520px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.reception-steps li {
  min-height: 88px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.reception-steps li > span {
  color: var(--blue-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.reception-steps p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reception-steps strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.reception-steps small {
  color: var(--muted);
  font-size: 12px;
}

.handoff-visual {
  width: min(560px, 100%);
  height: 610px;
  margin: 0 0 0 auto;
  position: relative;
}

.handoff-orbit {
  position: absolute;
  inset: 5% 2% 6% 8%;
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 50% 48% 52% 46%;
  transform: rotate(10deg);
}

.handoff-orbit::before,
.handoff-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.handoff-orbit::before {
  inset: 15%;
  border: 1px dashed rgba(37, 99, 235, 0.1);
}

.handoff-orbit::after {
  width: 7px;
  height: 7px;
  right: 9%;
  top: 24%;
  background: var(--blue-500);
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.08);
}

.handoff-visual img {
  height: 600px;
  width: auto;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
  object-fit: contain;
  filter:
    drop-shadow(0 28px 44px rgba(7, 16, 31, 0.14))
    drop-shadow(0 0 22px rgba(37, 99, 235, 0.08));
}

.handoff-caption {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.handoff-caption span {
  color: var(--blue-500);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.handoff-caption strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.handoff-caption-receive {
  left: 0;
  bottom: 14%;
}

.handoff-caption-judge {
  top: 12%;
  right: 0;
  align-items: flex-end;
}

.handoff-visual figcaption {
  position: absolute;
  right: 2%;
  bottom: 2%;
  color: rgba(11, 27, 51, 0.42);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.story {
  padding: 152px 0 172px;
}

.story-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.56fr);
  align-items: end;
  gap: 64px;
}

.story-heading > p {
  color: var(--muted);
}

.day-layout {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.day-times {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.day-times button {
  min-height: 126px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  background: transparent;
  border-bottom: 1px solid var(--line);
  box-shadow: inset 3px 0 0 transparent;
  cursor: pointer;
  text-align: left;
  transition:
    background 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

.day-times button:last-child {
  border-bottom: 0;
}

.day-times button[aria-selected="true"] {
  color: white;
  background: var(--navy-900);
  box-shadow: inset 3px 0 0 var(--red);
}

.day-times time {
  font-family: var(--serif);
  font-size: 27px;
}

.day-times span {
  font-size: 13px;
  font-weight: 600;
}

.day-detail {
  min-height: 380px;
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.day-detail > p:first-child {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.day-detail h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 600;
}

.day-detail > p:nth-of-type(2) {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.day-metrics {
  margin-top: 36px;
  display: flex;
  gap: 64px;
}

.day-metrics div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.day-metrics strong {
  font-family: var(--serif);
  font-size: 36px;
}

.day-metrics span {
  color: var(--muted);
  font-size: 11px;
}

.boundary {
  padding: 152px 0 164px;
}

.boundary-grid {
  display: grid;
  grid-template-columns: minmax(440px, 0.95fr) minmax(480px, 1.05fr);
  gap: 88px;
}

.boundary-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.boundary-intro > p {
  margin-top: 34px;
}

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

.boundary-list article {
  min-height: 148px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 46px 1fr 34px;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.boundary-list article > span {
  color: var(--blue-300);
  font-size: 11px;
}

.boundary-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 23px;
}

.boundary-list p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  line-height: 1.75;
}

.boundary-list i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #9ff0cd;
  border: 1px solid rgba(159, 240, 205, 0.24);
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
}

.faq {
  padding: 152px 0 164px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
  gap: 88px;
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 102px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 19px;
}

.faq-item button span {
  color: var(--red);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
}

.faq-answer p {
  max-width: 620px;
  margin: -5px 0 32px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.final-cta {
  padding: 196px 0;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(5, 10, 24, 0.94) 0%, rgba(7, 13, 31, 0.82) 48%, rgba(13, 27, 56, 0.32) 100%),
    url("./assets/final-path-background-v1.webp") center / cover no-repeat;
}

.final-orbit {
  width: 740px;
  height: 740px;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.final-orbit::before,
.final-orbit::after {
  content: "";
  position: absolute;
  inset: 15%;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.final-orbit::after {
  inset: 31%;
  border-style: solid;
}

.final-inner {
  position: relative;
  z-index: 1;
}

.final-inner .kicker {
  color: rgba(255, 255, 255, 0.62);
}

.final-inner h2 {
  font-size: clamp(46px, 5vw, 76px);
}

.final-inner > p:not(.kicker) {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.9;
}

.button-light {
  margin-top: 38px;
  color: #123a91;
  background: white;
  box-shadow: 0 18px 42px rgba(3, 19, 61, 0.25);
}

.button-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(3, 19, 61, 0.32);
}

.final-inner > small {
  margin-top: 18px;
  display: block;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.16), transparent 26%),
    var(--navy-950);
}

.site-footer::before {
  content: "";
  width: 420px;
  height: 420px;
  position: absolute;
  right: -150px;
  bottom: -240px;
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 50%;
}

.footer-main {
  min-height: 420px;
  padding: 96px 0 88px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  align-items: start;
  gap: clamp(54px, 8vw, 120px);
}

.brand-footer {
  width: max-content;
}

.footer-kicker {
  margin: 44px 0 0;
  color: var(--blue-300);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.footer-brand h2 {
  margin: 18px 0 0;
  font-family: var(--serif);
  font-size: clamp(31px, 2.8vw, 44px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.footer-intro {
  max-width: 460px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--serif);
  font-size: 13px;
  line-height: 1.85;
}

.footer-side {
  padding-top: 5px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px);
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-title {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.footer-email {
  display: inline-block;
  color: white;
  border-bottom: 1px solid rgba(96, 165, 250, 0.45);
  font-size: 12px;
  font-weight: 600;
}

.footer-cta {
  margin-top: 26px;
  padding: 11px 22px;
  color: var(--blue-300);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: 999px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.footer-cta:hover {
  color: white;
  background: rgba(37, 99, 235, 0.22);
  border-color: rgba(96, 165, 250, 0.7);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.footer-links a {
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  min-height: 74px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr 0.6fr;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.28);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 8px;
}

.footer-bottom > p {
  margin: 0;
  text-align: center;
}

.footer-bottom > div {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.apply-dialog {
  width: min(520px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 0;
  border-radius: 22px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.apply-dialog::backdrop {
  background: rgba(2, 7, 15, 0.76);
  backdrop-filter: blur(8px);
}

.apply-form {
  padding: 44px;
  position: relative;
}

.apply-form h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
}

.dialog-intro {
  margin: 13px 0 28px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.dialog-close {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--muted);
  background: rgba(11, 27, 51, 0.06);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
}

.apply-form label {
  margin-top: 16px;
  display: block;
}

.apply-form label span {
  margin-bottom: 8px;
  display: block;
  color: #4f5955;
  font-size: 10px;
  font-weight: 700;
}

.apply-form input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(11, 27, 51, 0.17);
  border-radius: 9px;
  outline: none;
}

.apply-form input:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

.form-status {
  min-height: 18px;
  margin: 14px 0 0;
  color: #059669;
  font-size: 11px;
  text-align: center;
}

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

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes morph {
  0% {
    transform: rotate(0deg) scale(0.92);
  }
  100% {
    transform: rotate(22deg) scale(1.04);
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 48px, 1000px);
  }

  .main-nav {
    gap: 20px;
  }

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

  .hero h1 {
    font-size: clamp(56px, 7vw, 78px);
  }

  .manifesto-grid {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 28px 36px;
  }

  .manifesto-copy,
  .tension-list {
    grid-column: 2;
  }

  .tension-list article {
    grid-template-columns: 34px minmax(180px, 0.68fr) minmax(260px, 1.32fr);
  }

  .tension-list p {
    grid-column: auto;
  }

  .scenario-panel {
    padding: 38px;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 36px;
  }

  .boundary-grid,
  .faq-grid {
    gap: 64px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 86px;
  }

  .nav-wrap {
    height: 70px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    color: white;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    width: 22px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .main-nav {
    position: fixed;
    inset: 70px 0 auto;
    padding: 26px 20px 32px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(5, 11, 21, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
    border-radius: 10px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 120px 0 40px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 28px;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
  }

  .hero-metrics {
    grid-column: 1;
    grid-row: 2;
  }

  .twin-stage {
    grid-column: 1;
    grid-row: 3;
    min-height: 470px;
    margin-top: 0;
  }

  .hero-concept {
    width: min(620px, 100%);
  }

  .hero-concept img {
    right: 5%;
  }

  .live-card {
    right: 0;
  }

  .hero-metrics {
    min-height: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-metrics article {
    min-height: 106px;
    padding: 22px 20px 18px 0;
  }

  .hero-metrics article:not(:first-child) {
    padding-left: 20px;
  }

  .hero-metrics article:nth-child(2) {
    padding-right: 0;
  }

  .hero-metrics article:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-metrics article:nth-child(4) {
    padding-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-metrics article:nth-child(2)::after {
    display: none;
  }

  .hero-metrics article:not(:last-child)::after {
    height: 34px;
    top: 26px;
  }

  .manifesto,
  .how,
  .experience,
  .chat-lab,
  .story,
  .boundary,
  .faq {
    padding: 80px 0;
  }

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

  .manifesto-copy,
  .tension-list {
    grid-column: auto;
  }

  .section-index {
    width: 90px;
  }

  .heading-split,
  .story-heading,
  .chat-grid,
  .boundary-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .flow-line {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }

  .flow-line li {
    min-height: auto;
    padding: 24px 0 34px 40px;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
  }

  .flow-line li::before {
    top: 27px;
    left: -5px;
  }

  .flow-number {
    margin-bottom: 15px;
  }

  .flow-line .flow-final {
    padding-left: 40px;
  }

  .flow-line .flow-final::before {
    left: -5px;
  }

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

  .scenario-tabs {
    padding: 0;
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    overflow-x: auto;
  }

  .scenario-tabs button {
    min-width: 150px;
    min-height: 66px;
    justify-content: center;
    border-left: 0;
    border-bottom: 3px solid transparent;
  }

  .scenario-tabs button[aria-selected="true"] {
    border-bottom-color: white;
  }

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

  .handoff-visual {
    margin: 0 auto;
  }

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

  .day-times {
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

  .day-times button {
    min-width: 190px;
    grid-template-columns: 1fr;
    gap: 7px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .boundary-intro {
    position: static;
  }

  .footer-main {
    min-height: 0;
    padding: 56px 0;
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .footer-side {
    padding-top: 0;
    max-width: 520px;
  }

  .footer-bottom {
    padding: 22px 0;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: left;
  }

  .footer-bottom > p {
    text-align: left;
  }

  .footer-bottom > div {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .brand-text small {
    display: none;
  }

  .hero-inner {
    padding: 104px 0 24px;
    gap: 24px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 64px);
    line-height: 1.17;
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .twin-stage {
    min-height: 420px;
  }

  .hero-concept {
    width: 100%;
    height: 410px;
  }

  .hero-concept::before {
    inset: 16% -4% 9% 4%;
  }

  .hero-concept img {
    height: 400px;
    right: -2px;
  }

  .concept-label {
    padding: 8px 9px;
  }

  .concept-label-self {
    top: 50%;
    left: 0;
  }

  .concept-label-twin {
    top: 18%;
    right: 0;
  }

  .hero-concept figcaption {
    right: 4px;
    bottom: 5px;
  }

  .manifesto,
  .how,
  .experience,
  .chat-lab,
  .story,
  .boundary,
  .faq {
    padding: 64px 0;
  }

  .heading-split,
  .story-heading,
  .chat-grid,
  .boundary-grid,
  .faq-grid {
    gap: 32px;
  }

  .flow-line {
    margin-top: 44px;
  }

  .console-backdrop,
  .console-proof {
    display: none;
  }

  .twin-console {
    width: 100%;
    border-radius: 14px;
  }

  .console-body {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .console-profile {
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 0 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .console-avatar {
    width: 42px;
    height: 42px;
    grid-row: 1 / 3;
    border-radius: 12px;
    font-size: 20px;
  }

  .profile-name {
    margin-top: 0;
  }

  .profile-modes {
    display: none;
  }

  .console-profile > small {
    margin-top: 4px;
    grid-column: 2;
  }

  .console-work {
    padding: 18px 16px 16px;
  }

  .console-question {
    margin: 14px 0 16px;
    font-size: 15px;
  }

  .console-facts div {
    min-height: 62px;
    padding: 9px 8px;
  }

  .console-handoff {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .console-footer span:nth-child(2) {
    display: none;
  }

  .hero-metrics strong {
    font-size: 30px;
  }

  .hero-metrics p {
    max-width: 145px;
    line-height: 1.55;
  }

  .manifesto h2,
  .section-heading h2,
  .chat-copy h2,
  .story-heading h2,
  .boundary-intro h2,
  .faq h2 {
    font-size: 36px;
  }

  .tension-list article {
    grid-template-columns: 30px 1fr;
    padding: 22px 0;
  }

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

  .scenario-panel {
    min-height: 0;
    padding: 24px 18px;
    gap: 30px;
  }

  .scenario-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
  }

  .scenario-tabs button {
    min-width: 0;
    padding: 0 6px;
    gap: 6px;
    white-space: nowrap;
  }

  .scenario-tabs button span {
    display: none;
  }

  .scenario-brief h3 {
    font-size: 28px;
  }

  .scenario-time {
    margin-bottom: 14px;
  }

  .scenario-brief > p:not(.scenario-time) {
    margin-top: 18px;
  }

  .scenario-boundary {
    margin-top: 24px;
    padding-top: 16px;
  }

  .workbench-body {
    padding: 18px;
  }

  .workbench-top {
    min-height: 48px;
  }

  .progress-track {
    margin: 8px 0 18px;
  }

  .workbench h4 {
    font-size: 19px;
  }

  .workbench ul {
    margin-top: 14px;
  }

  .workbench li {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .workbench-actions {
    margin-top: 18px;
  }

  .handoff-visual {
    height: 450px;
  }

  .handoff-visual img {
    height: 440px;
  }

  .handoff-caption-receive {
    left: -2px;
  }

  .handoff-caption-judge {
    right: -2px;
  }

  .day-detail {
    padding: 32px 20px;
  }

  .day-times {
    flex-direction: column;
    overflow: visible;
  }

  .day-times button {
    width: 100%;
    min-width: 0;
    min-height: 76px;
    padding: 0 18px;
    grid-template-columns: 86px 1fr;
    gap: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .day-metrics {
    gap: 28px;
  }

  .boundary-list article {
    grid-template-columns: 36px 1fr;
  }

  .boundary-list i {
    display: none;
  }

  .final-cta {
    padding: 84px 0;
    background:
      linear-gradient(90deg, rgba(5, 10, 24, 0.95), rgba(7, 13, 31, 0.76)),
      url("./assets/final-path-background-v1.webp") 68% center / cover no-repeat;
  }

  .final-inner h2 {
    font-size: 42px;
  }

  .footer-main {
    padding: 44px 0 36px;
    gap: 34px;
  }

  .footer-kicker {
    margin-top: 28px;
  }

  .footer-brand h2 {
    font-size: 29px;
  }

  .footer-side {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-cta {
    margin-top: 20px;
  }

  .footer-links {
    gap: 13px;
  }

  .footer-title {
    margin-bottom: 20px;
  }

  .footer-bottom {
    padding: 18px 0;
    gap: 9px;
  }

  .apply-form {
    padding: 38px 24px 28px;
  }
}

/* ---------- V8 additions ---------- */

.metrics-source {
  margin: 0;
  padding: 4px 0 28px;
  grid-column: 1 / -1;
  align-self: end;
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.memory-note {
  margin-top: 116px;
  padding-top: 60px;
  display: grid;
  grid-template-columns: minmax(520px, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.memory-lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.memory-lead span {
  color: var(--blue-300);
}

.memory-copy {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 2;
}

.sample-twin {
  padding: 152px 0 164px;
}

.sample-card {
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.sample-persona h2 {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.sample-facts {
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
}

.sample-facts div {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.sample-facts dt {
  color: var(--blue-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.sample-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--serif);
  font-size: 15px;
}

.sample-dialog {
  margin: 0;
  padding: 46px 48px 36px;
  position: relative;
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(96, 165, 250, 0.14), transparent 40%),
    var(--navy-850);
  box-shadow: var(--shadow);
}

.sample-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border: 1px solid rgba(201, 169, 97, 0.5);
  border-radius: 999px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.sample-dialog blockquote {
  margin: 28px 0 0;
  padding: 0;
}

.sample-q {
  margin: 0;
  color: white;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.8;
}

.sample-a {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-left: 2px solid var(--blue-400);
  border-radius: 0 12px 12px 0;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.05);
  font-size: 14px;
  line-height: 1.9;
}

.sample-dialog figcaption {
  margin-top: 24px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.sample-dialog figcaption strong {
  color: var(--blue-300);
  font-weight: 600;
}

.sample-dialog > small {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  letter-spacing: 0.04em;
}

@media (max-width: 960px) {
  .memory-note,
  .sample-card {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .memory-note {
    margin-top: 64px;
    padding-top: 32px;
  }

  .sample-dialog {
    padding: 26px 22px 22px;
  }

  .handoff-visual {
    margin: 0 auto;
    overflow: hidden;
  }

  .handoff-visual img {
    width: min(100%, 380px);
    height: auto;
  }
}

@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;
  }

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

/* ---------- Mobile product experience ---------- */

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 72px;
  }

  body {
    overflow-x: hidden;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-header {
    background: rgba(5, 11, 21, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
  }

  .nav-wrap {
    height: 68px;
  }

  .brand-logo {
    width: 116px;
    height: auto;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    margin-right: -8px;
    border-radius: 50%;
  }

  .menu-toggle:active {
    background: rgba(255, 255, 255, 0.08);
  }

  .main-nav {
    inset: 68px 0 0;
    min-height: calc(100dvh - 68px);
    padding: 24px 20px max(30px, env(safe-area-inset-bottom));
    justify-content: flex-start;
  }

  .main-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    font-family: var(--serif);
    font-size: 18px;
  }

  .main-nav .nav-cta {
    width: 100%;
    min-height: 52px;
    margin-top: 16px;
    font-size: 14px;
  }

  .hero-inner {
    min-height: auto;
    padding: 112px 0 28px;
    grid-template-rows: auto auto auto;
    gap: 0;
  }

  .hero-copy {
    grid-row: 1;
  }

  .eyebrow,
  .kicker {
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .eyebrow {
    gap: 10px;
    white-space: nowrap;
  }

  .eyebrow span {
    width: 24px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: clamp(42px, 12.2vw, 52px);
    line-height: 1.16;
    letter-spacing: -0.045em;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.85;
  }

  .hero-lead br {
    display: none;
  }

  .hero-actions {
    margin-top: 30px;
    align-items: stretch;
    flex-direction: row;
    gap: 14px;
  }

  .hero-actions .button {
    min-height: 52px;
    padding: 0 18px;
    flex: 1 1 auto;
    gap: 16px;
  }

  .hero-actions .text-link {
    min-height: 52px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 12px;
  }

  .hero-note {
    margin-top: 20px;
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.6;
  }

  .hero-note i {
    margin-top: 5px;
    flex: 0 0 auto;
  }

  .twin-stage {
    min-height: 310px;
    margin: 12px 0 0;
    grid-row: 2;
  }

  .hero-concept {
    width: 100%;
    height: 310px;
  }

  .hero-concept::before {
    inset: 14% 0 8% 12%;
  }

  .concept-aura {
    width: 76%;
    top: 3%;
    right: -3%;
  }

  .hero-concept img {
    width: auto;
    height: 306px;
    right: 8%;
    bottom: 0;
  }

  .concept-label {
    padding: 7px 9px;
  }

  .concept-label-self {
    top: 51%;
    left: 2%;
  }

  .concept-label-twin {
    top: 14%;
    right: 0;
  }

  .hero-concept figcaption {
    right: 0;
    bottom: 3px;
  }

  .hero-metrics {
    margin-top: 4px;
    grid-row: 3;
  }

  .hero-metrics article {
    min-height: 100px;
    padding: 22px 16px 18px 0;
  }

  .hero-metrics article:not(:first-child) {
    padding-left: 16px;
  }

  .hero-metrics article:nth-child(3) {
    padding-left: 0;
  }

  .hero-metrics strong {
    font-size: 31px;
  }

  .hero-metrics p {
    margin-top: 11px;
    font-size: 10px;
    letter-spacing: 0.07em;
    line-height: 1.55;
  }

  .hero-metrics small {
    display: block;
    margin: 3px 0 0;
  }

  .metrics-source {
    padding: 14px 0 0;
    font-size: 9px;
    line-height: 1.65;
    letter-spacing: 0.03em;
  }

  .manifesto,
  .how,
  .experience,
  .chat-lab,
  .sample-twin,
  .story,
  .boundary,
  .faq {
    padding: 76px 0;
  }

  .manifesto-grid,
  .heading-split,
  .story-heading,
  .chat-grid,
  .boundary-grid,
  .faq-grid,
  .memory-note,
  .sample-card {
    gap: 28px;
  }

  .section-index {
    width: 100%;
    padding-top: 12px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
  }

  .section-index span {
    font-size: 28px;
  }

  .section-index p {
    margin: 0;
  }

  .manifesto h2,
  .section-heading h2,
  .chat-copy h2,
  .story-heading h2,
  .boundary-intro h2,
  .faq h2 {
    font-size: 34px;
    line-height: 1.34;
    letter-spacing: -0.035em;
  }

  .heading-split > p,
  .story-heading > p,
  .boundary-intro > p,
  .chat-copy > p {
    font-size: 15px;
    line-height: 1.85;
  }

  .tension-list article {
    padding: 24px 0;
    grid-template-columns: 32px 1fr;
    gap: 8px 14px;
  }

  .tension-list h3 {
    font-size: 19px;
  }

  .tension-list p {
    font-size: 13px;
    line-height: 1.75;
  }

  .flow-line {
    margin-top: 38px;
  }

  .flow-line li,
  .flow-line .flow-final {
    margin-left: 5px;
    padding: 18px 12px 26px 30px;
  }

  .flow-line li::before,
  .flow-line .flow-final::before {
    top: 22px;
  }

  .flow-line .flow-final {
    border-radius: 0 14px 14px 0;
  }

  .flow-number {
    margin-bottom: 9px;
  }

  .flow-line strong {
    font-size: 19px;
  }

  .flow-line p {
    margin-top: 9px;
  }

  .memory-note {
    margin-top: 42px;
    padding-top: 28px;
  }

  .memory-lead {
    font-size: 27px;
    line-height: 1.55;
  }

  .memory-copy {
    font-size: 14px;
    line-height: 1.9;
  }

  .experience-board {
    margin: 38px -4px 0;
    border-radius: 18px;
  }

  .scenario-tabs button {
    min-height: 58px;
    font-size: 12px;
  }

  .scenario-panel {
    padding: 26px 18px 20px;
    gap: 26px;
  }

  .scenario-time {
    line-height: 1.5;
    letter-spacing: 0.08em;
  }

  .scenario-brief h3 {
    font-size: 27px;
    line-height: 1.42;
  }

  .scenario-brief > p:not(.scenario-time) {
    font-size: 14px;
    line-height: 1.8;
  }

  .scenario-boundary {
    grid-template-columns: 64px 1fr;
    gap: 10px;
  }

  .workbench {
    border-radius: 14px;
  }

  .workbench-top {
    padding: 0 14px;
    gap: 10px;
  }

  .status-pill {
    padding: 4px 6px;
    font-size: 8px;
  }

  .workbench-body {
    padding: 20px 16px 18px;
  }

  .workbench-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .workbench-actions button {
    width: 100%;
    min-height: 46px;
  }

  .handoff-visual {
    width: 100%;
    height: 350px;
    margin-top: 2px;
    overflow: hidden;
  }

  .handoff-visual img {
    width: auto;
    height: 345px;
  }

  .handoff-caption strong {
    font-size: 15px;
  }

  .handoff-caption-receive {
    left: 2px;
    bottom: 13%;
  }

  .handoff-caption-judge {
    top: 9%;
    right: 2px;
  }

  .sample-persona h2 {
    margin-top: 14px;
    font-size: 32px;
  }

  .sample-facts {
    margin-top: 30px;
  }

  .sample-facts div {
    grid-template-columns: 80px 1fr;
    padding: 15px 0;
    gap: 12px;
  }

  .sample-dialog {
    padding: 24px 18px 20px;
    border-radius: 18px;
  }

  .sample-q {
    font-size: 17px;
    line-height: 1.75;
  }

  .sample-a {
    padding: 15px 16px;
    font-size: 13px;
    line-height: 1.85;
  }

  .sample-dialog figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .day-layout {
    margin-top: 34px;
    border: 0;
  }

  .day-times {
    padding: 4px;
    flex-direction: row;
    gap: 4px;
    background: var(--paper-deep);
    border: 0;
    border-radius: 12px;
  }

  .day-times button {
    width: auto;
    min-width: 0;
    min-height: 66px;
    padding: 9px 5px;
    grid-template-columns: 1fr;
    gap: 4px;
    flex: 1;
    border: 0;
    border-radius: 9px;
    box-shadow: none;
    text-align: center;
  }

  .day-times button[aria-selected="true"] {
    box-shadow: none;
  }

  .day-times time {
    font-size: 19px;
  }

  .day-times span {
    font-size: 9px;
    line-height: 1.35;
  }

  .day-detail {
    min-height: 0;
    padding: 30px 4px 0;
  }

  .day-detail h3 {
    font-size: 27px;
    line-height: 1.45;
  }

  .day-metrics {
    margin-top: 28px;
    gap: 20px;
  }

  .day-metrics div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .day-metrics strong {
    font-size: 32px;
  }

  .boundary-intro > p {
    margin-top: 22px;
  }

  .boundary-list article {
    min-height: 0;
    padding: 24px 0;
    align-items: start;
    gap: 14px;
  }

  .boundary-list h3 {
    font-size: 20px;
    line-height: 1.45;
  }

  .boundary-list p {
    margin-top: 8px;
  }

  .faq-item button {
    min-height: 84px;
    gap: 18px;
    font-size: 17px;
    line-height: 1.5;
  }

  .faq-answer p {
    margin-bottom: 26px;
    font-size: 13px;
  }

  .final-cta {
    padding: 92px 0;
    background:
      linear-gradient(90deg, rgba(5, 10, 24, 0.96), rgba(7, 13, 31, 0.77)),
      url("./assets/final-path-background-v1.webp") 64% center / cover no-repeat;
  }

  .final-inner h2 {
    font-size: 38px;
    line-height: 1.38;
  }

  .final-inner > p:not(.kicker) {
    margin-top: 22px;
    font-size: 14px;
  }

  .button-light {
    width: 100%;
  }

  .footer-main {
    padding: 48px 0 40px;
  }

  .footer-brand h2 {
    font-size: 28px;
  }

  .footer-email {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-bottom > p {
    line-height: 1.6;
  }

  .apply-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 18px;
  }

  .apply-form {
    padding: 36px 20px 24px;
  }

  .apply-form h2 {
    padding-right: 34px;
    font-size: 28px;
  }

  .dialog-close {
    top: 14px;
    right: 14px;
  }

  .apply-form input {
    height: 50px;
    font-size: 16px;
  }
}
