/* ===========================================================
   PERFXTEC — Sleek Sans · Black · Blue primary · Green secondary · v0.5
   Typography: Geist · Geist Mono (numerals)
=========================================================== */
:root {
  --bg: #05070d;
  --bg-2: #080b14;
  --bg-3: #0d1220;
  --line: rgba(255, 255, 255, 0.07);
  --line-2: rgba(255, 255, 255, 0.11);
  --text: #eaeef4;
  --text-2: #c8cdd8;
  --muted: #8892a3;
  --muted-2: #5a6272;
  /* Blue (primary / structural) */
  --blue: #2563eb;
  --blue-2: #60a5fa;
  --blue-3: #93c5fd;
  --blue-deep: #1e3a8a;
  --blue-soft: #bfdbfe;
  /* Green (accent / highlights) */
  --green: #10b981;
  --green-2: #34d399;
  --green-3: #6ee7b7;
  --green-deep: #064e3b;
  /* Cyan bridge color */
  --cyan: #22d3ee;
  --up: #86efac;
  --down: #fca5a5;
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: clip; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: -0.01em;
  font-feature-settings: "ss01", "ss02", "cv01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; background: 0; color: inherit; cursor: pointer; }
ul { list-style: none; }

/* accent treatment — solid blue emphasis text */
em {
  font-style: normal;
  color: var(--blue-2);
  font-weight: inherit;
}

.mono, .num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* ============ BACKDROP ============ */
.backdrop {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
  background:
    radial-gradient(1400px 900px at 80% -10%, rgba(37, 99, 235, 0.16), transparent 60%),
    radial-gradient(1100px 700px at -10% 110%, rgba(59, 130, 246, 0.08), transparent 60%),
    var(--bg);
}
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  will-change: transform;
  animation: drift 36s ease-in-out infinite;
}
.orb-1 {
  width: 780px; height: 380px;
  top: -140px; left: -200px;
  transform: rotate(-22deg);
  background: radial-gradient(ellipse at center,
    rgba(96, 165, 250, 0.55) 0%,
    rgba(37, 99, 235, 0.28) 42%,
    transparent 72%);
}
.orb-2 {
  width: 860px; height: 420px;
  bottom: -160px; right: -240px;
  transform: rotate(-22deg);
  background: radial-gradient(ellipse at center,
    rgba(34, 211, 238, 0.35) 0%,
    rgba(16, 185, 129, 0.18) 38%,
    rgba(30, 64, 175, 0.14) 62%,
    transparent 78%);
  animation-delay: -18s;
}
@keyframes drift {
  0%, 100% { transform: translate(0,0) rotate(-22deg) scale(1); opacity: 0.5; }
  50%      { transform: translate(30px,-40px) rotate(-18deg) scale(1.04); opacity: 0.62; }
}

/* directional corner beams — thin edge highlights */
.beam { position: absolute; pointer-events: none; }
.beam-tl {
  top: 0; left: 0;
  width: min(46%, 560px); height: 1px;
  background: linear-gradient(90deg, rgba(96,165,250,0.55), rgba(96,165,250,0) 85%);
}
.beam-tl::after {
  content: ""; position: absolute; top: 0; left: 0;
  width: 1px; height: min(40%, 420px);
  background: linear-gradient(180deg, rgba(96,165,250,0.45), rgba(96,165,250,0) 85%);
}
.beam-br {
  bottom: 0; right: 0;
  width: min(46%, 560px); height: 1px;
  background: linear-gradient(-90deg, rgba(96,165,250,0.55), rgba(96,165,250,0) 85%);
}
.beam-br::after {
  content: ""; position: absolute; bottom: 0; right: 0;
  width: 1px; height: min(40%, 420px);
  background: linear-gradient(0deg, rgba(96,165,250,0.45), rgba(96,165,250,0) 85%);
}

/* ============ CONTAINER ============ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.container.narrow { max-width: 820px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.035em;
}
.logo-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid var(--line-2);
  border-radius: 9px;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-img {
  width: 56px; height: 56px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.logo-word { color: #fff; }

.nav-links {
  display: flex; gap: 4px; align-items: center;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px; color: var(--muted);
  border-radius: 8px;
  transition: color 0.25s var(--ease);
  font-weight: 450;
  letter-spacing: -0.005em;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px;
  font-size: 14px; font-weight: 500;
  border-radius: 999px;
  transition: all 0.3s var(--ease);
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn-block { width: 100%; }
.btn-arrow {
  transition: transform 0.25s var(--ease);
  display: inline-block;
  font-size: 1em;
  opacity: 0.9;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 10px 28px rgba(37, 99, 235, 0.3);
  border: 1px solid rgba(96, 165, 250, 0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.22) inset,
    0 16px 36px rgba(37, 99, 235, 0.42);
}

.btn-outline {
  background: rgba(255,255,255,0.025);
  color: var(--text);
  border: 1px solid var(--line-2);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(96, 165, 250, 0.45);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  padding: 11px 16px;
}
.btn-ghost:hover { color: #fff; }

/* ============ HERO ============ */
.hero {
  padding: 130px 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: center;
  min-height: 620px;
}

