/* ==========================================
   HARRY CASTANER — v4 PREMIUM
   Deep Navy · Electric Blue · Full FX
   ========================================== */

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

:root {
  --bg:        #05070e;
  --bg-2:      #080b14;
  --bg-3:      #0a0f1c;
  --surface:   #0f1624;
  --surface2:  #141d30;
  --border:    #1a2640;
  --border2:   #243452;
  --dim:       #3d5478;
  --mid:       #7a9cc4;
  --light:     #b8cde8;
  --white:     #ecf2fc;

  --blue:      #4f9eff;
  --blue-lt:   #7ab8ff;
  --blue-dk:   #2a70d4;
  --blue-glow: rgba(79,158,255,0.18);
  --blue-rgb:  79,158,255;

  --cyan:      #00e5ff;
  --cyan-rgb:  0,229,255;

  --font-display: 'Syne', system-ui, sans-serif;
  --font-sans:    'Inter', system-ui, sans-serif;
  --font-mono:    'Space Mono', monospace;

  --max-w: 1200px;
  --nav-h: 72px;
  --r: 10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* All sections sit above the fixed canvas but pass through visually */
section, .ticker-wrap, footer {
  position: relative;
  z-index: 1;
}

/* Semi-transparent overlays so background canvas glows through each section */
section::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: calc(var(--section-glow, 0) * 1);
  transition: opacity 1.2s ease;
}
#hero::before       { background: transparent; }
#ventures::before   { background: radial-gradient(ellipse 70% 60% at 50% 0%,   rgba(var(--blue-rgb),0.06) 0%, transparent 70%); }
#results::before    { background: radial-gradient(ellipse 80% 70% at 50% 50%,  rgba(var(--blue-rgb),0.07) 0%, transparent 70%); }
#process::before    { background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(var(--blue-rgb),0.05) 0%, transparent 60%); }
#services::before   { background: transparent; }
#about::before      { background: radial-gradient(ellipse 50% 70% at 0% 50%,   rgba(var(--blue-rgb),0.05) 0%, transparent 60%); }
#contact::before    { background: radial-gradient(ellipse 80% 60% at 50% 50%,  rgba(var(--blue-rgb),0.07) 0%, transparent 65%); }

@media (pointer: coarse) { body { cursor: auto; } }

::selection { background: var(--blue); color: var(--bg); }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-dk); border-radius: 2px; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 56px; }
section { padding: 130px 0; position: relative; overflow: hidden; }
.section-dark { background: rgba(8,11,20,0.75); backdrop-filter: blur(0px); }

/* ========== SCROLL PROGRESS ========== */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 2000;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  width: 0%; transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(var(--blue-rgb),0.8);
}

/* ========== CUSTOM CURSOR ========== */
#cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue); pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(var(--blue-rgb),0.5);
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.12s cubic-bezier(0.16,1,0.3,1), width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
}
body.cursor-hover #cursor-dot { width: 12px; height: 12px; background: var(--cyan); }
body.cursor-hover #cursor-ring { width: 52px; height: 52px; border-color: rgba(var(--cyan-rgb),0.6); }

@media (pointer: coarse) { #cursor-dot, #cursor-ring { display: none; } }

/* ========== BACKGROUND MESH ========== */
#bg-mesh {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: 1;
  width: 100vw; height: 100vh;
}

/* ========== SECTION LABELS / TITLES ========== */
.sec-eyebrow {
  display: inline-block;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.28em; color: var(--blue);
  text-transform: uppercase; margin-bottom: 14px;
}
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 800; line-height: 1.06;
  color: var(--white); margin-bottom: 60px;
  letter-spacing: -0.02em;
}
.sec-title em { font-style: normal; color: var(--blue); }
.sec-sub { font-size: 17px; color: var(--mid); margin-top: -44px; margin-bottom: 52px; font-style: italic; }

/* ========== NAV ========== */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--nav-h);
}
#nav.scrolled {
  background: rgba(5,7,14,0.88);
  backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 56px;
  height: 100%; display: flex; align-items: center; gap: 40px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 21px; font-weight: 800;
  text-decoration: none; flex-shrink: 0; letter-spacing: -0.03em;
}
.logo-h { color: var(--white); }
.logo-c { color: var(--blue); }

