:root {
  --ink: #f7f8ff;
  --muted: #a6adc5;
  --dim: #747c96;
  --bg: #070913;
  --bg-deep: #04050b;
  --panel: #0d1020;
  --panel-2: #11152a;
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(255, 255, 255, .18);
  --violet: #8c5cff;
  --violet-2: #6840ff;
  --cyan: #35d8ff;
  --mint: #53f5bd;
  --pink: #ff64c8;
  --orange: #ffaf5c;
  --shell: 1240px;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .35);
  --font-sans: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --type-hero: clamp(48px, 4.45vw, 68px);
  --type-section: clamp(36px, 3.25vw, 50px);
  --type-lead: clamp(28px, 2.6vw, 40px);
  --type-card: 22px;
  --type-body: 15px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body,
body * {
  font-family: var(--font-sans) !important;
}
body.menu-lock { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { max-width: 100%; }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.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;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: #fff;
  color: #111;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 8, 18, .82);
  border-color: rgba(255, 255, 255, .08);
  backdrop-filter: blur(24px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
}
.brand-orbit {
  position: relative;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(53, 216, 255, .55), transparent 26%),
    linear-gradient(145deg, rgba(140, 92, 255, .22), rgba(255, 255, 255, .03));
  box-shadow: inset 0 0 20px rgba(140, 92, 255, .22), 0 0 28px rgba(53, 216, 255, .1);
}
.brand-orbit::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  border-left-color: var(--cyan);
  border-bottom-color: var(--violet);
  animation: orbit-spin 8s linear infinite;
}
.brand-orbit i {
  position: absolute;
  width: 7px;
  height: 7px;
  left: 50%;
  top: 50%;
  margin: -3.5px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px var(--cyan);
}
.brand-type { display: grid; line-height: 1; }
.brand-type strong { font-size: 19px; font-weight: 900; letter-spacing: -.04em; }
.brand-type small { margin-top: 6px; color: #7e87a4; font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a {
  position: relative;
  color: #bec4d7;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transition: right .25s ease;
}
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { right: 0; }
.header-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.header-cta span { color: var(--cyan); }
.header-cta:hover {
  background: rgba(140, 92, 255, .16);
  border-color: rgba(140, 92, 255, .5);
  transform: translateY(-2px);
}
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
}
.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
}
.mobile-menu {
  position: fixed;
  z-index: 300;
  inset: 0 0 0 auto;
  width: min(420px, 88vw);
  padding: 24px;
  background: rgba(8, 10, 22, .98);
  border-left: 1px solid var(--line);
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.mobile-close {
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 24px;
}
.mobile-menu nav { display: grid; margin-top: 34px; }
.mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 21px;
  font-weight: 750;
  text-decoration: none;
}
.mobile-menu nav a span { color: var(--violet); font-size: 11px; letter-spacing: .1em; }
.menu-dim { position: fixed; inset: 0; z-index: 250; background: rgba(0, 0, 0, .65); backdrop-filter: blur(4px); }