.hero-left { max-width: 680px; }

.hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  background: rgba(96, 165, 250, 0.04);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 999px;
  font-size: 12px;
  color: var(--blue-3);
  letter-spacing: -0.003em;
  margin-bottom: 32px;
  font-weight: 500;
}
.meta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.7);
}

.hero-title {
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-title em {
  color: var(--blue-3);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-sub {
  max-width: 520px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 400;
  margin-bottom: 36px;
  letter-spacing: -0.005em;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-markets {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
}
.hm-label {
  font-size: 11.5px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.hm-list { display: flex; gap: 6px; flex-wrap: wrap; }
.hm-asset {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.hm-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 6px rgba(52, 211, 153, 0.55);
}

/* ============ HERO STATS ============ */
.hero-stats-wrap {
  margin-top: 80px;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(15, 20, 35, 0.5), rgba(10, 14, 26, 0.3));
  backdrop-filter: blur(14px);
  overflow: hidden;
  position: relative;
}
.hero-stats::before {
  content: "";
  position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.4), transparent);
  pointer-events: none;
}
.stat {
  padding: 38px 34px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  min-height: 190px;
  position: relative;
  transition: background 0.4s var(--ease);
}
.stat::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 1px;
  background: var(--blue-3);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.stat:hover { background: rgba(59, 130, 246, 0.04); }
.stat:hover::before { opacity: 0.8; }
.stat:last-child { border-right: 0; }

.stat-main {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.stat-num {
  font-size: 68px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.055em;
  line-height: 0.88;
  font-variant-numeric: tabular-nums;
}
.stat-plus {
  font-size: 34px;
  color: var(--blue-3);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.025em;
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-lbl {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
}
.stat-meta {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: -0.005em;
  font-weight: 400;
  line-height: 1.4;
}
.stat-meta.mono-meta {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--blue-3);
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ============================================
   3D HERO VIZ
============================================ */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  perspective: 1600px;
}
.viz {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin-left: auto;
}
.viz-scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateY(var(--rot-y, 0deg)) rotateX(var(--rot-x, 0deg));
  transition: transform 0.8s var(--ease);
}

/* ambient glow behind the main card */
.viz-ambient {
  position: absolute;
  inset: 18%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.45), transparent 62%);
  filter: blur(70px);
  animation: ambientPulse 7s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ambientPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* perspective grid floor */