.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  color: var(--dim); text-decoration: none; font-size: 13px;
  font-weight: 500; letter-spacing: 0.02em;
  transition: color 0.25s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px; background: var(--blue);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a.active { color: var(--white); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--bg); background: var(--blue);
  padding: 10px 22px; border-radius: 40px;
  text-decoration: none; flex-shrink: 0;
  transition: background 0.2s, box-shadow 0.3s, transform 0.2s;
}
.nav-cta:hover {
  background: var(--blue-lt);
  box-shadow: 0 0 28px rgba(var(--blue-rgb),0.5);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.nav-toggle.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--bg); flex-direction: column;
  justify-content: center; align-items: center; gap: 28px; padding: 80px 40px;
}
.mobile-menu.open { display: flex; }
.mm-link {
  font-family: var(--font-display); font-size: 42px; font-weight: 800;
  color: var(--white); text-decoration: none; transition: color 0.2s; letter-spacing: -0.02em;
}
.mm-link:hover { color: var(--blue); }
.mm-cta {
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); border: 1px solid rgba(var(--blue-rgb),0.4);
  padding: 14px 32px; border-radius: 40px; text-decoration: none; margin-top: 8px;
}

/* ========== HERO ========== */
#hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding-top: var(--nav-h); position: relative; overflow: hidden;
}

.hero-canvas { position: absolute; inset: 0; z-index: 0; }
#particleCanvas { width: 100%; height: 100%; }

.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none; z-index: 0; will-change: transform;
}
.hero-glow-1 {
  width: 800px; height: 800px; top: -300px; right: -200px;
  background: radial-gradient(circle, rgba(var(--blue-rgb),0.13) 0%, transparent 65%);
}
.hero-glow-2 {
  width: 600px; height: 600px; bottom: -100px; left: -150px;
  background: radial-gradient(circle, rgba(var(--cyan-rgb),0.06) 0%, transparent 65%);
}
.hero-glow-3 {
  width: 400px; height: 400px; top: 45%; left: 35%;
  background: radial-gradient(circle, rgba(var(--blue-rgb),0.05) 0%, transparent 65%);
}

.hero-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 100px 56px 60px; position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(var(--blue-rgb),0.07);
  border: 1px solid rgba(var(--blue-rgb),0.18);
  border-radius: 40px; padding: 8px 18px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--mid);
  text-transform: uppercase; margin-bottom: 52px;
  opacity: 0; animation: fadeSlideUp 0.7s 0.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
  box-shadow: 0 0 12px rgba(var(--cyan-rgb),0.9);
  animation: pulseCyan 2s ease-in-out infinite;
}
@keyframes pulseCyan { 0%,100%{box-shadow:0 0 12px rgba(var(--cyan-rgb),0.9)} 50%{box-shadow:0 0 4px rgba(var(--cyan-rgb),0.3)} }

