:root {
  --bg: #f7f9fc;
  --paper: #ffffff;
  --paper-soft: rgba(255, 255, 255, 0.78);
  --ink: #101828;
  --text: #243044;
  --muted: #667085;
  --faint: #eef3f8;
  --line: rgba(16, 24, 40, 0.1);
  --line-strong: rgba(16, 24, 40, 0.16);
  --blue: #2f6df6;
  --cyan: #2fb7c9;
  --green: #16a36d;
  --amber: #c9821a;
  --rose: #d6536d;
  --shadow: 0 24px 70px rgba(37, 54, 78, 0.14);
  --soft-shadow: 0 16px 44px rgba(37, 54, 78, 0.09);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(47, 109, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 109, 246, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 46%, #eef3f8 100%);
  background-size: 48px 48px, 48px 48px, auto;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(47, 109, 246, 0.12), transparent 34%),
    linear-gradient(300deg, rgba(47, 183, 201, 0.13), transparent 35%),
    linear-gradient(25deg, rgba(22, 163, 109, 0.08), transparent 30%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(16, 24, 40, 0.09) 0.8px, transparent 0.8px);
  background-size: 4px 4px;
  opacity: 0.18;
}

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

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

button {
  cursor: pointer;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.page-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

main#top {
  scroll-margin-top: 118px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 48px rgba(37, 54, 78, 0.1);
  backdrop-filter: blur(22px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(47, 109, 246, 0.16),
    0 12px 28px rgba(47, 109, 246, 0.18);
}

.brand-mark img,
.cabinet-brand-mark img {
  width: 134%;
  height: 134%;
  object-fit: cover;
  transform: translateY(1px);
}

.logo-panel {
  fill: rgba(255, 255, 255, 0.02);
}

.logo-shadow {
  fill: none;
  stroke: rgba(47, 183, 201, 0.22);
  stroke-width: 5.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-glyph {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logo-cut {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 1.7;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 999px;
  background: rgba(247, 249, 252, 0.7);
}

.nav a {
  padding: 8px 11px;
  border-radius: 999px;
  color: #475467;
  font-size: 0.88rem;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  background: #eef4ff;
  color: var(--blue);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(37, 54, 78, 0.08);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 2px 0;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.language-switch button {
  min-width: 38px;
  min-height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #667085;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0;
}

.language-switch button.is-active {
  background: #101828;
  color: #ffffff;
}

.login-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  color: #344054;
  font-size: 0.9rem;
  font-weight: 760;
  white-space: nowrap;
}

.header-cta {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(16, 24, 40, 0.14);
  border-radius: 12px;
  background: #101828;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 720;
  white-space: nowrap;
}

.header-cta span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(22, 163, 109, 0.14);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.78fr);
  gap: 46px;
  align-items: center;
  scroll-margin-top: 96px;
  padding: 44px 0 24px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid #d8e3f8;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

h1 {
  max-width: 810px;
  margin: 0;
  color: var(--ink);
  font-size: 4.25rem;
  font-weight: 790;
  line-height: 0.96;
}

h1 span {
  background: linear-gradient(95deg, #101828 4%, var(--blue) 50%, var(--cyan) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: #475467;
  font-size: 1.06rem;
  line-height: 1.56;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 14px;
  border: 0;
  font-weight: 780;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-dark {
  background: #101828;
  color: #ffffff;
  box-shadow: 0 14px 38px rgba(16, 24, 40, 0.18);
}

.button-light {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: #344054;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 26px;
}

.hero-proof div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(37, 54, 78, 0.06);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--ink);
  font-size: 1.06rem;
}

.hero-proof span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.workspace {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(238, 244, 255, 0.94), rgba(255, 255, 255, 0.88) 46%, rgba(233, 248, 251, 0.94)),
    #ffffff;
  box-shadow: var(--shadow);
}

.workspace-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d5dd;
}

.workspace-top strong {
  color: #475467;
  font-size: 0.84rem;
}

.workspace-body {
  display: grid;
  gap: 11px;
  padding: 16px;
}

.sprint-card,
.agent-row div,
.terminal-card {
  border: 1px solid rgba(16, 24, 40, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.sprint-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 20px;
}

.sprint-card.is-active {
  border-color: rgba(47, 109, 246, 0.2);
  box-shadow: 0 18px 48px rgba(47, 109, 246, 0.12);
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.card-topline b {
  padding: 5px 9px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #027a48;
  font-size: 0.76rem;
}

.sprint-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.15;
}

.sprint-card p,
.terminal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.94rem;
}

.progress {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #e7ecf3;
}

.progress span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

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

.agent-row div {
  min-width: 0;
  padding: 11px;
  border-radius: 17px;
}

.agent-row strong,
.agent-row span {
  display: block;
}

.agent-row strong {
  color: var(--ink);
  font-size: 0.86rem;
}

.agent-row span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

.terminal-card {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 13px;
  border-radius: 17px;
  background: rgba(16, 24, 40, 0.92);
}

.terminal-card p {
  color: #dbe7f2;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.84rem;
}

.terminal-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 38px;
}

.signal-strip p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #344054;
  font-weight: 720;
  line-height: 1.35;
}

.meaning-section {
  position: relative;
  display: grid;
  justify-items: center;
  scroll-margin-top: 0;
  margin: 22px auto 24px;
  padding: 68px 0 76px;
  text-align: center;
}

.context-core {
  position: relative;
  width: min(620px, 100%);
  height: 320px;
  margin: 0 auto 18px;
}

#context-core-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.context-core::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: min(380px, 76%);
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(47, 109, 246, 0.2), transparent 68%);
  transform: translateX(-50%);
  filter: blur(10px);
  pointer-events: none;
}

.core-label {
  position: absolute;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(47, 109, 246, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 26px rgba(37, 54, 78, 0.08);
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 820;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  animation: labelFloat 5.5s ease-in-out infinite;
}

.label-a {
  top: 52px;
  left: 10%;
}

.label-b {
  top: 78px;
  right: 12%;
  animation-delay: -1.2s;
}

.label-c {
  left: 16%;
  bottom: 76px;
  animation-delay: -2.1s;
}

.label-d {
  right: 8%;
  bottom: 92px;
  animation-delay: -3s;
}

.label-e {
  left: 46%;
  bottom: 42px;
  animation-delay: -4s;
}

.meaning-copy {
  max-width: 840px;
  margin: 0 auto;
}

.meaning-copy .section-kicker {
  justify-content: center;
}

.meaning-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.45rem;
  font-weight: 760;
  line-height: 1.06;
}

.meaning-copy h2 span {
  display: block;
  color: #4c5d76;
  font-weight: 620;
}

.meaning-copy p {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.meaning-copy .meaning-emphasis {
  max-width: 660px;
  color: var(--ink);
  font-weight: 760;
}

.meaning-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.meaning-actions span {
  padding: 12px 14px;
  border: 1px solid rgba(47, 109, 246, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-size: 0.92rem;
}

.lab-counter {
  width: min(420px, 100%);
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
  text-align: left;
}

.counter-people {
  display: flex;
  margin-bottom: 10px;
}

.counter-people span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-right: -7px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(135deg, #101828, var(--blue));
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 850;
}

.lab-counter p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.counter-progress {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #e7ecf3;
}

.counter-progress span {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.counter-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: baseline;
  margin-top: 12px;
}

.counter-bottom strong {
  color: var(--ink);
  font-size: 1.8rem;
}

.counter-bottom span,
.counter-bottom b {
  color: var(--muted);
  font-size: 0.82rem;
}

.counter-bottom b {
  justify-self: end;
}

@keyframes labelFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.section {
  padding: 80px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.42fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -14px;
}

.section-head h2 {
  grid-column: 1 / 2;
}

.section-head > p:not(.section-kicker) {
  grid-column: 2 / 3;
}

.section-head.compact {
  grid-template-columns: 1fr;
  max-width: 840px;
}

.section-head.centered {
  justify-items: center;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.compact h2,
.section-head.compact > p:not(.section-kicker) {
  grid-column: 1;
}

.section-head h2,
.apply-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.8rem;
  font-weight: 760;
  line-height: 1.02;
}

.section-head p:not(.section-kicker),
.apply-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

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

.problem-grid article,
.audience-grid article,
.system-step,
.build-card,
.demo-card,
.inside-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
}

.problem-grid article {
  padding: 26px;
}

.problem-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.problem-grid p {
  margin: 0;
  color: #475467;
  font-size: 1.08rem;
  line-height: 1.58;
}

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

.system-step {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  padding: 22px;
}

.system-step::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(47, 109, 246, 0.18);
  border-radius: 32px;
  transform: rotate(12deg);
}

