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

:root {
  --g50: #f0fdf4;
  --g100: #dcfce7;
  --g200: #bbf7d0;
  --g300: #86efac;
  --g400: #4ade80;
  --g500: #22c55e;
  --g600: #16a34a;
  --g700: #15803d;
  --bg: #080d0a;
  --bg2: #0d1410;
  --bg3: #111a14;
  --surf: rgba(255, 255, 255, 0.04);
  --surf2: rgba(255, 255, 255, 0.07);
  --brd: rgba(255, 255, 255, 0.08);
  --brd2: rgba(34, 197, 94, 0.25);
  --t1: #f0fdf4;
  --t2: #a7c4b0;
  --t3: #5a7a64;
  --r: 18px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--t1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── CANVAS PARTICLES ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* ── NOISE ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── GLOW BG ── */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
  z-index: 0;
}

.glow-orb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
}

.glow-orb-2 {
  width: 500px;
  height: 500px;
  bottom: 10%;
  right: -100px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  transition: all 0.4s;
}

nav.scrolled {
  background: rgba(8, 13, 10, 0.8);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--brd);
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--g400);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--t2);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--g500);
  color: #000;
  border: none;
  border-radius: 10px;
  padding: 9px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.nav-cta:hover {
  background: var(--g400);
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.5);
  transform: translateY(-1px);
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--surf2);
  border: 1px solid var(--brd);
  border-radius: 8px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.lang-toggle a {
  padding: 5px 10px;
  color: var(--t3);
  text-decoration: none;
  transition: all 0.2s;
  line-height: 1;
}

.lang-toggle a:hover {
  color: var(--t2);
}

.lang-toggle a.active {
  background: var(--g500);
  color: #000;
}

@media (max-width: 700px) {
  nav {
    padding: 0 20px;
  }

  .nav-link {
    display: none;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--g400);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--g500);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  color: var(--t1);
  margin-bottom: 24px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--g400) 0%, var(--g500) 50%, #a3e635 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--t2);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: var(--g500);
  color: #000;
  border: none;
  border-radius: 14px;
  padding: 16px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 32px rgba(34, 197, 94, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(34, 197, 94, 0.4);
}

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

.btn-ghost {
  background: var(--surf);
  color: var(--t2);
  border: 1px solid var(--brd);
  border-radius: 14px;
  padding: 15px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--brd2);
  color: var(--t1);
  background: rgba(34, 197, 94, 0.07);
}

/* ── LIVE COUNTER ── */
.hero-live {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.live-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surf);
  border: 1px solid var(--brd);
  border-radius: 14px;
  padding: 12px 20px;
  backdrop-filter: blur(12px);
}

.live-counter-ring {
  width: 40px;
  height: 40px;
  position: relative;
  flex-shrink: 0;
}

.live-counter-ring svg {
  transform: rotate(-90deg);
  width: 40px;
  height: 40px;
}

.live-counter-ring circle {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
}

.ring-bg {
  stroke: rgba(34, 197, 94, 0.15);
}

.ring-fill {
  stroke: var(--g500);
  stroke-dasharray: 100;
  stroke-dashoffset: 35;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.6));
}

.live-counter-info {}

.live-counter-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--t1);
  line-height: 1;
}

.live-counter-label {
  font-size: 11px;
  color: var(--t3);
  font-weight: 500;
  margin-top: 2px;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--t2);
  font-weight: 500;
}

.live-pill svg {
  color: var(--g500);
}

/* ── HERO VISUAL ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 50px;
}

.tilt-wrapper {
  width: 100%;
  max-width: 480px;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
  cursor: default;
  position: relative;
  z-index: 2;
}

.tilt-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 60px rgba(34, 197, 94, 0.12));
  border-radius: 0;
}

.hero-logo-anim {
  position: absolute;
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(0%, -50%);
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(34, 197, 94, 0.7)) drop-shadow(0 0 48px rgba(34, 197, 94, 0.35)) drop-shadow(0 0 90px rgba(34, 197, 94, 0.15));
}

@media (max-width: 900px) {
  .hero-logo-anim {
    width: 220px;
    height: 220px;
  }
}

/* floating badges */
.float-badge {
  position: absolute;
  background: rgba(13, 20, 16, 0.9);
  border: 1px solid var(--brd2);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--t1);
  white-space: nowrap;
  z-index: 3;
}

.float-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--g500);
  flex-shrink: 0;
}

.float-badge-1 {
  top: 12%;
  left: -8%;
  animation: float1 6s ease-in-out infinite;
}

.float-badge-2 {
  bottom: 18%;
  right: -6%;
  animation: float2 7s ease-in-out infinite;
}