.viz-plane {
  position: absolute;
  bottom: 8%;
  left: 8%;
  right: 8%;
  height: 62%;
  background-image:
    linear-gradient(rgba(96, 165, 250, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96, 165, 250, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotateX(68deg) translateZ(-60px);
  transform-origin: center bottom;
  mask-image: radial-gradient(ellipse at center 20%, black 10%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at center 20%, black 10%, transparent 65%);
  opacity: 0.55;
  pointer-events: none;
}

/* ---- shared viz-card base ---- */
.viz-card {
  position: absolute;
  background:
    linear-gradient(180deg, rgba(18, 24, 40, 0.92), rgba(8, 11, 20, 0.96));
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 30px 60px -18px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(37, 99, 235, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
  will-change: transform;
}

/* ---- MAIN BTC CARD ---- */
.viz-card.main {
  width: 64%;
  top: 28%;
  left: 17%;
  padding: 22px 22px 20px;
  transform: rotateY(-14deg) rotateX(5deg);
  animation: floatMain 8s ease-in-out infinite;
  z-index: 10;
  border-color: rgba(96, 165, 250, 0.28);
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.7),
    0 0 80px rgba(37, 99, 235, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
@keyframes floatMain {
  0%, 100% { transform: rotateY(-14deg) rotateX(5deg) translate3d(0, 0, 0); }
  50% { transform: rotateY(-14deg) rotateX(5deg) translate3d(0, -10px, 0); }
}

.vc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.vc-asset { display: flex; align-items: center; gap: 12px; }
.vc-icon {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}
.vc-icon-btc {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  color: #fff;
}
.vc-icon-xau {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  color: #bfdbfe;
  border: 1px solid rgba(96, 165, 250, 0.4);
}
.vc-icon-xau svg { width: 18px; height: 18px; }
.vc-titles { display: flex; flex-direction: column; gap: 1px; }
.vc-label {
  font-size: 13px;
  color: var(--text);
  letter-spacing: -0.005em;
  font-weight: 500;
  line-height: 1.1;
}
.vc-sub {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0;
}
.vc-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px;
  color: var(--up);
  letter-spacing: 0.16em;
  font-weight: 600;
}
.vc-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 8px rgba(134, 239, 172, 0.7);
  animation: liveBlink 2s ease-in-out infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.vc-price-row {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 14px;
}
.vc-price {
  font-size: 34px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.vc-dec {
  color: var(--muted);
  font-weight: 400;
  font-size: 24px;
}
.vc-pill {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 9px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
}
.vc-pill.up {
  background: rgba(134, 239, 172, 0.1);
  color: var(--up);
  border: 1px solid rgba(134, 239, 172, 0.22);
}
.vc-pill.down {
  background: rgba(252, 165, 165, 0.1);
  color: var(--down);
  border: 1px solid rgba(252, 165, 165, 0.22);
}

.vc-chart {
  width: 100%;
  height: 80px;
  margin: 0 -4px;
}

.vc-footer {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.vc-footer > div { display: flex; flex-direction: column; gap: 3px; }
.vcf-k {
  font-size: 9.5px;
  color: var(--muted-2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.vcf-v {
  font-size: 12.5px;
  color: var(--text);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.005em;
}

/* ---- SATELLITE CARDS ---- */
.viz-card.satellite {
  padding: 14px 16px;
  width: auto;
  min-width: 140px;
}
.vs-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.vs-icon {
  width: 22px; height: 22px;
  display: grid; place-items: center;
  border-radius: 6px;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.22);
  color: var(--blue-3);
  font-size: 12px;
  font-weight: 600;
}
.vs-icon svg { width: 14px; height: 14px; }
.vs-price {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 8px;
}
.vs-dec { color: var(--muted); font-size: 16px; font-weight: 400; }

.viz-card.satellite.s-1 {
  top: 4%; left: -4%;
  transform: rotateY(-24deg) rotateX(10deg) translate3d(0, 0, 40px);
  animation: floatS1 9s ease-in-out infinite;
}
.viz-card.satellite.s-2 {
  top: 0%; right: -6%;
  transform: rotateY(-6deg) rotateX(12deg) translate3d(0, 0, -30px);
  animation: floatS2 10s ease-in-out infinite -2s;
}
.viz-card.satellite.s-3 {
  bottom: 4%; left: -5%;
  transform: rotateY(-20deg) rotateX(-4deg) translate3d(0, 0, -15px);
  animation: floatS3 11s ease-in-out infinite -4s;
}
.viz-card.satellite.s-4 {
  bottom: -2%; right: -3%;
  transform: rotateY(-4deg) rotateX(-2deg) translate3d(0, 0, 30px);
  animation: floatS4 8s ease-in-out infinite -6s;
}

@keyframes floatS1 {
  0%, 100% { transform: rotateY(-24deg) rotateX(10deg) translate3d(0, 0, 40px); }
  50% { transform: rotateY(-24deg) rotateX(10deg) translate3d(0, -12px, 40px); }
}
@keyframes floatS2 {
  0%, 100% { transform: rotateY(-6deg) rotateX(12deg) translate3d(0, 0, -30px); }
  50% { transform: rotateY(-6deg) rotateX(12deg) translate3d(0, -14px, -30px); }
}
@keyframes floatS3 {
  0%, 100% { transform: rotateY(-20deg) rotateX(-4deg) translate3d(0, 0, -15px); }
  50% { transform: rotateY(-20deg) rotateX(-4deg) translate3d(0, -11px, -15px); }
}
@keyframes floatS4 {
  0%, 100% { transform: rotateY(-4deg) rotateX(-2deg) translate3d(0, 0, 30px); }
  50% { transform: rotateY(-4deg) rotateX(-2deg) translate3d(0, -13px, 30px); }
}

/* ambient particles */
.viz-particles { position: absolute; inset: 0; pointer-events: none; }
.viz-particles span {
  position: absolute;
  left: var(--x); top: var(--y);
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--blue-2);
  box-shadow: 0 0 8px var(--blue-2), 0 0 14px var(--blue-2);
  opacity: 0.55;
  animation: particleFloat 7s ease-in-out infinite;
  animation-delay: var(--d);
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(-22px); opacity: 1; }
}

/* ============ TRUST ============ */
.trust {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 40px;
}
.trust-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
}
.trust-num {
  font-size: 26px; font-weight: 500;
  color: var(--blue-3);
  letter-spacing: -0.04em;
  line-height: 1;
}
.trust-lbl {
  font-size: 13px; color: var(--muted);
  letter-spacing: -0.005em;
  font-weight: 450;
}

/* ============ SECTIONS ============ */
.section { padding: 140px 0; position: relative; }
.section.alt {
  background: linear-gradient(180deg, transparent, rgba(13, 18, 32, 0.3), transparent);
}
.sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 80px;
}
.eyebrow {
  display: inline-block;
  font-size: 11.5px;
  color: var(--blue-3);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  padding-left: 22px;
}
.eyebrow::before {
  content: "";
  position: absolute; left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--blue-3);
  transform: translateY(-50%);
  opacity: 0.55;
}
.sec-title {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
}
.sec-title em {
  color: var(--blue-3);
  font-weight: 400;
}
.sec-title.sm { font-size: clamp(28px, 3.2vw, 42px); }
.sec-sub {
  margin-top: 22px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.005em;
}

/* ============ CARD BASE ============ */
.about-card, .mentor, .step, .fit-col, .price, .tailored, .why-card,
.tesi, .course, .res, .partner, .guarantee, .faq-item, .post {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  position: relative;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  margin-bottom: 120px;
}
.about-card { padding: 36px; }
.about-card h3 {
  font-size: 24px; font-weight: 500;
  color: #fff;
  margin: 22px 0 14px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.about-card p {
  color: var(--muted); margin-bottom: 12px;
  font-size: 15px; line-height: 1.65;
  letter-spacing: -0.005em;
}
.about-card p strong { color: var(--text); font-weight: 500; }

.chip {
  display: inline-block;
  font-size: 11px;
  color: var(--blue-3);
  letter-spacing: 0.18em;
  padding: 5px 11px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 100px;
  background: rgba(37, 99, 235, 0.05);
  text-transform: uppercase;
  font-weight: 600;
}
.chip.good {
  color: var(--up);
  border-color: rgba(134, 239, 172, 0.25);
  background: rgba(134, 239, 172, 0.05);
}
.chip.bad {
  color: var(--down);
  border-color: rgba(252, 165, 165, 0.25);
  background: rgba(252, 165, 165, 0.05);
}

/* ============ TEAM ============ */
.team { margin-top: 100px; }
.team-intro { text-align: center; margin-bottom: 64px; }
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.mentor {
  padding: 44px;
  display: grid; grid-template-columns: 110px 1fr; gap: 32px;
  align-items: start;
}
.mentor-avatar {
  position: relative;
  width: 110px; height: 110px;
  display: grid; place-items: center;
}
.avatar-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--blue), var(--blue-3), var(--blue));
  animation: rotate 12s linear infinite;
  padding: 1.5px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.7;
}
.mentor-avatar.alt .avatar-ring {
  background: conic-gradient(from 180deg, var(--blue-3), var(--blue), var(--blue-3));
}
.avatar-inner {
  width: 98px; height: 98px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b1220, #1a2238);
  display: grid; place-items: center;
  font-weight: 500;
  font-size: 28px;
  color: #fff;
  letter-spacing: -0.03em;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.mentor .tag {
  font-size: 11px;
  color: var(--blue-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.mentor h4 {
  font-size: 30px;
  font-weight: 500;
  margin: 10px 0 4px;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.mentor .exp { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.mentor .skills { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.mentor .skills li {
  font-size: 14px; color: var(--text-2);
  padding-left: 20px; position: relative;
  letter-spacing: -0.005em;
}
.mentor .skills li::before {
  content: "";
  position: absolute; left: 4px; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-3);
  opacity: 0.7;
}
.mentor blockquote {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.55;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  letter-spacing: -0.005em;
  font-weight: 400;
}

/* ============ STEPS ============ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 100px;
}
.step {
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.step:hover {
  border-color: rgba(96, 165, 250, 0.2);
  transform: translateY(-3px);
}
.step-num {
  font-size: 34px;
  font-weight: 500;
  color: var(--blue-3);
  letter-spacing: -0.045em;
  display: block;
  margin-bottom: 20px;
  line-height: 1;
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}
.step h4 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
  line-height: 1.25;
}
.step p {
  color: var(--muted); font-size: 14.5px; line-height: 1.6;
  letter-spacing: -0.005em;
}

/* Fit */
.fit { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.fit-col { padding: 36px; }
.fit-col ul { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.fit-col li {
  display: flex; gap: 14px; align-items: center;
  font-size: 15px; color: var(--text-2);
  letter-spacing: -0.005em;
}
.check { color: var(--up); font-weight: 600; font-size: 14px; }
.x { color: var(--down); font-weight: 600; font-size: 14px; }

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

.price {
  padding: 34px 28px;
  display: flex; flex-direction: column;
  transition: all 0.35s var(--ease);
}
.price:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.25);
}
.price.featured {
  border: 1px solid rgba(96, 165, 250, 0.35);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.015));
  box-shadow: 0 0 60px rgba(37, 99, 235, 0.1);
}
.ribbon {
  position: absolute; top: 18px; right: 18px;
  font-size: 10.5px;
  padding: 4px 10px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  color: #fff;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-head { margin-bottom: 24px; }
.price-tier {
  font-size: 19px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  display: block;
  line-height: 1.2;
}
.price-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 5px;
  display: block;
  letter-spacing: -0.005em;
}
.price-amount {
  font-size: 50px;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 32px;
  font-variant-numeric: tabular-nums;
}
.price-amount .currency {
  font-size: 26px;
  vertical-align: top;
  color: var(--muted);
  margin-right: 2px;
  font-weight: 400;
}
.price-amount .per {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 6px;
  letter-spacing: -0.005em;
}
.price-amount .free-word {
  color: var(--blue-3);
  font-weight: 500;
}
.price-amount .dec {
  font-size: 28px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.price-retail {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--muted-2);
  text-decoration: line-through;
  letter-spacing: -0.005em;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.price-save {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(147, 197, 253, 0.12);
  border: 1px solid rgba(147, 197, 253, 0.35);
  color: var(--blue-3);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  vertical-align: middle;
}
.price-foot {
  margin-top: -16px;
  margin-bottom: 24px;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: -0.005em;
  line-height: 1.5;
}
.price-foot strong { color: var(--text-2); font-weight: 500; }
.price-list {
  display: flex; flex-direction: column; gap: 13px;
  margin-bottom: 32px; flex: 1;
}
.price-list li {
  font-size: 14px;
  color: var(--text-2);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.price-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 1px;
  color: var(--blue-3);
  font-weight: 500;
  font-size: 13px;
}
.price-list li.dim { color: var(--muted-2); }
.price-list li.dim::before { content: "—"; color: var(--muted-2); }

/* ============ TAILORED ============ */
.tailored {
  padding: 48px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px;
  align-items: center;
  margin-bottom: 120px;
}
.tailored h3 {
  font-size: 28px; font-weight: 500;
  color: #fff;
  margin: 14px 0 12px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.tailored p {
  color: var(--muted); font-size: 15.5px; line-height: 1.65;
  letter-spacing: -0.005em;
}
.tailored-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.tailored-grid > div {
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,0.02);
  font-size: 14.5px; color: var(--text);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.tailored-grid .num {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: var(--blue-3);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
}

/* ============ WHY ============ */
.why-head { text-align: center; margin-bottom: 64px; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.why-card {
  padding: 36px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.why-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0), transparent);
  transition: background 0.5s var(--ease);
  pointer-events: none;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.3);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06), rgba(255, 255, 255, 0.015));
}
.why-card:hover::after {
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.7), transparent);
}

