:root {
  --bg: #06080d;
  --bg-2: #0b1018;
  --text: #f8f3e7;
  --muted: #aab4b7;
  --soft: rgba(248, 243, 231, 0.68);
  --line: rgba(248, 243, 231, 0.13);
  --panel: rgba(11, 16, 24, 0.78);
  --panel-strong: rgba(15, 23, 32, 0.92);
  --mint: #9dffd1;
  --cyan: #7ddcff;
  --coral: #ff8f70;
  --amber: #ffd166;
  --rose: #ff6fa8;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

.ambient,
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ambient {
  z-index: -3;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(125, 220, 255, 0) 0%, rgba(125, 220, 255, 0.18) 18%, rgba(125, 220, 255, 0) 42%),
    linear-gradient(155deg, rgba(157, 255, 209, 0) 8%, rgba(157, 255, 209, 0.13) 35%, rgba(157, 255, 209, 0) 64%),
    linear-gradient(28deg, rgba(255, 143, 112, 0) 23%, rgba(255, 143, 112, 0.2) 49%, rgba(255, 143, 112, 0) 76%),
    radial-gradient(ellipse at 50% 0%, rgba(248, 243, 231, 0.12), transparent 45%),
    var(--bg);
}

.ambient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(248, 243, 231, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 243, 231, 0.046) 1px, transparent 1px),
    linear-gradient(rgba(157, 255, 209, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 220, 255, 0.032) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px, 288px 288px, 288px 288px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.66) 62%, transparent 96%);
}

.ambient::after {
  content: "";
  position: absolute;
  inset: -24%;
  z-index: 1;
  background:
    radial-gradient(circle at 16% 24%, rgba(125, 220, 255, 0.42), transparent 32%),
    radial-gradient(circle at 80% 17%, rgba(157, 255, 209, 0.34), transparent 31%),
    radial-gradient(circle at 74% 78%, rgba(255, 143, 112, 0.4), transparent 35%),
    radial-gradient(circle at 27% 84%, rgba(255, 209, 102, 0.24), transparent 30%),
    linear-gradient(115deg, rgba(125, 220, 255, 0.13), transparent 36%, rgba(255, 143, 112, 0.14));
  filter: blur(10px) saturate(1.24);
  opacity: 0.92;
  transform: translate3d(0, 0, 0) scale(1.02);
  transform-origin: 50% 50%;
  animation: ambientDrift 16s ease-in-out infinite;
  will-change: transform;
}

.grain {
  z-index: -2;
  opacity: 0.68;
  background:
    radial-gradient(ellipse at 50% 15%, transparent 0%, rgba(6, 8, 13, 0.16) 54%, rgba(6, 8, 13, 0.68) 100%),
    linear-gradient(180deg, rgba(6, 8, 13, 0.12), rgba(6, 8, 13, 0.42));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 8, 13, 0.74);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  color: #07100c;
  background: linear-gradient(135deg, var(--mint), var(--amber));
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a,
.header-action {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.header-action {
  padding: 10px 14px;
  border: 1px solid rgba(157, 255, 209, 0.34);
  border-radius: var(--radius);
  color: var(--mint);
  font-size: 0.88rem;
  font-weight: 800;
  background: rgba(157, 255, 209, 0.08);
}

.header-action:hover {
  transform: translateY(-1px);
  background: rgba(157, 255, 209, 0.14);
}

.section-pad {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 54px;
  min-height: calc(100vh - 70px);
  padding: 92px 0 72px;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.quiz-intro h2,
.result-header h2,
.method-copy h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 780px;
  font-size: 4.25rem;
}

.hero-title {
  display: grid;
  gap: 0.22em;
}

.hero-title-main,
.hero-title-accent {
  display: block;
}

.hero-title-accent {
  max-width: 720px;
  color: var(--mint);
  font-size: 0.78em;
  line-height: 1.05;
}

.hero-copy p {
  max-width: 670px;
  margin: 26px 0 0;
  color: var(--soft);
  font-size: 1.14rem;
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: #07100c;
  background: linear-gradient(135deg, var(--mint), var(--amber));
  box-shadow: 0 18px 55px rgba(157, 255, 209, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 72px rgba(157, 255, 209, 0.3);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--line);
  background: rgba(248, 243, 231, 0.06);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(248, 243, 231, 0.28);
  background: rgba(248, 243, 231, 0.1);
}

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

.hero-stats span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.signal-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(248, 243, 231, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(248, 243, 231, 0.12), transparent 42%),
    linear-gradient(160deg, rgba(13, 19, 29, 0.94), rgba(9, 13, 20, 0.72));
  box-shadow: var(--shadow);
}