.float-badge-3 {
  top: 55%;
  left: -10%;
  animation: float3 5.5s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(-12px)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(10px)
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translateY(0px)
  }

  50% {
    transform: translateY(-8px)
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 24px 60px;
    text-align: center;
    gap: 56px;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-live {
    justify-content: center;
  }

  .tilt-wrapper {
    max-width: 340px;
  }

  .float-badge-1 {
    left: 0;
  }

  .float-badge-2 {
    right: 0;
  }

  .float-badge-3 {
    display: none;
  }
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.08s;
}

.d2 {
  transition-delay: 0.16s;
}

.d3 {
  transition-delay: 0.24s;
}

.d4 {
  transition-delay: 0.32s;
}

.d5 {
  transition-delay: 0.40s;
}

/* ── MARQUEE ── */
.marquee-section {
  position: relative;
  z-index: 2;
  padding: 32px 0;
  overflow: hidden;
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

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

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--t3);
  white-space: nowrap;
}

.marquee-item svg {
  color: var(--g600);
  flex-shrink: 0;
}

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

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

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

/* ── SECTIONS ── */
.section {
  padding: 100px 24px;
  position: relative;
  z-index: 2;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--g500);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--g500);
  border-radius: 2px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--t1);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--t2);
  max-width: 480px;
  line-height: 1.8;
}

/* ── FEATURES BENTO ── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 56px;
}

.bento-card {
  background: var(--surf);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(34, 197, 94, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.bento-card:hover {
  border-color: var(--brd2);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(34, 197, 94, 0.1);
}

.bento-card:hover::before {
  opacity: 1;
}

/* wide card */
.bento-wide {
  grid-column: span 2;
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--g500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card:hover .bento-icon {
  background: var(--g500);
  color: #000;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.35);
  transform: scale(1.1) rotate(-4deg);
}

.bento-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--t1);
  margin-bottom: 8px;
}

.bento-desc {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.75;
}

/* AI card special — highlighted */
.bento-ai {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.04) 50%, rgba(34, 197, 94, 0.08) 100%);
  border-color: rgba(34, 197, 94, 0.35);
  position: relative;
  box-shadow:
    0 0 40px rgba(34, 197, 94, 0.08),
    0 0 80px rgba(34, 197, 94, 0.04),
    inset 0 1px 0 rgba(34, 197, 94, 0.15);
}

.bento-ai::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--g500), rgba(34, 197, 94, 0.1) 30%, rgba(163, 230, 53, 0.15) 70%, var(--g400));
  -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;
  pointer-events: none;
  animation: ai-border-rotate 6s linear infinite;
}

@keyframes ai-border-rotate {
  0% {
    background: linear-gradient(0deg, var(--g500), rgba(34, 197, 94, 0.05) 30%, rgba(163, 230, 53, 0.15) 70%, var(--g400));
  }

  25% {
    background: linear-gradient(90deg, var(--g500), rgba(34, 197, 94, 0.05) 30%, rgba(163, 230, 53, 0.15) 70%, var(--g400));
  }

  50% {
    background: linear-gradient(180deg, var(--g500), rgba(34, 197, 94, 0.05) 30%, rgba(163, 230, 53, 0.15) 70%, var(--g400));
  }

  75% {
    background: linear-gradient(270deg, var(--g500), rgba(34, 197, 94, 0.05) 30%, rgba(163, 230, 53, 0.15) 70%, var(--g400));
  }

  100% {
    background: linear-gradient(360deg, var(--g500), rgba(34, 197, 94, 0.05) 30%, rgba(163, 230, 53, 0.15) 70%, var(--g400));
  }
}

.bento-ai:hover {
  box-shadow:
    0 0 60px rgba(34, 197, 94, 0.15),
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(34, 197, 94, 0.2),
    inset 0 1px 0 rgba(34, 197, 94, 0.2);
}

.ai-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(163, 230, 53, 0.15));
  color: var(--g400);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 4px 12px;
  margin-bottom: 14px;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.2);
  animation: ai-tag-pulse 3s ease-in-out infinite;
}

@keyframes ai-tag-pulse {

  0%,
  100% {
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.2);
  }

  50% {
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.35);
  }
}

.bento-demo {
  margin-top: 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--brd);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bento-demo-text {
  font-size: 13px;
  color: var(--t3);
  font-style: italic;
  flex: 1;
}

.bento-demo-result {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--g400);
  white-space: nowrap;
}

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

  .bento-wide {
    grid-column: span 1;
  }
}

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--bg2);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}

.steps-row::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brd2), var(--brd2), transparent);
}

.step {
  text-align: center;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.step-num-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--brd2);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.step:hover .step-num-wrap {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--g500);
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.2);
  transform: scale(1.1);
}

.step-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--g500);
}

.step-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--t1);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.75;
}