.system-step > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: #eef4ff;
  color: var(--blue);
  font-weight: 850;
}

.system-step h3 {
  margin: 36px 0 12px;
  color: var(--ink);
  font-size: 1.3rem;
}

.system-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.staff-section {
  display: grid;
  gap: 30px;
  scroll-margin-top: 96px;
}

.staff-copy {
  display: grid;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.staff-copy .section-kicker {
  justify-content: center;
}

.staff-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 760;
  line-height: 0.98;
}

.staff-copy h2 span {
  display: block;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.62em;
  font-style: italic;
  font-weight: 420;
}

.staff-copy p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.62;
}

.staff-copy p:last-child {
  color: var(--ink);
  font-weight: 760;
}

.staff-ladder {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}

.staff-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.staff-card span {
  color: var(--text);
  font-size: 2.15rem;
  font-weight: 760;
  letter-spacing: 0;
}

.staff-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.18rem;
}

.staff-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.staff-card.is-active {
  border-color: rgba(47, 109, 246, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 255, 0.86)),
    #ffffff;
}

.staff-card.is-active span {
  color: var(--blue);
}

.staff-card.is-muted {
  opacity: 0.64;
}

.staff-metric {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 560px;
  margin: 2px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(47, 109, 246, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.staff-metric strong {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 2.15rem;
  line-height: 1;
}

.staff-metric span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.42;
}

.ai-teams-section,
.second-brain-section,
.context-engineering-section {
  display: grid;
  gap: 32px;
  scroll-margin-top: 96px;
}

.ai-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.ai-team-card,
.brain-compare article,
.context-prompt-card,
.context-layers article,
.context-result,
.context-rules article,
.context-final {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.ai-team-card {
  min-height: 210px;
  padding: 24px;
}

.ai-team-card.is-wide {
  grid-column: 1 / -1;
  min-height: 128px;
}

.ai-team-card > div {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.ai-team-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
}

.ai-team-card > div > span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.ai-team-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-team-card li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--muted);
  line-height: 1.35;
}

.ai-team-card li::before {
  content: "";
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
}

.ai-team-card b {
  color: var(--ink);
  font-size: 0.94rem;
}

.ai-team-card li span {
  color: var(--muted);
  font-size: 0.9rem;
}

.ai-team-callout {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin: 10px auto 0;
  padding: 26px;
  border: 1px solid rgba(47, 109, 246, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 0.82)),
    #ffffff;
  box-shadow: var(--soft-shadow);
}

.ai-team-callout strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.55;
}

.method-copy {
  display: grid;
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.method-copy .section-kicker {
  justify-content: center;
}

.method-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.9rem, 6vw, 5.15rem);
  font-weight: 760;
  line-height: 0.98;
}

.method-copy h2 span {
  display: block;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.58em;
  font-style: italic;
  font-weight: 420;
}

.method-copy p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.62;
}

.business-map {
  position: relative;
  overflow: hidden;
  width: min(100%, 900px);
  min-height: 460px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 42%, rgba(47, 109, 246, 0.2), transparent 29%),
    radial-gradient(circle at 18% 14%, rgba(47, 183, 201, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(241, 246, 255, 0.82));
  box-shadow:
    0 40px 100px rgba(16, 24, 40, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.business-map::before,
.business-map::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 50px 74px;
  border: 1px solid rgba(47, 109, 246, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.business-map::after {
  inset: 90px 168px;
  border-color: rgba(47, 183, 201, 0.16);
  transform: rotate(23deg);
}

#business-intelligence-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.96;
}

.map-system-tag,
.map-status {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(47, 109, 246, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  box-shadow: 0 14px 40px rgba(16, 24, 40, 0.08);
  backdrop-filter: blur(14px);
}

.map-system-tag {
  top: 24px;
  left: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-status {
  right: 28px;
  bottom: 24px;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 0.75rem;
  font-weight: 760;
}

.map-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(28, 178, 125, 0.12);
  animation: statusPulse 2.2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

.map-core,
.map-node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47, 109, 246, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 820;
  box-shadow:
    0 18px 42px rgba(16, 24, 40, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.map-core {
  top: 50%;
  left: 50%;
  width: 132px;
  height: 58px;
  color: var(--blue);
  transform: translate(-50%, -50%);
  border-color: rgba(47, 109, 246, 0.28);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(228, 238, 255, 0.82));
  box-shadow:
    0 26px 80px rgba(47, 109, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.map-node {
  min-width: 92px;
  min-height: 38px;
  padding: 0 12px;
}

.map-node.is-soft {
  opacity: 0.66;
}

.node-a { top: 96px; left: 118px; }
.node-b { top: 76px; left: 398px; }
.node-c { top: 106px; right: 112px; }
.node-d { top: 234px; left: 148px; }
.node-e { right: 128px; bottom: 112px; }
.node-f { right: 306px; bottom: 58px; }
.node-g { right: 70px; top: 232px; }
.node-h { left: 128px; bottom: 92px; }
.node-i { left: 292px; bottom: 54px; }
.node-j { right: 256px; top: 218px; }
.node-k { right: 72px; top: 282px; }
.node-l { left: 386px; bottom: 34px; }

.brain-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.brain-compare article {
  padding: 24px;
}

.brain-compare span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brain-compare p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.context-prompt-card {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin: 0 auto;
  padding: 28px;
  text-align: center;
}

.context-prompt-card > span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.context-prompt-card code {
  display: block;
  padding: 16px;
  border: 1px solid rgba(47, 109, 246, 0.18);
  border-radius: 16px;
  background: #0d1324;
  color: #d7e4ff;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 1rem;
  white-space: normal;
}

.context-prompt-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.55;
}

.context-prompt-card b {
  color: var(--ink);
}

.context-layers {
  display: grid;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}

.context-layers article,
.context-rules article {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
}

.context-layers article.is-active {
  border-color: rgba(47, 109, 246, 0.32);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 255, 0.82)),
    #ffffff;
}

.context-layers span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.context-layers h3,
.context-rules h3 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 1.06rem;
}

.context-layers p,
.context-rules p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.context-result {
  max-width: 720px;
  margin: 0 auto;
  padding: 22px;
  border-color: rgba(47, 109, 246, 0.28);
  color: var(--ink);
  font-weight: 850;
  line-height: 1.45;
  text-align: center;
}

.context-rules {
  display: grid;
  gap: 16px;
  max-width: 840px;
  margin: 0 auto;
}

.context-rules article {
  box-shadow: none;
}

.context-rules span {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 760;
}

.context-final {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto;
  padding: 30px;
  border-color: rgba(47, 109, 246, 0.24);
  text-align: center;
}

.context-final strong {
  color: var(--ink);
  font-size: 1.42rem;
  line-height: 1.45;
}

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

.method-structure-section,
.stack-section,
.lab-program-section {
  display: grid;
  gap: 32px;
  scroll-margin-top: 96px;
}

.method-copy.align-left {
  justify-items: start;
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.method-copy.align-left .section-kicker {
  justify-content: flex-start;
}

.method-copy.align-left p {
  margin-left: 0;
}

.project-tree {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid rgba(47, 109, 246, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 251, 0.82)),
    #ffffff;
  box-shadow: var(--soft-shadow);
}

.tree-root {
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.82rem;
}

.project-tree article {
  display: grid;
  gap: 4px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.project-tree article:nth-child(2),
.project-tree article:nth-child(3),
.project-tree article:nth-child(4) {
  border-color: rgba(47, 109, 246, 0.22);
}

.project-tree b {
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.92rem;
}

.project-tree span:not(.tree-root) {
  color: var(--muted);
  font-size: 0.92rem;
}

.lab-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}

.lab-path-grid article,
.trigger-panel,
.assembly-panel,
.method-mini-cta,
.stack-compare article,
.stack-note,
.program-days article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.lab-path-grid article {
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 24px;
}

.lab-path-grid span,
.program-days span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lab-path-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
}

.lab-path-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.trigger-panel {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
  padding: 26px;
  border-color: rgba(47, 109, 246, 0.24);
}

.trigger-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.65rem;
}

.trigger-panel p:not(.section-kicker) {
  margin: 0;
  color: var(--text);
  line-height: 1.58;
}

