/* ============================================================
   Click Shift — styles
   ============================================================ */
:root {
  --bg: #07090f;
  --bg-alt: #0b0e18;
  --surface: #10141f;
  --surface-2: #161b29;
  --border: rgba(140, 160, 255, 0.12);
  --text: #e8ebf4;
  --text-dim: #9aa3b8;
  --accent: #00b0f0;
  --accent-2: #ec2b8b;
  --accent-3: #ffd400;
  --gradient: linear-gradient(92deg, #00b0f0 0%, #ec2b8b 100%);
  --gradient-hot: linear-gradient(92deg, #ffd400 0%, #ec2b8b 50%, #00b0f0 100%);
  --font-display: "Sora", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
  --radius: 18px;
  --max: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(0, 176, 240, 0.4); }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }
img { max-width: 100%; height: auto; }
em { font-style: normal; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
strong { color: var(--text); font-weight: 600; }
a { color: inherit; }

/* ---------- a11y + chrome ---------- */
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 200;
  background: var(--surface-2); color: var(--text); padding: 10px 18px;
  border-radius: 10px; border: 1px solid var(--border); text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 12px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 150;
  background: var(--gradient-hot); transform-origin: 0 50%; transform: scaleX(0);
  pointer-events: none;
}

/* ---------- ambient background ---------- */
.bg-grid {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(120, 140, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 140, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}
.bg-glow {
  position: fixed; z-index: -3; pointer-events: none; border-radius: 50%;
  filter: blur(140px); opacity: 0.35;
}
.bg-glow--1 { width: 640px; height: 640px; top: -220px; left: -160px; background: #0b4a8f; }
.bg-glow--2 { width: 520px; height: 520px; top: 30%; right: -200px; background: #6b0d4e; animation: drift 18s ease-in-out infinite alternate; }
@keyframes drift { to { transform: translateY(160px); } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 9, 15, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 18px 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.logo-glyph {
  display: inline-flex; align-items: baseline;
  font-family: var(--font-mono); font-weight: 600; font-size: 21px;
  letter-spacing: -0.18em; line-height: 1; user-select: none;
  filter: drop-shadow(0 0 10px rgba(0, 176, 240, 0.35));
  padding-right: 0.18em;
}
.logo-glyph i {
  font-style: normal; display: inline-block;
  transform: var(--base, none); transform-origin: 50% 60%;
  animation: glyph-in 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
  animation-delay: calc(var(--n, 0) * 100ms + 120ms);
}
.logo-glyph i:nth-child(1) { color: #00b0f0; --n: 2; --fx: -12px; --fy: 0px; }
.logo-glyph i:nth-child(2) { color: #ec2b8b; --n: 1; --fx: -6px;  --fy: 7px; }
.logo-glyph i:nth-child(3) { color: #ffd400; --n: 0; --fx: 0px;   --fy: -4px; --base: translateY(-0.3em); }
.logo-glyph i:nth-child(4) { color: #00c46a; --n: 1; --fx: 6px;   --fy: 7px; }
.logo-glyph i:nth-child(5) { color: #a855f7; --n: 2; --fx: 12px;  --fy: 0px; }
@keyframes glyph-in {
  from { opacity: 0; transform: translate(var(--fx, 0), var(--fy, 0)) scale(0.3); }
  to   { opacity: 1; transform: var(--base, none); }
}
/* hover: one synchronized pulse rippling from the dot outward */
.logo-glyph:hover i, .nav__logo:hover .logo-glyph i {
  animation-duration: 1.15s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-delay: calc(var(--n, 0) * 95ms);
}
.logo-glyph:hover i:nth-child(3), .nav__logo:hover .logo-glyph i:nth-child(3) { animation-name: glyph-dot; }
.logo-glyph:hover i:nth-child(2), .nav__logo:hover .logo-glyph i:nth-child(2) { animation-name: glyph-tri-l; }
.logo-glyph:hover i:nth-child(4), .nav__logo:hover .logo-glyph i:nth-child(4) { animation-name: glyph-tri-r; }
.logo-glyph:hover i:nth-child(1), .nav__logo:hover .logo-glyph i:nth-child(1) { animation-name: glyph-paren-l; }
.logo-glyph:hover i:nth-child(5), .nav__logo:hover .logo-glyph i:nth-child(5) { animation-name: glyph-paren-r; }
@keyframes glyph-dot {
  0%, 100% { transform: translateY(-0.3em) scale(1); text-shadow: 0 0 0 rgba(255, 212, 0, 0); }
  35% { transform: translateY(-0.44em) scale(1.6); text-shadow: 0 0 14px rgba(255, 212, 0, 0.95); }
}
@keyframes glyph-tri-l {
  0%, 100% { transform: none; }
  40% { transform: translate(-1px, -2.5px) rotate(-10deg); }
}
@keyframes glyph-tri-r {
  0%, 100% { transform: none; }
  40% { transform: translate(1px, -2.5px) rotate(10deg); }
}
@keyframes glyph-paren-l {
  0%, 100% { transform: none; }
  45% { transform: translateX(-3px) scaleY(1.16); }
}
@keyframes glyph-paren-r {
  0%, 100% { transform: none; }
  45% { transform: translateX(3px) scaleY(1.16); }
}
.logo-glyph--footer { margin-right: 10px; }
.nav__logo-text { font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -0.5px; }
.nav__logo-text em { font-weight: 800; }
.nav__links { display: flex; gap: 28px; }
.nav__links a {
  text-decoration: none; font-size: 14.5px; font-weight: 500; color: var(--text-dim);
  transition: color 0.2s; position: relative; padding-bottom: 4px;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--gradient); border-radius: 2px;
  transform: scaleX(0); transform-origin: 0 50%; transition: transform 0.25s;
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: var(--text); }

/* ---------- offerings dropdown ---------- */
.nav__drop { position: relative; }
.nav__drop::before { content: ""; position: absolute; top: 100%; left: -12px; right: -12px; height: 16px; }
.nav__drop > a .caret { font-style: normal; font-size: 9px; opacity: 0.7; margin-left: 4px; }
.nav__drop-panel {
  position: absolute; top: calc(100% + 14px); left: -14px; min-width: 280px; z-index: 120;
  background: rgba(11, 14, 24, 0.97); backdrop-filter: blur(14px);
  border: 1px solid var(--border); border-radius: 14px; padding: 10px;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}
.nav__drop:hover .nav__drop-panel, .nav__drop:focus-within .nav__drop-panel, .nav__drop.open .nav__drop-panel {
  opacity: 1; visibility: visible; transform: none;
}
.nav__drop-panel a { display: flex; gap: 12px; align-items: flex-start; padding: 10px 12px; border-radius: 10px; transition: background 0.15s; }
.nav__drop-panel a::after { display: none; }
.nav__drop-panel a:hover { background: rgba(140, 160, 255, 0.08); }
.nav__drop-panel a.nav__drop-all { border-top: 1px solid var(--border); border-radius: 0 0 10px 10px; margin-top: 4px; padding-top: 12px; font-size: 13px; color: var(--text-dim); }
.drop-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--c); margin-top: 5px; flex: 0 0 auto; box-shadow: 0 0 8px var(--c); }
.nav__drop-panel b { display: block; font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--text); }
.nav__drop-panel small { display: block; font-size: 12.5px; color: var(--text-dim); line-height: 1.45; }
.nav__mobile-sub { padding-left: 18px; font-size: 15px !important; opacity: 0.85; }
.nav__burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: 0.3s; }
.nav__mobile { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 999px; text-decoration: none;
  border: 1px solid var(--border); color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn--small { padding: 9px 20px; font-size: 13.5px; }
.btn--big { padding: 17px 36px; font-size: 17px; }
.btn--primary {
  background: var(--gradient); border: 0; color: #060a14;
  box-shadow: 0 4px 24px rgba(236, 43, 139, 0.28);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 34px rgba(0, 176, 240, 0.45); }
.btn--ghost:hover { border-color: rgba(140, 160, 255, 0.4); transform: translateY(-2px); }
.btn__arrow { transition: transform 0.2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px;
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__content { position: relative; z-index: 1; max-width: 900px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 13px; color: var(--text-dim);
  border: 1px solid var(--border); border-radius: 999px; padding: 7px 16px;
  background: rgba(16, 20, 31, 0.6); backdrop-filter: blur(6px);
  margin-bottom: 30px;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent-3);
  box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.6); animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 212, 0, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(255, 212, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 212, 0, 0); }
}
.hero__title {
  font-size: clamp(44px, 8vw, 92px); font-weight: 800; letter-spacing: -2.5px;
}
.hero__title span { display: block; }
.hero__title-accent {
  background: var(--gradient-hot); background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradient-slide 7s ease-in-out infinite alternate;
}
@keyframes gradient-slide { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }
.cursor-blink { animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero__sub {
  margin: 28px auto 0; max-width: 620px;
  font-size: clamp(16px, 2vw, 19px); color: var(--text-dim);
}
.hero__cta { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 1.5px solid var(--border); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; top: 7px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--accent-3); border-radius: 3px; animation: scrollhint 1.8s ease-in-out infinite;
}
.hero__darts {
  position: absolute; z-index: 0; pointer-events: none; opacity: 0.85;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  animation: floaty 7s ease-in-out infinite alternate;
}
.hero__darts--right { width: clamp(180px, 24vw, 340px); right: 4%; top: 16%; }
.hero__darts--left { width: clamp(130px, 17vw, 240px); left: 3%; bottom: 14%; animation-delay: -3.5s; }
@keyframes floaty { from { transform: translateY(-14px); } to { transform: translateY(14px); } }
@keyframes scrollhint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- ticker ---------- */
.ticker {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(16, 20, 31, 0.5); padding: 16px 0; white-space: nowrap;
}
.ticker__track { display: inline-flex; align-items: center; gap: 34px; animation: ticker 30s linear infinite; }
.ticker__track span { font-family: var(--font-mono); font-size: 14px; color: var(--text-dim); letter-spacing: 1.5px; text-transform: uppercase; }
.ticker__track i { color: var(--accent); font-style: normal; font-size: 9px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- stats ---------- */
.stats { padding: 90px 24px; }
.stats__grid {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; position: relative; overflow: hidden;
}
.stat::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient); opacity: 0.7;
}
.stat__num {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3.4vw, 42px);
  letter-spacing: -1px;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat__label { margin-top: 8px; font-size: 14.5px; color: var(--text-dim); }

/* ---------- sections ---------- */
.section { padding: 110px 24px; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section__inner { max-width: var(--max); margin: 0 auto; }
.section__inner--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.section__eyebrow {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-2); margin-bottom: 18px;
}
.section h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -1.4px; margin-bottom: 22px; }
.section__title { text-align: center; margin-bottom: 26px; }
.section__inner > .section__eyebrow { text-align: center; }
.section__copy p { color: var(--text-dim); margin-bottom: 18px; }
.section__copy .btn { margin-top: 10px; }

/* ---------- checklist ---------- */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 18px 22px; font-weight: 500; font-size: 15.5px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.checklist li:hover {
  transform: translateX(8px); border-color: rgba(0, 176, 240, 0.4);
  box-shadow: 0 6px 24px rgba(0, 176, 240, 0.08);
}
.checklist__icon {
  flex: 0 0 38px; height: 38px; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 16px;
  background: linear-gradient(135deg, rgba(0, 176, 240, 0.18), rgba(236, 43, 139, 0.18));
  border: 1px solid var(--border); border-radius: 10px; color: var(--accent);
}

/* ---------- cards ---------- */
.cards {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.card {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 30px; overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(0, 176, 240, 0.1), transparent 65%);
  opacity: 0; transition: opacity 0.3s;
}
.card:hover::after { opacity: 1; }
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--gradient-hot); opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity 0.3s; pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45); }
.card:hover::before { opacity: 1; }
.card__icon { font-size: 30px; margin-bottom: 18px; }
.card h3 { font-size: 20px; letter-spacing: -0.4px; margin-bottom: 12px; }
.card p { font-size: 15px; color: var(--text-dim); }
.card__tag {
  display: inline-block; margin-top: 18px; font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--accent);
  border: 1px solid rgba(0, 176, 240, 0.3); border-radius: 999px; padding: 5px 12px;
}
.card--cta {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 6px;
  background: linear-gradient(135deg, rgba(0, 176, 240, 0.14), rgba(236, 43, 139, 0.1));
}
.card--cta .btn { margin-top: 16px; }