.signal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(157, 255, 209, 0.13), transparent),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 100% 52px;
  opacity: 0.74;
  pointer-events: none;
}

.panel-large {
  width: min(100%, 520px);
  margin: 38px 0 0 auto;
  padding: 26px;
}

.panel-topline,
.mini-label,
.panel-label,
.card-index,
.question-kicker,
.result-note {
  color: var(--mint);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.panel-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber);
}

.status-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.75);
}

.archetype-preview {
  position: relative;
  z-index: 1;
  margin-top: 96px;
  transition: opacity 320ms ease, transform 320ms ease, filter 320ms ease;
}

.archetype-preview.is-switching {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(8px);
}

.archetype-preview strong {
  display: block;
  margin-top: 10px;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: 3.35rem;
  line-height: 1;
}

.archetype-preview p {
  max-width: 360px;
  margin: 16px 0 0;
  color: var(--soft);
}

.topic-rail {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 42px;
}

.topic-rail span {
  padding: 9px 10px;
  border-radius: 7px;
  color: #09100d;
  background: var(--mint);
  font-size: 0.82rem;
  font-weight: 900;
}

.topic-rail span:nth-child(2) {
  background: var(--cyan);
}

.topic-rail span:nth-child(3) {
  background: var(--coral);
}

.content-matrix {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.content-matrix div {
  min-height: 94px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 8, 13, 0.55);
}

.content-matrix small {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.content-matrix b {
  display: block;
  margin-top: 16px;
  font-size: 1rem;
}

.floating-note {
  position: absolute;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  width: 230px;
  padding: 14px;
  border: 1px solid rgba(248, 243, 231, 0.15);
  border-radius: var(--radius);
  background: rgba(6, 8, 13, 0.75);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  animation: floatNote 5.8s ease-in-out infinite;
}

.floating-note span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 7px;
  color: #07100c;
  background: var(--amber);
  font-weight: 900;
}

.floating-note p {
  margin: 0;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.note-one {
  top: 12px;
  left: 12px;
}

.note-two {
  right: 4px;
  top: 104px;
  bottom: auto;
  animation-delay: -2.5s;
}

@keyframes floatNote {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes ambientDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1.02) rotate(0deg);
  }
  24% {
    transform: translate3d(-6%, 4%, 0) scale(1.12) rotate(3deg);
  }
  52% {
    transform: translate3d(6%, -5%, 0) scale(1.06) rotate(-3deg);
  }
  76% {
    transform: translate3d(3%, 6%, 0) scale(1.14) rotate(2deg);
  }
}

.preview {
  padding: 76px 0 44px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 26px;
}

.section-heading h2,
.quiz-intro h2,
.result-header h2,
.method-copy h2,
.cta-panel h2 {
  font-size: 2.72rem;
}

.section-heading p,
.quiz-intro p,
.result-header p,
.method-copy p,
.cta-panel p {
  margin: 0;
  color: var(--soft);
  font-size: 1rem;
}

.preview-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 14px;
}

.preview-card,
.result-panel,
.quiz-card,
.method-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 16, 24, 0.72);
  box-shadow: 0 22px 82px rgba(0, 0, 0, 0.22);
}