@media (max-width: 700px) {
  .steps-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-row::after {
    display: none;
  }
}

/* ── STATS ── */
.stats-section {
  background: var(--bg3);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.stat-card {
  background: var(--surf);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--g500), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

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

.stat-card:hover::before {
  opacity: 1;
}

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  background: linear-gradient(135deg, var(--g400), var(--g500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 15px;
  color: var(--t2);
  font-weight: 500;
}

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

/* ── PLATFORM CARDS ── */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.platform-card {
  background: var(--surf);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

.platform-ready {
  border-color: rgba(34, 197, 94, 0.15);
}

.platform-ready:hover {
  border-color: rgba(34, 197, 94, 0.35);
}

.platform-wip {
  border-color: rgba(251, 191, 36, 0.15);
  background: rgba(251, 191, 36, 0.03);
}

.platform-wip:hover {
  border-color: rgba(251, 191, 36, 0.3);
}

.platform-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-live {
  background: var(--g500);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
  animation: pulse-dot 2s infinite;
}

.platform-ready .platform-status {
  color: var(--g400);
}

.status-wip {
  background: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.platform-wip .platform-status {
  color: #fbbf24;
}

.platform-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--g500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s;
}

.platform-icon-muted {
  background: rgba(251, 191, 36, 0.08);
  color: #fbbf24;
}

.platform-card:hover .platform-icon:not(.platform-icon-muted) {
  background: var(--g500);
  color: #000;
}

.platform-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--t1);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wip-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border-radius: 5px;
  padding: 2px 7px;
}

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

.platform-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.pstep-n {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  color: var(--g500);
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.wip-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(251, 191, 36, 0.7);
}

.wip-feature svg {
  flex-shrink: 0;
  color: #fbbf24;
}

.wip-notify {
  margin-top: 4px;
}

.wip-notify-btn {
  display: inline-block;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.wip-notify-btn:hover {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(251, 191, 36, 0.5);
}

@media (max-width: 900px) {
  .platform-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .platform-cards {
    grid-template-columns: 1fr;
  }
}

/* ── INSTALL ── */
.install-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.install-card {
  background: var(--surf);
  border: 1px solid var(--brd);
  border-radius: 20px;
  padding: 36px 32px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.install-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--g600), var(--g500), var(--g400));
  opacity: 0;
  transition: opacity 0.35s;
}

.install-card:hover {
  border-color: var(--brd2);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4);
}

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

.install-os {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--t1);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.install-os-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.1);
  color: var(--g500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.install-card:hover .install-os-icon {
  background: var(--g500);
  color: #000;
}

.install-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.install-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--t2);
  line-height: 1.65;
}

.install-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  color: var(--g500);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

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

/* ── AUTHOR VIDEO ── */
.author-section {
  padding: 120px 24px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.author-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 40%, rgba(34, 197, 94, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.03) 30%, rgba(34, 197, 94, 0.03) 70%, transparent 100%);
  pointer-events: none;
}

.author-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.author-header {
  text-align: center;
  margin-bottom: 48px;
}

.author-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--g500);
  margin-bottom: 18px;
}

.author-label::before,
.author-label::after {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--g500), transparent);
  border-radius: 2px;
}

.author-label::after {
  background: linear-gradient(90deg, transparent, var(--g500));
}

.author-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.2;
  color: var(--t1);
  letter-spacing: -1px;
}

.author-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--g400), var(--g500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* video cinema frame */
.author-cinema {
  position: relative;
}

.author-video-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(34, 197, 94, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.author-video-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
  z-index: 1;
  border: 1.5px solid rgba(34, 197, 94, 0.25);
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.08),
    0 0 60px rgba(34, 197, 94, 0.07),
    0 30px 80px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.4s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.author-video-wrap:hover {
  box-shadow:
    0 0 0 1px rgba(34, 197, 94, 0.15),
    0 0 80px rgba(34, 197, 94, 0.12),
    0 40px 100px rgba(0, 0, 0, 0.6);
  transform: translateY(-4px);
}

.author-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* gradient border */
.author-video-wrap::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: 21px;
  padding: 1.5px;
  background: linear-gradient(160deg, var(--g500), rgba(34, 197, 94, 0.08) 35%, transparent 50%, rgba(34, 197, 94, 0.08) 65%, var(--g400));
  -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;
  pointer-events: none;
  z-index: 4;
}

/* custom play overlay */
.author-play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 100%);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.author-play-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.author-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid rgba(34, 197, 94, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.author-play-btn::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.15);
  animation: play-ring-pulse 2.5s ease-in-out infinite;
}

@keyframes play-ring-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.author-play-btn svg {
  color: var(--g400);
  margin-left: 4px;
  filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
}

