/* ══════════════════════════════════════════════════════════════════════════
   FORGE AI — Dark Premium Theme (Wibify-inspired)
   ══════════════════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --surface: #1a1a1a;
  --surface2: #222222;
  --border: rgba(255,255,255,0.08);
  --border2: rgba(255,255,255,0.12);
  --accent: #c9e265;
  --accent-hover: #d4eb7a;
  --accent-dim: rgba(201,226,101,0.15);
  --accent-glow: rgba(201,226,101,0.25);
  --t1: #f5f5f5;
  --t2: #a0a0a0;
  --t3: #666666;
  --t4: #444444;
  --green: #22c55e;
  --red: #ef4444;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', 'Georgia', serif;
  --mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--t1);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Noise overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--t4); border-radius: 2px; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── PAGE LOADER ─────────────────────────────────────────────────────── */
/* (scroll progress bar removed)

@keyframes gradientShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ── PARTICLE CANVAS ─────────────────────────────────────────────────── */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

/* ── INTERACTIVE GRID ────────────────────────────────────────────────── */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.4;
}

.hero-grid-dot {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--t4);
  border-radius: 50%;
  transition: background 0.4s, transform 0.4s, box-shadow 0.4s;
}

.hero-grid-dot.active {
  background: var(--accent);
  transform: scale(2.5);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.fade-in.visible:nth-child(2) { transition-delay: 0.1s; }
.fade-in.visible:nth-child(3) { transition-delay: 0.2s; }
.fade-in.visible:nth-child(4) { transition-delay: 0.3s; }
.fade-in.visible:nth-child(5) { transition-delay: 0.4s; }
.fade-in.visible:nth-child(6) { transition-delay: 0.5s; }

/* ── HERO TEXT REVEAL ────────────────────────────────────────────────── */
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(-15deg);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-word.revealed {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.hero h1 {
  perspective: 600px;
}

.hero p, .hero-badge, .hero-buttons, .hero-trust, .inbox-mockup {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero.animated p { opacity: 1; transform: none; transition-delay: 0.5s; }
.hero.animated .hero-badge { opacity: 1; transform: none; transition-delay: 0.1s; }
.hero.animated .hero-buttons { opacity: 1; transform: none; transition-delay: 0.7s; }
.hero.animated .hero-trust { opacity: 1; transform: none; transition-delay: 0.9s; }
.hero.animated .inbox-mockup { opacity: 1; transform: none; transition-delay: 1.1s; }

/* ── FLOATING ORBS ───────────────────────────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.4;
  will-change: transform;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,226,101,0.15), transparent 70%);
  top: 10%;
  right: -5%;
  animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201,226,101,0.08), transparent 70%);
  bottom: 20%;
  left: -8%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(100,180,255,0.06), transparent 70%);
  top: 50%;
  right: 15%;
  animation: orbFloat3 18s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-40px, 60px) scale(1.1); }
  50% { transform: translate(20px, -40px) scale(0.9); }
  75% { transform: translate(-30px, -20px) scale(1.05); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, -40px) scale(1.15); }
  66% { transform: translate(-20px, 50px) scale(0.9); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, 40px); }
  50% { transform: translate(-50px, -20px); }
  75% { transform: translate(20px, -50px); }
}

/* ── CURSOR SPOTLIGHT ────────────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,226,101,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: left, top;
}

/* ── 3D CARD TILT ────────────────────────────────────────────────────── */
.tilt-card {
  transition: transform 0.4s cubic-bezier(0.03, 0.98, 0.52, 0.99), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(201,226,101,0.05);
}

/* ── MAGNETIC BUTTON ─────────────────────────────────────────────────── */
.magnetic-btn {
  transition: transform 0.3s cubic-bezier(0.03, 0.98, 0.52, 0.99);
  will-change: transform;
}

/* ── ANIMATED GRADIENT BORDER ────────────────────────────────────────── */
.glow-border {
  position: relative;
  overflow: hidden;
}

.glow-border::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    transparent 0%,
    var(--accent) 10%,
    transparent 20%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: glowRotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s;
}

.glow-border:hover::before {
  opacity: 1;
}

@keyframes glowRotate {
  0% { --glow-angle: 0deg; }
  100% { --glow-angle: 360deg; }
}

@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ── SECTION REVEAL (clip-path) ──────────────────────────────────────── */
.section-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── MARQUEE / INFINITE SCROLL ───────────────────────────────────────── */
.marquee-strip {
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  color: var(--t3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marquee-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ANIMATED ACCENT UNDERLINE ───────────────────────────────────────── */
.section-title em {
  position: relative;
}

.section-title em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.revealed .section-title em::after,
.fade-in.visible .section-title em::after,
.hero.animated .section-title em::after,
.hero.animated h1 em::after {
  width: 100%;
}

.hero h1 em {
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

/* ── PULSE RING ON PROOF NUMBERS ─────────────────────────────────────── */
.proof-number {
  position: relative;
}

.proof-number::after {
  content: '';
  position: absolute;
  inset: -8px -16px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  opacity: 0;
  animation: pulseRing 3s ease-in-out infinite;
}

@keyframes pulseRing {
  0%, 100% { opacity: 0; transform: scale(0.95); }
  50% { opacity: 0.15; transform: scale(1.05); }
}

/* ── TYPING CURSOR FOR BADGE ─────────────────────────────────────────── */
.hero-badge::after {
  content: '|';
  color: var(--accent);
  font-weight: 300;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ── SMOOTH PARALLAX LAYERS ──────────────────────────────────────────── */
.parallax-slow {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ── INLINE NAV (landing page) ────────────────────────────────────────── */
.nav-inline {
  border-radius: 60px;
  height: 56px;
}

.nav-inline .container {
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}

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

.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links > li > a:hover::after {
  width: 100%;
}

.nav-signin {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--border2);
  border-radius: 40px;
  color: var(--t2) !important;
  font-size: 13px;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}

.nav-signin:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.nav-signin::after { display: none !important; }

.hamburger-mobile {
  display: none !important;
}

@media (max-width: 768px) {
  .hamburger-mobile {
    display: flex !important;
    background: none;
    border: none;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
  }

  .hamburger-mobile span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--t1);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }

  .hamburger-mobile.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger-mobile.active span:nth-child(2) { opacity: 0; }
  .hamburger-mobile.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 16px;
    flex-direction: column;
    padding: 20px;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links li { width: 100%; }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links li:last-child a { border-bottom: none; }

  .nav-inline .nav-cta {
    margin-top: 8px;
    justify-content: center;
    width: 100%;
    border-radius: 12px;
  }

  .nav-signin {
    justify-content: center;
    width: 100%;
    border-radius: 12px;
  }
}

/* ── INBOX ROW SHIMMER ───────────────────────────────────────────────── */
.inbox-row.unread {
  position: relative;
  overflow: hidden;
}

.inbox-row.unread::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,226,101,0.03), transparent);
  animation: rowShimmer 4s ease-in-out infinite;
}

@keyframes rowShimmer {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* ── STEP NUMBER SPIN ON HOVER ───────────────────────────────────────── */
.step-number {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}

.step:hover .step-number {
  transform: scale(1.1) rotate(10deg);
  background: rgba(201,226,101,0.25);
}

/* ── NAV (ultra-premium glass pill) ──────────────────────────────────── */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: linear-gradient(135deg, rgba(22, 22, 22, 0.88), rgba(10, 10, 10, 0.92));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 0 6px;
  height: 64px;
  width: auto;
  max-width: calc(100% - 32px);
  box-shadow:
    0 4px 30px rgba(0,0,0,0.5),
    0 1px 3px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(255,255,255,0.02),
    0 0 0 0.5px rgba(255,255,255,0.05);
}

/* Inner glow highlight */
.nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  border-radius: 1px;
  pointer-events: none;
}