/* ---------- funnel ---------- */
.funnel { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.funnel__stage {
  width: var(--w); min-width: 150px; text-align: center;
  background: linear-gradient(92deg, rgba(0, 176, 240, 0.22), rgba(236, 43, 139, 0.22));
  border: 1px solid var(--border); border-radius: 12px; padding: 15px 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 14.5px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.funnel__stage:hover { transform: scale(1.04); box-shadow: 0 6px 24px rgba(0, 176, 240, 0.25); }
.funnel__stage--gold {
  background: var(--gradient); color: #060a14;
  box-shadow: 0 8px 32px rgba(236, 43, 139, 0.35);
}

/* ---------- section illustration + trio ---------- */
.section__illo {
  display: block; max-width: 340px; width: 100%; margin: 36px auto 0;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
  animation: floaty 8s ease-in-out infinite alternate;
}
.trio { margin-top: 90px; }
.trio__caption {
  text-align: center; font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--accent-3); margin-bottom: 34px;
}
.trio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.trio__item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px; text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.trio__item:hover { transform: translateY(-6px); border-color: rgba(236, 43, 139, 0.35); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4); }
.trio__item img { width: 100%; max-width: 220px; height: 96px; object-fit: contain; margin-bottom: 20px; }
.trio__item h3 { font-size: 19px; margin-bottom: 10px; }
.trio__item p { font-size: 14.5px; color: var(--text-dim); }