.assembly-panel {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
  padding: 24px;
}

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

.assembly-panel article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.assembly-panel span {
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 850;
}

.assembly-panel p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.method-mini-cta {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  max-width: 780px;
  margin: 0 auto;
  padding: 24px;
  border-color: rgba(47, 109, 246, 0.24);
}

.method-mini-cta p {
  margin: 0;
  color: var(--text);
  line-height: 1.52;
}

.method-mini-cta strong {
  color: var(--blue);
}

.stack-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.stack-compare > span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.stack-compare article {
  min-height: 300px;
  padding: 26px;
}

.stack-compare article.is-winner {
  border-color: rgba(47, 109, 246, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 255, 0.86)),
    #ffffff;
}

.stack-compare h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.18rem;
}

.stack-compare ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stack-compare li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.46;
}

.stack-compare li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 850;
}

.stack-compare article:not(.is-winner) li::before {
  content: "×";
  color: var(--rose);
}

.stack-note {
  max-width: 900px;
  margin: 0 auto;
  padding: 18px 22px;
  color: var(--text);
  line-height: 1.52;
}

.stack-note strong {
  color: var(--blue);
}

.program-days {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.program-days article {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.program-days article.is-open {
  border-color: rgba(47, 109, 246, 0.28);
}

.program-days article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
}

.program-days b {
  color: var(--text);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.program-days p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.program-days li {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-weight: 760;
}

.lab-enroll-section,
.lab-guarantee-section,
.lab-faq-section,
.lab-start-section,
.lab-bottom-cta {
  scroll-margin-top: 110px;
}

.lab-enroll-section {
  display: grid;
  gap: 24px;
  max-width: 780px;
  margin: 76px auto 0;
  padding: 36px;
  border: 1px solid rgba(47, 109, 246, 0.24);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 0.78)),
    #ffffff;
  box-shadow: var(--shadow);
}

.enroll-head {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
}

.enroll-head .section-kicker {
  justify-content: center;
}

.enroll-head h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(4rem, 10vw, 6.8rem);
  line-height: 0.95;
}

.enroll-head p {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.56;
}

.enroll-includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.enroll-includes li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  line-height: 1.45;
}

.enroll-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 850;
}

.enroll-bonus {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(47, 109, 246, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.enroll-bonus strong {
  color: var(--ink);
  font-size: 1.06rem;
}

.enroll-bonus span {
  color: var(--muted);
  line-height: 1.5;
}

.enroll-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.lab-guarantee-card {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 58px 46px;
  overflow: hidden;
  border: 1px solid rgba(47, 109, 246, 0.32);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 109, 246, 0.25), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(47, 183, 201, 0.18), transparent 35%),
    linear-gradient(145deg, #0d1220 0%, #101828 56%, #080b12 100%);
  box-shadow:
    0 30px 80px rgba(16, 24, 40, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}

.lab-guarantee-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 30px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 0.8px, transparent 0.8px);
  background-size: 6px 6px;
  opacity: 0.12;
  pointer-events: none;
}

.lab-guarantee-card > * {
  position: relative;
}

.guarantee-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #8fb0ff;
}

.guarantee-icon svg {
  width: 100%;
  height: 100%;
}

.guarantee-icon path:first-child {
  fill: rgba(47, 109, 246, 0.08);
  stroke: rgba(143, 176, 255, 0.86);
  stroke-width: 1.8;
}

.guarantee-icon path:last-child {
  fill: none;
  stroke: #ffffff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.lab-guarantee-card .section-kicker {
  justify-content: center;
  margin-bottom: 0;
  color: #8fb0ff;
}

.lab-guarantee-card h2 {
  max-width: 560px;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5vw, 4.3rem);
  font-weight: 520;
  line-height: 1.02;
}

.lab-guarantee-card p:not(.section-kicker) {
  max-width: 560px;
  margin: 0;
  color: rgba(247, 251, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.62;
}

.lab-guarantee-card a {
  margin-top: 2px;
  color: rgba(143, 176, 255, 0.82);
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lab-start-section {
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 760px;
  margin: 6px auto 22px;
  padding: 36px;
  border: 1px solid rgba(47, 109, 246, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 109, 246, 0.16), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 244, 255, 0.78)),
    #ffffff;
  box-shadow: var(--soft-shadow);
  text-align: center;
}

.lab-start-section .section-kicker {
  justify-content: center;
}

.lab-start-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  line-height: 1;
}

.lab-start-section p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.lab-faq-list {
  max-width: 820px;
}

.lab-bottom-cta {
  display: grid;
  gap: 20px;
  justify-items: center;
  max-width: 760px;
  margin: 56px auto 72px;
  text-align: center;
}

.lab-bottom-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.55;
}

.lab-bottom-cta span {
  color: var(--muted);
  font-size: 0.9rem;
}

.training-section {
  scroll-margin-top: 96px;
}

.training-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.training-hero > div,
.training-receipt,
.shift-card,
.training-grid article,
.article-grid article,
.video-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.training-hero > div {
  padding: 32px;
}

.training-hero h2 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: 4rem;
  line-height: 0.98;
}

.training-hero h2 span {
  display: block;
  color: #4c5d76;
  font-weight: 620;
}

.training-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.58;
}

.training-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 26px;
}

.training-actions span {
  padding: 12px 14px;
  border: 1px solid rgba(47, 109, 246, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-size: 0.92rem;
}

.training-receipt {
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(16, 24, 40, 0.96), rgba(47, 109, 246, 0.86)),
    #101828;
  color: #ffffff;
}

.training-receipt span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 820;
}

.training-receipt strong {
  font-size: 2.6rem;
  line-height: 0.98;
}

.training-receipt p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.shift-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.solo-idea {
  scroll-margin-top: 120px;
  max-width: 760px;
  margin: 70px auto 30px;
  text-align: center;
}

.solo-idea .section-kicker {
  justify-content: center;
}

.solo-idea h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.2rem;
  line-height: 1.02;
}

.solo-idea h2 span {
  display: block;
  color: #4c5d76;
  font-weight: 620;
}

.solo-idea p:not(.section-kicker) {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.shift-board.is-system {
  max-width: 900px;
  margin: 0 auto 22px;
}

.shift-card {
  min-height: 330px;
  padding: 24px;
}

.shift-card.is-team,
.shift-card.is-current {
  overflow: hidden;
}

.shift-card.is-team {
  opacity: 0.78;
}

.shift-card > span,
.training-grid article span,
.article-grid article span {
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.shift-card h3,
.training-grid h3,
.article-grid h3,
.video-grid h3 {
  margin: 14px 0 12px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.2;
}

.shift-card.is-system h3 {
  margin-bottom: 18px;
}

.team-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 22px;
}

.team-map div {
  display: grid;
  min-height: 66px;
  place-items: center;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 18px;
  background: #f4f7fb;
  color: #667085;
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.product-orbit {
  position: relative;
  display: grid;
  height: 230px;
  place-items: center;
  margin: 12px 0 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at center, rgba(47, 109, 246, 0.16), transparent 44%),
    linear-gradient(135deg, rgba(238, 244, 255, 0.9), rgba(255, 255, 255, 0.8));
}

.product-orbit::before,
.product-orbit::after {
  content: "";
  position: absolute;
  inset: 36px 50px;
  border: 1px solid rgba(47, 109, 246, 0.16);
  border-radius: 50%;
}

.product-orbit::after {
  transform: rotate(62deg);
}

.product-orbit b {
  position: relative;
  z-index: 2;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #101828, var(--blue));
  color: #ffffff;
  font-size: 1.1rem;
  text-transform: uppercase;
  box-shadow: 0 22px 48px rgba(47, 109, 246, 0.24);
}

.product-orbit i {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  display: grid;
  min-width: 70px;
  min-height: 44px;
  place-items: center;
  padding: 0 10px;
  border: 1px solid rgba(47, 109, 246, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
  box-shadow: 0 12px 28px rgba(37, 54, 78, 0.09);
}

.shift-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.shift-card li {
  padding: 10px 12px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 12px;
  background: #f4f7fb;
  color: #344054;
  font-weight: 720;
}

.shift-card p,
.training-grid p,
.article-grid p,
.video-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.shift-card p strong {
  color: var(--ink);
  font-size: 1.18rem;
}

.shift-card.is-current {
  border-color: rgba(47, 109, 246, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 255, 0.78)),
    #ffffff;
}

.shift-arrow {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(47, 109, 246, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 850;
  box-shadow: var(--soft-shadow);
}

.solo-summary {
  max-width: 760px;
  margin: 10px auto 0;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.58;
  text-align: center;
}

.training-flow-head {
  scroll-margin-top: 120px;
  max-width: 820px;
  margin: 78px auto 28px;
  text-align: center;
}

.training-flow-head .section-kicker {
  justify-content: center;
}

.training-flow-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3.1rem;
  line-height: 1.04;
}

.training-flow-head h2 span {
  display: block;
  color: #4c5d76;
  font-weight: 620;
}

.training-flow-head p:not(.section-kicker) {
  max-width: 660px;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.58;
}

.training-grid,
.article-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.training-grid article,
.article-grid article,
.video-grid article {
  padding: 22px;
}

.training-grid.training-flow-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 900px;
  margin: 0 auto;
}