/* ── NAV SNAKE BORDER ────────────────────────────────────────────────── */
.nav::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--snake-angle, 0deg) at 50% 50%,
    transparent 0%,
    transparent 65%,
    rgba(201,226,101,0.4) 74%,
    rgba(201,226,101,0.7) 80%,
    var(--accent) 84%,
    rgba(201,226,101,0.7) 88%,
    rgba(201,226,101,0.4) 94%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: snakeOrbit 3.5s linear infinite;
  pointer-events: none;
}

@property --snake-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes snakeOrbit {
  to { --snake-angle: 360deg; }
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 14px;
  gap: 12px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--t1);
  white-space: nowrap;
  padding: 0 8px;
}

.nav-logo span {
  color: var(--accent);
}

/* ── NAV CTA (shimmer glow button) ───────────────────────────────────── */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: rgba(201,226,101,0.08);
  border: 1px solid rgba(201,226,101,0.25);
  color: var(--accent) !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  z-index: 1;
  white-space: nowrap;
}

/* Shimmer sweep effect */
.nav-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(201,226,101,0.12) 40%,
    rgba(201,226,101,0.25) 50%,
    rgba(201,226,101,0.12) 60%,
    transparent 80%
  );
  transform: skewX(-20deg);
  animation: ctaShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaShimmer {
  0% { left: -75%; }
  50%, 100% { left: 150%; }
}

/* Spotlight glow on nav CTA */
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    120px circle at var(--cta-x, 50%) var(--cta-y, 50%),
    rgba(201,226,101,0.4) 0%,
    rgba(201,226,101,0.12) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.nav-cta:hover {
  background: rgba(201,226,101,0.14);
  border-color: rgba(201,226,101,0.5);
  box-shadow:
    0 0 25px rgba(201,226,101,0.15),
    0 0 60px rgba(201,226,101,0.06),
    inset 0 0 20px rgba(201,226,101,0.04);
  transform: translateY(-1px);
}

.nav-cta:hover::before {
  opacity: 1;
}

/* ── HAMBURGER (tactile with micro-animations) ───────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.03);
  padding: 14px 13px;
  border: 1px solid var(--border2);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

/* Tactile press effect */
.hamburger:active {
  transform: scale(0.92);
  transition-duration: 0.1s;
}

.hamburger:hover {
  border-color: var(--t3);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 24px rgba(255,255,255,0.04), inset 0 0 12px rgba(255,255,255,0.02);
  transform: scale(1.05);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--t1);
  border-radius: 2px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s, width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s;
  transform-origin: center;
}

/* Hover: lines spread slightly */
.hamburger:hover span:nth-child(1) {
  width: 18px;
  transform: translateY(-1px);
}

.hamburger:hover span:nth-child(2) {
  width: 22px;
  transform: translateY(1px);
}

.hamburger.active {
  border-color: var(--accent);
  background: rgba(201,226,101,0.06);
  box-shadow: 0 0 20px rgba(201,226,101,0.08);
}

.hamburger.active span {
  background: var(--accent);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
  width: 22px;
}

.hamburger.active span:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
  width: 22px;
}

/* ── FULLSCREEN MENU (award-winning reveal) ──────────────────────────── */
.fs-menu {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(6,6,6,0.97);
  display: flex;
  align-items: flex-start;
  padding-top: 15vh;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
  overflow: hidden;
}

/* Noise texture */
.fs-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* Aurora / gradient mesh background */
.fs-menu-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.fs-menu-aurora::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(201,226,101,0.06), transparent 60%);
  filter: blur(80px);
  animation: auroraFloat1 8s ease-in-out infinite alternate;
}