/* Shared */
.overline {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .18em;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #858eaa;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  white-space: nowrap;
}
.section-label span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: #c3c9da;
  letter-spacing: 0;
}
.section-top {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 330px;
  align-items: end;
  gap: 54px;
  margin-bottom: 64px;
}
.section-top h2,
.belief-copy h2,
.promise h2,
.faq h2 {
  margin: 0;
  font-size: clamp(36px, 4.1vw, 62px);
  line-height: 1.08;
  letter-spacing: -.06em;
}
.section-top h2 em,
.belief-copy h2 em,
.promise h2 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, #fff 4%, var(--cyan) 45%, #a885ff 90%);
  -webkit-background-clip: text;
  background-clip: text;
}
.section-top > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.section-dark {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .018), transparent 20%),
    var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 60%);
  mask-image: linear-gradient(to bottom, black, transparent 60%);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(94, 56, 214, .14), transparent 36%),
    linear-gradient(180deg, #090b17 0%, #070913 70%, #090b16 100%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 77%);
  mask-image: radial-gradient(circle at center, black, transparent 77%);
}
.hero-orb { position: absolute; border-radius: 50%; filter: blur(30px); pointer-events: none; }
.hero-orb-a {
  width: 520px;
  height: 520px;
  top: 10%;
  right: -210px;
  background: rgba(105, 53, 255, .15);
}
.hero-orb-b {
  width: 420px;
  height: 420px;
  bottom: -270px;
  left: 6%;
  background: rgba(36, 197, 255, .11);
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(480px, .97fr);
  gap: 70px;
  align-items: center;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  color: #9da5bc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
}
.hero-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
}
.hero h1 {
  margin: 0;
  font-size: clamp(50px, 5.25vw, 80px);
  line-height: 1.04;
  letter-spacing: -.068em;
}
.hero h1 em {
  display: inline-block;
  color: transparent;
  font-style: normal;
  background: linear-gradient(100deg, #fff 0%, #d5c8ff 25%, var(--violet) 55%, var(--cyan) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(140, 92, 255, .12));
}
.hero-description {
  margin: 30px 0 0;
  color: #abb2c8;
  font-size: 18px;
  line-height: 1.8;
}
.hero-description strong { color: #fff; font-weight: 750; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 25px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
  background: linear-gradient(135deg, #8357ff, #5b39e6);
  box-shadow: 0 16px 40px rgba(104, 64, 255, .25);
}
.button-primary span { font-size: 20px; }
.button-ghost { border: 1px solid var(--line-strong); background: rgba(255, 255, 255, .035); color: #d9ddec; }
.button-ghost:hover { border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .07); }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 50px;
}
.hero-proof div { display: grid; gap: 2px; }
.hero-proof strong { font-size: 13px; font-weight: 800; }
.hero-proof span { color: #7f879f; font-size: 11px; }
.hero-proof > i { width: 1px; height: 30px; background: var(--line); }

.skill-console {
  position: relative;
  scroll-margin-top: 102px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(17, 21, 42, .93), rgba(8, 10, 22, .96));
  box-shadow: 0 42px 100px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .06);
  overflow: hidden;
}
.skill-console::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -140px;
  top: -150px;
  border-radius: 50%;
  background: rgba(140, 92, 255, .38);
  filter: blur(50px);
}
.console-bar {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .018);
}
.console-dots { display: flex; gap: 6px; }
.console-dots i { width: 7px; height: 7px; border-radius: 50%; background: #40465d; }
.console-dots i:first-child { background: #ff6e76; }
.console-dots i:nth-child(2) { background: #f5c760; }
.console-dots i:nth-child(3) { background: #55d68b; }
.console-bar > span { color: #7d869f; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.console-bar > b {
  margin-left: auto;
  padding: 4px 8px;
  border: 1px solid rgba(83, 245, 189, .25);
  border-radius: 999px;
  color: var(--mint);
  font-size: 8px;
  letter-spacing: .12em;
}
.console-body { position: relative; min-height: 490px; padding: 32px 34px 30px; }
.console-status { display: flex; align-items: center; gap: 9px; color: #939bb3; font-size: 11px; font-weight: 700; }
.status-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(83, 245, 189, .09), 0 0 15px rgba(83, 245, 189, .5);
  animation: status-pulse 2s ease infinite;
}
.console-body h2 { margin: 18px 0 22px; font-size: clamp(27px, 2.5vw, 37px); line-height: 1.22; letter-spacing: -.045em; }
.skill-form textarea {
  width: 100%;
  min-height: 125px;
  resize: vertical;
  padding: 18px 18px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 16px;
  outline: none;
  background: rgba(3, 5, 12, .55);
  color: #f6f7ff;
  font-size: 14px;
  line-height: 1.65;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.skill-form textarea::placeholder { color: #666e86; }
.skill-form textarea:focus {
  border-color: rgba(140, 92, 255, .72);
  box-shadow: 0 0 0 4px rgba(140, 92, 255, .09);
}
.skill-examples { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 11px; }
.skill-examples button {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #8e97af;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.skill-examples button:hover { border-color: rgba(53, 216, 255, .34); background: rgba(53, 216, 255, .06); color: var(--cyan); }
.form-error { min-height: 18px; margin: 8px 0 0; color: #ff8993; font-size: 11px; }
.console-submit {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #8151ff, #6040e9 55%, #4368ed);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(91, 57, 230, .24);
  transition: filter .2s ease, transform .2s ease;
}
.console-submit:hover { filter: brightness(1.08); transform: translateY(-2px); }
.console-submit:disabled { opacity: .58; cursor: wait; transform: none; }
.submit-icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, .34));
}
.console-footer {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-top: 1px solid var(--line);
  color: #626b82;
  font-size: 9px;
}
.console-footer span { display: flex; align-items: center; gap: 7px; }
.console-footer span i { width: 5px; height: 5px; border-radius: 50%; background: #4d566d; }
.console-footer b { margin-left: auto; font-size: 8px; letter-spacing: .1em; }
.analysis-panel,
.blueprint-result {
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 34px;
  background: #080a16;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.analysis-panel.open,
.blueprint-result.open { opacity: 1; visibility: visible; transform: translateY(0); }
.analysis-head { display: flex; align-items: center; margin-top: 100px; color: #c5cadb; font-size: 14px; }
.analysis-head strong { margin-left: auto; color: var(--cyan); font-size: 30px; }
.analysis-progress { height: 4px; margin-top: 18px; border-radius: 10px; background: rgba(255, 255, 255, .08); overflow: hidden; }
.analysis-progress i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--violet), var(--cyan)); box-shadow: 0 0 20px var(--cyan); }
.analysis-flow { display: flex; align-items: center; gap: 10px; margin-top: 65px; }
.analysis-flow span {
  flex: 1;
  min-height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #9fa7bf;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  background: rgba(255, 255, 255, .025);
}
.analysis-flow i { width: 12px; height: 1px; background: linear-gradient(90deg, var(--violet), var(--cyan)); }
.blueprint-result {
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(140, 92, 255, .55) transparent;
}
.blueprint-result::-webkit-scrollbar { width: 6px; }
.blueprint-result::-webkit-scrollbar-track { background: transparent; }
.blueprint-result::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(var(--violet), #4b6df4);
}
.blueprint-result .result-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
}
.blueprint-result .result-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(83, 245, 189, .7);
}
.blueprint-result h3 { margin: 11px 0 7px; font-size: 25px; letter-spacing: -.04em; }
.blueprint-result > p { margin: 0; color: #a6aec3; font-size: 12px; line-height: 1.6; }
.result-diagnosis {
  margin-top: 16px;
  padding: 13px 14px;
  border: 1px solid rgba(83, 245, 189, .16);
  border-radius: 12px;
  background: rgba(83, 245, 189, .045);
}
.result-diagnosis small,
.result-section-title {
  display: block;
  color: #737d96;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
}
.result-diagnosis strong {
  display: block;
  margin-top: 5px;
  color: #e8ebf7;
  font-size: 11px;
  line-height: 1.55;
}
.result-flow { margin-top: 18px; }
.result-stack { display: grid; gap: 8px; margin-top: 8px; }
.result-stack div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .028);
}
.result-stack span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(140, 92, 255, .16);
  color: #c6b4ff;
  font-size: 9px;
  font-weight: 850;
}
.result-stack b { font-size: 12px; }
.result-features { margin-top: 18px; }
.result-feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 8px;
}
.result-feature-list span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 11px;
  background: rgba(255, 255, 255, .025);
  color: #cbd1e2;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.45;
}
.result-effects { margin-top: 18px; }
.result-effect-list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}
.result-effect-list span {
  position: relative;
  padding-left: 14px;
  color: #aeb6ca;
  font-size: 10px;
  line-height: 1.5;
}
.result-effect-list span::before {
  content: "";
  position: absolute;
  top: .55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(53, 216, 255, .45);
}
.result-next {
  margin-top: 16px;
  padding: 12px 14px;
  border-left: 2px solid var(--violet);
  border-radius: 0 10px 10px 0;
  background: rgba(140, 92, 255, .065);
}
.result-next small { display: block; color: #8e7ed0; font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.result-next p { margin: 5px 0 0; color: #d9dcef; font-size: 10px; line-height: 1.5; }
.result-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}
.result-meta div { padding: 12px; border: 1px solid var(--line); border-radius: 12px; }
.result-meta small { display: block; color: #707990; font-size: 9px; }
.result-meta strong { display: block; margin-top: 3px; font-size: 13px; }
.result-actions { display: flex; gap: 8px; margin-top: 15px; }
.result-actions a,
.result-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
.result-actions a { flex: 1; background: var(--violet-2); border-color: transparent; }

/* Full-screen AI blueprint report */
body.report-open { overflow: hidden; }
.blueprint-modal[hidden] { display: none; }
.blueprint-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .26s ease, visibility .26s ease;
}
.blueprint-modal.open { opacity: 1; visibility: visible; }
.blueprint-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 15%, rgba(99, 69, 231, .28), transparent 34%),
    rgba(2, 4, 11, .86);
  backdrop-filter: blur(18px);
}
.blueprint-window {
  position: relative;
  width: min(1180px, 100%);
  height: min(920px, calc(100dvh - 48px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 26px;
  background: #080a16;
  box-shadow: 0 50px 150px rgba(0, 0, 0, .72), 0 0 80px rgba(84, 55, 210, .14);
  overflow: hidden;
  transform: translateY(18px) scale(.985);
  transition: transform .32s cubic-bezier(.2, .8, .2, 1);
}
.blueprint-modal.open .blueprint-window { transform: translateY(0) scale(1); }
.blueprint-window::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -220px;
  right: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(112, 70, 255, .22);
  filter: blur(80px);
  pointer-events: none;
}
.blueprint-window-bar {
  position: relative;
  z-index: 3;
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 20px 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  background: rgba(13, 16, 34, .96);
}
.blueprint-window-brand { display: flex; align-items: center; gap: 12px; }
.blueprint-window-brand > div { display: grid; gap: 2px; }
.blueprint-window-brand strong { font-size: 13px; letter-spacing: .02em; }
.blueprint-window-brand small { color: #6f7892; font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.blueprint-window-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
}
.blueprint-window-live i,
.report-live-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(83, 245, 189, .08), 0 0 14px rgba(83, 245, 189, .7);
}
.blueprint-window-actions { display: flex; justify-content: flex-end; align-items: center; gap: 8px; }
.blueprint-window-actions button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 10px;
  background: rgba(255, 255, 255, .035);
  color: #b6bdd0;
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}
.blueprint-window-actions button:hover { border-color: rgba(83, 245, 189, .28); color: #fff; }
.blueprint-window-actions .blueprint-window-close {
  width: 36px;
  padding: 0;
  color: #e7e9f3;
  font-size: 23px;
  font-weight: 300;
}
.blueprint-report {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(140, 92, 255, .7) transparent;
  background:
    linear-gradient(rgba(255, 255, 255, .012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .012) 1px, transparent 1px),
    radial-gradient(circle at 15% 5%, rgba(53, 216, 255, .06), transparent 26%),
    #080a16;
  background-size: 48px 48px, 48px 48px, auto, auto;
}
.blueprint-report::-webkit-scrollbar { width: 7px; }
.blueprint-report::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(var(--violet), #4b6df4);
}
.report-inner { width: min(100% - 80px, 1050px); margin: 0 auto; padding: 48px 0 64px; }
.report-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: stretch;
  gap: 24px;
}
.report-hero-copy {
  position: relative;
  min-height: 350px;
  padding: 38px 40px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 10%, rgba(53, 216, 255, .12), transparent 30%),
    linear-gradient(145deg, rgba(25, 29, 54, .92), rgba(10, 13, 29, .95));
  overflow: hidden;
}
.report-hero-copy::after {
  content: "AI VENDI";
  position: absolute;
  right: -8px;
  bottom: -20px;
  color: rgba(255, 255, 255, .018);
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -.07em;
  white-space: nowrap;
  pointer-events: none;
}
.report-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
}
.report-request {
  max-width: 720px;
  margin: 28px 0 0;
  color: #8d96af;
  font-size: 12px;
  line-height: 1.65;
}
.report-request small {
  display: block;
  margin-bottom: 6px;
  color: #59627a;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .14em;
}
.report-hero h2 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 18px 0 10px;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.08;
  letter-spacing: -.055em;
}
.report-hero-copy > p:last-of-type {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  color: #aab2c7;
  font-size: 15px;
  line-height: 1.75;
}
.report-tags { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 7px; margin-top: 24px; }
.report-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #b3bbcf;
  font-size: 9px;
  font-weight: 750;
}
.report-estimate {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(140, 92, 255, .32);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(140, 92, 255, .25), transparent 48%),
    #11142b;
}
.report-estimate > small { color: #8775c8; font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.report-estimate > strong { margin-top: 12px; color: #fff; font-size: 29px; letter-spacing: -.04em; }
.report-estimate dl { display: grid; gap: 0; margin: 28px 0 0; }
.report-estimate dl div { padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, .08); }
.report-estimate dt { color: #737d97; font-size: 9px; }
.report-estimate dd { margin: 5px 0 0; color: #dfe3f1; font-size: 12px; font-weight: 800; }
.report-estimate > p { margin: auto 0 0; color: #68718a; font-size: 9px; line-height: 1.65; }
.report-section {
  margin-top: 22px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  background: rgba(14, 17, 34, .88);
}
.report-section > header,
.report-two-column > div > header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.report-section > header > span,
.report-two-column > div > header > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(53, 216, 255, .22);
  border-radius: 10px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 850;
}
.report-section header small { display: block; color: #59637c; font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.report-section header h3 { margin: 3px 0 0; font-size: 19px; letter-spacing: -.035em; }
.report-overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.report-overview-grid article {
  min-height: 155px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 15px;
  background: rgba(255, 255, 255, .022);
}
.report-overview-grid article.is-highlight {
  border-color: rgba(83, 245, 189, .16);
  background: linear-gradient(145deg, rgba(83, 245, 189, .065), rgba(53, 216, 255, .025));
}
.report-overview-grid small { color: #78829c; font-size: 9px; font-weight: 800; }
.report-overview-grid p { margin: 12px 0 0; color: #c8cede; font-size: 13px; line-height: 1.7; }
.report-io { display: grid; grid-template-columns: 1fr 110px 1fr; align-items: center; gap: 16px; }
.report-io article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 16px;
  background: rgba(255, 255, 255, .025);
}
.report-io article:last-child { border-color: rgba(140, 92, 255, .2); background: rgba(140, 92, 255, .045); }
.report-io article > small { color: #737d96; font-size: 9px; font-weight: 850; letter-spacing: .08em; }
.report-io ul { display: grid; gap: 9px; margin: 18px 0 0; padding: 0; list-style: none; }
.report-io li { position: relative; padding: 10px 12px 10px 28px; border-radius: 9px; background: rgba(255, 255, 255, .035); color: #c2c8da; font-size: 11px; }
.report-io li::before { content: ""; position: absolute; left: 12px; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan); transform: translateY(-50%); }
.report-io article:last-child li::before { background: #a987ff; }
.report-io-arrow { display: grid; place-items: center; gap: 8px; color: #5a6380; }
.report-io-arrow span { font-size: 8px; font-weight: 850; letter-spacing: .12em; }
.report-io-arrow i { color: var(--violet); font-size: 34px; font-style: normal; text-shadow: 0 0 20px rgba(140, 92, 255, .5); }
.report-process { display: grid; grid-template-columns: repeat(5, 1fr); }
.report-process article {
  position: relative;
  min-height: 150px;
  padding: 18px;
  border-left: 1px solid rgba(255, 255, 255, .08);
}
.report-process article:first-child { border-left: 0; }
.report-process article > span { color: rgba(140, 92, 255, .6); font-size: 25px; font-weight: 850; letter-spacing: -.04em; }
.report-process article div { display: grid; gap: 6px; margin-top: 25px; }
.report-process article small { color: #555e76; font-size: 8px; letter-spacing: .1em; }
.report-process article strong { color: #d5d9e7; font-size: 11px; line-height: 1.5; }
.report-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; }
.report-feature-grid article {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .075);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015));
}
.report-feature-grid span { color: var(--cyan); font-size: 9px; font-weight: 850; }
.report-feature-grid strong { color: #d9ddea; font-size: 12px; line-height: 1.55; }
.report-two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; padding: 0; border: 0; background: transparent; }
.report-two-column > div {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  background: rgba(14, 17, 34, .88);
}
.report-check-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.report-check-list li {
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 13px 10px 36px;
  border-radius: 11px;
  background: rgba(83, 245, 189, .035);
  color: #bcc4d7;
  font-size: 11px;
  line-height: 1.5;
}
.report-check-list li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--mint);
  font-weight: 900;
}
.report-check-list.is-guardrail li { background: rgba(255, 190, 83, .035); }
.report-check-list.is-guardrail li::before { content: "!"; color: #ffc86e; }
.report-question-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.report-question-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 66px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 13px;
  background: rgba(255, 255, 255, .022);
}
.report-question-list span { color: #9f86f5; font-size: 10px; font-weight: 850; }
.report-question-list p { margin: 0; color: #c4cadb; font-size: 12px; line-height: 1.55; }
.report-next-step {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 22px;
  padding: 34px;
  border: 1px solid rgba(140, 92, 255, .32);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(140, 92, 255, .2), transparent 40%),
    linear-gradient(135deg, #14172f, #0d1023);
}
.report-next-step small { color: #8e76da; font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.report-next-step h3 { margin: 7px 0 0; font-size: 21px; letter-spacing: -.04em; }
.report-next-step p { max-width: 650px; margin: 9px 0 0; color: #aeb6ca; font-size: 12px; line-height: 1.65; }
.report-bottom-actions { display: flex; align-items: center; gap: 8px; }
.report-bottom-actions button,
.report-bottom-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  color: #d8dbea;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.report-bottom-actions a {
  gap: 14px;
  border-color: transparent;
  background: linear-gradient(135deg, #8151ff, #4d64ef);
  color: #fff;
  box-shadow: 0 14px 28px rgba(86, 57, 214, .25);
}

@media (max-width: 900px) {
  .report-inner { width: min(100% - 40px, 720px); padding-top: 30px; }
  .report-hero { grid-template-columns: 1fr; }
  .report-estimate { min-height: 260px; }
  .report-overview-grid { grid-template-columns: 1fr; }
  .report-overview-grid article { min-height: auto; }
  .report-process { grid-template-columns: repeat(2, 1fr); gap: 1px; }
  .report-process article { border: 1px solid rgba(255, 255, 255, .07); }
  .report-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .report-two-column { grid-template-columns: 1fr; }
  .report-next-step { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .blueprint-modal { padding: 0; }
  .blueprint-window { width: 100%; height: 100dvh; border: 0; border-radius: 0; }
  .blueprint-window-bar { grid-template-columns: 1fr auto; min-height: 62px; padding: 0 12px 0 16px; }
  .blueprint-window-live { display: none; }
  .blueprint-window-actions button:first-child { display: none; }
  .report-inner { width: min(100% - 24px, 520px); padding: 20px 0 38px; }
  .report-hero-copy { min-height: auto; padding: 26px 22px; border-radius: 18px; }
  .report-hero h2 { font-size: 35px; }
  .report-hero-copy > p:last-of-type { font-size: 14px; }
  .report-estimate { min-height: 280px; padding: 24px; border-radius: 18px; }
  .report-section, .report-two-column > div { padding: 22px 18px; border-radius: 17px; }
  .report-io { grid-template-columns: 1fr; }
  .report-io-arrow { min-height: 60px; }
  .report-io-arrow i { transform: rotate(90deg); }
  .report-process { grid-template-columns: 1fr; gap: 7px; }
  .report-process article { min-height: 100px; border-radius: 12px; }
  .report-process article div { margin-top: 14px; }
  .report-feature-grid { grid-template-columns: 1fr; }
  .report-feature-grid article { min-height: 90px; }
  .report-question-list li { grid-template-columns: 36px 1fr; }
  .report-next-step { padding: 24px 20px; border-radius: 17px; }
  .report-bottom-actions { display: grid; grid-template-columns: 1fr; }
}

.hero-ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 90px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: #4e566f;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .14em;
}
.hero-ticker i { color: rgba(140, 92, 255, .55); font-style: normal; }

/* Shift */
.belief { padding: 145px 0; background: #0a0c18; }
.belief-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(540px, 1.12fr);
  column-gap: 76px;
  row-gap: 24px;
  align-items: start;
}
.belief-grid > .section-label { grid-column: 1; grid-row: 1; }
.belief-copy { grid-column: 1; grid-row: 2; }
.belief-copy h2 { font-size: clamp(35px, 3.7vw, 56px); }
.belief-copy > p:last-child { margin: 28px 0 0; color: var(--muted); line-height: 1.9; }
.era-cards {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.era-card {
  position: relative;
  min-height: 410px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
}
.era-card > div { display: flex; align-items: flex-start; }
.era-card small { color: #8a93ab; font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.era-card > div b { margin-left: auto; color: #f1f3fa; font-size: 15px; font-weight: 850; }
.era-card ol { display: grid; gap: 12px; margin: 64px 0 0; padding: 0; list-style: none; }
.era-card li { display: flex; align-items: center; gap: 12px; min-height: 48px; padding: 0 13px; border-radius: 11px; color: #aeb5c8; background: rgba(255, 255, 255, .035); font-size: 13px; font-weight: 650; }
.era-card li span { color: #737c94; font-size: 10px; font-weight: 850; }
.era-past { background: #0c0e19; filter: saturate(.4); }
.era-past::after { content: ""; position: absolute; inset: 0; background: linear-gradient(145deg, transparent, rgba(0, 0, 0, .15)); }
.era-future {
  border-color: rgba(140, 92, 255, .4);
  background:
    radial-gradient(circle at 100% 0, rgba(140, 92, 255, .25), transparent 45%),
    #111329;
  box-shadow: 0 25px 60px rgba(31, 20, 77, .28);
}
.era-future li { color: #e2e5f0; background: rgba(139, 92, 246, .08); border: 1px solid rgba(140, 92, 255, .1); }
.era-future li span { color: var(--cyan); }
.era-future em {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: rgba(255, 255, 255, .18);
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .12em;
}

/* Skills */
.skills { padding: 145px 0; }
.skill-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.skill-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(150deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.skill-card:hover { transform: translateY(-8px); border-color: rgba(140, 92, 255, .35); background: linear-gradient(150deg, rgba(140, 92, 255, .08), rgba(255, 255, 255, .02)); }
.skill-card-top { display: flex; align-items: center; }
.skill-card-top span { color: #626b82; font-size: 10px; font-weight: 850; }
.skill-card-top i {
  margin-left: auto;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #80889f;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .1em;
}
.skill-icon {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 42px 0 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(140, 92, 255, .16), rgba(53, 216, 255, .04));
  box-shadow: inset 0 0 28px rgba(140, 92, 255, .08), 0 0 30px rgba(140, 92, 255, .06);
}
.skill-icon b { position: absolute; display: block; }
.icon-launch b:first-child { width: 34px; height: 25px; left: 19px; top: 22px; border: 1px solid #bdaaff; border-radius: 5px; }
.icon-launch b:nth-child(2) { width: 22px; height: 1px; left: 25px; top: 30px; background: var(--cyan); box-shadow: 0 6px 0 rgba(53, 216, 255, .35); }
.icon-launch b:nth-child(3) { width: 8px; height: 8px; right: 15px; top: 15px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 12px var(--mint); }
.icon-quote b:first-child { width: 29px; height: 36px; left: 21px; top: 18px; border: 1px solid #bdaaff; border-radius: 4px; }
.icon-quote b:nth-child(2) { width: 17px; height: 1px; left: 27px; top: 29px; background: var(--cyan); box-shadow: 0 6px 0 rgba(53, 216, 255, .4), 0 12px 0 rgba(53, 216, 255, .2); }
.icon-quote b:nth-child(3) { width: 10px; height: 10px; right: 12px; bottom: 13px; border: 2px solid var(--mint); border-radius: 50%; }
.icon-content b:first-child { width: 34px; height: 27px; left: 19px; top: 22px; border: 1px solid #bdaaff; border-radius: 6px; transform: rotate(-8deg); }
.icon-content b:nth-child(2) { width: 20px; height: 27px; left: 28px; top: 16px; border: 1px solid var(--cyan); border-radius: 5px; transform: rotate(8deg); }
.icon-content b:nth-child(3) { width: 7px; height: 7px; right: 13px; bottom: 14px; background: var(--pink); border-radius: 2px; box-shadow: 0 0 12px var(--pink); }
.icon-sales b:first-child { width: 36px; height: 20px; left: 18px; top: 34px; border-top: 1px solid #bdaaff; transform: skewY(-25deg); }
.icon-sales b:nth-child(2) { width: 8px; height: 8px; left: 18px; top: 36px; border-radius: 50%; background: var(--violet); box-shadow: 13px -5px 0 var(--cyan), 26px -18px 0 var(--mint); }
.icon-sales b:nth-child(3) { width: 1px; height: 35px; right: 19px; top: 17px; background: rgba(255, 255, 255, .18); }
.icon-operate b:first-child { width: 37px; height: 32px; left: 18px; top: 20px; border: 1px solid #bdaaff; border-radius: 7px; }
.icon-operate b:nth-child(2) { width: 37px; height: 1px; left: 18px; top: 30px; background: #bdaaff; }
.icon-operate b:nth-child(3) { width: 5px; height: 5px; left: 25px; top: 38px; border-radius: 50%; background: var(--cyan); box-shadow: 11px 0 0 rgba(53, 216, 255, .6), 22px 0 0 rgba(53, 216, 255, .3); }
.icon-custom { display: grid; place-items: center; border-style: dashed; }
.icon-custom b { position: static; color: #fff; font-size: 30px; font-weight: 200; }
.skill-card h3 { margin: 0; font-size: 23px; letter-spacing: -.035em; }
.skill-card > p { margin: 12px 0 0; color: #9ba3bb; font-size: 13px; line-height: 1.75; }
.skill-card ul { display: grid; gap: 5px; margin: 18px 0 26px; padding: 0; color: #c7ccdc; font-size: 11px; list-style: none; }
.skill-card li::before { content: "·"; margin-right: 8px; color: var(--cyan); }
.skill-card > a { display: flex; align-items: center; margin-top: auto; padding-top: 17px; border-top: 1px solid var(--line); color: #d9ddec; font-size: 12px; font-weight: 800; text-decoration: none; }
.skill-card > a span { margin-left: auto; color: var(--cyan); }
.skill-featured { background: radial-gradient(circle at 100% 0, rgba(53, 216, 255, .11), transparent 37%), linear-gradient(150deg, rgba(140, 92, 255, .1), rgba(255, 255, 255, .02)); }
.custom-skill-card { border-style: dashed; }

/* Organization */
.system { padding: 150px 0; background: #090b17; }
.org-map {
  position: relative;
  padding: 58px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 28%, rgba(102, 55, 230, .14), transparent 33%),
    rgba(255, 255, 255, .018);
  overflow: hidden;
}
.org-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .1) .7px, transparent .7px);
  background-size: 19px 19px;
  opacity: .28;
}
.org-command,
.chief-card,
.department-grid { position: relative; z-index: 2; }
.org-command { text-align: center; }
.org-command small { color: #6f7891; font-size: 9px; font-weight: 850; letter-spacing: .16em; }
.org-command strong { display: block; margin: 12px 0 10px; font-size: 25px; line-height: 1.35; letter-spacing: -.035em; }
.org-command span { display: inline-flex; padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; color: #8c95ad; font-size: 9px; }
.org-line { width: 1px; height: 44px; margin: 17px auto; background: linear-gradient(var(--cyan), var(--violet)); opacity: .7; }
.chief-card {
  width: min(650px, 100%);
  min-height: 112px;
  display: flex;
  align-items: center;
  gap: 19px;
  margin: 0 auto;
  padding: 20px 24px;
  border: 1px solid rgba(140, 92, 255, .42);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(108, 63, 245, .22), rgba(15, 19, 40, .85));
  box-shadow: 0 22px 60px rgba(34, 18, 80, .22);
}
.chief-core {
  position: relative;
  flex: 0 0 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 216, 255, .2), rgba(140, 92, 255, .12));
}
.chief-core::before,
.chief-core::after { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; border-left-color: var(--cyan); animation: orbit-spin 8s linear infinite; }
.chief-core::after { inset: 18px; border-color: var(--violet); animation-direction: reverse; animation-duration: 5s; }
.chief-core i { position: absolute; z-index: 2; width: 7px; height: 7px; left: 27px; top: 27px; border-radius: 50%; background: #fff; box-shadow: 0 0 14px var(--cyan); }
.chief-card small { display: block; color: var(--cyan); font-size: 8px; font-weight: 850; letter-spacing: .15em; }
.chief-card strong { display: block; margin-top: 3px; font-size: 19px; }
.chief-card p { margin: 3px 0 0; color: #8992aa; font-size: 11px; }
.chief-card > span { margin-left: auto; padding: 6px 9px; border: 1px solid rgba(83, 245, 189, .25); border-radius: 999px; color: var(--mint); font-size: 8px; font-weight: 850; }
.org-branches { position: relative; width: 75%; height: 70px; margin: 0 auto; border-top: 1px solid rgba(140, 92, 255, .35); transform: translateY(48px); }
.org-branches::before { content: ""; position: absolute; width: 1px; height: 49px; left: 50%; top: -49px; background: rgba(140, 92, 255, .45); }
.org-branches i { position: absolute; top: 0; width: 1px; height: 28px; background: rgba(140, 92, 255, .35); }
.org-branches i:first-child { left: 0; }
.org-branches i:nth-child(2) { left: 33.333%; }
.org-branches i:nth-child(3) { left: 66.666%; }
.org-branches i:nth-child(4) { right: 0; }
.department-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.department-card {
  position: relative;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, .03);
}
.department-card > span { color: #586078; font-size: 8px; font-weight: 850; }
.dept-symbol {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 20px 0 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 19px;
}
.department-card h3 { margin: 0; font-size: 17px; }
.department-card p { margin: 3px 0 0; color: #7d869e; font-size: 10px; }
.department-card b { position: absolute; right: 16px; bottom: 15px; color: #596178; font-size: 7px; letter-spacing: .1em; }
.dept-sales .dept-symbol { color: var(--cyan); background: rgba(53, 216, 255, .08); }
.dept-marketing .dept-symbol { color: var(--mint); background: rgba(83, 245, 189, .08); }
.dept-design .dept-symbol { color: var(--pink); background: rgba(255, 100, 200, .08); }
.dept-dev .dept-symbol { color: #ae8cff; background: rgba(140, 92, 255, .1); }
.system-benefits { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 24px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.system-benefits article { min-height: 130px; display: grid; grid-template-columns: auto 1fr; column-gap: 16px; align-content: center; padding: 24px; border-right: 1px solid var(--line); }
.system-benefits article:last-child { border-right: 0; }
.system-benefits span { grid-row: 1 / 3; color: var(--violet); font-size: 10px; font-weight: 850; }
.system-benefits strong { font-size: 14px; }
.system-benefits p { margin: 3px 0 0; color: #7f889f; font-size: 11px; }

/* Process */
.process-section { padding: 145px 0; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); }
.process-grid article { position: relative; min-height: 300px; padding: 32px 24px 26px 0; border-right: 1px solid var(--line); }
.process-grid article + article { padding-left: 24px; }
.process-grid article:last-child { border-right: 0; }
.process-grid > article > span { color: #555e75; font-size: 10px; font-weight: 850; }
.process-dot {
  width: 10px;
  height: 10px;
  margin: 38px 0 42px;
  border: 2px solid #080a14;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 1px var(--violet), 0 0 18px rgba(140, 92, 255, .65);
}
.process-grid small { display: block; color: var(--cyan); font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.process-grid h3 { margin: 8px 0 9px; font-size: 19px; }
.process-grid p { margin: 0; color: #828ba2; font-size: 12px; line-height: 1.7; }

/* Academy */
.academy {
  position: relative;
  padding: 150px 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(53, 216, 255, .06), transparent 26%),
    radial-gradient(circle at 88% 70%, rgba(140, 92, 255, .1), transparent 30%),
    #090b17;
  overflow: hidden;
}
.academy-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  left: 50%;
  top: 18%;
  margin-left: -300px;
  border: 1px solid rgba(140, 92, 255, .09);
  border-radius: 50%;
  box-shadow:
    0 0 0 120px rgba(140, 92, 255, .018),
    0 0 0 240px rgba(53, 216, 255, .012);
  pointer-events: none;
}
.academy-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 70px;
}
.academy-cockpit {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(53, 216, 255, .08), transparent 35%),
    linear-gradient(145deg, rgba(18, 23, 45, .96), rgba(7, 9, 20, .98));
  box-shadow: 0 35px 90px rgba(0, 0, 0, .4), inset 0 1px 0 rgba(255, 255, 255, .05);
  overflow: hidden;
  transform: perspective(1200px) rotateY(2deg);
}
.cockpit-top {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}
.cockpit-top > div { display: flex; gap: 6px; }
.cockpit-top > div span { width: 7px; height: 7px; border-radius: 50%; background: #4d556b; }
.cockpit-top > div span:first-child { background: #ff6f7b; }
.cockpit-top > div span:nth-child(2) { background: #f0c15b; }
.cockpit-top > div span:nth-child(3) { background: var(--mint); }
.cockpit-top b { color: #747d94; font-size: 8px; letter-spacing: .13em; }
.cockpit-top em {
  margin-left: auto;
  padding: 4px 7px;
  border: 1px solid rgba(83, 245, 189, .23);
  border-radius: 999px;
  color: var(--mint);
  font-size: 7px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .1em;
}
.cockpit-body { padding: 31px; }
.course-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.course-progress small { color: #737c93; font-size: 8px; font-weight: 850; letter-spacing: .13em; }
.course-progress strong { color: var(--cyan); font-size: 38px; line-height: 1; }
.course-progress strong em { font-size: 14px; font-style: normal; }
.course-progress > div { grid-column: 1 / -1; height: 4px; border-radius: 10px; background: rgba(255, 255, 255, .06); overflow: hidden; }
.course-progress > div i { display: block; width: 68%; height: 100%; background: linear-gradient(90deg, var(--violet), var(--cyan)); box-shadow: 0 0 14px var(--cyan); }
.current-mission { padding: 28px 0 25px; }
.current-mission > span { color: var(--violet); font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.current-mission h3 { margin: 11px 0 10px; font-size: 27px; line-height: 1.22; letter-spacing: -.04em; }
.current-mission p { margin: 0; color: #868fa6; font-size: 11px; }
.learning-modules { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.learning-modules article {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .022);
}
.learning-modules span { color: #596278; font-size: 7px; font-weight: 850; }
.learning-modules b { font-size: 10px; }
.learning-modules i { margin-top: 4px; color: #596278; font-size: 6px; font-style: normal; font-weight: 850; letter-spacing: .1em; }
.learning-modules .done { border-color: rgba(83, 245, 189, .16); background: rgba(83, 245, 189, .035); }
.learning-modules .done i { color: var(--mint); }
.learning-modules .active { border-color: rgba(140, 92, 255, .45); background: rgba(140, 92, 255, .1); box-shadow: inset 0 0 24px rgba(140, 92, 255, .08); }
.learning-modules .active i { color: var(--cyan); }
.academy-intro { padding-right: 20px; }
.academy-quote { margin: 0; font-size: clamp(28px, 3vw, 42px); font-weight: 800; line-height: 1.3; letter-spacing: -.045em; }
.academy-intro > p:nth-child(2) { margin: 26px 0 0; color: #979fb6; font-size: 14px; line-height: 1.85; }
.academy-intro > p strong { color: #fff; }
.academy-formats { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 32px; }
.academy-formats span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #8e97ae; font-size: 9px; font-weight: 700; }
.academy-programs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  scroll-margin-top: 100px;
}
.academy-program {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
}
.program-index { display: flex; align-items: center; }
.program-index span { color: #5e667c; font-size: 10px; font-weight: 850; }
.program-index i { margin-left: auto; color: #6d768d; font-size: 8px; font-style: normal; font-weight: 850; letter-spacing: .12em; }
.program-copy { margin-top: 65px; }
.program-copy small { color: var(--cyan); font-size: 8px; font-weight: 850; letter-spacing: .13em; }
.program-copy h3 { margin: 10px 0 12px; font-size: 25px; }
.program-copy p { margin: 0; color: #9098af; font-size: 12px; line-height: 1.75; }
.academy-program ul { display: grid; gap: 7px; margin: 24px 0 26px; padding: 20px 0 0; border-top: 1px solid var(--line); color: #c2c8d8; font-size: 11px; list-style: none; }
.academy-program li::before { content: "✓"; margin-right: 9px; color: var(--mint); }
.program-price { display: flex; align-items: baseline; gap: 4px; margin-top: auto; }
.program-price small { margin-right: 5px; color: #697188; font-size: 9px; }
.program-price strong { font-size: 38px; letter-spacing: -.05em; }
.program-price span { color: #8f97ad; font-size: 11px; }
.academy-program > a {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.featured-program {
  border-color: rgba(140, 92, 255, .5);
  background: radial-gradient(circle at 100% 0, rgba(140, 92, 255, .22), transparent 38%), #111428;
  box-shadow: 0 28px 70px rgba(31, 19, 72, .25);
}
.featured-program > a { border-color: transparent; background: linear-gradient(135deg, var(--violet), #5637d7); }
.program-ribbon {
  position: absolute;
  right: 19px;
  top: 19px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(53, 216, 255, .09);
  color: var(--cyan);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .1em;
}
.academy-roadmap {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  margin-top: 70px;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .018);
}
.academy-roadmap h3 { margin: 0; font-size: 26px; line-height: 1.3; letter-spacing: -.04em; }
.academy-roadmap ol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0; padding: 0; list-style: none; }
.academy-roadmap li { min-height: 100px; padding: 12px 16px; border-left: 1px solid var(--line); }
.academy-roadmap li span { display: block; color: var(--violet); font-size: 8px; font-weight: 850; }
.academy-roadmap li b { display: block; margin-top: 14px; font-size: 12px; }
.academy-roadmap li p { margin: 2px 0 0; color: #6f7890; font-size: 9px; }

/* Pricing */
.pricing { padding: 150px 0; background: #0a0c18; }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: stretch; }
.price-card {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .026);
}
.price-label { margin: 0; color: #707990; font-size: 9px; font-weight: 850; letter-spacing: .15em; }
.price-card h3 { margin: 14px 0 28px; font-size: 21px; }
.price { min-height: 70px; display: flex; align-items: baseline; gap: 4px; }
.price small { margin-right: 5px; color: #737c94; font-size: 10px; }
.price strong { font-size: 48px; line-height: 1; letter-spacing: -.06em; }
.price span { color: #9aa2b9; font-size: 13px; font-weight: 700; }
.price-card > p:not(.price-label) { min-height: 73px; margin: 22px 0 0; color: #929ab1; font-size: 12px; line-height: 1.75; }
.price-card ul { display: grid; gap: 8px; margin: 22px 0 28px; padding: 18px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { color: #c3c8d8; font-size: 11px; }
.price-card li::before { content: "✓"; margin-right: 9px; color: var(--mint); }
.price-card > a { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: auto; border: 1px solid var(--line-strong); border-radius: 12px; color: #fff; font-size: 12px; font-weight: 800; text-decoration: none; }
.price-free { background: rgba(255, 255, 255, .012); }
.price-free .price strong { color: var(--mint); }
.price-featured {
  border-color: rgba(140, 92, 255, .55);
  background:
    radial-gradient(circle at 100% 0, rgba(140, 92, 255, .23), transparent 42%),
    #12152a;
  box-shadow: 0 24px 70px rgba(40, 23, 92, .26);
}
.price-featured > a { border-color: transparent; background: linear-gradient(135deg, var(--violet), #5939de); }
.price-badge {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(53, 216, 255, .1);
  color: var(--cyan);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .1em;
}
.price-note { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.price-note > div { min-height: 110px; display: flex; align-items: center; gap: 16px; padding: 20px; border-right: 1px solid var(--line); }
.price-note > div:last-child { border-right: 0; }
.price-note span { flex: 0 0 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan); }
.price-note p { margin: 0; color: #7f889e; font-size: 10px; line-height: 1.65; }
.price-note strong { color: #d9ddea; }

/* Promise, FAQ, Contact */
.promise { padding: 125px 0; }
.promise-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: center; }
.promise-list { display: grid; }
.promise-list article { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.promise-list article:first-child { border-top: 1px solid var(--line); }
.promise-list span { color: var(--violet); font-size: 10px; font-weight: 850; }
.promise-list h3 { margin: 0; font-size: 18px; }
.promise-list p { margin: 5px 0 0; color: #858ea5; font-size: 12px; }
.faq { padding: 145px 0; background: #0a0c18; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 100px; align-items: start; }
.faq .overline { margin-top: 50px; }
.faq h2 { font-size: clamp(36px, 3.8vw, 56px); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: #626b82; font-size: 9px; }
.faq-list summary i { margin-left: auto; color: #7f889f; font-size: 18px; font-style: normal; transition: transform .25s ease; }
.faq-list details[open] summary i { transform: rotate(45deg); color: var(--cyan); }
.faq-list details p { max-width: 720px; margin: -7px 0 25px 38px; color: #9098ae; font-size: 13px; line-height: 1.8; }
.contact { position: relative; padding: 150px 0; overflow: hidden; background: #070913; }
.contact-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  left: -280px;
  bottom: -370px;
  border-radius: 50%;
  background: rgba(104, 64, 255, .18);
  filter: blur(70px);
}
.contact-grid { position: relative; display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; align-items: center; }
.contact-copy h2 { margin: 0; font-size: clamp(42px, 4.8vw, 70px); line-height: 1.08; letter-spacing: -.06em; }
.contact-copy h2 em { color: transparent; font-style: normal; background: linear-gradient(100deg, #fff, var(--violet), var(--cyan)); -webkit-background-clip: text; background-clip: text; }
.contact-copy > p:not(.overline) { max-width: 500px; margin: 28px 0 0; color: #99a1b8; line-height: 1.85; }
.contact-meta { display: flex; gap: 45px; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line); }
.contact-meta div { display: grid; gap: 4px; }
.contact-meta span { color: #606980; font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.contact-meta a, .contact-meta p { margin: 0; color: #dce0ec; font-size: 14px; font-weight: 750; text-decoration: none; }
.counsel-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  box-shadow: var(--shadow);
}
.form-heading { display: grid; gap: 3px; margin-bottom: 28px; }
.form-heading span { color: var(--cyan); font-size: 9px; font-weight: 850; letter-spacing: .14em; }
.form-heading strong { font-size: 25px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.counsel-form label { display: grid; gap: 8px; margin-bottom: 14px; color: #9ca4ba; font-size: 11px; font-weight: 700; }
.counsel-form input:not([type="checkbox"]),
.counsel-form select,
.counsel-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: rgba(3, 5, 12, .55);
  color: #f4f5fb;
  font-size: 13px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.counsel-form select { color-scheme: dark; }
.counsel-form textarea { min-height: 115px; padding-block: 14px; resize: vertical; }
.counsel-form input:focus,
.counsel-form select:focus,
.counsel-form textarea:focus { border-color: rgba(140, 92, 255, .65); box-shadow: 0 0 0 4px rgba(140, 92, 255, .08); }
.counsel-form .agree { display: flex; grid-template-columns: none; flex-direction: row; align-items: center; gap: 9px; margin: 18px 0; color: #777f96; font-size: 10px; }
.agree input { accent-color: var(--violet); }
.counsel-form > button {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border: 0;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--violet), #5838da);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}
.counsel-form > button:disabled { opacity: .55; cursor: wait; }
.counsel-form > button span { font-size: 19px; }
.form-foot { margin: 12px 0 0; color: #606980; font-size: 9px; text-align: center; }

/* Footer */
.site-footer { padding: 60px 0 28px; border-top: 1px solid var(--line); background: #04050a; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; padding-bottom: 50px; }
.footer-top > p { margin: 0; color: #747d94; font-size: 12px; }
.footer-top-link { color: #8992a8; font-size: 9px; font-weight: 850; letter-spacing: .12em; text-decoration: none; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 35px; align-items: center; padding-top: 25px; border-top: 1px solid var(--line); color: #495168; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-bottom a { text-decoration: none; }
.footer-bottom > span:last-child { text-align: right; }

/* Motion */
.motion-ready [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .75, .2, 1); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(83, 245, 189, .07), 0 0 12px rgba(83, 245, 189, .4); }
  50% { box-shadow: 0 0 0 8px rgba(83, 245, 189, 0), 0 0 20px rgba(83, 245, 189, .7); }
}

/* Unified typography
   The parent Gnuboard theme assigns Malgun Gothic to headings, so the landing
   page owns its full type scale explicitly. */
.hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(440px, .88fr);
  gap: 48px;
}
.hero h1 {
  font-size: var(--type-hero);
  font-weight: 820;
  line-height: 1.06;
  letter-spacing: -.055em;
}
.hero-description {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.78;
}
.console-body h2 {
  font-size: clamp(28px, 2.25vw, 34px);
  font-weight: 780;
  line-height: 1.24;
  letter-spacing: -.035em;
}
.section-top h2,
.belief-copy h2,
.promise h2,
.faq h2,
.contact-copy h2 {
  font-size: var(--type-section);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.048em;
}
.section-top > p,
.belief-copy > p:last-child,
.contact-copy > p:not(.overline) {
  font-size: var(--type-body);
  line-height: 1.82;
}
.academy-quote {
  font-size: var(--type-lead);
  font-weight: 780;
  line-height: 1.32;
  letter-spacing: -.038em;
}
.skill-card h3,
.program-copy h3 {
  font-size: var(--type-card);
  line-height: 1.35;
}
.skill-card > p,
.program-copy p,
.price-card > p:not(.price-label),
.promise-list p,
.faq-list details p {
  font-size: 14px;
  line-height: 1.78;
}
.skill-card ul,
.academy-program ul,
.price-card li,
.process-grid p {
  font-size: 13px;
  line-height: 1.72;
}
.skill-card > a,
.academy-program > a,
.price-card > a {
  font-size: 13px;
}
.current-mission h3 {
  font-size: 25px;
  line-height: 1.3;
}
.academy-intro > p:nth-child(2) {
  font-size: 15px;
  line-height: 1.82;
}
.academy-roadmap h3 {
  font-size: 24px;
}
.price-card h3 {
  font-size: 20px;
  line-height: 1.4;
}
.faq-list summary {
  font-size: 17px;
}
.form-heading strong {
  font-size: 23px;
}
.counsel-form label {
  font-size: 12px;
}
.counsel-form input:not([type="checkbox"]),
.counsel-form select,
.counsel-form textarea {
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1120px) {
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: block; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .belief-grid { grid-template-columns: 1fr; row-gap: 26px; }
  .belief-grid > .section-label,
  .belief-copy,
  .era-cards { grid-column: 1; grid-row: auto; }
  .section-top { grid-template-columns: 110px 1fr; }
  .section-top > p { grid-column: 2; max-width: 650px; }
  .skill-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { gap: 55px; }
}
@media (max-width: 900px) {
  .shell { width: min(100% - 32px, var(--shell)); }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .skill-console { max-width: 650px; }
  .hero-ticker { overflow: hidden; justify-content: flex-start; white-space: nowrap; }
  .belief-grid, .section-top, .promise-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .belief-grid .section-label, .section-top .section-label { margin-bottom: 5px; }
  .era-cards, .section-top > p { grid-column: auto; }
  .section-top > p { max-width: 720px; }
  .department-grid { grid-template-columns: repeat(2, 1fr); }
  .org-branches { display: none; }
  .department-grid { margin-top: 28px; }
  .academy-showcase { grid-template-columns: 1fr; }
  .academy-cockpit { transform: none; }
  .academy-intro { padding-right: 0; }
  .academy-roadmap { grid-template-columns: 1fr; gap: 30px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid article { min-height: 250px; border-bottom: 1px solid var(--line); }
  .process-grid article:nth-child(2n) { border-right: 0; }
  .process-grid article:nth-child(odd) { padding-left: 0; }
  .process-grid article:nth-child(even) { padding-left: 24px; }
  .price-note { grid-template-columns: 1fr; }
  .price-note > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .price-note > div:last-child { border-bottom: 0; }
  .contact-copy > p:not(.overline) { max-width: 700px; }
}
@media (max-width: 640px) {
  body { word-break: keep-all; }
  .shell { width: min(100% - 24px, var(--shell)); }
  .header-inner { min-height: 70px; }
  .brand-type strong { font-size: 17px; }
  .hero { padding: 118px 0 30px; }
  .hero h1 { font-size: clamp(38px, 11.2vw, 48px); line-height: 1.08; letter-spacing: -.05em; }
  .hero-description { font-size: 16px; }
  .hero-description br { display: none; }
  .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-proof > i { display: none; }
  .hero-proof div:last-child { grid-column: 1 / -1; }
  .console-body { min-height: 505px; padding: 25px 20px; }
  .skill-console { border-radius: 20px; }
  .console-body h2 { font-size: 28px; }
  .skill-examples { display: grid; grid-template-columns: 1fr 1fr; }
  .analysis-panel, .blueprint-result { padding: 25px 20px; }
  .analysis-flow span { min-height: 62px; }
  .result-feature-list { grid-template-columns: 1fr; }
  .hero-ticker { margin-top: 55px; }
  .belief, .skills, .system, .process-section, .academy, .pricing, .faq, .contact { padding: 95px 0; }
  .section-top { margin-bottom: 40px; }
  .section-top h2, .belief-copy h2, .promise h2, .faq h2, .contact-copy h2 { font-size: 35px; line-height: 1.15; }
  .era-cards { grid-template-columns: 1fr; }
  .era-card { min-height: 350px; }
  .skill-grid, .price-grid { grid-template-columns: 1fr; }
  .academy-programs { grid-template-columns: 1fr; }
  .learning-modules { grid-template-columns: 1fr 1fr; }
  .academy-roadmap { padding: 28px 16px; }
  .academy-roadmap ol { grid-template-columns: 1fr 1fr; }
  .academy-roadmap li:nth-child(odd) { border-left: 0; }
  .academy-roadmap li { border-top: 1px solid var(--line); }
  .skill-card { min-height: 450px; }
  .org-map { padding: 36px 16px 20px; }
  .org-command strong { font-size: 20px; }
  .chief-card { align-items: flex-start; padding: 17px; }
  .chief-core { flex-basis: 50px; height: 50px; }
  .chief-core i { left: 21px; top: 21px; }
  .chief-card p { line-height: 1.45; }
  .chief-card > span { display: none; }
  .department-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .department-card { min-height: 165px; padding: 16px; }
  .dept-symbol { margin: 13px 0 12px; }
  .system-benefits { grid-template-columns: 1fr; }
  .system-benefits article { border-right: 0; border-bottom: 1px solid var(--line); }
  .system-benefits article:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article, .process-grid article:nth-child(even), .process-grid article:nth-child(odd) { min-height: auto; padding: 26px 0; border-right: 0; }
  .process-dot { margin: 23px 0; }
  .promise { padding: 90px 0; }
  .contact-meta { gap: 25px; }
  .counsel-form { padding: 24px 16px; border-radius: 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top, .footer-bottom { grid-template-columns: 1fr; }
  .footer-top-link { justify-self: start; }
  .footer-bottom div { order: -1; }
  .footer-bottom > span:last-child { text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media print {
  body { background: #080a16 !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  body > *:not(.blueprint-modal) { display: none !important; }
  .blueprint-modal {
    position: static;
    display: block !important;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }
  .blueprint-modal-backdrop,
  .blueprint-window-bar,
  .report-bottom-actions { display: none !important; }
  .blueprint-window {
    width: 100%;
    height: auto;
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transform: none;
  }
  .blueprint-report { overflow: visible; }
  .report-inner { width: 100%; padding: 0; }
  .report-section,
  .report-hero,
  .report-next-step { break-inside: avoid; }
}