.training-flow-grid article {
  min-height: 250px;
}

.training-flow-grid article:nth-child(2n) {
  background: rgba(247, 251, 255, 0.82);
}

.training-topics {
  max-width: 900px;
  margin: 18px auto 0;
  padding: 24px;
  border: 1px solid rgba(47, 109, 246, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 255, 0.72)),
    #ffffff;
  box-shadow: var(--soft-shadow);
}

.training-topics span {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.training-topics p {
  margin: 16px 0 0;
  color: var(--text);
  line-height: 1.58;
}

.training-topics small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-style: italic;
}

.catchup-section,
.cost-section,
.bonus-section,
.guarantee-section,
.faq-section {
  scroll-margin-top: 118px;
}

.catchup-grid,
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.catchup-grid article,
.bonus-grid article,
.cost-card,
.price-card,
.guarantee-card,
.faq-list details,
.start-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.catchup-grid article,
.bonus-grid article {
  min-height: 160px;
  padding: 22px;
}

.catchup-grid h3,
.bonus-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.16rem;
}

.catchup-grid p,
.bonus-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.micro-note {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.cost-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px;
}

.cost-card > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cost-card span {
  color: var(--ink);
  font-weight: 820;
}

.cost-card b {
  margin-left: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.cost-card strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.cost-card small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.cost-card footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 24px;
}

.cost-card footer span {
  color: var(--blue);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.cost-card footer strong {
  font-size: 2.35rem;
}

.pricing-section {
  max-width: 720px;
  margin: 70px auto 0;
  scroll-margin-top: 118px;
  text-align: center;
}

.pricing-head .section-kicker {
  justify-content: center;
}

.pricing-head h2 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 3.5rem;
  line-height: 1;
}

.price-card {
  padding: 34px;
  border-color: rgba(47, 109, 246, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 255, 0.78)),
    #ffffff;
}

.price-card strong {
  display: block;
  color: var(--blue);
  font-size: 4.2rem;
  line-height: 1;
}

.price-card p {
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.52;
}

.price-card span {
  display: block;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 0.94rem;
}

.price-form {
  margin-top: 18px;
  text-align: left;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.consent-row input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.bonus-grid article span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(47, 109, 246, 0.2);
  border-radius: 50%;
  color: var(--blue);
  font-weight: 850;
}

.guarantee-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 34px;
  text-align: center;
}

.guarantee-card .section-kicker {
  justify-content: center;
}

.guarantee-card h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1.04;
}

.guarantee-card p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--text);
  line-height: 1.62;
}

.guarantee-card blockquote {
  max-width: 620px;
  margin: 26px auto 0;
  padding-left: 18px;
  border-left: 2px solid var(--blue);
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.52;
  text-align: left;
}

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

.faq-list details {
  padding: 0;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 820;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
}

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

.faq-list p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.52;
}

.final-cta {
  max-width: 900px;
  margin: 70px auto 54px;
  text-align: center;
}

.final-cta .section-kicker {
  justify-content: center;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.start-grid div {
  display: grid;
  gap: 8px;
  min-height: 112px;
  place-items: center;
  padding: 16px;
}

.start-grid span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.start-grid strong {
  color: var(--ink);
}

.articles-section,
.video-section {
  scroll-margin-top: 96px;
}

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

.article-grid article {
  min-height: 250px;
}

.article-grid a {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 9px 12px;
  border: 1px solid rgba(47, 109, 246, 0.14);
  border-radius: 12px;
  background: #eef4ff;
  color: var(--blue);
  font-weight: 820;
}

.video-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.video-thumb {
  position: relative;
  display: grid;
  min-height: 220px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(47, 183, 201, 0.26), transparent 30%),
    linear-gradient(135deg, #101828, #214fc2);
}

.video-thumb::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.video-thumb span {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(16, 24, 40, 0.28);
}

.video-thumb span::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 22px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid var(--blue);
}

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

.build-section .build-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin: 0 auto;
}

.build-card,
.demo-card {
  display: grid;
  gap: 16px;
  min-height: 276px;
  padding: 24px;
}

.build-card:nth-child(2),
.build-card:nth-child(3) {
  background: rgba(247, 251, 255, 0.82);
}

.build-card:nth-child(1),
.build-card:nth-child(4) {
  border-color: rgba(47, 109, 246, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 255, 0.78)),
    #ffffff;
}

.build-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  align-content: end;
  height: 84px;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
}

.build-visual span {
  min-height: 20px;
  border-radius: 8px;
  background: #d9e6ff;
}

.build-visual span:nth-child(2) {
  background: var(--blue);
}

.build-visual span:nth-child(3) {
  background: #d7f4ee;
}

.build-card h3,
.demo-card h3,
.audience-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.24;
}

.build-card p,
.demo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.tag {
  align-self: end;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 780;
}

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

.format-sidebar,
.week-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.format-sidebar {
  display: grid;
  align-content: space-between;
  min-height: 420px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(16, 24, 40, 0.94), rgba(47, 109, 246, 0.86)),
    #101828;
  color: #ffffff;
}

.format-sidebar strong {
  font-size: 3.1rem;
  line-height: 0.95;
}

.format-sidebar span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.48;
}

.format-sidebar a {
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  align-items: center;
  border-radius: 14px;
  background: #ffffff;
  color: #101828;
  font-weight: 780;
}

.week-list {
  display: grid;
  gap: 12px;
}

.week-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
}

.week-item span {
  color: var(--blue);
  font-weight: 850;
}

.week-item h3,
.week-item p {
  margin: 0;
}

.week-item h3 {
  font-size: 1.08rem;
}

.week-item p {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.week-item b {
  padding: 7px 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #027a48;
  font-size: 0.76rem;
}

.research-board {
  align-items: start;
}

.research-days {
  display: grid;
  gap: 12px;
}

.research-day {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.research-day[open] {
  border-color: rgba(47, 109, 246, 0.28);
  box-shadow: 0 28px 74px rgba(16, 24, 40, 0.12);
}

.research-day summary {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

.research-day summary::-webkit-details-marker {
  display: none;
}

.research-day summary::after {
  content: "+";
  display: none;
}

.research-day summary > span {
  color: var(--blue);
  font-weight: 850;
}

.research-day h3,
.research-day p,
.research-day h4 {
  margin: 0;
}

.research-day summary h3 {
  font-size: 1.08rem;
}

.research-day summary p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.research-day summary b {
  padding: 7px 10px;
  border-radius: 999px;
  background: #ecfdf3;
  color: #027a48;
  font-size: 0.76rem;
}

.research-day summary b::after {
  content: " +";
}

.research-day[open] summary b::after {
  content: " -";
}

.research-panel {
  display: grid;
  gap: 12px;
  padding: 0 18px 18px 136px;
}

.research-panel-title {
  color: var(--ink);
  font-weight: 850;
}

.research-panel article,
.research-purpose,
.research-note {
  border: 1px solid rgba(47, 109, 246, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
}

.research-panel article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.research-panel h4 {
  color: var(--ink);
  font-size: 0.96rem;
}

.research-panel article:nth-of-type(2n) {
  border-color: rgba(47, 183, 201, 0.18);
}

.research-panel article p,
.research-note {
  color: var(--muted);
  line-height: 1.5;
}

.research-purpose {
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(47, 109, 246, 0.1), rgba(47, 183, 201, 0.08)),
    rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-weight: 820;
  line-height: 1.48;
}

.research-note {
  padding: 15px 16px;
  font-size: 0.92rem;
}

.research-note b {
  color: var(--ink);
}

.audience-section {
  scroll-margin-top: 110px;
}

.audience-grid {
  max-width: 980px;
  margin: 0 auto;
}

.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 28px;
}

.audience-card::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -56px;
  width: 170px;
  height: 170px;
  border-radius: 46px;
  transform: rotate(13deg);
  opacity: 0.6;
}

.audience-card.is-fit {
  border-color: rgba(47, 109, 246, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 255, 0.78)),
    #ffffff;
}