.fs-menu-aurora::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(120,200,255,0.04), transparent 60%);
  filter: blur(100px);
  animation: auroraFloat2 10s ease-in-out infinite alternate;
}

@keyframes auroraFloat1 {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(-5%, 8%) scale(1.15); opacity: 1; }
}

@keyframes auroraFloat2 {
  0% { transform: translate(0, 0) scale(1.1); opacity: 0.5; }
  100% { transform: translate(8%, -5%) scale(1); opacity: 0.8; }
}

/* Third aurora orb */
.fs-menu-aurora-orb {
  position: absolute;
  top: 40%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,226,101,0.03), transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  animation: auroraFloat3 12s ease-in-out infinite alternate;
}

@keyframes auroraFloat3 {
  0% { transform: translate(-50%, -50%) scale(1); }
  100% { transform: translate(-40%, -60%) scale(1.2); }
}

.fs-menu.open {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: auto;
}

.fs-menu-links {
  padding: 0 8vw;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
  width: 100%;
}

.fs-link {
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.04em;
  line-height: 1.2;
  padding: 10px 0;
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  transition: color 0.3s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(60px) translateX(-30px);
  opacity: 0;
  filter: blur(8px);
}

.fs-menu.open .fs-link {
  transform: translateY(0) translateX(0);
  opacity: 1;
  filter: blur(0);
}

.fs-menu.open .fs-link:nth-child(1) { transition: color 0.3s, transform 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.1s, opacity 0.6s ease 0.1s, filter 0.6s ease 0.1s; }
.fs-menu.open .fs-link:nth-child(2) { transition: color 0.3s, transform 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.18s, opacity 0.6s ease 0.18s, filter 0.6s ease 0.18s; }
.fs-menu.open .fs-link:nth-child(3) { transition: color 0.3s, transform 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.26s, opacity 0.6s ease 0.26s, filter 0.6s ease 0.26s; }
.fs-menu.open .fs-link:nth-child(4) { transition: color 0.3s, transform 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.34s, opacity 0.6s ease 0.34s, filter 0.6s ease 0.34s; }
.fs-menu.open .fs-link:nth-child(5) { transition: color 0.3s, transform 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.42s, opacity 0.6s ease 0.42s, filter 0.6s ease 0.42s; }
.fs-menu.open .fs-link:nth-child(6) { transition: color 0.3s, transform 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.50s, opacity 0.6s ease 0.50s, filter 0.6s ease 0.50s; }

/* Decorative separator line between links */
.fs-link-separator {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(201,226,101,0.1), rgba(255,255,255,0.02));
  margin: 2px 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fs-menu.open .fs-link-separator {
  transform: scaleX(1);
}

.fs-menu.open .fs-link-separator:nth-of-type(2) { transition-delay: 0.15s; }
.fs-menu.open .fs-link-separator:nth-of-type(4) { transition-delay: 0.25s; }
.fs-menu.open .fs-link-separator:nth-of-type(6) { transition-delay: 0.35s; }

/* Hover: blurred accent glow behind text */
.fs-link::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  width: calc(100% + 40px);
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(201,226,101,0.12), transparent 70%);
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: -1;
}

.fs-link:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* Underline sweep */
.fs-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(201,226,101,0.4));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fs-link:hover {
  color: var(--accent);
  transform: translateX(20px);
  text-shadow: 0 0 60px rgba(201,226,101,0.25);
}

.fs-link:hover::after {
  width: 100%;
}

/* Active page indicator */
.fs-link.active-page {
  color: var(--accent);
}

.fs-link.active-page::after {
  width: 40px;
  opacity: 0.5;
}

/* Counter labels - animate in separately */
.fs-link .fs-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--t4);
  letter-spacing: 0.08em;
  margin-right: 20px;
  min-width: 28px;
  display: inline-block;
  transition: color 0.3s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(10px);
  opacity: 0;
}

.fs-menu.open .fs-link .fs-num {
  transform: translateY(0);
  opacity: 1;
}

.fs-menu.open .fs-link:nth-child(1) .fs-num { transition-delay: 0.2s; }
.fs-menu.open .fs-link:nth-child(3) .fs-num { transition-delay: 0.32s; }
.fs-menu.open .fs-link:nth-child(5) .fs-num { transition-delay: 0.44s; }

.fs-link:hover .fs-num {
  color: var(--accent);
  transform: translateY(0) scale(1.1);
}

.fs-link-small {
  font-size: 15px;
  font-weight: 500;
  color: var(--t4);
  margin-top: 48px;
  letter-spacing: 0.02em;
  padding-left: 2px;
}

.fs-link-small:hover {
  color: var(--accent);
  transform: translateX(12px);
}

.fs-link-small:hover::before {
  opacity: 0;
}

.fs-link-small::after {
  display: none;
}

/* Decorative line above Sign In */
.fs-link-small::before {
  content: '';
  display: none;
}

@media (max-width: 480px) {
  .nav-cta span { display: none; }
  .nav-cta { padding: 12px 18px; }
  .fs-link .fs-num { display: none; }
  .fs-menu { padding-top: 20vh; }
  .fs-link-separator { display: none; }
}

/* ── SECTION BASE ────────────────────────────────────────────────────── */
section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--t4);
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--t1);
}

.section-title em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.section-subtitle {
  font-size: 17px;
  color: var(--t2);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.bg-gray {
  background: var(--bg2);
}

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  padding: 180px 0 120px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,226,101,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  border-radius: 40px;
  border: 1px solid rgba(201,226,101,0.2);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  max-width: 800px;
  margin: 0 0 24px;
  color: var(--t1);
}