/* ---------- video ---------- */
.section__inner--narrow { max-width: 880px; }
.section__lede { text-align: center; color: var(--text-dim); margin-bottom: 40px; }
.video-frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: #0a0d15;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- terminal ---------- */
.terminal {
  background: #0a0d15; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  font-family: var(--font-mono); font-size: 14px;
}
.terminal__bar {
  display: flex; align-items: center; gap: 7px; padding: 13px 16px;
  background: var(--surface-2); border-bottom: 1px solid var(--border);
}
.terminal__bar i { width: 11px; height: 11px; border-radius: 50%; background: #3a4157; }
.terminal__bar i:nth-child(1) { background: #ff5f57; }
.terminal__bar i:nth-child(2) { background: #febc2e; }
.terminal__bar i:nth-child(3) { background: #28c840; }
.terminal__bar span { margin-left: 10px; color: var(--text-dim); font-size: 12px; }
.terminal__body { padding: 22px 24px; display: flex; flex-direction: column; gap: 9px; }
.t-prompt { color: var(--accent-2); }
.t-dim { color: var(--text-dim); }
.t-ok { color: #28c840; }

/* ---------- posts ---------- */
.posts { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.post {
  display: block; text-decoration: none; position: relative;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 32px; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.post:hover { transform: translateY(-5px); border-color: rgba(79, 124, 255, 0.4); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4); }
.post__num {
  font-family: var(--font-mono); font-size: 13px; color: var(--accent);
  display: block; margin-bottom: 14px;
}
.post h3 { font-size: 20px; letter-spacing: -0.4px; margin-bottom: 12px; }
.post p { font-size: 15px; color: var(--text-dim); }
.post__more {
  display: inline-block; margin-top: 18px; font-weight: 600; font-size: 14px;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.post--featured { grid-column: 1 / -1; background: linear-gradient(135deg, rgba(0, 176, 240, 0.1), rgba(236, 43, 139, 0.08)); }
.post__cat {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.resource-band { margin-top: 64px; }
.resource-band h3 {
  font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-2); font-family: var(--font-mono); font-weight: 400; margin-bottom: 24px;
}
.posts__all { text-align: center; margin-top: 40px; }
.posts__all a {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--text-dim); text-decoration: none; transition: color 0.2s;
}
.posts__all a:hover { color: var(--text); }

/* ---------- final cta ---------- */
.cta-final {
  padding: 130px 24px; text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-final::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 900px; height: 500px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(0, 176, 240, 0.16), transparent);
  pointer-events: none;
}
.cta-final__inner { position: relative; }
.cta-final h2 { font-size: clamp(38px, 6vw, 68px); font-weight: 800; letter-spacing: -2px; margin-bottom: 18px; }
.cta-final p { color: var(--text-dim); font-size: 18px; margin-bottom: 36px; }
.cta-final__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-alt); padding: 64px 24px 28px; }
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1.2fr 1fr; gap: 48px;
}
.footer__brand p { margin-top: 12px; color: var(--text-dim); font-size: 14.5px; }
.footer__col h4 { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--accent-2); margin-bottom: 14px; }
.footer__col p { color: var(--text-dim); font-size: 14.5px; }
.footer__social { display: flex; flex-wrap: wrap; gap: 14px; }
.footer__social a { color: var(--text-dim); text-decoration: none; font-size: 14.5px; transition: color 0.2s; }
.footer__social a:hover { color: var(--text); }
.footer__plain { color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); }
.footer__plain:hover { border-bottom-color: var(--text-dim); }
.footer__legal {
  max-width: var(--max); margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border); color: var(--text-dim); font-size: 13px; text-align: center;
}