.audience-card.is-fit::after {
  border: 1px solid rgba(47, 109, 246, 0.18);
  background: rgba(238, 244, 255, 0.58);
}

.audience-card.is-not-fit {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 42px rgba(37, 54, 78, 0.06);
}

.audience-card.is-not-fit::after {
  border: 1px solid rgba(102, 112, 133, 0.16);
  background: rgba(244, 247, 251, 0.64);
}

.audience-card > span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.audience-card.is-not-fit > span {
  color: #8a94a6;
}

.training-page .audience-grid {
  max-width: 820px;
}

.training-page .audience-card {
  min-height: 360px;
}

.training-page .audience-card h3 {
  display: none;
}

.training-page .audience-card > span {
  margin-bottom: 14px;
}

.training-page .audience-card.is-fit {
  border-color: rgba(47, 109, 246, 0.28);
}

.training-page .audience-card.is-not-fit {
  opacity: 0.76;
}

.training-page .audience-note {
  max-width: 780px;
  color: var(--ink);
  font-weight: 820;
}

.audience-grid ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.audience-grid li {
  display: flex;
  gap: 10px;
  color: #475467;
  line-height: 1.45;
}

.audience-grid li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--green);
}

.audience-grid article:last-child li::before {
  background: var(--rose);
}

.audience-note {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-style: italic;
  line-height: 1.48;
  text-align: center;
}

.mentor-section {
  padding-top: 64px;
  scroll-margin-top: 110px;
}

.mentor-card {
  display: grid;
  grid-template-columns: 184px minmax(0, 720px);
  gap: 34px;
  align-items: start;
  max-width: 940px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(238, 244, 255, 0.78)),
    #ffffff;
  box-shadow: var(--shadow);
}

.mentor-avatar {
  position: sticky;
  top: 120px;
  display: grid;
  width: 168px;
  height: 168px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: #eef3f8;
  box-shadow:
    0 24px 56px rgba(47, 109, 246, 0.18),
    inset 0 0 0 1px rgba(47, 109, 246, 0.12);
}

.mentor-avatar::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border: 1px solid rgba(47, 109, 246, 0.18);
  border-radius: 50%;
}

.mentor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
}

.mentor-copy .section-kicker {
  margin-bottom: 14px;
}

.mentor-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 2.55rem;
  font-weight: 760;
  line-height: 1;
}

.mentor-copy p {
  max-width: 700px;
  margin: 0 0 16px;
  color: #475467;
  font-size: 1.04rem;
  line-height: 1.62;
}

.mentor-statement {
  margin-top: 22px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.mentor-statement strong {
  display: block;
  max-width: 700px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.58;
}

.inside-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 16px;
  align-items: stretch;
}

.pipeline {
  display: grid;
  gap: 12px;
}

.pipeline-step {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(37, 54, 78, 0.08);
}

.pipeline-step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 15px;
  background: #eef4ff;
  color: var(--blue);
  font-weight: 850;
}

.pipeline-step h3,
.pipeline-step p {
  margin: 0;
}

.pipeline-step p {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.42;
}

.pipeline-step b {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.inside-panel {
  padding: 20px;
}

.panel-top {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.mini-dashboard {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.mini-dashboard div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 17px;
  background: #f4f7fb;
}

.mini-dashboard b {
  color: var(--muted);
  font-size: 0.86rem;
}

.mini-dashboard strong {
  color: var(--ink);
  font-size: 1.5rem;
}

.inside-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.demo-card {
  min-height: 210px;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.62fr);
  gap: 34px;
  align-items: start;
  margin: 70px 0 46px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 255, 0.86)),
    #ffffff;
  box-shadow: var(--shadow);
}

.apply-copy h2 {
  margin-bottom: 20px;
}

.apply-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
}

.apply-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 0.88rem;
  font-weight: 760;
}

.apply-form label.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 680;
  line-height: 1.4;
}