.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.gradient-text {
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.hero p {
  font-size: 18px;
  color: var(--t2);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.7;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: rgba(201,226,101,0.1);
  border: 1px solid rgba(201,226,101,0.3);
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.3s, transform 0.15s, box-shadow 0.3s, border-color 0.3s;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Spotlight glow follows cursor */
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    160px circle at var(--btn-x, 50%) var(--btn-y, 50%),
    rgba(201,226,101,0.55) 0%,
    rgba(201,226,101,0.15) 40%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.btn-primary:hover {
  background: rgba(201,226,101,0.15);
  border-color: rgba(201,226,101,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,226,101,0.18), 0 0 60px rgba(201,226,101,0.06);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  background: transparent;
  color: var(--t1);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid var(--border2);
  transition: border-color 0.3s, transform 0.15s, background 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    140px circle at var(--btn-x, 50%) var(--btn-y, 50%),
    rgba(201,226,101,0.12) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
  pointer-events: none;
}

.btn-secondary::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.btn-secondary:hover {
  border-color: rgba(201,226,101,0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,226,101,0.08);
}

.btn-secondary:hover::after {
  opacity: 1;
}

/* ── INBOX MOCKUP ────────────────────────────────────────────────────── */
.inbox-mockup {
  max-width: 580px;
  margin: 48px 0 0;
  perspective: 800px;
}

.inbox-card {
  background: var(--surface);
  border: 1px solid transparent;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

/* Snake border on inbox card */
.inbox-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--snake-angle, 0deg) at 50% 50%,
    transparent 0%,
    transparent 65%,
    rgba(201,226,101,0.4) 75%,
    var(--accent) 82%,
    rgba(201,226,101,0.4) 89%,
    transparent 96%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: snakeOrbit 6s linear infinite;
  pointer-events: none;
  z-index: 10;
}

.inbox-card > * {
  position: relative;
  z-index: 1;
}

/* Clip inner content */
.inbox-card .inbox-tabs,
.inbox-card .inbox-emails {
  overflow: hidden;
}

.inbox-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  background: var(--bg3);
}

.inbox-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--t3);
  border-bottom: 2px solid transparent;
  transition: color 0.2s;
}

.inbox-tab.active {
  color: var(--t1);
  font-weight: 600;
  border-bottom-color: var(--accent);
  background: var(--surface);
}

.inbox-emails {
  padding: 0;
}

.inbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--t3);
  transition: background 0.15s;
}

.inbox-row:last-child {
  border-bottom: none;
}

.inbox-row.unread {
  background: rgba(201,226,101,0.03);
}

.inbox-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--accent-glow);
}

.inbox-row:not(.unread) .inbox-dot {
  display: none;
}

.inbox-sender {
  font-weight: 600;
  color: var(--t1);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 110px;
}

.inbox-row.unread .inbox-sender {
  font-weight: 700;
}

.inbox-preview {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--t3);
  text-align: left;
}

.inbox-row.unread .inbox-preview {
  color: var(--t2);
}

.inbox-preview strong {
  color: var(--t1);
  font-weight: 600;
}

.inbox-row.unread .inbox-preview strong {
  font-weight: 700;
}

.inbox-time {
  font-size: 12px;
  color: var(--t4);
  white-space: nowrap;
  flex-shrink: 0;
}

.inbox-row.unread .inbox-time {
  color: var(--accent);
  font-weight: 600;
}

.inbox-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
}

@media (max-width: 768px) {
  .inbox-mockup {
    margin: 32px auto 0;
  }

  .inbox-tab {
    padding: 10px 14px;
    font-size: 12px;
  }

  .inbox-row {
    padding: 11px 14px;
    gap: 8px;
  }

  .inbox-sender {
    min-width: 80px;
    font-size: 12px;
  }

  .inbox-preview {
    font-size: 12px;
  }

  .inbox-time {
    display: none;
  }

  .inbox-badge {
    top: 10px;
    right: 10px;
    font-size: 10px;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  .inbox-tab svg {
    display: none;
  }

  .inbox-sender {
    min-width: 70px;
  }
}

/* ── SOCIAL PROOF STRIP ──────────────────────────────────────────────── */
.proof-strip {
  background: var(--bg2);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.proof-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}


.proof-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--t3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border2);
}

/* ── HOW IT WORKS ────────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  text-align: center;
  padding: 0 16px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  border: 1px solid rgba(201,226,101,0.2);
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--t1);
}

.step p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.7;
}

/* ── FEATURE CARDS ───────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform 0.2s, border-color 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--t1);
}

.feature-card p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.7;
}

.value-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 20px;
}

.value-total {
  margin-top: 48px;
  text-align: center;
}

.value-total-inner {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--t1);
  border-radius: 16px;
  padding: 32px 56px;
}

.value-total-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--t3);
  margin-bottom: 12px;
}

.value-total-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.value-original {
  font-size: 28px;
  font-weight: 700;
  color: var(--t4);
  text-decoration: line-through;
}

.value-free {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.value-note {
  font-size: 13px;
  color: var(--t3);
}

/* ── PORTFOLIO ───────────────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
}

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

.portfolio-screenshot {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-screenshot {
  transform: scale(1.03);
}

.portfolio-note {
  text-align: center;
  margin-top: 40px;
  font-size: 15px;
  color: var(--t3);
  line-height: 1.7;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.also-cta-btn {
  margin-top: 16px;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--t1);
}

.portfolio-meta {
  font-size: 13px;
  color: var(--t3);
  margin-bottom: 16px;
}

.portfolio-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 8px;
  transition: background 0.2s;
}

.portfolio-btn:hover {
  background: rgba(201,226,101,0.2);
}

/* ── FOUNDER ─────────────────────────────────────────────────────────── */
.founder-section {
  display: flex;
  align-items: center;
  gap: 64px;
}

