:root {
  color-scheme: light;
  --bg: #edf5ff;
  --surface: rgba(255, 255, 255, 0.28);
  --surface-solid: rgba(255, 255, 255, 0.52);
  --ink: #07080b;
  --ink-soft: #2d3037;
  --muted: #747982;
  --line: rgba(92, 142, 210, 0.18);
  --line-strong: rgba(67, 118, 195, 0.26);
  --blue: #2f82ff;
  --blue-soft: #78b2ff;
  --sky: #5aaeff;
  --aqua: #8fc7ff;
  --lavender: #c6ddff;
  --logo-blue: #2f82ff;
  --logo-blue-deep: #1d63ee;
  --tube-blue: #2f82ff;
  --orange: #7fb6ff;
  --green: #6bd9b0;
  --graphite: #050506;
  --radius-card: 42px;
  --radius-soft: 30px;
  --radius-pill: 999px;
  --glass-border: rgba(255, 255, 255, 0.74);
  --glass-highlight: rgba(255, 255, 255, 0.88);
  --sky-shadow: rgba(52, 124, 230, 0.28);
  --shadow-float: 0 34px 100px rgba(91, 130, 178, 0.14);
  --shadow-soft: 0 20px 64px rgba(91, 130, 178, 0.1);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Apple SD Gothic Neo", "Pretendard", "Noto Sans KR", "Malgun Gothic", "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 255, 255, 0.96) 0 22%, transparent 44%),
    radial-gradient(circle at 86% 12%, rgba(82, 159, 255, 0.34) 0 18%, transparent 46%),
    linear-gradient(180deg, rgba(248, 252, 255, 0.9) 0%, rgba(225, 239, 255, 0.94) 44%, rgba(244, 249, 255, 0.98) 100%);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.52;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(105, 177, 255, 0.28), transparent 34%),
    radial-gradient(circle at 72% 18%, rgba(122, 178, 255, 0.38), transparent 42%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.88) 0%, rgba(219, 235, 255, 0.64) 54%, rgba(255, 255, 255, 0.9) 100%);
  opacity: 0.94;
}

body.is-locked {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(55, 132, 255, 0.38);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 251, 255, 0.42);
  backdrop-filter: blur(38px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: inset 0 -1px 0 rgba(139, 176, 215, 0.08);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 251, 255, 0.58);
  box-shadow: 0 18px 48px rgba(91, 130, 178, 0.1), inset 0 -1px 0 var(--glass-highlight);
}

.nav-shell {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}

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

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.7), transparent 30%),
    linear-gradient(145deg, #76bdff 0%, var(--logo-blue) 46%, var(--logo-blue-deep) 100%);
  font-size: 20px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48), 0 18px 42px rgba(47, 130, 255, 0.24);
}

.play-core {
  position: relative;
  width: 25px;
  height: 18px;
  display: block;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 -1px 0 rgba(114, 0, 24, 0.1);
}

.play-core::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 53%;
  width: 0;
  height: 0;
  transform: translate(-38%, -50%);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--logo-blue);
}