.hero-headline { margin-bottom: 44px; }
.headline-row {
  display: block; overflow: hidden; margin-bottom: 0;
}
.hl-inner {
  display: flex; align-items: baseline; gap: 0.2em; flex-wrap: wrap;
  transform: translateY(110%);
  animation: clipUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.headline-row:nth-child(1) .hl-inner { animation-delay: 0.2s; }
.headline-row:nth-child(2) .hl-inner { animation-delay: 0.35s; }
.headline-row:nth-child(3) .hl-inner { animation-delay: 0.5s; }

@keyframes clipUp { from{transform:translateY(110%)} to{transform:translateY(0)} }
@keyframes fadeSlideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.hl-word {
  font-family: var(--font-display);
  font-size: clamp(60px, 10.5vw, 152px);
  font-weight: 800; line-height: 1.0;
  letter-spacing: -0.04em; color: var(--white);
}
.hl-blue { color: var(--blue); }
.hl-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(var(--blue-rgb),0.7);
}
.hl-gradient {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub-row {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 52px; max-width: 600px;
  opacity: 0; animation: fadeSlideUp 0.8s 0.65s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-sub-line {
  width: 3px; min-height: 56px; flex-shrink: 0;
  background: linear-gradient(to bottom, var(--cyan), var(--blue), transparent);
  border-radius: 2px; margin-top: 4px;
}
.hero-desc { font-size: 15.5px; color: var(--mid); line-height: 1.85; }

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 72px;
  opacity: 0; animation: fadeSlideUp 0.8s 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}

.hero-stats {
  display: flex; align-items: center;
  padding-top: 40px; border-top: 1px solid var(--border);
  opacity: 0; animation: fadeSlideUp 0.8s 1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hs { display: flex; flex-direction: column; gap: 6px; padding: 0 44px 0 0; }
.hs:first-child { padding-left: 0; }
.hs-n {
  font-family: var(--font-display); font-size: 40px;
  font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--white) 0%, var(--blue-lt) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hs-l { font-size: 10px; color: var(--dim); letter-spacing: 0.12em; text-transform: uppercase; }
.hs-sep { width: 1px; height: 44px; background: var(--border); margin-right: 44px; }

/* ---- HERO MEGA STATS (council: lead with numbers) ---- */
.hero-mega-stats {
  display: flex; align-items: center; gap: 0;
  margin-bottom: 40px;
  opacity: 0; animation: fadeSlideUp 0.8s 0.15s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hms-item { display: flex; flex-direction: column; gap: 6px; padding: 0 40px 0 0; }
.hms-item:first-child { padding-left: 0; }
.hms-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800; line-height: 1; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--white), var(--blue), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hms-label {
  font-size: 11px; color: var(--mid); letter-spacing: 0.1em; text-transform: uppercase;
  font-family: var(--font-mono);
}
.hms-sep {
  width: 1px; height: 64px; background: var(--border2);
  margin: 0 40px 0 0; flex-shrink: 0;
}

/* ---- HERO GUARANTEE PILL ---- */
.hero-guarantee {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(var(--blue-rgb),0.08);
  border: 1px solid rgba(var(--blue-rgb),0.2);
  border-radius: 8px; padding: 14px 20px;
  font-size: 13px; color: var(--mid); line-height: 1.5;
  max-width: 580px;
}
.guarantee-icon { font-size: 20px; flex-shrink: 0; }
.hero-guarantee strong { color: var(--white); }

/* ---- GUARANTEE BLOCK ---- */
.guarantee-block {
  margin-top: 56px;
  background: rgba(var(--blue-rgb),0.06);
  border: 1px solid rgba(var(--blue-rgb),0.2);
  border-radius: var(--r); padding: 44px 40px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 40px; align-items: center;
  position: relative; overflow: hidden;
}
.guarantee-block::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
}
.gb-left { display: flex; align-items: center; gap: 16px; }
.gb-icon { font-size: 40px; }
.gb-left h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--white); margin-bottom: 4px;
}
.gb-left p { font-size: 13px; color: var(--mid); }
.gb-right { display: flex; flex-direction: column; gap: 12px; }
.gb-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--mid); }
.gb-check {
  color: var(--cyan); font-weight: 800; flex-shrink: 0; font-size: 16px;
}
.gb-item strong { color: var(--white); }
.gb-cta { flex-shrink: 0; }

/* ---- SERVICE RESULT LABEL ---- */
.svc-result {
  font-family: var(--font-mono); font-size: 11px; color: var(--blue);
  letter-spacing: 0.06em; text-align: right; white-space: nowrap;
  transition: color 0.25s;
}
.svc-item:hover .svc-result { color: var(--cyan); }

/* ---- CONTACT GUARANTEE LINE ---- */
.c-guarantee {
  font-size: 12px; color: var(--blue); font-family: var(--font-mono);
  letter-spacing: 0.05em; margin-top: -4px;
}

.hero-scroll-hint {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2;
  opacity: 0; animation: fadeSlideUp 0.8s 1.2s cubic-bezier(0.16,1,0.3,1) forwards;
}
.scroll-mouse {
  width: 24px; height: 36px; border: 1.5px solid rgba(var(--blue-rgb),0.3);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 7px;
}
.scroll-wheel {
  width: 3px; height: 7px; background: linear-gradient(to bottom, var(--cyan), var(--blue));
  border-radius: 2px; animation: wheelDrop 1.8s ease-in-out infinite;
}
@keyframes wheelDrop { 0%,100%{transform:translateY(0);opacity:1} 60%{transform:translateY(7px);opacity:0} }

