
/* =========================================================
1. TOKENS (ENHANCED — NON-BREAKING)
========================================================= */
:root{
/* BRAND */
--gold:#CC9933;
--gold-lt:#E8B84B;
--gold-pale:rgba(204,153,51,.10);
--gold-border:rgba(204,153,51,.22);

/* BASE */
--bg:#07090F;
--surface:#0C0F1A;
--panel:#111622;
--border:rgba(255,255,255,.07);
--border-strong:rgba(255,255,255,.18);

/* STATE */
--green:#10B981;
--red:#EF4444;
--blue:#3B82F6;
--purple:#8B5CF6;
--yellow:#F59E0B;

/* TEXT */
--t1:rgba(255,255,255,.94);
--t2:rgba(255,255,255,.64);
--t3:rgba(255,255,255,.38);
--t4:rgba(255,255,255,.16);

/* TYPO */
--font-serif:'Fraunces',Georgia,serif;
--font-sans:'Inter',system-ui,sans-serif;
--font-mono:'IBM Plex Mono',monospace;

/* RADIUS */
--r:10px;
--r-lg:16px;
--r-xl:22px;
--s5:20px;

/* NEW SYSTEM TOKENS */
--space-xs:6px;
--space-sm:10px;
--space-md:16px;
--space-lg:24px;
--space-xl:32px;

--ease:cubic-bezier(.2,.8,.2,1);
--fast:120ms;
--base:200ms;

--shadow-sm:0 6px 20px rgba(0,0,0,.25);
--shadow-md:0 20px 50px rgba(0,0,0,.45);
--shadow-lg:0 32px 80px rgba(0,0,0,.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans, system-ui, sans-serif);
  background: var(--bg, #000);
  color: var(--t1, #fff);
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

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

@media (max-width: 768px) {
  body {
    padding: 16px;
  }
}
/* =========================================================
3. NAV
========================================================= */

/* --- NAV CONTAINER --- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;

  height: 64px;
  display: flex;
  align-items: center;

  background: rgba(7, 9, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

/* --- INNER LAYOUT --- */
.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--s5);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

/* --- BRAND --- */
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--s2);

  text-decoration: none;
}

.nav-brand img {
  height: 22px;
  display: block;
}

.nav-brand span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: -0.2px;
}

/* --- NAV LINKS --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s5);
}

.nav-links a {
  position: relative;

  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;

  transition: color var(--base) var(--ease);
}

/* hover + active */
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text-1);
}

/* subtle underline animation */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0%;
  height: 1.5px;
  background: var(--gold);

  transition: width var(--base) var(--ease);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

/* --- CTA AREA --- */
.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

/* =========================================================
   4. BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--r);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: .2s;
  font-family: var(--font-sans);
}

.btn-gold {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.btn-gold:hover {
  background: #B8871E;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(204, 153, 51, .3);
}

.btn-outline {
  background: transparent;
  color: var(--t2);
  border-color: rgba(255, 255, 255, .18);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: var(--t2);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .10);
  color: var(--t1);
}

.btn-lg {
  padding: 13px 28px;
  font-size: 15px;
  border-radius: var(--r-lg);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
}

.w-full {
  width: 100%;
  justify-content: center;
}
/* CONTAINER */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.grid {
  display: grid;
  gap: var(--space-5);
}

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

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

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

section {
  padding: 80px 0;
}

.bg-surface {
  background: var(--surface);
}

.border-top {
  border-top: 1px solid var(--border);
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 30%, rgba(0, 0, 100, .6), transparent),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(204, 153, 51, .06), transparent);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--t4) 1px, transparent 1px),
    linear-gradient(90deg, var(--t4) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 20%, transparent 70%);
}

.hero-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: 30px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 22px;
}

.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(204, 153, 51, .8);
  animation: dot 2s ease-in-out infinite;
}

@keyframes dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: .4;
  }
}

h1.hero-h {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 22px;
}

h1.hero-h em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
}

.hero-sub strong {
  color: var(--t1);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--t3);
}

.proof-item strong {
  color: var(--t2);
}
/* TERMINAL */
.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
}