.preview-card {
  min-height: 250px;
  padding: 22px;
}

.preview-main {
  min-height: 360px;
  grid-row: span 2;
  background:
    linear-gradient(150deg, rgba(157, 255, 209, 0.14), transparent 45%),
    rgba(11, 16, 24, 0.78);
}

.preview-accent {
  grid-column: span 2;
  min-height: 160px;
  background:
    linear-gradient(110deg, rgba(255, 143, 112, 0.16), rgba(125, 220, 255, 0.08)),
    rgba(11, 16, 24, 0.78);
}

.preview-card h3,
.result-panel h3 {
  margin: 42px 0 0;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  line-height: 1.12;
}

.preview-card p,
.result-panel p {
  margin: 14px 0 0;
  color: var(--soft);
}

.quiz-section {
  padding: 74px 0;
}

.quiz-shell {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 20px;
  align-items: start;
}

.quiz-intro {
  position: sticky;
  top: 104px;
  padding-top: 8px;
}

.quiz-intro p {
  margin-top: 18px;
  max-width: 390px;
}

.quiz-card {
  min-height: 580px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(125, 220, 255, 0.08), transparent 36%),
    rgba(11, 16, 24, 0.86);
}

.progress-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.progress-track {
  overflow: hidden;
  height: 8px;
  margin-top: 13px;
  border-radius: 999px;
  background: rgba(248, 243, 231, 0.1);
}

.progress-fill {
  width: 8%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--cyan), var(--coral));
  transition: width 260ms ease;
}

.question-block {
  margin-top: 42px;
}

.question-block h3 {
  margin: 12px 0 0;
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}

.options-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

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

.option-button {
  display: flex;
  width: 100%;
  min-height: 74px;
  align-items: flex-start;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(248, 243, 231, 0.12);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(248, 243, 231, 0.045);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.option-button:hover,
.option-button.is-selected {
  transform: translateY(-1px);
  border-color: rgba(157, 255, 209, 0.38);
  background: rgba(157, 255, 209, 0.09);
}

.option-marker {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 7px;
  color: var(--mint);
  background: rgba(157, 255, 209, 0.09);
  font-size: 0.78rem;
  font-weight: 900;
}

.option-button strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.option-button span:not(.option-marker) {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.quiz-controls {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.ghost-button {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--soft);
  background: transparent;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ghost-button:hover:not(:disabled) {
  color: var(--text);
  border-color: rgba(248, 243, 231, 0.28);
  background: rgba(248, 243, 231, 0.06);
}

.ghost-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.result-section {
  padding: 64px 0 92px;
}

.is-hidden {
  display: none;
}

.result-header {
  max-width: 840px;
}

.result-note {
  margin: 0 0 12px;
}

.result-header h2 {
  max-width: 900px;
}

.result-header p {
  max-width: 720px;
  margin-top: 18px;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.export-button {
  min-height: 46px;
  padding-inline: 16px;
}

.result-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  margin-top: 30px;
}

.result-panel {
  padding: 22px;
}

.archetype-card {
  min-height: 310px;
  background:
    linear-gradient(145deg, rgba(157, 255, 209, 0.16), transparent 48%),
    rgba(11, 16, 24, 0.78);
}

.pillars-card {
  min-height: 310px;
}

.direction-card {
  background:
    linear-gradient(120deg, rgba(255, 209, 102, 0.13), rgba(255, 143, 112, 0.08)),
    rgba(11, 16, 24, 0.78);
}

.ideas-card {
  background:
    linear-gradient(135deg, rgba(125, 220, 255, 0.11), transparent 46%),
    rgba(11, 16, 24, 0.78);
}

.mini-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.mini-list span {
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--soft);
  background: rgba(248, 243, 231, 0.045);
  font-size: 0.88rem;
  font-weight: 700;
}

.pillar-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pillar-chip {
  display: grid;
  gap: 6px;
  min-width: 180px;
  flex: 1 1 180px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(248, 243, 231, 0.05);
}

.pillar-chip strong {
  color: var(--text);
}

.pillar-chip span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.ideas-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.idea-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(248, 243, 231, 0.11);
  border-radius: var(--radius);
  background: rgba(248, 243, 231, 0.045);
}

.idea-item span {
  color: var(--mint);
  font-weight: 900;
}

.idea-item p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.method-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 34px;
  margin-top: 14px;
  padding: 34px;
  align-items: stretch;
  background:
    linear-gradient(115deg, rgba(157, 255, 209, 0.14), rgba(125, 220, 255, 0.09), rgba(255, 143, 112, 0.11)),
    rgba(11, 16, 24, 0.88);
}