/* ========== TICKER ========== */
.ticker-wrap {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 15px 0; background: var(--bg-3); position: relative; z-index: 1;
}
.ticker-wrap::before, .ticker-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none;
}
.ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-3), transparent); }
.ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg-3), transparent); }

.ticker-track {
  display: flex; width: max-content;
  animation: ticker 32s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-set {
  display: flex; align-items: center;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.ticker-set span { padding: 0 24px; white-space: nowrap; color: var(--mid); transition: color 0.2s; }
.ticker-set span:hover { color: var(--white); }
.td { color: var(--blue) !important; font-size: 7px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ========== BUTTONS ========== */
.cta-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; background: var(--blue);
  color: var(--bg); font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-decoration: none; border-radius: 40px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.25s;
}
.cta-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.cta-primary:hover::before { opacity: 1; }
.cta-primary:hover {
  box-shadow: 0 0 40px rgba(var(--blue-rgb),0.55), 0 8px 24px rgba(var(--blue-rgb),0.2);
  transform: translateY(-2px);
}
.cta-secondary {
  display: inline-flex; align-items: center;
  padding: 14px 28px; background: transparent;
  color: var(--light); font-size: 13px; font-weight: 600;
  border: 1px solid var(--border2); text-decoration: none; border-radius: 40px;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.cta-secondary:hover {
  border-color: var(--blue); color: var(--blue);
  background: rgba(var(--blue-rgb),0.07);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(var(--blue-rgb),0.15);
}
.cta-ghost {
  display: inline-flex; align-items: center;
  padding: 14px 14px; color: var(--dim); font-size: 14px;
  text-decoration: none; transition: color 0.2s;
}
.cta-ghost:hover { color: var(--white); }
.cta-ghost-dark {
  color: var(--dim); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: color 0.2s; padding: 14px 10px;
}
.cta-ghost-dark:hover { color: var(--blue); }

/* ========== REVEAL SYSTEM ========== */
.rv {
  opacity: 0; transform: translateY(44px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--d, 0s);
}
.rv.in { opacity: 1; transform: translateY(0); }

.rv-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1),
              transform 0.85s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--d, 0s);
}
.rv-left.in { opacity: 1; transform: translateX(0); }

.rv-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1),
              transform 0.8s cubic-bezier(0.16,1,0.3,1);
  transition-delay: var(--d, 0s);
}
.rv-scale.in { opacity: 1; transform: scale(1); }