.apply-form label.consent-row input {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.apply-form input,
.apply-form textarea,
.apply-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.apply-form textarea {
  resize: vertical;
}

.apply-form input:focus,
.apply-form textarea:focus,
.apply-form select:focus {
  border-color: rgba(47, 109, 246, 0.5);
  box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.1);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.site-footer {
  display: grid;
  gap: 36px;
  padding: 48px 0 54px;
  border-top: 1px solid var(--line);
}

.footer-cta {
  display: grid;
  gap: 18px;
  justify-items: center;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.footer-cta p {
  max-width: 620px;
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.55;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid h3 {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.52;
}

.footer-grid a:hover {
  color: var(--blue);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto auto auto auto;
  }

  .menu-toggle {
    display: grid;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border-color: rgba(16, 24, 40, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 54px rgba(37, 54, 78, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top center;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    backdrop-filter: blur(20px);
  }

  .site-header.is-menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav a {
    display: grid;
    min-height: 42px;
    place-items: center;
    border-radius: 12px;
    background: rgba(247, 249, 252, 0.72);
  }

  .hero,
  .section-head,
  .training-hero,
  .shift-board,
  .format-board,
  .inside-layout,
  .mentor-card,
  .apply-section {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .meaning-copy h2 {
    font-size: 2.85rem;
  }

  h1 {
    font-size: 3.55rem;
  }

  .section-head h2,
  .apply-copy h2 {
    font-size: 3.1rem;
  }

  .system-steps,
  .training-grid,
  .article-grid,
  .build-grid,
  .demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shift-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .format-sidebar {
    min-height: 250px;
  }

  .mentor-avatar {
    position: relative;
    top: auto;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 22px, 1240px);
  }

  main#top {
    scroll-margin-top: 156px;
  }

  .site-header {
    display: flex;
    flex-wrap: wrap;
    top: 10px;
    padding: 8px;
    border-radius: 20px;
  }

  .brand {
    flex: 1 1 180px;
  }

  .menu-toggle {
    order: 2;
  }

  .language-switch {
    order: 3;
  }

  .login-cta {
    order: 4;
  }

  .header-cta {
    order: 5;
  }

  .nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    right: 8px;
    left: 8px;
  }

  .brand-copy strong {
    max-width: 160px;
  }

  .header-cta {
    flex: 1 1 100%;
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .login-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .language-switch button {
    min-width: 34px;
    min-height: 30px;
    padding: 0 7px;
  }

  .hero {
    gap: 28px;
    padding: 34px 0 24px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: 2.8rem;
    line-height: 1;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .meaning-section {
    margin-top: 36px;
    padding-bottom: 54px;
  }

  .training-hero h2 {
    font-size: 2.55rem;
  }

  .solo-idea h2,
  .training-flow-head h2 {
    font-size: 2.35rem;
  }

  .context-core {
    height: 260px;
  }

  .meaning-copy h2 {
    font-size: 2.2rem;
  }

  .meaning-copy p {
    font-size: 1rem;
  }

  .core-label {
    font-size: 0.62rem;
    padding: 6px 8px;
  }

  .label-a {
    left: 2%;
  }

  .label-b {
    right: 2%;
  }

  .label-c {
    left: 4%;
  }

  .label-d {
    right: 1%;
  }

  .label-e {
    left: 36%;
  }

  .hero-proof,
  .signal-strip,
  .problem-grid,
  .audience-grid,
  .system-steps,
  .training-grid,
  .training-grid.training-flow-grid,
  .catchup-grid,
  .bonus-grid,
  .start-grid,
  .article-grid,
  .video-grid,
  .build-grid,
  .build-section .build-grid,
  .demo-grid,
  .agent-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 54px 0;
  }

  .section-head h2,
  .apply-copy h2 {
    font-size: 2.25rem;
  }

  .staff-copy h2 {
    font-size: 2.65rem;
  }

  .method-copy h2 {
    font-size: 2.35rem;
  }

  .ai-team-grid,
  .brain-compare {
    grid-template-columns: 1fr;
  }

  .ai-team-card.is-wide {
    grid-column: auto;
  }

  .ai-team-card > div {
    align-items: flex-start;
    flex-direction: column;
  }

  .business-map {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    min-height: 0;
    padding: 18px;
  }

  .business-map::before,
  .business-map::after {
    display: none;
  }

  #business-intelligence-canvas,
  .map-system-tag,
  .map-status {
    display: none;
  }

  .map-core,
  .map-node {
    position: static;
    min-width: 0;
    min-height: 42px;
    transform: none;
  }

  .map-core {
    grid-column: 1 / -1;
    width: auto;
    height: 48px;
  }

  .context-layers article,
  .context-rules article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .lab-path-grid,
  .assembly-panel > div,
  .stack-compare,
  .enroll-includes ul,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stack-compare > span {
    justify-self: center;
  }

  .method-mini-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .lab-enroll-section {
    margin-top: 46px;
    padding: 22px;
    border-radius: 24px;
  }

  .lab-start-section {
    padding: 26px 18px;
    border-radius: 24px;
  }

  .enroll-head h2 {
    font-size: 3.4rem;
  }

  .lab-guarantee-card {
    padding: 24px;
    border-radius: 24px;
  }

  .lab-guarantee-card h2 {
    font-size: 2.25rem;
  }

  .staff-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px;
  }

  .staff-card span {
    font-size: 1.75rem;
  }

  .staff-metric {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 24px;
  }

  .week-item,
  .research-day summary,
  .pipeline-step {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .research-panel {
    padding: 0 18px 18px;
  }

  .apply-section {
    margin-top: 46px;
    padding: 18px;
    border-radius: 24px;
  }

  .cost-card > div,
  .cost-card footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cost-card footer {
    display: grid;
  }

  .pricing-section {
    margin-top: 44px;
  }

  .pricing-head h2,
  .price-card strong,
  .guarantee-card h2,
  .final-cta h2 {
    font-size: 2.35rem;
  }

  .price-card,
  .guarantee-card {
    padding: 22px;
  }

  .mentor-card {
    gap: 22px;
    padding: 22px;
    border-radius: 24px;
  }

  .mentor-avatar {
    width: 118px;
    height: 118px;
  }

  .mentor-copy h2 {
    font-size: 2.35rem;
  }

  .site-footer {
    gap: 28px;
    padding-bottom: 40px;
  }
}

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

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

body.auth-body,
body.cabinet-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 52% 0%, rgba(231, 111, 81, 0.14), transparent 34%),
    linear-gradient(180deg, #121310 0%, #0f100e 52%, #11110f 100%);
  color: #f4efe7;
}

body.auth-body::before,
body.cabinet-body::before {
  background:
    linear-gradient(rgba(244, 239, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 231, 0.026) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.45;
}

body.auth-body::after,
body.cabinet-body::after {
  background-image: radial-gradient(rgba(244, 239, 231, 0.12) 0.55px, transparent 0.55px);
  background-size: 4px 4px;
  opacity: 0.09;
}

.auth-shell {
  width: min(520px, calc(100% - 40px));
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 72px 0;
}

.auth-back {
  width: max-content;
  margin-bottom: 44px;
  color: rgba(244, 239, 231, 0.46);
  font-size: 15px;
}

.auth-kicker {
  margin: 0 0 12px;
  color: #ef7b5b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-card h1 {
  margin: 0;
  color: #fffaf1;
  font-size: clamp(34px, 6vw, 48px);
  line-height: 1.06;
  letter-spacing: 0;
}

.auth-lede {
  max-width: 460px;
  margin: 18px 0 42px;
  color: rgba(244, 239, 231, 0.76);
  font-size: 17px;
  line-height: 1.55;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form input {
  width: 100%;
  min-height: 66px;
  padding: 0 22px;
  border: 1px solid rgba(244, 239, 231, 0.18);
  border-radius: 10px;
  outline: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #1a1b18;
  color: #fffaf1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 18px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.auth-form input:focus {
  border-color: rgba(239, 123, 91, 0.64);
  box-shadow: 0 0 0 4px rgba(239, 123, 91, 0.12);
}

.auth-submit {
  min-height: 66px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #ef7b5b, #9d553f);
  color: #22110c;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(239, 123, 91, 0.16);
  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.auth-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.auth-submit:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.auth-message {
  min-height: 22px;
  margin: 18px 0 0;
  color: rgba(244, 239, 231, 0.55);
  font-size: 14px;
}

.auth-message[data-type="success"] {
  color: #8fd6ff;
}

.auth-message[data-type="error"] {
  color: #ff9c8b;
}

.auth-note {
  margin: 16px 0 0;
  text-align: center;
  color: rgba(244, 239, 231, 0.42);
  font-size: 14px;
}

.cabinet-body {
  overflow-x: hidden;
}

.cabinet-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  width: min(1040px, calc(100% - 40px));
  min-height: 58px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(244, 239, 231, 0.07);
  background: rgba(17, 18, 15, 0.78);
  backdrop-filter: blur(18px);
}

.cabinet-brand,
.cabinet-nav,
.cabinet-actions {
  display: flex;
  align-items: center;
}

.cabinet-brand {
  gap: 10px;
  color: #fffaf1;
  font-weight: 900;
}

.cabinet-brand-mark {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(47, 109, 246, 0.18);
}

.cabinet-brand-mark svg {
  width: 100%;
  height: 100%;
}

.cabinet-nav {
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(244, 239, 231, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.cabinet-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(244, 239, 231, 0.56);
  font-size: 14px;
  transition: color 180ms ease, background 180ms ease;
}

.cabinet-nav a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fffaf1;
}

.cabinet-actions {
  justify-content: flex-end;
  gap: 8px;
}

.cabinet-pill,
.cabinet-icon-button {
  min-height: 34px;
  border: 1px solid rgba(244, 239, 231, 0.1);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(244, 239, 231, 0.8);
}

.cabinet-pill {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 800;
}

.cabinet-pill.is-active {
  border-color: rgba(244, 239, 231, 0.18);
  color: #fffaf1;
}

.cabinet-icon-button {
  position: relative;
  width: 36px;
}

.cabinet-icon-button::before,
.cabinet-icon-button::after,
.cabinet-icon-button span::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  display: block;
}

.cabinet-icon-button::before {
  width: 13px;
  height: 13px;
  margin: -6.5px 0 0 -6.5px;
  border: 1.5px solid rgba(244, 239, 231, 0.68);
  border-radius: 50%;
}

.cabinet-icon-button::after {
  width: 3px;
  height: 3px;
  margin: -1.5px 0 0 -1.5px;
  border-radius: 50%;
  background: rgba(244, 239, 231, 0.68);
}

.cabinet-icon-button.logout::before {
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -7px;
  border: 1.5px solid rgba(244, 239, 231, 0.68);
  border-right: 0;
  border-radius: 2px;
}

.cabinet-icon-button.logout::after {
  width: 9px;
  height: 1.5px;
  margin: -0.75px 0 0 -1px;
  border-radius: 999px;
  background: rgba(244, 239, 231, 0.68);
}

.cabinet-icon-button.logout span::before {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 2px;
  border-top: 1.5px solid rgba(244, 239, 231, 0.68);
  border-right: 1.5px solid rgba(244, 239, 231, 0.68);
  transform: rotate(45deg);
}

.cabinet-main {
  width: min(720px, calc(100% - 32px));
  margin: 54px auto 150px;
}

.cabinet-hero-card,
.cabinet-telegram-card,
.cabinet-empty-state,
.cabinet-gift-card {
  border: 1px solid rgba(239, 123, 91, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(239, 123, 91, 0.13), rgba(239, 123, 91, 0.025) 45%, rgba(255, 255, 255, 0.025)),
    #171815;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 26px 70px rgba(0, 0, 0, 0.28);
}

.cabinet-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 132px;
  padding: 26px 28px;
  overflow: hidden;
}

.cabinet-hero-card::after {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 260px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 123, 91, 0.22), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}

.cabinet-card-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 10px;
  color: #ef7b5b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cabinet-card-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ef7b5b;
}

.cabinet-hero-card h1 {
  max-width: 560px;
  margin: 0;
  color: #fffaf1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 4vw, 34px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.cabinet-hero-text {
  margin: 10px 0 14px;
  color: rgba(244, 239, 231, 0.62);
  font-size: 14px;
}

.cabinet-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(244, 239, 231, 0.42);
  font-size: 13px;
}

.cabinet-meta strong,
.cabinet-meta b {
  color: #fffaf1;
}