.method-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.method-copy p {
  margin-top: 18px;
}

.method-bigline {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(248, 243, 231, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(157, 255, 209, 0.13), rgba(255, 209, 102, 0.08)),
    rgba(6, 8, 13, 0.42);
}

.method-bigline strong {
  color: var(--text);
  font-family: "Unbounded", "Segoe UI", sans-serif;
  font-size: 2.15rem;
  line-height: 1.02;
}

.method-bigline span {
  color: var(--soft);
  font-weight: 800;
}

.method-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.method-benefits div {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(248, 243, 231, 0.13);
  border-radius: var(--radius);
  background: rgba(6, 8, 13, 0.38);
}

.method-benefits strong {
  display: block;
  color: var(--mint);
  font-size: 1rem;
  font-weight: 900;
}

.method-benefits span {
  display: block;
  margin-top: 9px;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 700;
}

.format-variant {
  margin-top: auto;
  padding: 18px;
  border: 1px solid rgba(157, 255, 209, 0.22);
  border-radius: var(--radius);
  background: rgba(6, 8, 13, 0.42);
}

.format-variant span {
  color: var(--amber);
  font-size: 0.86rem;
  font-weight: 900;
}

.format-variant p {
  margin-top: 8px;
  color: var(--soft);
  font-weight: 700;
}

.method-media {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
}

.method-media video {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border: 1px solid rgba(248, 243, 231, 0.16);
  border-radius: var(--radius);
  background: rgba(6, 8, 13, 0.8);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.3);
}

.method-steps {
  display: grid;
  gap: 10px;
}

.method-steps div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 90px;
  padding: 14px;
  border: 1px solid rgba(248, 243, 231, 0.14);
  border-radius: var(--radius);
  background: rgba(6, 8, 13, 0.44);
}

.method-steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 7px;
  color: #07100c;
  background: var(--mint);
  font-weight: 900;
}

.method-steps p {
  margin: 0;
  color: var(--soft);
  font-weight: 700;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.72fr);
  gap: 34px;
  align-items: center;
  margin-top: 14px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 143, 112, 0.16), rgba(255, 209, 102, 0.08), transparent 62%),
    rgba(11, 16, 24, 0.9);
}

.cta-copy {
  min-width: 0;
}

.cta-panel p {
  max-width: 840px;
  margin-top: 14px;
  font-size: 0.96rem;
}

.cta-highlight {
  max-width: 840px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(157, 255, 209, 0.25);
  border-radius: var(--radius);
  color: var(--text);
  background:
    linear-gradient(125deg, rgba(157, 255, 209, 0.14), rgba(255, 209, 102, 0.08)),
    rgba(6, 8, 13, 0.45);
  font-size: 1.04rem;
  font-weight: 700;
}

.cta-highlight strong {
  color: var(--mint);
}

.proof-number {
  color: var(--mint);
  font-weight: 900;
}

.cta-button {
  width: min(100%, 520px);
  margin-top: 24px;
  min-height: 72px;
  padding: 20px 30px;
  border-color: rgba(255, 209, 102, 0.28);
  font-size: 1.08rem;
  box-shadow: 0 24px 82px rgba(157, 255, 209, 0.28);
  white-space: nowrap;
}