.revenue-badge {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #74c3ff, #2f82ff);
  font-size: 12px;
  line-height: 1;
  font-weight: 940;
  box-shadow: 0 10px 22px rgba(47, 130, 255, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 24px;
  line-height: 1.08;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 780;
}

.nav-links {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 18px 44px rgba(91, 130, 178, 0.1);
  backdrop-filter: blur(34px) saturate(172%);
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  white-space: nowrap;
}

.nav-links a.is-active,
.nav-links a:hover {
  color: #fff;
  background: linear-gradient(145deg, rgba(67, 137, 255, 0.98), rgba(109, 178, 255, 0.94));
  box-shadow: 0 12px 28px rgba(55, 132, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.nav-cta,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.nav-cta {
  min-height: 58px;
  padding: 17px 32px;
  border-radius: var(--radius-pill);
  font-size: 16px;
}

.nav-cta,
.button.primary {
  color: #fff;
  background: linear-gradient(145deg, rgba(111, 184, 255, 0.98) 0%, rgba(48, 127, 255, 0.98) 56%, rgba(120, 178, 255, 0.95) 100%);
  border-color: rgba(255, 255, 255, 0.58);
  box-shadow: 0 22px 52px var(--sky-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.nav-cta:hover,
.button.primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(145deg, rgba(93, 170, 255, 1), rgba(36, 112, 245, 0.99) 56%, rgba(104, 166, 255, 0.98));
}

.button.glass,
.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
  border-color: var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 14px 34px rgba(91, 130, 178, 0.09);
  backdrop-filter: blur(30px) saturate(165%);
}

.button.full {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  padding: 0;
  min-height: auto;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -18%;
  width: min(760px, 54vw);
  height: 72%;
  pointer-events: none;
  background:
    radial-gradient(circle at 34% 26%, rgba(130, 190, 255, 0.36), transparent 34%),
    radial-gradient(circle at 64% 68%, rgba(255, 255, 255, 0.9), transparent 42%),
    linear-gradient(135deg, rgba(215, 235, 255, 0.38), rgba(255, 255, 255, 0));
  opacity: 0.72;
  filter: blur(24px) saturate(126%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 48px));
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 30px;
  padding: 72px 0 34px;
  margin: 0 auto;
}

.hero-copy-panel,
.hero-proof-panel,
.transfer-console,
.coverage-large,
.journey-panel,
.logic-notes article,
.price-card,
.process-list li,
.faq-list details,
.modal-panel {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(230, 246, 255, 0.18));
  box-shadow: inset 0 1px 0 var(--glass-highlight), var(--shadow-soft);
  backdrop-filter: blur(44px) saturate(178%);
}

.hero-copy-panel {
  max-width: 760px;
  display: block;
  padding: 38px 40px 40px;
  border-color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(241, 249, 255, 0.24) 52%, rgba(255, 255, 255, 0.18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96), 0 32px 96px rgba(91, 130, 178, 0.14);
  backdrop-filter: blur(50px) saturate(190%);
}

.hero-proof-panel {
  position: relative;
  min-height: 430px;
  padding: 16px;
  overflow: hidden;
  border-radius: 48px;
  border-color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(221, 240, 255, 0.18) 54%, rgba(255, 255, 255, 0.22));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), 0 34px 98px rgba(63, 118, 198, 0.16);
}

.hero-proof-panel::before,
.hero-proof-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-proof-panel::before {
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.52) 0%, transparent 34%, rgba(255, 255, 255, 0.24) 72%, transparent 100%);
  mix-blend-mode: screen;
}

.hero-proof-panel::after {
  right: 18px;
  bottom: 14px;
  z-index: 1;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(78, 150, 255, 0.18);
  filter: blur(18px);
}

.proof-slider {
  position: relative;
  min-height: 398px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(235, 246, 255, 0.34));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 24px 56px rgba(66, 101, 150, 0.13);
}

.proof-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(18px) scale(0.985);
  animation: proof-slide 15s infinite;
}

.proof-slide:nth-child(2) {
  animation-delay: 5s;
}

.proof-slide:nth-child(3) {
  animation-delay: 10s;
}

.proof-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.92) contrast(0.98) brightness(1.04);
}

.proof-slide:nth-child(2) img {
  object-position: 42% 12%;
}

.proof-slide:nth-child(3) img {
  object-position: 50% 6%;
}

.proof-caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-pill);
  color: rgba(7, 8, 11, 0.78);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 16px 38px rgba(44, 89, 150, 0.12);
  backdrop-filter: blur(28px) saturate(170%);
  font-size: 13px;
  font-weight: 820;
}

.proof-caption span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #32d07c;
  box-shadow: 0 0 0 6px rgba(50, 208, 124, 0.16);
}