.t-bar {
  background: rgba(255, 255, 255, .04);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.t-dots {
  display: flex;
  gap: 5px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.t-dot.r {
  background: #FF5F57;
}

.t-dot.y {
  background: #FFBD2E;
}

.t-dot.g {
  background: #28C840;
}

.t-label {
  font-size: 11px;
  color: var(--t3);
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
}

.live-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .8px;
  text-transform: uppercase;
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: dot 2s infinite;
}

.t-body {
  padding: 20px;
}

.lab-step {
  padding: 12px 14px;
  border-radius: var(--r-lg);
  border: 1px solid;
  margin-bottom: 10px;
  animation: reveal .5s ease forwards;
  opacity: 0;
}

.lab-step:nth-child(1) {
  animation-delay: .1s;
}

.lab-step:nth-child(2) {
  animation-delay: .4s;
}

.lab-step:nth-child(3) {
  animation-delay: .7s;
}

.lab-step:nth-child(4) {
  animation-delay: 1s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.lab-step.entry {
  background: rgba(239, 68, 68, .07);
  border-color: rgba(239, 68, 68, .22);
}

.lab-step.vuln {
  background: rgba(245, 158, 11, .06);
  border-color: rgba(245, 158, 11, .2);
}

.lab-step.task {
  background: rgba(204, 153, 51, .07);
  border-color: var(--gold-border);
}

.lab-step.ok {
  background: rgba(16, 185, 129, .06);
  border-color: rgba(16, 185, 129, .2);
}

.ls-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lab-step.entry .ls-label {
  color: var(--red);
}

.lab-step.vuln .ls-label {
  color: var(--yellow);
}

.lab-step.task .ls-label {
  color: var(--gold-lt);
}

.lab-step.ok .ls-label {
  color: var(--green);
}

.ls-text {
  font-size: 12px;
  color: var(--t1);
  line-height: 1.5;
}

.ls-sub {
  font-size: 11px;
  color: var(--t3);
  margin-top: 3px;
  font-family: var(--font-mono);
}

.t-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.t-btn {
  flex: 1;
  padding: 9px;
  border-radius: var(--r);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
  transition: .2s;
}

.t-btn.primary {
  background: var(--gold);
  color: #000;
}

.t-btn.primary:hover {
  background: #B8871E;
}

.t-btn.secondary {
  background: rgba(255, 255, 255, .06);
  color: var(--t2);
  border: 1px solid var(--border);
}

.t-btn.secondary:hover {
  background: rgba(255, 255, 255, .10);
}
/* AUTHORITY */
.authority {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.auth-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.auth-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--t3);
}

.auth-item i {
  font-size: 18px;
  color: var(--gold);
}

.auth-item strong {
  color: var(--t2);
}

/* SECTION HEADINGS */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

h2.sh {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--t1);
  margin-bottom: 16px;
}

h2.sh em {
  font-style: italic;
  color: var(--gold-lt);
}

.sub {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.8;
  max-width: 600px;
}

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

.mb8 {
  margin-bottom: 32px;
}

/* COMPARE */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cp {
  border-radius: var(--r-xl);
  padding: 32px;
}

.cp.prob {
  background: rgba(239, 68, 68, .04);
  border: 1px solid rgba(239, 68, 68, .18);
}

.cp.soln {
  background: rgba(16, 185, 129, .04);
  border: 1px solid rgba(16, 185, 129, .18);
}

.cp-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.cp.prob .cp-label {
  color: var(--red);
}

.cp.soln .cp-label {
  color: var(--green);
}

.cp-head {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 18px;
  line-height: 1.2;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--t2);
  line-height: 1.5;
}

.ci i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.ci.x i {
  color: var(--red);
}

.ci.ok i {
  color: var(--green);
}
/* FLOW */
.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 40px 0;
  flex-wrap: wrap;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  min-width: 130px;
  text-align: center;
}

.flow-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.flow-step:nth-child(1) .flow-icon {
  background: rgba(59, 130, 246, .12);
  border: 1px solid rgba(59, 130, 246, .3);
  color: var(--blue);
}

.flow-step:nth-child(3) .flow-icon {
  background: rgba(245, 158, 11, .1);
  border: 1px solid rgba(245, 158, 11, .3);
  color: var(--yellow);
}

.flow-step:nth-child(5) .flow-icon {
  background: rgba(139, 92, 246, .1);
  border: 1px solid rgba(139, 92, 246, .3);
  color: var(--purple);
}

.flow-step:nth-child(7) .flow-icon {
  background: rgba(239, 68, 68, .1);
  border: 1px solid rgba(239, 68, 68, .3);
  color: var(--red);
}