.founder-photo {
  flex-shrink: 0;
}

.founder-photo img {
  width: 320px;
  height: 320px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
}

.founder-content {
  flex: 1;
}

.founder-content .section-title {
  margin-bottom: 20px;
}

.founder-content p {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.founder-links {
  margin-top: 24px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.founder-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  transition: color 0.2s;
}

.founder-link:hover {
  color: var(--accent-hover);
}

/* ── DARK SECTION ────────────────────────────────────────────────────── */
.section-dark {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-dark .trust-item h3 {
  color: var(--t1);
}

.section-dark .trust-item p {
  color: var(--t2);
}

.section-label-dark { color: var(--accent); }
.section-title-dark { color: var(--t1); }
.section-subtitle-dark { color: var(--t2); }

.trust-icon-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 18px;
  border: 1px solid rgba(201,226,101,0.15);
}

.trust-icon-dark svg {
  width: 24px;
  height: 24px;
}

/* ── WHY FREE / TRUST ────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.trust-item {
  text-align: center;
  padding: 32px 16px;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 18px;
  border: 1px solid rgba(201,226,101,0.15);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--t1);
}

.trust-item p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--t1);
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--t4);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.8;
}

/* ── ALSO / BEYOND THE DEMO ──────────────────────────────────────────── */
.also-section {
  display: flex;
  align-items: center;
  gap: 64px;
}

.also-content {
  flex: 1;
}

.also-content .section-title {
  margin-bottom: 20px;
}

.also-content p {
  font-size: 16px;
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: 12px;
}

.also-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 300px;
}

.also-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  transition: transform 0.2s, border-color 0.2s;
}

.also-card:hover {
  transform: translateX(4px);
  border-color: var(--border2);
}

.also-card-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.also-card-dot.green {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ── FOLLOW-UP CALLOUT ───────────────────────────────────────────────── */
.followup-callout {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}

.followup-callout-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.followup-callout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  flex-shrink: 0;
}

.followup-callout-icon svg {
  width: 22px;
  height: 22px;
}

.followup-callout-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 6px;
}

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

@media (max-width: 600px) {
  .followup-callout-inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ── DELIVERABILITY CARDS ────────────────────────────────────────────── */
.deliver-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.deliver-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.2s, border-color 0.2s;
}

.deliver-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
}

.deliver-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 18px;
}

.deliver-icon svg {
  width: 24px;
  height: 24px;
}

.deliver-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 10px;
}

.deliver-card p {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
}

/* ── AGENCY FEATURE CARDS ───────────────────────────────────────────── */
.agency-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  flex-shrink: 0;
  min-width: 340px;
}

.agency-feature-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  transition: transform 0.2s, border-color 0.2s;
}

.agency-feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--border2);
}

.agency-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent);
  flex-shrink: 0;
}

.agency-feature-icon svg {
  width: 20px;
  height: 20px;
}

.agency-feature-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 2px;
}

.agency-feature-card span {
  font-size: 13px;
  color: var(--t3);
}

/* ── PRODUCT MOCKUP CARDS ───────────────────────────────────────────── */
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mockup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.mockup-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--bg3);
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #eab308; }
.mockup-dots span:nth-child(3) { background: #22c55e; }

.mockup-title {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  color: var(--t3);
  letter-spacing: 0.02em;
}

.mockup-body {
  padding: 20px 18px;
}

/* Scout mockup stats */
.mockup-stat-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.mockup-stat {
  flex: 1;
  text-align: center;
  background: var(--bg3);
  border-radius: 8px;
  padding: 10px 8px;
  border: 1px solid var(--border);
}

.mockup-stat-num {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--t1);
  letter-spacing: -0.02em;
}

.mockup-stat-label {
  font-size: 11px;
  color: var(--t3);
  font-weight: 500;
}

/* Scout mockup table */
.mockup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.mockup-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  color: var(--t4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 8px;
  border-bottom: 1px solid var(--border);
}

.mockup-table td {
  padding: 8px 8px;
  color: var(--t2);
  border-bottom: 1px solid var(--border);
}

.mockup-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
}

.mockup-badge.green {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.mockup-badge.orange {
  background: var(--accent-dim);
  color: var(--accent);
}

/* Email mockup */
.mockup-email {
  padding: 18px;
}

.mockup-email-field {
  font-size: 13px;
  color: var(--t3);
  padding: 6px 0;
}

.mockup-email-field strong {
  color: var(--t1);
}

.mockup-email-label {
  font-weight: 600;
  color: var(--t4);
  margin-right: 4px;
}

.mockup-email-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

.mockup-email-body {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.7;
}

.mockup-email-body p {
  margin-bottom: 10px;
}

.mockup-email-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 5px 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
}

/* Outreach log mockup */
.mockup-log-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.mockup-log-row:last-of-type {
  border-bottom: none;
}

.mockup-log-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
}

.mockup-log-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mockup-log-status.sent { background: rgba(255,255,255,0.05); color: var(--t3); }
.mockup-log-status.opened { background: var(--accent-dim); color: var(--accent); }
.mockup-log-status.clicked { background: rgba(59,130,246,0.15); color: #60a5fa; }
.mockup-log-status.replied { background: rgba(34,197,94,0.15); color: #4ade80; }

.mockup-log-summary {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--t3);
}

.mockup-log-summary strong {
  color: var(--t1);
}

/* ── TRUST COMPARISON (before/after) ────────────────────────────────── */
.trust-compare {
  margin-top: 16px;
  text-align: left;
}

.trust-compare-bad,
.trust-compare-good {
  font-size: 12px;
  line-height: 1.6;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 6px;
  font-style: italic;
}

.trust-compare-bad {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}

.trust-compare-good {
  background: rgba(201, 226, 101, 0.08);
  border: 1px solid rgba(201, 226, 101, 0.15);
  color: var(--accent);
}

.trust-compare-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 6px;
  font-style: normal;
}