/* ---------- offerings (homepage grid) ---------- */
.offer-card { display: block; text-decoration: none; }
.offer-card h3 { display: flex; align-items: center; gap: 10px; }
.offer-card h3 span { color: var(--page-accent); }
.offer-card .card__tag { color: var(--page-accent); border-color: color-mix(in srgb, var(--page-accent) 35%, transparent); }
.offer-card__go {
  display: inline-block; margin-top: 16px; font-family: var(--font-display);
  font-weight: 600; font-size: 14px; color: var(--page-accent);
}

/* ---------- offering pages ---------- */
.hero--sub { min-height: 72svh; padding-top: 150px; }
.hero--sub .hero__title { font-size: clamp(38px, 6.5vw, 74px); letter-spacing: -2px; }
.offering .hero__title-accent {
  background: linear-gradient(92deg, var(--page-accent), var(--page-accent-2, var(--page-accent)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: none;
}
.offering .hero__eyebrow { color: var(--text-dim); }
.offering .pulse-dot { background: var(--page-accent); box-shadow: none; animation: none; }
.offering .section__eyebrow { color: var(--page-accent); }
.offering .card__tag { color: var(--page-accent); border-color: color-mix(in srgb, var(--page-accent) 35%, transparent); }
.offering .checklist__icon { color: var(--page-accent); }
.offering .stat__num {
  background: linear-gradient(92deg, var(--page-accent), var(--page-accent-2, var(--page-accent)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.offering .stat::before { background: linear-gradient(92deg, var(--page-accent), var(--page-accent-2, var(--page-accent))); }
.back-link {
  display: inline-block; margin-bottom: 26px; text-decoration: none;
  font-family: var(--font-mono); font-size: 13px; color: var(--text-dim);
  transition: color 0.2s;
}
.back-link:hover { color: var(--text); }
.offering .btn--primary {
  background: linear-gradient(92deg, var(--page-accent), var(--page-accent-2, var(--page-accent)));
  box-shadow: 0 4px 24px color-mix(in srgb, var(--page-accent) 28%, transparent);
}
.offering .btn--primary:hover { box-shadow: 0 8px 34px color-mix(in srgb, var(--page-accent-2, var(--page-accent)) 45%, transparent); }

/* ---------- articles ---------- */
.article-hero { padding: 170px 24px 20px; }
.article-hero__inner { max-width: 800px; margin: 0 auto; }
.article-hero h1 { font-size: clamp(30px, 4.6vw, 48px); font-weight: 800; letter-spacing: -1.2px; margin-top: 10px; }
.article-hero .back-link { margin-bottom: 30px; }
.article-body { max-width: 800px; margin: 0 auto; padding: 26px 24px 90px; font-size: 17.5px; color: var(--text-dim); }
.article-body p { margin-bottom: 20px; line-height: 1.75; }
.article-body h1, .article-body h2, .article-body h3, .article-body h4 { color: var(--text); margin: 40px 0 14px; letter-spacing: -0.6px; }
.article-body h1 { font-size: 28px; }
.article-body h2 { font-size: 26px; }
.article-body h3 { font-size: 21px; }
.article-body h4 { font-size: 18px; }
.article-body ul, .article-body ol { margin: 0 0 22px 26px; line-height: 1.7; }
.article-body li { margin-bottom: 9px; }
.article-body li::marker { color: var(--accent); }
.article-body a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(0, 176, 240, 0.35); transition: border-color 0.2s; }
.article-body a:hover { border-bottom-color: var(--accent); }
.article-body strong, .article-body b { color: var(--text); }
.article-body em { background: none; color: inherit; font-style: italic; }
.article-body blockquote { border-left: 3px solid var(--accent); background: var(--surface); border-radius: 0 12px 12px 0; padding: 16px 22px; margin: 26px 0; }
.article-body blockquote p:last-child { margin-bottom: 0; }
.article-body img { border-radius: 12px; margin: 26px 0; display: block; }
.article-body hr { border: 0; border-top: 1px solid var(--border); margin: 36px 0; }

/* ---------- particle images ---------- */
.particle-wrap { position: relative; display: block; }
.particle-canvas { position: absolute; pointer-events: none; }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease var(--d, 0s), transform 0.7s ease var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track, .hero__darts, .section__illo, .hero__title-accent, .pulse-dot, .hero__scroll span, .logo-glyph i { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .trio__grid { grid-template-columns: 1fr; }
  .hero__darts { opacity: 0.35; }
  .section__inner--split { grid-template-columns: 1fr; gap: 48px; }
  .section__inner--reverse .funnel { order: 2; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 680px) {
  .nav__links, .nav .btn--small { display: none; }
  .nav__burger { display: block; }
  .nav__mobile.open {
    display: flex; flex-direction: column; gap: 20px;
    padding: 24px; background: rgba(7, 9, 15, 0.97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }
  .nav__mobile a { text-decoration: none; font-weight: 600; font-size: 17px; }
  .cards { grid-template-columns: 1fr; }
  .posts { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .section { padding: 80px 20px; }
}