.cabinet-card-arrow {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(239, 123, 91, 0.28);
  border-radius: 10px;
  background: rgba(239, 123, 91, 0.1);
  color: #ef7b5b;
  font-size: 21px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.cabinet-card-arrow:hover {
  transform: translateX(2px);
  background: rgba(239, 123, 91, 0.16);
}

.cabinet-slider-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 10px 0 20px;
}

.cabinet-slider-dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(244, 239, 231, 0.2);
}

.cabinet-slider-dots .is-active {
  width: 24px;
  background: #ef7b5b;
}

.cabinet-telegram-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding: 20px 18px 20px 24px;
  border-color: rgba(47, 109, 246, 0.32);
  background:
    linear-gradient(135deg, rgba(47, 109, 246, 0.18), rgba(47, 109, 246, 0.04)),
    #151a23;
}

.cabinet-telegram-card strong,
.cabinet-gift-card strong {
  color: #fffaf1;
  font-size: 16px;
}

.cabinet-telegram-card p,
.cabinet-gift-card p {
  margin: 6px 0 0;
  color: rgba(244, 239, 231, 0.56);
  font-size: 14px;
}

.cabinet-blue-button,
.cabinet-primary-button,
.cabinet-support a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
}

.cabinet-blue-button {
  min-width: 120px;
  padding: 0 18px;
  background: #45bdf5;
  color: #06121a;
}

.cabinet-blue-button:disabled {
  opacity: 0.72;
}