@keyframes proof-slide {
  0% {
    opacity: 0;
    transform: translateX(18px) scale(0.985);
  }

  7%,
  29% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  36%,
  100% {
    opacity: 0;
    transform: translateX(-18px) scale(0.99);
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof-slide {
    animation: none;
  }

  .proof-slide:first-child {
    opacity: 1;
    transform: none;
  }
}

.eyebrow,
.micro-label {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 64px;
  line-height: 1.12;
  font-weight: 340;
}

.hero h1 span {
  display: block;
  color: #267dff;
  font-weight: 860;
}

.hero-copy {
  max-width: 700px;
  margin: 32px 0 0;
  color: #7e838d;
  font-size: 21px;
  line-height: 1.78;
  font-weight: 470;
}

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

.hero-actions .button {
  min-width: 220px;
  min-height: 60px;
  border-radius: var(--radius-pill);
  font-size: 18px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin: 28px 0 0;
}

.hero-metrics div {
  min-height: 88px;
  padding: 16px;
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 16px 36px rgba(47, 55, 68, 0.06);
}

.hero-metrics dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.hero-metrics dd {
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
  font-weight: 860;
}

.transfer-console {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.console-topline,
.panel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.console-topline span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink);
  letter-spacing: 1px;
}

.case-card {
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}

.primary-case {
  min-height: 228px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  padding: 24px;
}

.primary-case h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.02;
}

.primary-case small,
.case-row small,
.status-grid small,
.journey-columns small {
  color: var(--muted);
  font-weight: 650;
}

.asset-glass {
  position: relative;
  height: 176px;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.asset-glass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  filter: saturate(102%) contrast(98%);
}

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

.status-grid article {
  position: relative;
  min-height: 128px;
  padding: 18px;
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.26);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}

.status-grid span,
.coverage-large .micro-label,
.logic-notes span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.status-grid strong {
  display: block;
  margin: 16px 0 6px;
  font-size: 30px;
  line-height: 1;
}

.status-dot {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.status-dot.warning {
  background: linear-gradient(145deg, var(--blue-soft), var(--sky));
}

.status-dot.ok {
  background: linear-gradient(145deg, var(--green), var(--aqua));
}

.case-stack {
  display: grid;
  gap: 10px;
  align-content: start;
}

.case-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
}

.case-row strong,
.case-row small {
  display: block;
}

.row-index {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--blue-soft), var(--aqua));
  font-size: 13px;
  font-weight: 850;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  color: rgba(7, 8, 11, 0.46);
  font-size: 12px;
  font-weight: 800;
}

.section {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.coverage-section {
  padding-top: clamp(24px, 3vw, 42px);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 860;
}

.section-heading p,
.final-cta p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.coverage-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.coverage-large {
  min-height: 390px;
  display: grid;
  grid-template-rows: auto minmax(96px, auto) minmax(118px, 1fr) auto;
  align-content: stretch;
  row-gap: 16px;
  padding: 32px;
}

.coverage-large .micro-label {
  max-width: none;
  margin: 0;
  line-height: 1.2;
}

.coverage-large h3 {
  max-width: 620px;
  margin: 0;
  font-size: 46px;
  line-height: 1.02;
}

.coverage-large > p:not(.micro-label) {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.58;
}

.coverage-large.dark {
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.4), rgba(225, 244, 255, 0.24));
}

.coverage-large.dark p,
.coverage-large.dark .micro-label {
  color: var(--muted);
}

.terms-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.terms-strip span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.3);
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
}

.dark .terms-strip span {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.3);
}

.logic-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 16px;
}

.journey-panel {
  padding: 28px;
}

.panel-toolbar {
  width: fit-content;
  margin: 0 auto 26px;
  padding: 5px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 16px 38px rgba(91, 130, 178, 0.08);
  backdrop-filter: blur(34px) saturate(172%);
}

.pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pill.is-active {
  color: #fff;
  background: linear-gradient(145deg, rgba(63, 135, 255, 0.96), rgba(116, 176, 255, 0.92));
  box-shadow: 0 12px 28px rgba(55, 132, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.pill:hover {
  color: var(--ink);
  transform: translateY(-1px);
}

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

.journey-columns article {
  min-height: 260px;
  padding: 24px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.journey-columns article.is-selected {
  transform: translateY(-3px);
  border-color: rgba(89, 156, 255, 0.52);
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 1px 0 var(--glass-highlight), 0 20px 52px rgba(55, 132, 255, 0.12);
}

.journey-columns span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.journey-columns strong {
  display: block;
  margin: 64px 0 12px;
  font-size: 28px;
  line-height: 1.05;
}

.logic-notes {
  display: grid;
  gap: 12px;
}

.logic-notes article {
  min-height: 154px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.26);
}

.logic-notes p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 224px;
  padding: 24px;
}

.process-list span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, rgba(61, 134, 255, 0.96), rgba(125, 184, 255, 0.92));
  box-shadow: 0 12px 26px rgba(55, 132, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.36);
  font-size: 13px;
  font-weight: 850;
}

.process-list h3 {
  margin: 54px 0 10px;
  font-size: 22px;
  line-height: 1.12;
}

.process-list p,
.price-card li,
.faq-list p {
  color: var(--muted);
}

.pricing-toggle {
  width: fit-content;
  display: flex;
  gap: 4px;
  margin: 0 auto 22px;
  padding: 5px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(34px) saturate(172%);
}

.pricing-toggle button {
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--muted);
  background: transparent;
  font-size: 14px;
  font-weight: 820;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pricing-toggle button.is-active {
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(242, 249, 255, 0.72));
  box-shadow:
    0 14px 34px rgba(86, 162, 239, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
}

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

.price-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.price-card.is-selected {
  box-shadow: 0 28px 82px rgba(85, 172, 241, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-4px);
}

.price-card.featured {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(225, 244, 255, 0.24));
}

.plan-kicker {
  width: fit-content;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 6px 11px;
  border-radius: var(--radius-pill);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.price {
  margin: 0;
}

.sale-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.price span {
  display: block;
  font-size: 44px;
  line-height: 1;
  font-weight: 860;
}

.price .old-price {
  color: rgba(47, 65, 91, 0.44);
  font-size: 24px;
  font-weight: 780;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(47, 65, 91, 0.46);
}

.price small {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  border: 1px solid rgba(103, 172, 255, 0.26);
  border-radius: var(--radius-pill);
  color: #1f76df;
  background: rgba(229, 244, 255, 0.58);
  font-size: 13px;
  font-weight: 860;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sky), var(--aqua));
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 840;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

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

.final-cta {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto 92px;
  padding: 58px;
  border-radius: var(--radius-card);
  color: var(--ink);
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(226, 244, 255, 0.24));
  backdrop-filter: blur(44px) saturate(178%);
  box-shadow: inset 0 1px 0 var(--glass-highlight), var(--shadow-float);
}

.final-cta .eyebrow,
.final-cta p {
  color: var(--muted);
}

.site-footer {
  width: min(1380px, calc(100% - 48px));
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(235, 246, 255, 0.3);
  backdrop-filter: blur(28px) saturate(150%);
}

.modal-panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(231, 246, 255, 0.34));
  box-shadow: 0 36px 96px rgba(91, 130, 178, 0.18);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 165, 205, 0.18);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  font-size: 24px;
}

.modal-panel h2 {
  margin: 0 62px 18px 0;
  font-size: 36px;
  line-height: 1.08;
}

.modal-copy {
  color: var(--muted);
}

.inquiry-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 820;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 15px 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
  resize: vertical;
}

.inquiry-form textarea {
  border-radius: var(--radius-soft);
}