.why-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.16em;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.why-card:hover .why-num { color: var(--blue-3); }

.why-ic {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.03));
  color: var(--blue-3);
  border: 1px solid rgba(96, 165, 250, 0.22);
  margin-bottom: 28px;
  transition: all 0.35s var(--ease);
  position: relative;
}
.why-ic::before {
  content: "";
  position: absolute; inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.4), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.why-card:hover .why-ic::before { opacity: 1; }
.why-card:hover .why-ic {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(37, 99, 235, 0.05));
  color: #fff;
}
.why-ic svg {
  width: 24px; height: 24px;
  position: relative;
}

.why-card h5 {
  font-size: 19px; font-weight: 500;
  color: #fff; margin-bottom: 10px;
  letter-spacing: -0.028em;
  line-height: 1.25;
}
.why-card p {
  color: var(--muted); font-size: 14px; line-height: 1.6;
  letter-spacing: -0.005em;
}

/* ============ TESTIMONIALS ============ */
.tesi-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
}
.tesi { padding: 40px; }
.stars {
  color: var(--blue-3);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 22px;
}
.tesi blockquote {
  font-size: 21px;
  font-weight: 450;
  color: #fff;
  line-height: 1.45;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.tesi figcaption {
  font-size: 13px; color: var(--muted);
  padding-top: 22px;
  border-top: 1px solid var(--line);
  letter-spacing: -0.005em;
}
.tesi figcaption strong { color: var(--text); font-weight: 500; }

/* ============ COURSES ============ */
.courses { margin-top: 120px; }
.courses-head { text-align: center; margin-bottom: 56px; }
.courses-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.course {
  padding: 30px;
  transition: all 0.35s var(--ease);
}
.course:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.25);
}
.c-num {
  font-size: 22px;
  font-weight: 500;
  color: var(--blue-3);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 16px;
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}
.course h5 {
  font-size: 18px; font-weight: 500;
  color: #fff; margin-bottom: 8px;
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.course p {
  color: var(--muted); font-size: 14px; line-height: 1.55;
  letter-spacing: -0.005em;
}

/* ============ RESOURCES ============ */
.res-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.res {
  padding: 36px;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  display: block;
}
.res:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.res-ic {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 12px;
  color: var(--blue-3);
  margin-bottom: 24px;
}
.res-ic svg { width: 22px; height: 22px; }
.res h4 {
  font-size: 22px; font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.res p {
  color: var(--muted); font-size: 14px; margin-bottom: 22px; line-height: 1.6;
  letter-spacing: -0.005em;
}
.res-link {
  font-size: 13px;
  color: var(--blue-3);
  letter-spacing: -0.005em;
  font-weight: 500;
  transition: color 0.25s var(--ease);
}
.res:hover .res-link { color: #fff; }

/* ============ PARTNERS ============ */
.partner-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.partner {
  padding: 36px;
  display: flex; flex-direction: column;
  transition: all 0.35s var(--ease);
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
}
.partner::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at 100% 0%, rgba(96, 165, 250, 0.06), transparent 60%);
  opacity: 0; transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
.partner:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.partner:hover::after { opacity: 1; }
.partner-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 26px;
}
.partner-mark {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 12px;
  color: var(--blue-3);
}
.partner-mark svg { width: 22px; height: 22px; }
.partner-badge {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.partner-badge.perk {
  color: #34d399;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.22);
}
.partner-badge.feature {
  color: var(--blue-3);
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.22);
}
.partner-name {
  font-size: 26px; font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.partner-desc {
  color: var(--muted); font-size: 14.5px;
  line-height: 1.6; letter-spacing: -0.005em;
  margin-bottom: 28px;
  flex: 1;
}
.partner-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.partner-domain {
  font-family: 'Geist Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0;
}
.partner-link {
  font-size: 13px;
  color: var(--blue-3);
  letter-spacing: -0.005em;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.25s var(--ease);
}
.partner-link .btn-arrow { transition: transform 0.3s var(--ease); }
.partner:hover .partner-link { color: #fff; }
.partner:hover .partner-link .btn-arrow { transform: translateX(3px); }

/* ============ GUARANTEE ============ */
.guarantee-section { padding: 40px 0 80px; }
.guarantee {
  padding: 44px 52px;
  display: flex; align-items: center; gap: 40px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
  border-color: rgba(52, 211, 153, 0.22);
}
.g-badge {
  width: 84px; height: 84px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(52, 211, 153, 0.28);
  color: var(--green-2);
}
.g-badge svg { width: 48px; height: 48px; }
.guarantee h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  color: #fff;
  margin: 12px 0 10px;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.guarantee p {
  color: var(--muted); font-size: 15px; line-height: 1.6;
  letter-spacing: -0.005em;
}

/* ============ FAQ ============ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  padding: 26px 30px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.faq-item:hover { border-color: rgba(96, 165, 250, 0.2); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  list-style: none;
  letter-spacing: -0.025em;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.plus {
  position: relative; width: 16px; height: 16px; flex-shrink: 0;
}
.plus::before, .plus::after {
  content: ""; position: absolute;
  background: var(--blue-3);
  transition: all 0.3s var(--ease);
}
.plus::before { left: 0; top: 7.5px; width: 16px; height: 1px; }
.plus::after { left: 7.5px; top: 0; width: 1px; height: 16px; }
.faq-item[open] .plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.65;
  letter-spacing: -0.005em;
}

/* ============ BLOG ============ */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.post {
  padding: 34px;
  transition: all 0.35s var(--ease);
}
.post:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.25);
}
.post-tag {
  font-size: 11px;
  color: var(--blue-3);
  letter-spacing: 0.18em;
  padding: 4px 11px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 22px;
  text-transform: uppercase;
  font-weight: 600;
}
.post h4 {
  font-size: 22px; font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.post p {
  color: var(--muted); font-size: 14.5px; margin-bottom: 22px; line-height: 1.6;
  letter-spacing: -0.005em;
}
.post-meta {
  font-size: 12px; color: var(--muted-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============ CONTACT ============ */
.contact-section { padding: 100px 0 140px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-pitch { padding: 8px 4px; }
.contact-pitch .sec-title { margin-top: 14px; }
.contact-pitch .sec-sub { margin-top: 16px; max-width: 520px; }
.contact-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 32px;
}
.contact-notes {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-2);
  letter-spacing: -0.005em;
}
.contact-notes li {
  display: flex; align-items: center; gap: 12px;
}
.cn-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green-2);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.55);
  flex-shrink: 0;
}