.cabinet-empty-state {
  display: grid;
  place-items: center;
  min-height: 124px;
  margin-bottom: 26px;
  border-color: rgba(244, 239, 231, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.cabinet-empty-state p {
  margin: 0 0 18px;
  color: rgba(244, 239, 231, 0.62);
}

.cabinet-primary-button {
  padding: 0 24px;
  background: linear-gradient(180deg, #ef7b5b, #a85a43);
  color: #24110c;
}

.cabinet-gift-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 34px;
  padding: 22px 24px;
  border-color: rgba(239, 123, 91, 0.12);
  background:
    linear-gradient(135deg, rgba(239, 123, 91, 0.08), rgba(255, 255, 255, 0.018)),
    #191713;
}

.gift-icon {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f4c15f, #ef7b5b);
  box-shadow: 0 10px 22px rgba(239, 123, 91, 0.18);
}

.gift-icon::before,
.gift-icon::after {
  content: "";
  position: absolute;
  background: rgba(99, 41, 24, 0.72);
}

.gift-icon::before {
  left: 15px;
  top: 3px;
  width: 4px;
  height: 28px;
  border-radius: 999px;
}

.gift-icon::after {
  left: 3px;
  top: 14px;
  width: 28px;
  height: 4px;
  border-radius: 999px;
}

.cabinet-support {
  padding-top: 24px;
  border-top: 1px solid rgba(244, 239, 231, 0.07);
}

.cabinet-support p {
  margin: 0 0 12px;
  color: rgba(244, 239, 231, 0.44);
  font-size: 13px;
}

.cabinet-support a {
  width: max-content;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(69, 189, 245, 0.28);
  background: rgba(69, 189, 245, 0.1);
  color: #78ccff;
  font-size: 13px;
}

.cabinet-user-note {
  margin: 18px 0 0;
  color: rgba(244, 239, 231, 0.34);
  font-size: 12px;
}

.cabinet-cookie {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(820px, calc(100% - 32px));
  padding: 14px 16px;
  border: 1px solid rgba(244, 239, 231, 0.08);
  border-radius: 12px;
  background: rgba(28, 29, 26, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
  backdrop-filter: blur(16px);
}

.cabinet-cookie p {
  margin: 0;
  color: rgba(244, 239, 231, 0.46);
  font-size: 12px;
}

.cabinet-cookie a {
  color: #ef7b5b;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cabinet-cookie div {
  display: flex;
  gap: 8px;
}

.cabinet-cookie button {
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid rgba(244, 239, 231, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(244, 239, 231, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.cabinet-cookie button:last-child {
  border-color: transparent;
  background: #ef7b5b;
  color: #25110c;
}

.cabinet-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 24;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ef7b5b;
  color: #28110c;
  font-size: 20px;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(239, 123, 91, 0.28);
}

@media (max-width: 820px) {
  .cabinet-header {
    grid-template-columns: 1fr auto;
    padding: 12px 0;
  }

  .cabinet-nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: center;
    overflow-x: auto;
  }

  .cabinet-main {
    margin-top: 32px;
  }

  .cabinet-cookie {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .auth-shell {
    width: min(100% - 28px, 520px);
    padding: 48px 0;
  }

  .auth-back {
    margin-bottom: 36px;
  }

  .auth-form input,
  .auth-submit {
    min-height: 58px;
  }

  .cabinet-header {
    width: min(100% - 24px, 1040px);
  }

  .cabinet-brand span:last-child {
    display: none;
  }

  .cabinet-main {
    width: min(100% - 24px, 720px);
  }

  .cabinet-hero-card,
  .cabinet-telegram-card,
  .cabinet-gift-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .cabinet-telegram-card {
    align-items: stretch;
  }

  .cabinet-card-arrow,
  .cabinet-blue-button,
  .cabinet-primary-button {
    width: 100%;
  }

  .cabinet-cookie {
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cabinet-chat {
    right: 14px;
    bottom: 14px;
  }
}

/* Light Codex-style account surfaces */
body.auth-body,
body.cabinet-body {
  background:
    linear-gradient(rgba(47, 109, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 109, 246, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 48%, #eef3f8 100%);
  background-size: 48px 48px, 48px 48px, auto;
  color: var(--ink);
}

body.auth-body::before,
body.cabinet-body::before {
  background:
    linear-gradient(120deg, rgba(47, 109, 246, 0.12), transparent 34%),
    linear-gradient(300deg, rgba(47, 183, 201, 0.13), transparent 35%),
    linear-gradient(25deg, rgba(22, 163, 109, 0.08), transparent 30%);
  opacity: 1;
}

body.auth-body::after,
body.cabinet-body::after {
  background-image: radial-gradient(rgba(16, 24, 40, 0.09) 0.8px, transparent 0.8px);
  background-size: 4px 4px;
  opacity: 0.18;
}

.auth-card {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 8%, rgba(47, 109, 246, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.auth-back {
  color: var(--muted);
}

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

.auth-card h1 {
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  font-weight: 850;
}

.auth-lede {
  color: var(--muted);
}

.auth-form input {
  border-color: rgba(47, 109, 246, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.auth-form input:focus {
  border-color: rgba(47, 109, 246, 0.52);
  box-shadow: 0 0 0 4px rgba(47, 109, 246, 0.12);
}

.auth-submit {
  background: linear-gradient(135deg, #101828 0%, #1f3d8f 52%, #2f6df6 100%);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(47, 109, 246, 0.2);
}

.auth-message {
  color: var(--muted);
}

.auth-message[data-type="success"] {
  color: var(--blue);
}

.auth-message[data-type="error"] {
  color: var(--rose);
}

.auth-note {
  color: var(--muted);
}

.cabinet-header {
  top: 14px;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 48px rgba(37, 54, 78, 0.1);
}

.cabinet-brand,
.cabinet-pill {
  color: var(--ink);
}

.cabinet-nav {
  border-color: rgba(16, 24, 40, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.cabinet-nav a {
  color: var(--muted);
}

.cabinet-nav a:hover {
  background: rgba(47, 109, 246, 0.08);
  color: var(--ink);
}

.cabinet-pill,
.cabinet-icon-button {
  border-color: rgba(16, 24, 40, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.cabinet-pill.is-active {
  border-color: rgba(47, 109, 246, 0.22);
  background: rgba(47, 109, 246, 0.08);
  color: var(--ink);
}

.cabinet-icon-button::before {
  border-color: rgba(16, 24, 40, 0.62);
}

.cabinet-icon-button::after {
  background: rgba(16, 24, 40, 0.62);
}

.cabinet-icon-button.logout::before {
  border-color: rgba(16, 24, 40, 0.62);
}

.cabinet-icon-button.logout::after {
  background: rgba(16, 24, 40, 0.62);
}

.cabinet-icon-button.logout span::before {
  border-color: rgba(16, 24, 40, 0.62);
}

.cabinet-main {
  width: min(820px, calc(100% - 32px));
}

.cabinet-hero-card,
.cabinet-telegram-card,
.cabinet-empty-state,
.cabinet-gift-card {
  border-color: rgba(16, 24, 40, 0.09);
  background:
    radial-gradient(circle at 85% 8%, rgba(47, 109, 246, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.cabinet-hero-card {
  border-color: rgba(47, 109, 246, 0.16);
}

.cabinet-hero-card::after {
  background: radial-gradient(circle, rgba(47, 109, 246, 0.17), transparent 64%);
}

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

.cabinet-card-kicker span {
  background: var(--blue);
}

.cabinet-hero-card h1 {
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  font-weight: 850;
}

.cabinet-hero-text {
  color: var(--muted);
}

.cabinet-meta {
  color: var(--muted);
}

.cabinet-meta strong,
.cabinet-meta b {
  color: var(--ink);
}

.cabinet-card-arrow {
  border-color: rgba(47, 109, 246, 0.18);
  background: rgba(47, 109, 246, 0.08);
  color: var(--blue);
}

.cabinet-card-arrow:hover {
  background: rgba(47, 109, 246, 0.13);
}

.cabinet-slider-dots span {
  background: rgba(16, 24, 40, 0.16);
}

.cabinet-slider-dots .is-active {
  background: var(--blue);
}

.cabinet-telegram-card {
  border-color: rgba(47, 109, 246, 0.18);
  background:
    linear-gradient(135deg, rgba(47, 109, 246, 0.12), rgba(255, 255, 255, 0.82)),
    #ffffff;
}

.cabinet-telegram-card strong,
.cabinet-gift-card strong {
  color: var(--ink);
}

.cabinet-telegram-card p,
.cabinet-gift-card p {
  color: var(--muted);
}

.cabinet-blue-button {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(47, 109, 246, 0.22);
}

.cabinet-empty-state {
  border-color: rgba(16, 24, 40, 0.09);
  background: rgba(255, 255, 255, 0.78);
}

.cabinet-empty-state p {
  color: var(--muted);
}

.cabinet-primary-button {
  background: linear-gradient(135deg, #101828 0%, #1f3d8f 52%, #2f6df6 100%);
  color: #ffffff;
}

.cabinet-gift-card {
  border-color: rgba(201, 130, 26, 0.16);
  background:
    linear-gradient(135deg, rgba(201, 130, 26, 0.08), rgba(255, 255, 255, 0.86)),
    #ffffff;
}

.gift-icon {
  background: linear-gradient(135deg, #2f6df6, #2fb7c9);
  box-shadow: 0 12px 26px rgba(47, 109, 246, 0.18);
}

.gift-icon::before,
.gift-icon::after {
  background: rgba(255, 255, 255, 0.74);
}

.cabinet-support {
  border-top-color: rgba(16, 24, 40, 0.08);
}

.cabinet-support p,
.cabinet-user-note {
  color: var(--muted);
}

.cabinet-support a {
  border-color: rgba(47, 109, 246, 0.18);
  background: rgba(47, 109, 246, 0.08);
  color: var(--blue);
}

.cabinet-cookie {
  border-color: rgba(16, 24, 40, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 60px rgba(37, 54, 78, 0.15);
}

.cabinet-cookie p {
  color: var(--muted);
}

.cabinet-cookie a {
  color: var(--blue);
}

.cabinet-cookie button {
  border-color: rgba(16, 24, 40, 0.1);
  background: rgba(16, 24, 40, 0.04);
  color: var(--text);
}

.cabinet-cookie button:last-child {
  background: var(--ink);
  color: #ffffff;
}

.cabinet-chat {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.24);
}

body.success-body {
  min-height: 100vh;
  background:
    linear-gradient(rgba(47, 109, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 109, 246, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 48%, #eef3f8 100%);
  background-size: 48px 48px, 48px 48px, auto;
  color: var(--ink);
}

body.success-body::before {
  background:
    linear-gradient(120deg, rgba(47, 109, 246, 0.12), transparent 34%),
    linear-gradient(300deg, rgba(47, 183, 201, 0.13), transparent 35%),
    linear-gradient(25deg, rgba(22, 163, 109, 0.08), transparent 30%);
}

body.success-body::after {
  background-image: radial-gradient(rgba(16, 24, 40, 0.09) 0.8px, transparent 0.8px);
  background-size: 4px 4px;
  opacity: 0.18;
}

.success-shell {
  width: min(640px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0 48px;
}

.success-badge {
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.95), transparent 22%),
    linear-gradient(135deg, #101828, #2f6df6 58%, #2fb7c9);
  box-shadow: 0 20px 50px rgba(47, 109, 246, 0.24);
  transform: rotate(-7deg);
}

.success-badge::before,
.success-badge::after,
.success-badge span::before,
.success-badge span::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #16a36d;
}

.success-badge::before {
  width: 8px;
  height: 24px;
  left: 14px;
  top: -14px;
  transform: rotate(18deg);
}

.success-badge::after {
  width: 22px;
  height: 6px;
  right: -13px;
  top: 18px;
  background: #c9821a;
  transform: rotate(-22deg);
}

.success-badge span::before {
  width: 7px;
  height: 7px;
  left: 48px;
  top: -10px;
  background: #d6536d;
}

.success-badge span::after {
  width: 6px;
  height: 18px;
  left: 30px;
  bottom: -12px;
  background: #2fb7c9;
  transform: rotate(28deg);
}

.success-hero {
  text-align: center;
}

.success-kicker,
.success-card-kicker,
.cabinet-section-label,
.program-head p {
  margin: 0;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.success-hero h1 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(38px, 7vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.success-hero p {
  margin: 0 0 8px;
  color: var(--muted);
}

.success-hero strong {
  color: var(--ink);
}

.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 26px 0 30px;
}

.success-primary,
.success-secondary,
.success-inline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 900;
}

.success-primary {
  border: 0;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(47, 109, 246, 0.22);
}

.success-secondary,
.success-inline-button {
  border: 1px solid rgba(47, 109, 246, 0.16);
  background: rgba(255, 255, 255, 0.76);
  color: var(--blue);
}

.success-card,
.success-mail-card {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.success-card.is-highlighted {
  border-color: rgba(47, 109, 246, 0.24);
  background:
    linear-gradient(135deg, rgba(47, 109, 246, 0.1), rgba(255, 255, 255, 0.86)),
    #ffffff;
}

.success-card h2 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: 1.35rem;
}

.success-card p,
.success-mail-card p,
.success-card li {
  color: var(--muted);
  line-height: 1.6;
}

.success-card ul {
  margin: 0;
  padding-left: 18px;
}

.success-note {
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.success-mail-card {
  border-color: rgba(47, 109, 246, 0.14);
  background: rgba(47, 109, 246, 0.06);
  text-align: center;
}

.success-mail-card span {
  color: var(--ink);
  font-weight: 850;
}

.success-referral {
  border-color: rgba(201, 130, 26, 0.18);
}

.cabinet-program-panel,
.cabinet-bonuses {
  margin-bottom: 28px;
  padding: 26px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.program-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.program-head h2 {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.1;
}

.program-head > span {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 109, 0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.program-start-card {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(47, 109, 246, 0.16);
  border-radius: 14px;
  background: rgba(47, 109, 246, 0.06);
}

.program-start-card strong {
  color: var(--ink);
}

.program-start-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

.program-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.08);
}

.program-progress span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.program-checklist {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.program-checklist label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 750;
}

.program-checklist input {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

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

.program-grid article {
  padding: 18px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.program-grid h3,
.cabinet-bonuses h3 {
  margin: 0 0 10px;
  color: var(--ink);
}

.program-grid ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.program-grid details {
  border-top: 1px solid rgba(16, 24, 40, 0.08);
  padding: 10px 0;
}

.program-grid details:first-child {
  border-top: 0;
  padding-top: 0;
}

.program-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.program-grid details p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.cabinet-bonuses .cabinet-section-label {
  text-align: center;
  margin-bottom: 14px;
}

.cabinet-bonuses [data-program-bonuses] {
  display: grid;
  gap: 14px;
}

.cabinet-bonuses article {
  padding: 20px;
  border: 1px solid rgba(201, 130, 26, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(201, 130, 26, 0.08), rgba(255, 255, 255, 0.76)),
    #ffffff;
}

.cabinet-bonuses article span {
  color: var(--amber);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cabinet-bonuses article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 680px) {
  .success-shell {
    padding-top: 48px;
  }

  .success-actions,
  .program-head {
    align-items: stretch;
    flex-direction: column;
  }

  .success-primary,
  .success-secondary,
  .success-inline-button {
    width: 100%;
  }

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