@media (max-width: 1180px) {
  .hero-shell,
  .logic-layout {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-proof-panel {
    width: min(100%, 760px);
    margin: 0 auto;
  }

  .transfer-console {
    min-height: 620px;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    justify-self: end;
    padding: 0;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 1px 0 var(--glass-highlight), 0 14px 34px rgba(91, 130, 178, 0.09);
    backdrop-filter: blur(28px) saturate(165%);
    cursor: pointer;
    transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .menu-toggle:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.48);
  }

  .menu-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 1px 0 var(--glass-highlight), 0 18px 42px rgba(91, 130, 178, 0.14);
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
    display: block;
    border-radius: var(--radius-pill);
    background: rgba(7, 8, 11, 0.82);
    transform-origin: center;
    transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 160ms ease, width 180ms ease;
  }

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

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

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

  .nav-links {
    position: absolute;
    z-index: 45;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: min(260px, calc(100vw - 28px));
    max-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    overflow: hidden;
    padding: 0 8px;
    border-radius: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.985);
    transform-origin: top right;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.66), rgba(232, 246, 255, 0.46));
    box-shadow: inset 0 1px 0 var(--glass-highlight), 0 24px 58px rgba(77, 124, 176, 0.16);
    transition:
      max-height 340ms cubic-bezier(0.2, 0.8, 0.2, 1),
      padding 240ms ease,
      opacity 180ms ease,
      transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 240ms;
  }

  .nav-links.is-open {
    max-height: 320px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition:
      max-height 380ms cubic-bezier(0.2, 0.8, 0.2, 1),
      padding 220ms ease,
      opacity 160ms ease,
      transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s;
  }

  .nav-links a {
    min-height: 52px;
    justify-content: flex-start;
    padding: 14px 16px;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(-8px);
    transition:
      color 160ms ease,
      background 160ms ease,
      box-shadow 160ms ease,
      opacity 220ms ease,
      transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .nav-links.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.is-open a:nth-child(1) {
    transition-delay: 30ms;
  }

  .nav-links.is-open a:nth-child(2) {
    transition-delay: 70ms;
  }

  .nav-links.is-open a:nth-child(3) {
    transition-delay: 110ms;
  }

  .nav-links.is-open a:nth-child(4) {
    transition-delay: 150ms;
  }

  .nav-links a.is-active,
  .nav-links a:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 1px 0 var(--glass-highlight), 0 12px 28px rgba(91, 130, 178, 0.1);
  }

  .nav-cta {
    display: none;
  }

  .coverage-board,
  .pricing-grid,
  .journey-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-shell,
  .section,
  .hero-shell,
  .site-footer,
  .final-cta {
    width: min(100% - 28px, 1380px);
  }

  .hero {
    padding-top: 18px;
  }

  .hero-shell {
    min-height: auto;
    padding: 30px 0 24px;
  }

  .hero-copy-panel,
  .hero-proof-panel,
  .transfer-console,
  .coverage-large,
  .journey-panel,
  .price-card,
  .final-cta {
    padding: 22px;
  }

  .hero-proof-panel {
    min-height: 230px;
    padding: 10px;
    border-radius: 30px;
  }

  .proof-slider {
    min-height: 210px;
    border-radius: 24px;
  }

  .proof-caption {
    left: 18px;
    bottom: 18px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .hero h1,
  .section-heading h2,
  .final-cta h2 {
    font-size: 42px;
  }

  .hero-copy,
  .section-heading p,
  .coverage-large p,
  .final-cta p {
    font-size: 17px;
  }

  .hero-copy {
    margin-top: 24px;
    line-height: 1.7;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .hero-metrics,
  .status-grid,
  .primary-case,
  .process-list {
    grid-template-columns: 1fr;
  }

  .primary-case {
    min-height: auto;
  }

  .asset-glass {
    height: 160px;
  }

  .transfer-console {
    min-height: auto;
  }

  .section {
    padding: 68px 0;
  }

  .coverage-section {
    padding-top: 30px;
  }

  .coverage-large {
    min-height: 330px;
  }

  .coverage-large h3 {
    font-size: 34px;
  }

  .pricing-toggle {
    width: 100%;
    overflow-x: auto;
  }

  .pricing-toggle button {
    flex: 1 0 auto;
  }

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

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