.flow-step:nth-child(9) .flow-icon {
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .3);
  color: var(--green);
}

.flow-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
}

.flow-sub {
  font-size: 11px;
  color: var(--t3);
}

.flow-arr {
  font-size: 20px;
  color: var(--t4);
  padding: 0 4px;
}

/* TRACKS */
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.track-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: .3s;
  display: flex;
  flex-direction: column;
}

.track-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
}

.tc-top {
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
}

.tc-top::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .08;
  background: repeating-linear-gradient(
    45deg,
    #fff 0,
    #fff 1px,
    transparent 0,
    transparent 50%
  );
  background-size: 8px 8px;
}

.tc-top.t1 {
  background: linear-gradient(145deg, #000044, #00004a);
}

.tc-top.t2 {
  background: linear-gradient(145deg, #1a0050, #000066);
}

.tc-top.t3 {
  background: linear-gradient(145deg, #2d0050, #1a0066);
}

.tc-top.t4 {
  background: linear-gradient(145deg, var(--gold), #B8871E);
}

.tc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 12px;
}

.tc-num.dark {
  color: rgba(0, 0, 0, .4);
}

.tc-head {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 6px;
}

.tc-outcome {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.5;
}

.tc-bottom {
  padding: 22px;
  background: var(--panel);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-top: 1px solid var(--border);
}

.tc-modules {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tc-module {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--t2);
}

.tc-module i {
  font-size: 13px;
  color: var(--gold);
  flex-shrink: 0;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
}
/* HOW */
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: .2s;
}

.how-step:first-child {
  padding-top: 0;
}

.how-step:last-child {
  border: none;
}

.how-step:hover .how-num {
  background: var(--gold);
  color: #000;
}

.how-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--border);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

.how-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 5px;
}

.how-content p {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
}

/* PLATFORM MOCKUP */
.pm {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.pm-bar {
  background: rgba(255, 255, 255, .03);
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pm-dots {
  display: flex;
  gap: 5px;
}

.pm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.pm-dot.r {
  background: #FF5F57;
}

.pm-dot.y {
  background: #FFBD2E;
}

.pm-dot.g {
  background: #28C840;
}

.pm-lbl {
  font-size: 11px;
  color: var(--t3);
  flex: 1;
  text-align: center;
  font-family: var(--font-mono);
}

.pm-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pm-score-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.pm-score {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px;
  text-align: center;
}

.pm-score-num {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.pm-score-num.gold {
  color: var(--gold);
}

.pm-score-num.green {
  color: var(--green);
}

.pm-score-num.red {
  color: var(--red);
}

.pm-score-lbl {
  font-size: 10px;
  color: var(--t3);
  margin-top: 4px;
}

.pm-path {
  background: rgba(139, 92, 246, .07);
  border: 1px solid rgba(139, 92, 246, .2);
  border-radius: var(--r-lg);
  padding: 12px;
}

.pm-path-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pm-chain {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pm-node {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 5px;
}

.pm-node.entry {
  background: rgba(239, 68, 68, .15);
  color: var(--red);
}

.pm-node.mid {
  background: rgba(245, 158, 11, .1);
  color: var(--yellow);
}

.pm-node.target {
  background: rgba(204, 153, 51, .15);
  color: var(--gold-lt);
}

.pm-arr {
  font-size: 12px;
  color: var(--t4);
}

.pm-find {
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.fd.crit {
  background: var(--red);
  box-shadow: 0 0 6px rgba(239, 68, 68, .5);
}

.fd.high {
  background: var(--yellow);
}

.find-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--t1);
}

.find-meta {
  font-size: 10px;
  color: var(--t3);
  margin-top: 2px;
  font-family: var(--font-mono);
}

/* CERTS */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cert-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.cert-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
}

.cert-type {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 8px;
}

.cert-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 12px;
  line-height: 1.2;
}

.cert-desc {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 18px;
}

.cert-earn {
  font-size: 12px;
  color: var(--t3);
  margin-bottom: 16px;
}

.cert-earn strong {
  color: var(--t2);
}

.verify-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--gold);
  padding: 8px 12px;
  background: var(--gold-pale);
  border-radius: var(--r);
  border: 1px solid var(--gold-border);
}

/* OUTCOMES */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.oc {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: .2s;
}

.oc:hover {
  border-color: rgba(255, 255, 255, .14);
}