/* ========== VENTURES ========== */
#ventures { background: var(--bg-2); }
#ventures::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(var(--blue-rgb),0.07) 0%, transparent 60%);
}
.ventures-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.v-card {
  background: rgba(15,22,36,0.7); backdrop-filter: blur(16px); border: 1px solid var(--border);
  border-radius: var(--r); padding: 40px 32px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.v-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.v-card-shine {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle 300px at var(--mx,50%) var(--my,50%), rgba(var(--blue-rgb),0.06) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s;
}
.v-card:hover { border-color: rgba(var(--blue-rgb),0.3); transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(var(--blue-rgb),0.1); }
.v-card:hover::before { opacity: 1; }
.v-card:hover .v-card-shine { opacity: 1; }
.v-card--featured { background: linear-gradient(160deg, #111d35, #090e1a); border-color: rgba(var(--blue-rgb),0.22); }
.v-card--featured::before { opacity: 0.5; }

.v-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.28em; color: var(--blue); text-transform: uppercase; }
.v-icon { font-size: 38px; }
.v-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.v-card p { font-size: 14px; color: var(--mid); line-height: 1.75; flex: 1; }
.v-metrics { display: flex; gap: 28px; padding: 18px 0; border-top: 1px solid var(--border); }
.v-m { display: flex; flex-direction: column; gap: 4px; }
.v-m span { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--blue); letter-spacing: -0.02em; }
.v-m small { font-size: 10px; color: var(--dim); }
.v-link {
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); text-decoration: none; transition: color 0.2s, gap 0.2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.v-link:hover { color: var(--cyan); gap: 10px; }

/* ========== RESULTS ========== */
#results { background: rgba(6,8,15,0.72); }
#results::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(var(--blue-rgb),0.07) 0%, transparent 70%);
}
.results-bg-text {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-size: clamp(100px, 18vw, 260px);
  font-weight: 800; color: rgba(var(--blue-rgb),0.025);
  white-space: nowrap; pointer-events: none; letter-spacing: -0.05em; user-select: none;
  z-index: 0;
}
.results-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; position: relative; z-index: 1;
}
.r-item {
  background: rgba(15,22,36,0.65); backdrop-filter: blur(12px); padding: 48px 40px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.35s;
  position: relative; overflow: hidden;
}
.r-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0); transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
  transform-origin: left;
}
.r-item.in::after { transform: scaleX(1); }
.r-item:hover { background: var(--surface2); }
.r-num {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 66px);
  font-weight: 800; line-height: 1; letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--white), var(--blue-lt));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.r-label { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ========== PROCESS ========== */
#process { background: var(--bg-2); }
#process::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(var(--blue-rgb),0.05) 0%, transparent 60%);
}
.process-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
}
.p-step {
  padding: 44px 32px; border-right: 1px solid var(--border);
  transition: background 0.3s; position: relative; overflow: hidden;
}
.p-step:last-child { border-right: none; }
.p-step::before {
  content: attr(data-num);
  position: absolute; top: -20px; right: -10px;
  font-family: var(--font-display); font-size: 100px; font-weight: 800;
  color: rgba(var(--blue-rgb),0.04); line-height: 1; pointer-events: none;
  letter-spacing: -0.05em;
}
.p-step:hover { background: var(--surface2); }
.p-num { font-family: var(--font-mono); font-size: 10px; color: var(--blue); letter-spacing: 0.15em; margin-bottom: 20px; }
.p-icon {
  width: 40px; height: 40px; border-radius: 8px;
  background: rgba(var(--blue-rgb),0.1); border: 1px solid rgba(var(--blue-rgb),0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 16px;
  transition: background 0.3s, transform 0.3s;
}
.p-step:hover .p-icon { background: rgba(var(--blue-rgb),0.2); transform: scale(1.1); }
.p-step h3 { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.p-step p { font-size: 13px; color: var(--mid); line-height: 1.7; }

/* ========== SERVICES ========== */
#services { background: rgba(5,7,14,0.80); }
.svc-list {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
  background: rgba(15,22,36,0.5); backdrop-filter: blur(12px);
}
.svc-item {
  display: grid; grid-template-columns: 64px 1fr auto;
  align-items: center; gap: 32px; padding: 28px 36px;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: inherit;
  transition: background 0.25s; position: relative; overflow: hidden;
}
.svc-item:last-child { border-bottom: none; }
.svc-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--cyan));
  transform: scaleY(0); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.svc-item:hover { background: var(--surface); }
.svc-item:hover::before { transform: scaleY(1); }
.svc-item:hover .svc-num { color: var(--blue); }
.svc-item:hover .svc-arrow { color: var(--blue); transform: translateX(6px); }
.svc-item:hover .svc-body h3 { color: var(--blue-lt); }

.svc-num { font-family: var(--font-mono); font-size: 11px; color: var(--dim); letter-spacing: 0.1em; transition: color 0.25s; }
.svc-body h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 4px; letter-spacing: -0.01em; transition: color 0.25s; }
.svc-body p { font-size: 13px; color: var(--mid); }
.svc-arrow { font-size: 22px; color: var(--dim); text-align: right; transition: color 0.25s, transform 0.35s cubic-bezier(0.16,1,0.3,1); }

/* ========== ABOUT ========== */
#about { background: rgba(8,11,20,0.78); overflow: hidden; }
#about::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 70% at 0% 50%, rgba(var(--blue-rgb),0.05) 0%, transparent 60%);
}
.about-layout { display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: start; }
.about-left .sec-title { margin-bottom: 28px; }
.about-left p { font-size: 15px; color: var(--mid); line-height: 1.85; margin-bottom: 20px; }
.about-left blockquote {
  font-family: var(--font-display); font-size: 19px; font-weight: 700;
  color: var(--blue-lt); border-left: 3px solid var(--blue);
  padding: 16px 24px; margin: 36px 0;
  background: rgba(var(--blue-rgb),0.06);
  border-radius: 0 var(--r) var(--r) 0;
  letter-spacing: -0.01em;
}
.about-btns { display: flex; gap: 12px; margin-top: 32px; align-items: center; }