.author-video-wrap:hover .author-play-btn {
  background: rgba(34, 197, 94, 0.25);
  border-color: var(--g400);
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(34, 197, 94, 0.3);
}

.author-play-label {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.author-play-duration {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

/* decorative corner marks */
.author-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 5;
  pointer-events: none;
}

.author-corner::before,
.author-corner::after {
  content: '';
  position: absolute;
  background: rgba(34, 197, 94, 0.5);
  border-radius: 1px;
}

.author-corner--tl {
  top: 12px;
  left: 12px;
}

.author-corner--tl::before {
  width: 20px;
  height: 1.5px;
  top: 0;
  left: 0;
}

.author-corner--tl::after {
  width: 1.5px;
  height: 20px;
  top: 0;
  left: 0;
}

.author-corner--tr {
  top: 12px;
  right: 12px;
}

.author-corner--tr::before {
  width: 20px;
  height: 1.5px;
  top: 0;
  right: 0;
}

.author-corner--tr::after {
  width: 1.5px;
  height: 20px;
  top: 0;
  right: 0;
}

.author-corner--bl {
  bottom: 12px;
  left: 12px;
}

.author-corner--bl::before {
  width: 20px;
  height: 1.5px;
  bottom: 0;
  left: 0;
}

.author-corner--bl::after {
  width: 1.5px;
  height: 20px;
  bottom: 0;
  left: 0;
}

.author-corner--br {
  bottom: 12px;
  right: 12px;
}

.author-corner--br::before {
  width: 20px;
  height: 1.5px;
  bottom: 0;
  right: 0;
}

.author-corner--br::after {
  width: 1.5px;
  height: 20px;
  bottom: 0;
  right: 0;
}

/* bottom info */
.author-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.author-quote-block {
  flex: 1;
  min-width: 280px;
  max-width: 480px;
  position: relative;
  padding-left: 20px;
}

.author-quote-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--g500), var(--g400));
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.3);
}

.author-quote {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
  color: var(--t1);
  letter-spacing: -0.3px;
}

.author-quote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--g400), var(--g500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.05));
  border: 1.5px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--g400);
}

.author-meta {}

.author-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--t1);
  line-height: 1.2;
}

.author-role {
  font-size: 13px;
  color: var(--t3);
  font-weight: 500;
  margin-top: 2px;
}

@media (max-width: 700px) {
  .author-bottom {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }

  .author-play-btn {
    width: 64px;
    height: 64px;
  }

  .author-play-btn svg {
    width: 22px;
    height: 22px;
  }
}

/* ── CTA ── */
.cta-section {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  width: 600px;
  height: 400px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section>* {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--t1);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 17px;
  color: var(--t2);
  max-width: 440px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.cta-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 36px;
  font-size: 13px;
  color: var(--t3);
  font-weight: 500;
}

.cta-pill {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-pill svg {
  color: var(--g500);
}

/* ── FOOTER ── */
footer {
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--brd);
  color: var(--t3);
  padding: 40px 24px;
  text-align: center;
  font-size: 13px;
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.footer-inner img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  opacity: 0.7;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 600px) {
  .section {
    padding: 72px 20px;
  }

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

/* ── MOBILE PERFORMANCE ── */
@media (max-width: 768px) {
  body::after {
    display: none;
  }

  #particles-canvas {
    opacity: 0.2;
  }

  .glow-orb {
    opacity: 0.25;
  }

  .glow-orb-1 {
    width: 300px;
    height: 300px;
    filter: blur(80px);
  }

  .glow-orb-2 {
    width: 250px;
    height: 250px;
    filter: blur(80px);
  }

  .bento-ai::after {
    animation: none;
  }

  .author-video-glow {
    display: none;
  }

  .author-video-wrap::before {
    display: none;
  }

  .float-badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .live-counter {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .btn-ghost {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-logo-anim {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.5));
  }

  .cta-section {
    padding: 100px 20px;
  }

  .author-section {
    padding: 80px 20px;
  }

  .author-play-btn::before {
    animation: none;
  }

  .hero-visual {
    display: none;
  }

  .hero-live {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }
}

@media (max-width: 400px) {
  .hero {
    padding: 100px 16px 48px;
    gap: 40px;
  }

  .hero h1 {
    letter-spacing: -1.5px;
  }

  .hero-btns {
    gap: 8px;
  }

  .btn-primary {
    padding: 14px 24px;
    font-size: 14px;
  }

  .btn-ghost {
    padding: 13px 20px;
    font-size: 14px;
  }

  .bento-card {
    padding: 24px 20px;
  }

  .platform-card {
    padding: 24px 20px;
  }

  .install-card {
    padding: 28px 24px;
  }

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

  .stat-num {
    font-size: 40px;
  }
}