.oc-icon {
  font-size: 26px;
  margin-bottom: 12px;
  display: block;
}

.oc-head {
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 7px;
}

.oc-text {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pc {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pc.feat {
  background: linear-gradient(160deg, rgba(204, 153, 51, .08), var(--panel));
  border-color: var(--gold-border);
}

.ptier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--t3);
}

.ptier.feat {
  color: var(--gold);
}

.pamt {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 900;
  color: var(--t1);
  line-height: 1;
}

.pamt span {
  font-size: 14px;
  font-weight: 400;
  color: var(--t3);
}

.pamt.free {
  color: var(--green);
}

.pdesc {
  font-size: 13px;
  color: var(--t2);
}

.pfeats {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.pf {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--t2);
}

.pf i {
  font-size: 14px;
  color: var(--green);
}

.pf.dis {
  color: var(--t4);
}

.pf.dis i {
  color: var(--t4);
}
/* FOR WHO */
.fw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fw-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  text-align: center;
  transition: .3s;
}

.fw-card:hover {
  border-color: var(--gold-border);
}

.fw-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.fw-head {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--t1);
  margin-bottom: 10px;
}

.fw-text {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
}

/* FINAL CTA */
.final-cta {
  background: linear-gradient(
    160deg,
    rgba(0, 0, 100, .6) 0%,
    rgba(7, 9, 15, 1) 60%
  );
  border-top: 1px solid var(--border);
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

h2.cta-h {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

h2.cta-h span {
  color: var(--gold-lt);
  font-style: italic;
}

.cta-sub {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 32px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 20px;
}

.cta-form input,
.cta-form select {
  padding: 13px 18px;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-lg);
  color: var(--t1);
  font-size: 14px;
  font-family: var(--font-sans);
  transition: .2s;
}

.cta-form input:focus,
.cta-form select:focus {
  outline: none;
  border-color: var(--gold);
}

.cta-form input::placeholder {
  color: var(--t3);
}

.cta-form select {
  -webkit-appearance: none;
  cursor: pointer;
}

.cta-form select option {
  background: var(--surface);
}

.cta-perks {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-perk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--t3);
}

.cta-perk i {
  color: var(--gold);
  font-size: 14px;
}

/* FOOTER */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.footer-brand-sub {
  font-size: 13px;
  color: var(--t3);
  max-width: 260px;
  line-height: 1.6;
}

.fc h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 14px;
}

.fc a {
  display: block;
  font-size: 13px;
  color: var(--t2);
  margin-bottom: 10px;
  transition: color .2s;
}

.fc a:hover {
  color: var(--t1);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--t3);
}

.btt {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  transition: .3s;
  z-index: 100;
  border: none;
}

.btt.show {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

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

@media (max-width: 900px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 700px) {
  .tracks-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

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

  .flow-arr {
    display: none;
  }
}

/* =======================================
# Cyber Oracle Acad AUTH
=========================================*/

.auth-wrap {
    width: 100%;
    max-width: 420px;
  }

  .auth-brand {
    text-align: center;
    margin-bottom: 36px;
  }

  .auth-brand-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #000040;, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin: 0 auto 14px;
  }

  .auth-brand-name {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -.5px;
  }

  .auth-brand-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-top: 4px;
  }

  .auth-card {
    background: #000066;
    border: 1px solid rgba(124, 58, 237, .2);
    border-radius: 18px;
    padding: 32px;
  }

  .auth-h1 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .auth-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 24px;
  }

  .auth-field {
    margin-bottom: 16px;
  }

  .auth-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .65);
  }

  .auth-field input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(124, 58, 237, .2);
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    transition: .15s;
    outline: none;
  }

  .auth-field input:focus {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, .06);
  }

  .auth-btn {
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    background: linear-gradient(135deg, #CC9933, #E0B045);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: .2s;
    margin-top: 4px;
  }

  .auth-btn:hover {
    opacity: .9;
  }

  .auth-error {
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .25);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #ef4444;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
  }

  .auth-divider::before,
  .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, .08);
  }

  .auth-sso {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: .15s;
  }

  .auth-sso:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
  }

  .auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
  }

  .auth-footer a {
    color: #a855f7;
  }

  .auth-back {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    margin-bottom: 20px;
    justify-content: center;
  }

  .auth-back:hover {
    color: rgba(255, 255, 255, .7);
  }