.trust-compare-bad .trust-compare-label { color: #ef4444; }
.trust-compare-good .trust-compare-label { color: var(--accent); }

/* ── CONTACT ─────────────────────────────────────────────────────────── */
.contact-wrap {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.contact-header {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  margin-bottom: 8px;
}

.contact-header .section-label {
  margin-bottom: 4px;
}

.contact-header .section-title {
  margin-bottom: 0;
  font-size: 28px;
}

.contact-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border2);
  flex-shrink: 0;
}

.contact-wrap .section-subtitle {
  margin: 0 auto 40px;
  text-align: left;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--t2);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--t1);
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input::placeholder {
  color: var(--t4);
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 226, 101, 0.1);
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #0a0a0a;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.contact-response {
  margin-top: 16px;
  font-size: 13px;
  color: var(--t3);
  font-weight: 500;
}

.contact-email {
  margin-top: 8px;
  font-size: 14px;
  color: var(--t3);
}

.contact-email a {
  color: var(--accent);
  font-weight: 500;
}

/* ── PRICING CARDS (inline in contact section) ───────────────────────── */
.pricing-card-inline {
  flex: 1;
  min-width: 180px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
}

.pricing-card-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t4);
  margin-bottom: 6px;
}

.pricing-card-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--t1);
}

.pricing-card-note {
  font-size: 13px;
  color: var(--t3);
  margin-top: 4px;
}

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  color: var(--t3);
  padding: 64px 0 40px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .nav-logo {
  color: var(--t1);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--t4);
  line-height: 1.6;
}

.footer-col {
  min-width: 140px;
}

.footer-heading {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-links a {
  font-size: 14px;
  color: var(--t4);
  transition: color 0.2s;
}

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

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

.footer-bottom p {
  font-size: 13px;
  color: var(--t4);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--t4);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--t2);
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .mockup-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .founder-section {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .founder-photo img {
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .founder-links {
    justify-content: center;
  }

  .also-section {
    flex-direction: column;
    gap: 40px;
  }

  .agency-features {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .hero {
    padding: 140px 0 80px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .proof-items {
    gap: 24px;
  }

  .proof-number {
    font-size: 22px;
  }

  .proof-label {
    font-size: 10px;
  }

  .steps-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .agency-features {
    grid-template-columns: 1fr;
  }

  .portfolio-grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-item {
    padding: 20px 16px;
  }

  .value-total-inner {
    padding: 24px 32px;
  }

  .contact-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .contact-header .section-title {
    font-size: 24px;
  }

  .contact-wrap .section-subtitle {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }

  .proof-items {
    flex-direction: column;
    gap: 16px;
  }

  .proof-divider {
    width: 40px;
    height: 1px;
  }

  .founder-photo img {
    width: 200px;
    height: 200px;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   PREMIUM EFFECTS — PHASE 2
   ══════════════════════════════════════════════════════════════════════════ */

/* ── CARD SPOTLIGHT (radial glow follows cursor) ─────────────────────── */
.spotlight-card {
  position: relative;
  overflow: hidden;
}

.spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    350px circle at var(--spotlight-x, -200px) var(--spotlight-y, -200px),
    rgba(201,226,101,0.06) 0%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}

.spotlight-card:hover::after {
  opacity: 1;
}

/* ── ANIMATED GRADIENT TEXT ──────────────────────────────────────────── */
.gradient-flow {
  background: linear-gradient(90deg, var(--accent), #e8f5a3, var(--accent), #a8d84e, var(--accent));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: flowGradient 6s linear infinite;
}

@keyframes flowGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ── GLITCH LOGO ON HOVER ────────────────────────────────────────────── */
.nav-logo {
  position: relative;
}

.nav-logo:hover {
  animation: glitch 0.4s ease;
}

@keyframes glitch {
  0%, 100% { text-shadow: none; }
  10% { text-shadow: 2px 0 var(--accent), -2px 0 #ff0040; }
  20% { text-shadow: -2px 0 var(--accent), 2px 0 #ff0040; }
  30% { text-shadow: 0 0 var(--accent); transform: translateX(2px); }
  40% { text-shadow: 2px 0 #ff0040; transform: translateX(-2px); }
  50% { text-shadow: -1px 0 var(--accent), 1px 0 #3b82f6; }
  60% { text-shadow: none; transform: translateX(0); }
}

/* ── ANIMATED SECTION DIVIDERS ───────────────────────────────────────── */
.section-divider {
  position: relative;
  height: 1px;
  background: var(--border);
  overflow: visible;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-divider.revealed::after {
  width: 100%;
}

/* ── FLOATING TAG BADGES (hero) ──────────────────────────────────────── */
.hero-float-tags {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  pointer-events: none;
  z-index: 0;
}

.float-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(201,226,101,0.06);
  border: 1px solid rgba(201,226,101,0.12);
  border-radius: 40px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  animation: floatTagIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  backdrop-filter: blur(8px);
}

.float-tag .ft-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent-glow);
  animation: ftPulse 2s ease-in-out infinite;
}

@keyframes ftPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.float-tag:nth-child(1) { top: 15%; right: 10%; animation-delay: 1.2s; }
.float-tag:nth-child(2) { top: 35%; right: 5%;  animation-delay: 1.5s; }
.float-tag:nth-child(3) { top: 55%; right: 15%; animation-delay: 1.8s; }
.float-tag:nth-child(4) { top: 72%; right: 3%;  animation-delay: 2.1s; }

@keyframes floatTagIn {
  from { opacity: 0; transform: translateX(30px) scale(0.9); }
  to   { opacity: 0.8; transform: translateX(0) scale(1); }
}

.float-tag:nth-child(1) { animation: floatTagIn 0.8s cubic-bezier(0.16,1,0.3,1) 1.2s forwards, floatDrift1 8s ease-in-out 2s infinite; }
.float-tag:nth-child(2) { animation: floatTagIn 0.8s cubic-bezier(0.16,1,0.3,1) 1.5s forwards, floatDrift2 10s ease-in-out 2.3s infinite; }
.float-tag:nth-child(3) { animation: floatTagIn 0.8s cubic-bezier(0.16,1,0.3,1) 1.8s forwards, floatDrift3 9s ease-in-out 2.6s infinite; }
.float-tag:nth-child(4) { animation: floatTagIn 0.8s cubic-bezier(0.16,1,0.3,1) 2.1s forwards, floatDrift1 11s ease-in-out 2.9s infinite; }

@keyframes floatDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, 12px); }
}
@keyframes floatDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -8px); }
}
@keyframes floatDrift3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-12px, -6px); }
}