.contact-cards {
  display: flex; flex-direction: column; gap: 12px;
}
.info-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  color: var(--text);
  transition: all 0.3s var(--ease);
}
a.info-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.02));
  transform: translateY(-2px);
}
a.info-card:hover .info-arrow { transform: translateX(4px); color: var(--blue-3); }
.info-ic {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--blue-3);
  background: rgba(37, 99, 235, 0.06);
}
.info-ic svg { width: 20px; height: 20px; }
.info-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.info-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.info-value {
  color: #fff;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.info-sub {
  color: var(--muted);
  font-size: 13.5px;
  letter-spacing: -0.005em;
}
.info-arrow {
  color: var(--muted-2);
  font-size: 18px;
  transition: all 0.25s var(--ease);
}
.info-card-static { cursor: default; }
.info-socials .info-body { gap: 10px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 9px;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.social-row a:hover {
  color: var(--blue-3);
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(37, 99, 235, 0.06);
  transform: translateY(-2px);
}
.social-row svg { width: 16px; height: 16px; }

/* ============ FOOTER ============ */
.footer {
  padding: 100px 0 40px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(8, 11, 20, 0.5));
}
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  margin-bottom: 60px;
}
.footer-brand p {
  color: var(--muted); font-size: 14.5px;
  max-width: 300px;
  line-height: 1.6;
  letter-spacing: -0.005em;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.footer-cols h6 {
  font-size: 11.5px;
  color: var(--blue-3);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-cols a,
.footer-cols span {
  display: block;
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 12px;
  transition: color 0.25s var(--ease);
  letter-spacing: -0.005em;
}
.footer-cols a:hover { color: var(--text); }
.footer-cols .addr { color: var(--muted); line-height: 1.6; }

.risk {
  padding: 32px 36px;
  margin-bottom: 36px;
  background: rgba(252, 165, 165, 0.025);
  border: 1px solid rgba(252, 165, 165, 0.12);
  border-radius: var(--radius);
}
.risk h6 {
  font-size: 11.5px;
  color: var(--down);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.risk p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: -0.003em;
}

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted-2);
  letter-spacing: -0.005em;
}
.footer-credit {
  font-size: 13px;
  color: var(--muted);
}

