@font-face {
  font-family: "Pretendard";
  src: url("/theme/eb4_busi_042/plugins/font/Pretendard/woff/Pretendard-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("/theme/eb4_busi_042/plugins/font/Pretendard/woff/Pretendard-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("/theme/eb4_busi_042/plugins/font/Pretendard/woff/Pretendard-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Pretendard";
  src: url("/theme/eb4_busi_042/plugins/font/Pretendard/woff/Pretendard-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --page: #f7f9fc;
  --surface: #fcfdff;
  --surface-subtle: #f1f5fa;
  --surface-accent: #eaf2ff;
  --ink: #101828;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #dbe3ee;
  --line-strong: #c6d2e2;
  --accent: #155eef;
  --accent-hover: #0f4fd4;
  --accent-ink: #0b3a92;
  --accent-contrast: #f7faff;
  --signal: #ffcf33;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-soft: 0 18px 50px rgba(30, 64, 110, 0.1);
  --shadow-stage: 0 32px 90px rgba(26, 67, 126, 0.16);
  --container: 1280px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--page);
  color: var(--ink);
  font-family: "Pretendard", system-ui, sans-serif;
  font-size: 16px;
  letter-spacing: -0.02em;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 10%, rgba(21, 94, 239, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfcfe 0%, #f7f9fc 66%, #f3f6fa 100%);
}

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

a {
  color: inherit;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(21, 94, 239, 0.28);
  outline-offset: 3px;
}

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

.announcement {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.announcement strong {
  margin-right: 9px;
  color: var(--signal);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid rgba(219, 227, 238, 0.9);
  background: rgba(252, 253, 255, 0.88);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

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

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.wordmark strong {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.wordmark small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.primary-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0;
  transform: scaleX(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 0 20px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-contrast);
}

.button-primary:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(252, 253, 255, 0.82);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #9db0c9;
  background: var(--surface);
}

.button-quiet {
  min-height: 40px;
  padding-inline: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.hero {
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(440px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: 64px;
  padding-block: 72px 84px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 22px;
  border: 1px solid #bfd2f3;
  border-radius: 999px;
  padding: 0 13px;
  background: var(--surface-accent);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 800;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.065em;
  word-break: keep-all;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 590px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  word-break: keep-all;
}

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

.hero-status {
  max-width: 620px;
  margin-top: 18px;
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  background: var(--accent-soft);
}

.hero-status strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.hero-status p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
  word-break: keep-all;
}

.benefit-line {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 35px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.benefit {
  flex: 1;
  padding: 20px 18px 20px 0;
}

.benefit + .benefit {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.benefit strong {
  display: block;
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.benefit span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.benefit span small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

.hero-terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.hero-terms span {
  padding: 0 13px;
}

.hero-terms span:first-child {
  padding-left: 0;
}

.hero-terms span + span {
  border-left: 1px solid var(--line-strong);
}

.product-stage {
  position: relative;
  min-height: 590px;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.screen {
  overflow: hidden;
  border: 1px solid #cbd8e9;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-stage);
}

.screen::before {
  content: "";
  display: block;
  height: 22px;
  border-bottom: 1px solid var(--line);
  background: #f3f6fb;
}

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

.screen-focus {
  width: 100%;
}

.stage-caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-align: right;
}

.flow-section {
  padding-block: 112px 128px;
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.section-heading p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 66px;
  border-top: 2px solid var(--line-strong);
  counter-reset: flow;
}

.flow-item {
  position: relative;
  padding: 30px 30px 0 0;
  counter-increment: flow;
}

.flow-item::before {
  content: counter(flow);
  position: absolute;
  top: -19px;
  left: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 6px solid var(--page);
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 12px;
  font-weight: 800;
}

.flow-item h3 {
  margin: 20px 0 8px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.flow-item h3 small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.flow-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 500;
  word-break: keep-all;
}

.flow-policy {
  display: flex;
  gap: 24px;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.terminal-section {
  padding-block: 0 128px;
}

.terminal-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
  align-items: center;
  gap: 76px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 72px;
  background:
    linear-gradient(135deg, rgba(21, 94, 239, 0.16), transparent 42%),
    #101b2d;
  color: #f7faff;
  box-shadow: 0 28px 80px rgba(16, 24, 40, 0.16);
}

.status-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(255, 207, 51, 0.42);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 207, 51, 0.1);
  color: var(--signal);
  font-size: 12px;
  font-weight: 800;
}

.terminal-copy h2 {
  max-width: 560px;
  margin: 20px 0 0;
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.terminal-copy > p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #b8c4d6;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  word-break: keep-all;
}

.terminal-note {
  margin-top: 28px;
  border-top: 1px solid rgba(219, 227, 238, 0.18);
  padding-top: 18px;
  color: #d6dfec;
  font-size: 13px;
  font-weight: 700;
}

.terminal-journey {
  border: 1px solid rgba(219, 227, 238, 0.8);
  border-radius: var(--radius-md);
  padding: 30px;
  background: #f8fafe;
  color: var(--ink);
  box-shadow: 0 24px 58px rgba(4, 12, 28, 0.28);
}

.terminal-journey__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.terminal-journey__head span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.terminal-journey__head strong {
  font-size: 18px;
  font-weight: 800;
}

.terminal-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.terminal-steps li {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
}

.terminal-steps li + li {
  border-top: 1px solid var(--line);
}

.terminal-steps li > span {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.terminal-steps strong,
.terminal-steps small {
  display: block;
}

.terminal-steps strong {
  font-size: 17px;
  font-weight: 800;
}

.terminal-steps small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.features-section {
  padding-block: 128px 144px;
}

.features-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 80px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 46px;
}

.section-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.features-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.features-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  word-break: keep-all;
}

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

.feature-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 38px 42px 38px 0;
}

.feature-item:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: 42px;
}

.feature-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  padding-right: 0;
}

.feature-index {
  padding-top: 3px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.feature-name {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.feature-item h3 {
  margin: 9px 0 9px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  word-break: keep-all;
}

.feature-note {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.dojo-section {
  padding-block: 132px 140px;
  border-top: 1px solid #d5e2f5;
  background: #eaf2ff;
}

.dojo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 100px;
}

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

.dojo-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 4.2vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.dojo-heading > p {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

.dojo-points {
  border-top: 1px solid #b9cbe6;
}

.dojo-point {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-bottom: 1px solid #cbd9ed;
  padding: 32px 0;
}

.dojo-point > span {
  padding-top: 4px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.dojo-point h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.dojo-point p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  word-break: keep-all;
}

.onboarding-section {
  padding-block: 136px 144px;
  background: #fbfcfe;
}

.onboarding-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.onboarding-heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.055em;
  word-break: keep-all;
}

.onboarding-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 66px 0 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 0;
  list-style: none;
}

.onboarding-steps li {
  min-height: 270px;
  padding: 34px 28px 38px;
}

.onboarding-steps li:first-child {
  padding-left: 0;
}

.onboarding-steps li + li {
  border-left: 1px solid var(--line);
}

.onboarding-index {
  display: block;
  color: var(--accent);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.onboarding-steps h3 {
  margin: 38px 0 10px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.onboarding-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  word-break: keep-all;
}

.onboarding-note {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.membership-section {
  padding-block: 132px 140px;
  background: var(--accent);
  color: var(--accent-contrast);
}

.membership-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  align-items: end;
  gap: 90px;
}

.membership-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
}

.membership-heading h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(42px, 4.3vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.06em;
  word-break: keep-all;
}

.membership-heading > p {
  margin: 0 0 5px;
  color: #dbe7ff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

.membership-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 68px;
  border-top: 1px solid rgba(247, 250, 255, 0.36);
  border-bottom: 1px solid rgba(247, 250, 255, 0.36);
}

.membership-metric {
  min-height: 238px;
  padding: 34px 38px 38px;
}

.membership-metric:first-child {
  padding-left: 0;
}

.membership-metric + .membership-metric {
  border-left: 1px solid rgba(247, 250, 255, 0.26);
}

.membership-metric strong,
.membership-metric span,
.membership-metric small {
  display: block;
}

.membership-metric strong {
  color: var(--signal);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}

.membership-metric span {
  margin-top: 36px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.membership-metric small {
  margin-top: 8px;
  color: #dbe7ff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.membership-cost-example {
  margin-top: 18px;
  border-top: 1px solid rgba(247, 250, 255, 0.22);
  padding-top: 16px;
}

.membership-cost-example span,
.membership-cost-example b,
.membership-cost-example small {
  display: block;
}

.membership-cost-example span {
  margin: 0;
  color: #dbe7ff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.membership-cost-example b {
  margin-top: 5px;
  color: var(--signal);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.membership-cost-example small {
  margin-top: 4px;
  color: #dbe7ff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.membership-cost-example p {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0 0;
  border-top: 1px solid rgba(247, 250, 255, 0.16);
  padding-top: 12px;
  color: #dbe7ff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
}

.membership-cost-example p strong {
  flex: 0 0 auto;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.membership-cost-example p span {
  display: inline;
  margin: 0;
  color: #dbe7ff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.membership-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 34px;
}

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

.button-on-accent {
  border-color: var(--accent-contrast);
  background: var(--accent-contrast);
  color: var(--accent);
}

.button-on-accent:hover {
  background: #ffffff;
}

.button-on-accent-secondary {
  border-color: rgba(247, 250, 255, 0.58);
  background: transparent;
  color: var(--accent-contrast);
}

.button-on-accent-secondary:hover {
  border-color: var(--accent-contrast);
  background: rgba(247, 250, 255, 0.08);
}

.membership-bottom > p {
  margin: 0;
  color: #dbe7ff;
  font-size: 13px;
  font-weight: 600;
  text-align: right;
}

.faq-section {
  padding-block: 132px 144px;
  background: #eef4ff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(72px, 9vw, 148px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 48px);
}

.faq-heading h2 {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 1.08;
  word-break: keep-all;
}

.faq-heading p {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

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

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

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  min-height: 98px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 28px;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.4;
  word-break: keep-all;
}

.faq-item button i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(252, 253, 255, 0.72);
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.faq-item button[aria-expanded="true"] i::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item button:hover span {
  color: var(--accent);
}

.faq-answer {
  max-width: 660px;
  padding: 0 62px 34px 0;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

.final-cta-section {
  padding-block: 52px 48px;
  background: #0d1b31;
  color: #f7faff;
}

.final-cta-layout {
  display: grid;
  grid-template-columns: minmax(300px, 1.08fr) minmax(240px, 0.92fr) minmax(240px, 0.92fr);
  gap: 0;
  align-items: stretch;
}

.final-cta-copy h2 {
  margin: 0;
  color: #f7faff;
  font-size: clamp(42px, 4.2vw, 60px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 1.04;
  word-break: keep-all;
}

.final-cta-copy p {
  max-width: 410px;
  margin: 18px 0 0;
  color: #aebbd0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

.final-cta-options {
  display: contents;
}

.final-cta-option {
  min-width: 0;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid rgba(247, 250, 255, 0.18);
  padding: 8px 30px;
}

.final-cta-option span,
.final-cta-option strong {
  display: block;
}

.final-cta-option span {
  color: #8fa3c0;
  font-size: 13px;
  font-weight: 700;
}

.final-cta-option strong {
  margin-top: 7px;
  color: #f7faff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.4;
  word-break: keep-all;
}

.final-cta-option .button {
  min-width: 150px;
  margin-top: auto;
}

.final-cta-primary {
  border-color: #f7faff;
  background: #f7faff;
  color: #0d3f9f;
}

.final-cta-primary:hover {
  border-color: #dbe7ff;
  background: #dbe7ff;
}

.final-cta-secondary {
  border-color: rgba(247, 250, 255, 0.5);
  background: transparent;
  color: #f7faff;
}

.final-cta-secondary:hover {
  border-color: #f7faff;
  background: rgba(247, 250, 255, 0.08);
}

.final-cta-signup {
  margin-top: 12px;
  border: 0;
  padding: 6px 0;
  background: transparent;
  color: #aebbd0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}

.final-cta-signup:hover {
  color: #f7faff;
}

.site-footer {
  background: #0d1b31;
  color: #f7faff;
}

.site-footer-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(190px, 0.7fr) minmax(300px, 1.2fr);
  gap: clamp(36px, 5vw, 76px);
  border-top: 1px solid rgba(247, 250, 255, 0.16);
  padding-block: 28px 24px;
  align-items: start;
}

.site-footer-brand strong,
.site-footer-brand span {
  display: inline-block;
}

.site-footer-brand strong {
  color: #f7faff;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.site-footer-brand span {
  margin-left: 9px;
  color: #8fa3c0;
  font-size: 12px;
  font-weight: 700;
}

.site-footer-brand p {
  max-width: 420px;
  margin: 14px 0 0;
  color: #aebbd0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
  word-break: keep-all;
}

.site-footer-business {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin: 0;
}

.site-footer-business div {
  min-width: 0;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.site-footer-business dt {
  color: #8fa3c0;
  font-size: 12px;
  font-weight: 700;
}

.site-footer-business dd {
  margin: 0;
  color: #f7faff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  word-break: keep-all;
}

.site-footer-business a {
  color: inherit;
  text-decoration: none;
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(247, 250, 255, 0.12);
  padding-block: 12px 16px;
  color: #8fa3c0;
  font-size: 12px;
  font-weight: 600;
}

.site-footer-policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.site-footer-policies a {
  color: #aebbd0;
  text-decoration: none;
}

.site-footer-policies a:hover {
  color: #f7faff;
}

@media (max-width: 1120px) {
  .primary-nav {
    display: none;
  }

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

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 54px;
    padding-top: 62px;
  }

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

  .product-stage {
    width: min(860px, 100%);
  }

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

  .terminal-copy {
    max-width: 760px;
  }

  .features-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .features-heading > p {
    max-width: 700px;
  }

  .dojo-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .dojo-heading {
    max-width: 760px;
  }

  .onboarding-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .onboarding-heading > p {
    max-width: 700px;
  }

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

  .onboarding-steps li:nth-child(3) {
    border-left: 0;
  }

  .onboarding-steps li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .membership-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .membership-heading > p {
    max-width: 700px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading p {
    max-width: 700px;
  }

  .final-cta-layout {
    grid-template-columns: minmax(260px, 1.05fr) repeat(2, minmax(220px, 0.92fr));
  }

  .final-cta-copy {
    max-width: 420px;
  }

  .site-footer-layout {
    grid-template-columns: minmax(260px, 1fr) repeat(2, minmax(180px, 0.72fr));
    gap: 36px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
    --radius-md: 16px;
    --radius-lg: 22px;
  }

  .shell {
    width: min(100% - 32px, var(--container));
  }

  .announcement {
    min-height: 38px;
    padding: 8px 16px;
    text-align: center;
    line-height: 1.35;
  }

  .announcement strong {
    display: none;
  }

  .site-header {
    position: relative;
  }

  .wordmark strong {
    font-size: 20px;
  }

  .wordmark small,
  .button-quiet {
    display: none;
  }

  .header-actions .button-secondary {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .hero {
    gap: 42px;
    padding-block: 44px 64px;
  }

  .eyebrow {
    margin-bottom: 17px;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(42px, 12vw, 52px);
    line-height: 1.07;
  }

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

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .button {
    width: 100%;
  }

  .benefit-line {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .benefit {
    padding: 17px 0;
  }

  .benefit + .benefit {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .hero-terms {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-terms span,
  .hero-terms span:first-child {
    border-left: 0;
    padding: 0;
  }

  .product-stage {
    min-height: 0;
  }

  .screen::before {
    height: 18px;
  }

  .stage-caption {
    margin-top: 10px;
    text-align: right;
  }

  .flow-section {
    padding-block: 84px 96px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .section-heading p {
    margin-top: 16px;
    font-size: 15px;
  }

  .flow-track {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 56px;
    border-top: 0;
    border-left: 2px solid var(--line-strong);
  }

  .flow-item {
    padding: 0 0 0 28px;
  }

  .flow-item::before {
    top: 0;
    left: -19px;
  }

  .flow-item h3 {
    margin: 0 0 7px;
  }

  .flow-policy {
    flex-direction: column;
    gap: 8px;
    margin-top: 46px;
  }

  .terminal-section {
    padding-bottom: 88px;
  }

  .terminal-panel {
    gap: 42px;
    border-radius: var(--radius-md);
    padding: 38px 24px 24px;
  }

  .terminal-copy h2 {
    font-size: 38px;
  }

  .terminal-copy > p {
    margin-top: 18px;
    font-size: 15px;
  }

  .terminal-note {
    margin-top: 22px;
  }

  .terminal-journey {
    padding: 22px 18px 4px;
  }

  .terminal-journey__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 18px;
  }

  .terminal-steps li {
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 18px 0;
  }

  .terminal-steps li > span {
    width: 32px;
    height: 32px;
  }

  .features-section {
    padding-block: 88px 96px;
  }

  .features-heading {
    gap: 18px;
    padding-bottom: 32px;
  }

  .features-heading h2 {
    font-size: 38px;
  }

  .features-heading > p {
    font-size: 15px;
  }

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

  .feature-item,
  .feature-item:nth-child(even) {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    border-left: 0;
    padding: 28px 0;
  }

  .feature-item:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .feature-item h3 {
    font-size: 21px;
  }

  .dojo-section {
    padding-block: 88px 96px;
  }

  .dojo-layout {
    gap: 44px;
  }

  .dojo-heading h2 {
    font-size: 38px;
  }

  .dojo-heading > p {
    margin-top: 18px;
    font-size: 15px;
  }

  .dojo-point {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 26px 0;
  }

  .dojo-point h3 {
    font-size: 21px;
  }

  .onboarding-section {
    padding-block: 88px 96px;
  }

  .onboarding-heading {
    gap: 18px;
  }

  .onboarding-heading h2 {
    font-size: 38px;
  }

  .onboarding-heading > p {
    font-size: 15px;
  }

  .onboarding-steps {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .onboarding-steps li,
  .onboarding-steps li:first-child {
    min-height: 0;
    border-left: 0;
    padding: 26px 0 30px;
  }

  .onboarding-steps li + li,
  .onboarding-steps li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .onboarding-index {
    font-size: 32px;
  }

  .onboarding-steps h3 {
    margin-top: 22px;
  }

  .membership-section {
    padding-block: 88px 96px;
  }

  .membership-heading {
    gap: 18px;
  }

  .membership-heading h2 {
    font-size: 38px;
  }

  .membership-heading > p {
    font-size: 15px;
  }

  .membership-metrics {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .membership-metric,
  .membership-metric:first-child {
    min-height: 0;
    padding: 26px 0 30px;
  }

  .membership-metric + .membership-metric {
    border-top: 1px solid rgba(247, 250, 255, 0.26);
    border-left: 0;
  }

  .membership-metric strong {
    font-size: 48px;
  }

  .membership-metric span {
    margin-top: 18px;
  }

  .membership-bottom {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
  }

  .membership-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .faq-section {
    padding-block: 88px 96px;
  }

  .faq-layout {
    gap: 42px;
  }

  .faq-heading h2 {
    font-size: 38px;
  }

  .faq-heading p {
    margin-top: 18px;
    font-size: 15px;
  }

  .faq-item button {
    min-height: 84px;
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 18px;
  }

  .faq-item button span {
    font-size: 18px;
  }

  .faq-item button i {
    width: 30px;
    height: 30px;
  }

  .faq-answer {
    padding: 0 48px 28px 0;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .final-cta-section {
    padding-block: 56px 60px;
  }

  .final-cta-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .final-cta-copy p {
    margin-top: 20px;
    font-size: 15px;
  }

  .final-cta-option {
    min-height: 0;
    gap: 20px;
    border-left: 0;
    border-top: 1px solid rgba(247, 250, 255, 0.18);
    padding: 28px 0;
  }

  .final-cta-option strong {
    font-size: 19px;
  }

  .final-cta-option .button {
    width: 100%;
  }

  .final-cta-signup {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }

  .site-footer-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-block: 44px 36px;
  }

  .site-footer-business {
    gap: 14px;
  }

  .site-footer-business div {
    display: block;
  }

  .site-footer-business dd {
    margin-top: 4px;
  }

  .site-footer-bottom {
    display: grid;
    justify-content: stretch;
    gap: 14px;
    padding-block: 16px 22px;
  }

  .site-footer-policies {
    justify-content: flex-start;
  }
}

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

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