@media (max-width: 960px) {
  .hero-float-tags { display: none; }
}

/* ── ICON DRAW ANIMATION ─────────────────────────────────────────────── */
.icon-draw svg path,
.icon-draw svg circle,
.icon-draw svg rect,
.icon-draw svg line,
.icon-draw svg polyline {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.icon-draw.drawn svg path,
.icon-draw.drawn svg circle,
.icon-draw.drawn svg rect,
.icon-draw.drawn svg line,
.icon-draw.drawn svg polyline {
  stroke-dashoffset: 0;
}

/* ── TEXT SCRAMBLE ON SECTION LABELS ──────────────────────────────────── */
.section-label {
  overflow: hidden;
}

.scramble-char {
  display: inline-block;
  transition: opacity 0.1s;
}

/* ── SMOOTH SCROLL BODY ──────────────────────────────────────────────── */
html.smooth-scroll {
  scroll-behavior: auto; /* We handle it in JS with lerp */
}

/* ── STATS RING ──────────────────────────────────────────────────────── */
.proof-item {
  position: relative;
}

/* ── CTA SHIMMER (on btn-primary ::after) ────────────────────────────── */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,226,101,0.15), transparent);
  animation: btnShimmer 4s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes btnShimmer {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* (nav-cta pulse removed — replaced by spotlight hover + snake border) */
@keyframes ctaPulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.05); }
}

/* ── MOCKUP HEADER DOTS BOUNCE ───────────────────────────────────────── */
.mockup-card:hover .mockup-dots span {
  animation: dotBounce 0.4s ease;
}

.mockup-card:hover .mockup-dots span:nth-child(2) { animation-delay: 0.06s; }
.mockup-card:hover .mockup-dots span:nth-child(3) { animation-delay: 0.12s; }

@keyframes dotBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* ── PORTFOLIO IMAGE ZOOM LINE ───────────────────────────────────────── */
.portfolio-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  z-index: 5;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:hover::before {
  width: 100%;
}

/* ── FAQ ANSWER HIGHLIGHT ────────────────────────────────────────────── */
.faq-item.open .faq-answer p {
  animation: fadeSlide 0.4s ease;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── FOUNDER IMAGE GLOW ──────────────────────────────────────────────── */
.founder-photo img {
  transition: box-shadow 0.4s ease;
}

.founder-photo:hover img {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(201,226,101,0.1);
}

/* ── CONTACT FORM INPUT GLOW ─────────────────────────────────────────── */
.form-group input:focus {
  box-shadow: 0 0 0 3px rgba(201, 226, 101, 0.1), 0 0 20px rgba(201,226,101,0.05);
}

/* ── FOOTER LINK ARROWS ──────────────────────────────────────────────── */
.footer-links a {
  position: relative;
  padding-left: 0;
  transition: color 0.2s, padding-left 0.3s;
}

.footer-links a:hover {
  padding-left: 12px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  color: var(--accent);
  transition: opacity 0.3s;
  font-size: 12px;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* ── HERO BADGE GLOW ─────────────────────────────────────────────────── */
.hero-badge {
  box-shadow: 0 0 20px rgba(201,226,101,0.1);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(201,226,101,0.1); }
  50% { box-shadow: 0 0 30px rgba(201,226,101,0.2); }
}

/* ── TRUST ICON FLOAT ────────────────────────────────────────────────── */
.trust-icon-dark,
.trust-icon {
  transition: transform 0.4s ease;
}

.trust-item:hover .trust-icon-dark,
.trust-item:hover .trust-icon {
  transform: translateY(-6px) scale(1.1);
}

/* ── DELIVER CARD ACCENT LINE ────────────────────────────────────────── */
.deliver-card {
  position: relative;
  overflow: hidden;
}

.deliver-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.deliver-card:hover::before {
  width: 60%;
}

/* ── SECTION TITLE LINE ANIMATION ────────────────────────────────────── */
.section-header .section-label::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--t4);
  margin-left: 12px;
  vertical-align: middle;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-reveal.revealed .section-header .section-label::after {
  width: 32px;
}

/* ── AGENCY FEATURE CARD SLIDE ───────────────────────────────────────── */
.agency-feature-card.spotlight-card {
  transition: transform 0.3s ease, border-color 0.3s, background 0.3s;
}

.agency-feature-card.spotlight-card:hover {
  background: var(--surface2);
  border-color: rgba(201,226,101,0.15);
}