/* ============ REVEAL / SCROLL ANIMATIONS ============ */
/* The hero elements need to be hidden until GSAP boots so they don't flash */
html.gsap-ready .hero-meta,
html.gsap-ready .hero-title,
html.gsap-ready .hero-sub,
html.gsap-ready .hero-cta > *,
html.gsap-ready .hero-markets,
html.gsap-ready .hero-stats,
html.gsap-ready .viz { opacity: 0; }

/* magnetic primary buttons — enables translate without layout shift */
.btn-primary { will-change: transform; }

/* featured pricing card — 3D tilt context */
.price.featured { transform-style: preserve-3d; perspective: 1000px; }
.price.featured > * { transform: translateZ(0); }

/* ============ LEGAL PAGES ============ */
.legal-hero {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
}
.legal-hero .sec-title { margin-bottom: 14px; }
.legal-meta {
  font-size: 13px; color: var(--muted);
  letter-spacing: 0.04em; text-transform: uppercase;
  font-weight: 500;
}
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0 80px;
  color: var(--muted);
}
.legal h2 {
  font-size: 24px; font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 56px 0 16px;
  line-height: 1.25;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-size: 17px; font-weight: 500;
  color: #fff;
  margin: 28px 0 10px;
  letter-spacing: -0.01em;
}
.legal p {
  font-size: 15.5px;
  line-height: 1.75;
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}
.legal ul {
  margin: 0 0 18px;
  padding-left: 20px;
}
.legal li {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 8px;
}
.legal a {
  color: var(--blue-3);
  text-decoration: none;
  border-bottom: 1px solid rgba(96, 165, 250, 0.3);
  transition: border-color 0.2s var(--ease);
}
.legal a:hover { border-color: var(--blue-3); }
.legal strong { color: #fff; font-weight: 500; }
.legal .lead {
  font-size: 17px;
  color: var(--text);
  border-left: 2px solid rgba(96, 165, 250, 0.4);
  padding-left: 18px;
  margin: 0 0 32px;
}

@media (max-width: 640px) {
  .legal-hero { padding: 120px 0 40px; }
  .legal { padding: 0 0 56px; }
  .legal h2 { font-size: 21px; margin: 44px 0 14px; }
  .legal p, .legal li { font-size: 15px; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .hero-wrap { gap: 40px; }
  .viz { max-width: 500px; }
}

@media (max-width: 1100px) {
  .pricing.four { grid-template-columns: repeat(2, 1fr); }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .res-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: flex; flex-direction: column; gap: 4px;
    width: 42px; height: 42px; padding: 12px 11px;
    border: 1px solid var(--line-2); border-radius: 10px;
    background: rgba(255,255,255,0.02);
  }
  .nav-toggle span { display: block; height: 1.5px; background: var(--text); }

  .section { padding: 100px 0; }
  .hero { padding: 120px 24px 50px; }
  .hero-wrap { grid-template-columns: 1fr; gap: 60px; min-height: auto; }
  .hero-left { max-width: 640px; margin: 0 auto; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-markets { justify-content: center; }
  .hero-right { justify-content: center; }
  .viz { max-width: 520px; margin: 0 auto; }

  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }

  .about-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .fit { grid-template-columns: 1fr; }
  .pricing, .pricing.four { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .tesi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .tailored { grid-template-columns: 1fr; padding: 36px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* Tablet portrait + large mobile — collapse remaining 2-col grids and
   make sure the pinned-process section can't half-trigger. */
@media (max-width: 900px) {
  .container { padding: 0 28px; }
  .section { padding: 90px 0; }

  .steps { grid-template-columns: 1fr; gap: 16px; margin-bottom: 80px; }
  .step { padding: 26px 24px; }

  .why-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .pricing.four { grid-template-columns: 1fr; }

  .sec-head { margin: 0 auto 56px; }
  .sec-title { font-size: clamp(30px, 6.4vw, 46px); }
  .hero-title { font-size: clamp(38px, 7.2vw, 56px); }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .section { padding: 72px 0; }
  .hero { padding: 110px 22px 36px; }
  .hero-title { font-size: 38px; letter-spacing: -0.04em; line-height: 1.05; }
  .hero-sub { font-size: 15.5px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 20px 14px; }
  .stat-num { font-size: 34px; }
  .stat-lbl { font-size: 11.5px; }
  .hero-right { display: none; }

  .steps { grid-template-columns: 1fr; gap: 14px; margin-bottom: 64px; }
  .step { padding: 24px 22px; }
  .step-num { font-size: 30px; margin-bottom: 14px; }
  .step h4 { font-size: 18px; }
  .step p { font-size: 14px; }

  .mentor { grid-template-columns: 1fr; text-align: center; padding: 28px 22px; }
  .mentor-avatar { margin: 0 auto; }
  .mentor .skills li { text-align: left; }
  .guarantee { flex-direction: column; text-align: center; padding: 28px 22px; gap: 14px; }
  .why-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .info-card { grid-template-columns: 44px 1fr; padding: 18px 20px; gap: 16px; }
  .info-card .info-arrow { display: none; }
  .tailored-grid { grid-template-columns: 1fr; }
  .tailored { padding: 26px 22px; }

  .fit-col { padding: 26px 22px; }
  .price { padding: 28px 22px; }
  .about-card { padding: 26px 22px; }
  .why-card { padding: 24px 22px; }
  .tesi { padding: 24px 22px; }
  .course { padding: 24px 22px; }
  .res { padding: 24px 22px; }

  .sec-head { margin: 0 auto 44px; }
  .sec-title { font-size: clamp(26px, 8vw, 38px); line-height: 1.08; }
  .sec-title.sm { font-size: clamp(22px, 6.4vw, 30px); }
  .sec-sub { font-size: 15px; margin-top: 16px; }
  .eyebrow { font-size: 11px; margin-bottom: 18px; }

  .nav-inner { padding: 0 22px; gap: 14px; }
  .logo-img { width: 44px; height: 44px; border-radius: 10px; }
  .logo { font-size: 18px; }
  .nav-cta .btn { padding: 9px 14px; font-size: 13px; }
  .nav-cta .btn-arrow { display: none; }

  .btn-lg { padding: 14px 22px; font-size: 14.5px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .contact-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .logo-word { display: none; }
}

@media (max-width: 380px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 34px; }
  .sec-title { font-size: clamp(24px, 8vw, 32px); }
  .step { padding: 22px 18px; }
  .price, .fit-col, .why-card, .tesi, .course, .res, .about-card { padding: 22px 18px; }
}