.stack-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; position: sticky; top: 100px;
  font-family: var(--font-mono);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(var(--blue-rgb),0.05);
}
.stack-card-header {
  background: var(--surface2); padding: 14px 20px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.scd { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.stack-title { font-size: 11px; color: var(--dim); margin-left: 8px; }
.stack-items { padding: 20px 24px; display: flex; flex-direction: column; gap: 11px; }
.si { font-size: 12.5px; line-height: 1.5; }
.si-k { color: #7ee8a2; }
.si-v { color: var(--blue-lt); }
.si-s { color: #f9a875; }
.si-c { color: var(--dim); font-size: 11px; }

/* ========== CONTACT ========== */
#contact { background: rgba(5,7,14,0.76); }
#contact::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 700px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(var(--blue-rgb),0.07) 0%, transparent 65%);
}
.contact-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.c-card {
  background: rgba(15,22,36,0.7); backdrop-filter: blur(16px); border: 1px solid var(--border);
  border-radius: var(--r); padding: 44px 32px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  transition: border-color 0.4s, transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.c-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.c-card:hover { border-color: rgba(var(--blue-rgb),0.3); transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.c-card:hover::before { opacity: 1; }
.c-card--center { background: linear-gradient(160deg, #111d35, #090e1a); border-color: rgba(var(--blue-rgb),0.2); }
.c-card--center::before { opacity: 0.6; }
.c-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.28em; color: var(--blue); text-transform: uppercase; }
.c-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.c-card p { font-size: 14px; color: var(--mid); line-height: 1.7; flex: 1; }

/* ========== SHOP TEASER ========== */
.shop-teaser-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.st-card {
  background: rgba(15,22,36,0.7); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--r);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.st-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.st-card:hover { border-color: rgba(var(--blue-rgb),0.3); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.st-card:hover::before { opacity: 1; }
.st-icon { font-size: 32px; }
.st-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.st-card p { font-size: 13px; color: var(--mid); line-height: 1.65; flex: 1; }
.st-count {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em;
  color: var(--blue); text-transform: uppercase;
}
.st-cta-card {
  background: linear-gradient(160deg, rgba(17,29,53,0.85), rgba(9,14,26,0.85));
  border: 1px solid rgba(var(--blue-rgb),0.25); border-radius: var(--r);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
.st-cta-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--cyan), transparent);
}
.st-cta-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; line-height: 1.2; }
.st-cta-card p { font-size: 13px; color: var(--mid); flex: 1; line-height: 1.65; }

/* ========== FOOTER ========== */
footer {
  background: rgba(6,8,15,0.85); padding: 64px 0;
  border-top: 1px solid var(--border);
}
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 48px; text-align: center; }
.f-logo {
  font-family: var(--font-display); font-size: 52px; font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--white), var(--blue), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.f-tagline { font-size: 16px; color: var(--dim); font-style: italic; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 32px; gap: 20px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--dim); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 12px; color: var(--dim); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero-inner { padding: 80px 32px 40px; }
  .guarantee-block { grid-template-columns: 1fr; gap: 24px; }
  .hero-mega-stats { flex-wrap: wrap; gap: 24px; }
  .hms-sep { display: none; }
  .hms-item { padding: 0; }
  .shop-teaser-grid { grid-template-columns: repeat(2,1fr); }
  .ventures-grid, .results-grid, .contact-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: repeat(2,1fr); }
  .p-step { border-bottom: 1px solid var(--border); }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .stack-card { position: static; }
  .hs-sep { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 28px; }
  .hs { padding: 0; }
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .container { padding: 0 24px; }
  .hero-inner { padding: 60px 24px 40px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 24px; }
  .svc-item { grid-template-columns: 1fr; gap: 8px; padding: 24px; }
  .svc-num { display: none; }
  .shop-teaser-grid { grid-template-columns: 1fr; }
  .svc-result { text-align: left; }
  .hero-guarantee { flex-direction: column; text-align: center; }
  .hms-num { font-size: clamp(36px, 12vw, 64px); }
  .process-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-scroll-hint, #cursor-dot, #cursor-ring { display: none; }
  body { cursor: auto; }
  .hl-word { font-size: clamp(52px, 14vw, 90px); }
}