/* ── PRICING CARD HOVER ──────────────────────────────────────────────── */
.pricing-card-inline {
  transition: transform 0.3s ease, border-color 0.3s;
}

.pricing-card-inline:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.pricing-card-inline:hover .pricing-card-value {
  color: var(--accent);
}

/* ── SCROLL-TRIGGERED TEXT HIGHLIGHT ─────────────────────────────────── */
.text-highlight {
  background: linear-gradient(120deg, var(--accent-dim) 0%, var(--accent-dim) 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: 0 88%;
  transition: background-size 0.6s ease;
  padding: 0 4px;
  margin: 0 -4px;
}

.text-highlight.active {
  background-size: 100% 30%;
}

/* ── MORPHING BLOB ───────────────────────────────────────────────────── */
.morph-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 10%;
  right: -10%;
  background: radial-gradient(ellipse, rgba(201,226,101,0.04), transparent 70%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphBlob 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes morphBlob {
  0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg); }
  25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
  50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; transform: rotate(90deg); }
  75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

/* ══════════════════════════════════════════════════════════════════════════
   SERVICES PAGE
   ══════════════════════════════════════════════════════════════════════════ */

/* ── SERVICES SECTION (premium bento grid) ───────────────────────────── */

/* Animated dot grid background */
.services-section {
  position: relative;
  overflow: hidden;
}

.services-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.07) 1px, transparent 0);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

/* Animated grid lines */
.services-bg-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(201,226,101,0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(201,226,101,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}

/* ── MARQUEE TICKER ──────────────────────────────────────────────────── */
.services-marquee {
  width: 100%;
  overflow: hidden;
  padding: 24px 0;
  margin-bottom: 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.services-marquee::before,
.services-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.services-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.services-marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
}

.marquee-item .marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ── SERVICES GRID ───────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* ── SERVICE CARD (glassmorphism) ────────────────────────────────────── */
.service-card {
  background: linear-gradient(135deg, rgba(26,26,26,0.8), rgba(18,18,18,0.9));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.4s,
    box-shadow 0.4s,
    background 0.4s;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  will-change: transform;
}

/* Inner spotlight that follows cursor */
.service-card .card-spotlight {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(201,226,101,0.08) 0%,
    transparent 60%
  );
}

.service-card:hover .card-spotlight {
  opacity: 1;
}

/* Glass reflection line */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  pointer-events: none;
  z-index: 1;
}

.service-card:hover {
  border-color: rgba(201,226,101,0.2);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 0 40px rgba(201,226,101,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  background: linear-gradient(135deg, rgba(30,30,30,0.85), rgba(20,20,20,0.92));
}

.service-card > * {
  position: relative;
  z-index: 1;
}

/* ── SERVICE ICON (pulse glow) ───────────────────────────────────────── */
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(201,226,101,0.12);
  position: relative;
  transition: box-shadow 0.4s, border-color 0.4s;
}

/* Pulse glow animation */
.service-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(201,226,101,0.15), transparent 70%);
  animation: iconPulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes iconPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.95); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.service-card:hover .service-icon {
  box-shadow: 0 0 20px rgba(201,226,101,0.15);
  border-color: rgba(201,226,101,0.3);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.service-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t4);
}

.service-card h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--t1);
}

.service-card h3 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.service-card p {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.7;
}

/* ── FROSTED GLASS TAGS ──────────────────────────────────────────────── */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.service-tags span {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--t3);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 40px;
  padding: 5px 12px;
  transition: all 0.3s;
}

.service-card:hover .service-tags span {
  border-color: rgba(201,226,101,0.15);
  color: var(--t2);
  background: rgba(201,226,101,0.04);
}

.service-arrow {
  font-size: 18px;
  color: var(--accent);
  margin-top: auto;
  padding-top: 8px;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── COMING SOON BADGE (premium) ─────────────────────────────────────── */
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t3);
  margin-top: auto;
  padding-top: 12px;
}

.service-cta::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--t4);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 0.4; box-shadow: 0 0 0 0 rgba(255,255,255,0.1); }
  50% { opacity: 1; box-shadow: 0 0 8px 2px rgba(255,255,255,0.05); }
}

/* ── FEATURED CARD (Cold Email - animated gradient border) ───────────── */
.service-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto auto;
  column-gap: 28px;
  border: none;
  position: relative;
}

/* Animated gradient border */
.service-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    var(--gradient-angle, 0deg),
    rgba(201,226,101,0.5),
    rgba(201,226,101,0.1),
    rgba(120,200,255,0.15),
    rgba(201,226,101,0.1),
    rgba(201,226,101,0.5)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: gradientBorderSpin 4s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@property --gradient-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes gradientBorderSpin {
  to { --gradient-angle: 360deg; }
}

/* Featured badge */
.service-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(201,226,101,0.1);
  border: 1px solid rgba(201,226,101,0.2);
  border-radius: 40px;
  padding: 5px 14px;
  z-index: 2;
  animation: featuredBadgeGlow 3s ease-in-out infinite;
}

@keyframes featuredBadgeGlow {
  0%, 100% { box-shadow: 0 0 10px rgba(201,226,101,0.05); }
  50% { box-shadow: 0 0 20px rgba(201,226,101,0.15); }
}

.service-card--featured .service-icon {
  grid-row: 1 / 3;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  align-self: start;
}

.service-card--featured .service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card--featured h3 {
  font-size: 32px;
}

.service-card--featured p {
  grid-column: 1 / -1;
}

.service-card--featured .service-tags,
.service-card--featured .service-arrow {
  grid-column: 1 / -1;
}

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

  .service-card--featured {
    grid-column: span 1;
    display: flex;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card--featured h3 {
    font-size: 24px;
  }
}