.cta-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(248, 243, 231, 0.14);
  border-radius: var(--radius);
  background: rgba(6, 8, 13, 0.42);
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
}

.cta-photo::after {
  display: none;
}

.cta-photo img {
  display: block;
  width: 100%;
  max-height: 640px;
  height: auto;
  object-fit: contain;
}

.print-sheet {
  display: none;
}

.site-footer {
  display: flex;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 18px 0 28px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--soft);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer span {
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer a {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

  .site-footer a:hover {
    color: var(--text);
    border-color: rgba(157, 255, 209, 0.28);
    background: rgba(157, 255, 209, 0.08);
  }

@media print {
  @page {
    size: A4 portrait;
    margin: 0;
  }

  html,
  body {
    width: 210mm;
    min-height: 297mm;
    color: #f8f3e7;
    background: #06080d;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .ambient,
  .grain,
  .site-header,
  main,
  .site-footer {
    display: none !important;
  }

  .print-sheet {
    display: block;
    min-height: 297mm;
    padding: 13mm;
    color: #f8f3e7;
    background:
      linear-gradient(rgba(248, 243, 231, 0.055) 1px, transparent 1px),
      linear-gradient(90deg, rgba(248, 243, 231, 0.045) 1px, transparent 1px),
      radial-gradient(circle at 12% 14%, rgba(125, 220, 255, 0.32), transparent 32%),
      radial-gradient(circle at 86% 18%, rgba(157, 255, 209, 0.22), transparent 30%),
      radial-gradient(circle at 78% 88%, rgba(255, 143, 112, 0.3), transparent 34%),
      linear-gradient(135deg, #101a22, #10151c 45%, #2a1717);
    background-size: 18mm 18mm, 18mm 18mm, auto, auto, auto, auto;
    font-family: "Manrope", "Segoe UI", sans-serif;
  }

  .print-card {
    min-height: calc(297mm - 26mm);
    padding: 10mm;
    border: 0.35mm solid rgba(248, 243, 231, 0.16);
    border-radius: 2mm;
    background:
      linear-gradient(135deg, rgba(248, 243, 231, 0.11), transparent 36%),
      rgba(6, 8, 13, 0.62);
    box-shadow: 0 12mm 35mm rgba(0, 0, 0, 0.24);
  }

  .print-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8mm;
    color: #9dffd1;
    font-size: 8.5pt;
    font-weight: 900;
    text-transform: uppercase;
  }

  .print-card h1,
  .print-card h2 {
    margin: 0;
    font-family: "Unbounded", "Segoe UI", sans-serif;
    line-height: 1.08;
  }

  .print-card h1 {
    margin-top: 14mm;
    color: #f8f3e7;
    font-size: 42pt;
  }

  .print-lead {
    max-width: 158mm;
    margin: 5mm 0 0;
    color: rgba(248, 243, 231, 0.78);
    font-size: 13pt;
    font-weight: 650;
    line-height: 1.45;
  }

  .print-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3mm;
    margin-top: 9mm;
  }

  .print-chip-row span {
    padding: 3mm 4mm;
    border-radius: 2mm;
    color: #07100c;
    background: #9dffd1;
    font-size: 9.5pt;
    font-weight: 900;
  }

  .print-chip-row span:nth-child(2) {
    background: #7ddcff;
  }

  .print-chip-row span:nth-child(3) {
    background: #ff8f70;
  }

  .print-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4mm;
    margin-top: 9mm;
  }

  .print-block {
    padding: 5mm;
    border: 0.3mm solid rgba(248, 243, 231, 0.14);
    border-radius: 2mm;
    background: rgba(6, 8, 13, 0.45);
  }

  .print-block h2 {
    color: #9dffd1;
    font-size: 13pt;
  }

  .print-block strong {
    display: block;
    margin-top: 3mm;
    color: #ffd166;
    font-size: 12pt;
  }

  .print-block p,
  .print-block li {
    color: rgba(248, 243, 231, 0.82);
    font-size: 9.5pt;
    line-height: 1.46;
  }

  .print-ideas {
    margin-top: 4mm;
  }

  .print-ideas ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.6mm 8mm;
    margin: 4mm 0 0;
    padding-left: 5mm;
  }

  .print-meta {
    display: grid;
    gap: 1.8mm;
    margin-top: 6mm;
    padding: 5mm;
    border: 0.3mm solid rgba(157, 255, 209, 0.24);
    border-radius: 2mm;
    color: rgba(248, 243, 231, 0.78);
    background:
      linear-gradient(125deg, rgba(157, 255, 209, 0.13), rgba(255, 209, 102, 0.08)),
      rgba(6, 8, 13, 0.42);
    font-size: 8.5pt;
    line-height: 1.35;
  }

  .print-meta div {
    display: grid;
    gap: 1mm;
    margin-bottom: 1mm;
  }

  .print-meta strong {
    color: #f8f3e7;
    font-size: 12pt;
  }

  .print-meta span,
  .print-meta p {
    margin: 0;
  }
}

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

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero-copy h1 {
    font-size: 3.6rem;
  }

  .hero-visual {
    min-height: 500px;
  }

  .panel-large {
    margin-left: 0;
  }

  .preview-layout,
  .quiz-shell,
  .result-grid,
  .method-card,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .method-card {
    gap: 24px;
  }

  .cta-panel {
    padding: 24px;
  }

  .quiz-intro {
    position: static;
  }

  .preview-main,
  .preview-accent {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
  }
}

@media (max-width: 760px) {
  .site-header {
    width: min(100% - 20px, var(--max));
    gap: 10px;
    padding: 10px;
  }

  .site-nav {
    display: none;
  }

  .brand {
    min-width: 0;
    font-size: 0.94rem;
  }

  .brand span:last-child {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-action {
    display: none;
  }

  .section-pad {
    width: min(100% - 20px, var(--max));
  }

  .hero {
    min-height: auto;
    padding: 54px 0 44px;
    gap: 28px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: 2.02rem;
    line-height: 1.04;
  }

  .hero-copy p {
    max-width: 100%;
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

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

  .hero-stats span {
    text-align: center;
  }

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

  .panel-large {
    padding: 18px;
  }

  .archetype-preview {
    margin-top: 70px;
  }

  .archetype-preview strong {
    font-size: 2.35rem;
  }

  .content-matrix {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    margin-top: 10px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-heading h2,
  .quiz-intro h2,
  .result-header h2,
  .method-copy h2,
  .cta-panel h2 {
    font-size: 2.12rem;
    line-height: 1.05;
  }

  .quiz-card {
    min-height: auto;
    padding: 16px;
  }

  .question-block h3 {
    font-size: 1.45rem;
  }

  .options-grid.many-options {
    grid-template-columns: 1fr;
  }

  .option-button {
    min-height: 68px;
  }

  .result-panel,
  .method-card,
  .cta-panel {
    padding: 18px;
  }

  .method-benefits {
    grid-template-columns: 1fr;
  }

  .method-bigline strong {
    font-size: 1.55rem;
  }

  .cta-button {
    white-space: normal;
  }

  .method-media video {
    width: 100%;
    max-height: none;
  }

  .site-footer {
    width: min(100% - 20px, var(--max));
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .brand span:last-child {
    max-width: 120px;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }
}

@media (max-width: 560px) {
  .site-header,
  .section-pad {
    width: min(calc(100% - 20px), 360px);
    margin-left: 10px;
    margin-right: auto;
  }

  .hero-copy,
  .hero-copy h1,
  .hero-copy p {
    max-width: 360px;
  }

  .site-footer {
    width: min(calc(100% - 20px), 360px);
    margin-left: 10px;
    margin-right: auto;
  }
}
