/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --accent: #ff9600;
  --accent-dark: #cc7700;
  --secondary: #00abeb;
  --secondary-dark:#0086b8;
  --bg: #060810;
  --surface: #0c0f1a;
  --surface2: #111527;
  --border: rgba(255,255,255,.07);
  --border-glow-o:rgba(255,150,0,.35);
  --border-glow-b:rgba(0,171,235,.35);
  --text: #f0f2ff;
  --muted: #848ba8;
  --font-h: 'Geist', sans-serif;
  --font-b: 'Manrope', sans-serif;
  --radius: 16px;
  --radius-lg: 20px;
}
/* ─── RESET / BASE ───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}
/* Premium Static Grain Overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 150px 150px;
  pointer-events: none;
  z-index: 9999;
  /* GUARANTEED VISIBILITY FIXES */
  opacity: 0.10;
  filter: grayscale(100%) contrast(250%) brightness(150%);
}
section, nav, footer {
  position: relative;
  z-index: 1;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-h);
}
a {
  text-decoration: none;
  color: inherit;
}
/* ─── SLEEK GLASS 3D BUTTONS (Apple/Sleek Style) ─────────── */
.btn-3d {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  padding: 12px 32px;
  border-radius: 100px;
  /* Pill shape */
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.08);
  outline: none;
  overflow: hidden;
  color: #fff;
}
/* Primary (Orange) */
.btn-primary-3d {
  background: linear-gradient(180deg, rgba(255,160,30,0.1) 0%, rgba(20,12,0,0.85) 100%);
  box-shadow:inset 0 1px 1px rgba(255,255,255,0.2), /* Top rim light */
    inset 0 -12px 20px -10px rgba(255,150,0,1), /* Strong bottom inner glow bleed */
    0 8px 16px -4px rgba(255,150,0,0.2);
  /* Ambient drop shadow */
  text-shadow: 0 0 10px rgba(255,255,255,0.4);
}
.btn-primary-3d:hover {
  box-shadow:inset 0 1px 1px rgba(255,255,255,0.3),inset 0 -16px 25px -10px rgba(255,150,0,1),0 12px 20px -4px rgba(255,150,0,0.3);
  transform: translateY(-2px);
  text-shadow: 0 0 15px rgba(255,255,255,0.6);
}
.btn-primary-3d:active {
  transform: translateY(1px);
}
/* Secondary/Outline (Dark) */
.btn-outline-3d {
  background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.85) 100%);
  box-shadow:inset 0 1px 1px rgba(255,255,255,0.15),inset 0 -12px 20px -10px rgba(255,255,255,0.4),0 8px 16px -4px rgba(0,0,0,0.5);
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
}
.btn-outline-3d:hover {
  box-shadow:inset 0 1px 1px rgba(255,255,255,0.25),inset 0 -16px 25px -10px rgba(255,255,255,0.6),0 12px 20px -4px rgba(0,0,0,0.6);
  transform: translateY(-2px);
  text-shadow: 0 0 12px rgba(255,255,255,0.5);
}
.btn-outline-3d:active {
  transform: translateY(1px);
}
/* Navbar scaled down */
.btn-nav-3d {
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.2), inset 0 -8px 15px -8px rgba(255,150,0,1), 0 4px 10px -2px rgba(255,150,0,0.2);
}
.btn-nav-3d:hover {
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), inset 0 -12px 20px -8px rgba(255,150,0,1), 0 6px 12px -2px rgba(255,150,0,0.3);
}
/* ─── AURORA & GRID OVERLAYS ─────────────────────────────── */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  /* Enhanced visibility */
  animation: auroraFloat 12s ease-in-out infinite alternate;
}
.aurora-blob.o {
  background: var(--accent);
  width:500px;
  height:400px;
  top:-10%;
  left:-5%;
  animation-delay:0s;
}
.aurora-blob.b {
  background: var(--secondary);
  width:400px;
  height:350px;
  top:15%;
  right:-5%;
  animation-delay:-4s;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-size: 30px 30px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  /* Enhanced visibility */
  mask-image: radial-gradient(ellipse at 50% 40%, black 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.designer-grid-dots {
  position: absolute;
  inset: 0;
  background-size: 28px 28px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
  z-index: 0;
  pointer-events: none;
}
@keyframes auroraFloat {
  0% {
    transform: translate(0,0) scale(1);
  }
  100% {
    transform: translate(30px, 20px) scale(1.05);
  }
}
/* ─── NAVBAR ─────────────────────────────────────────────── */
.smm-navbar {
  background: rgba(6,8,16,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.smm-navbar .navbar-brand {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.5px;
  color: var(--text);
}
.smm-navbar .navbar-brand span.o {
  color: var(--accent);
}
.smm-navbar .nav-link-custom {
  font-size: .9rem;
  font-weight: 600;
  color: var(--muted) !important;
  transition: color .2s;
  margin: 0 12px;
}
.smm-navbar .nav-link-custom:hover {
  color: var(--text) !important;
}
/* Hamburger Animation */
.smm-navbar .navbar-toggler {
  border: none;
  padding: 10px;
  outline: none;
  box-shadow: none;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.05);
}
.smm-navbar .hamburger {
  width: 22px;
  height: 16px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.smm-navbar .hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
/* When menu is open (button is NOT collapsed) */
.smm-navbar .navbar-toggler:not(.collapsed) .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.smm-navbar .navbar-toggler:not(.collapsed) .hamburger span:nth-child(2) {
  opacity: 0;
}
.smm-navbar .navbar-toggler:not(.collapsed) .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 991px) {
  .smm-navbar .navbar-collapse {
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-top: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  }
  .smm-navbar .nav-link-custom {
    margin: 4px 0;
    padding: 10px 16px;
    border-radius: 8px;
  }
  .smm-navbar .nav-link-custom:hover {
    background: rgba(255,255,255,0.03);
    color: var(--text) !important;
  }
  .smm-navbar .nav-cta-wrapper {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
  }
}
/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  padding: 60px 0 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,150,0,.08);
  border: 1px solid rgba(255,150,0,.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  margin-bottom: 20px;
  animation: fadeUp .6s ease both;
  box-shadow: 0 0 15px rgba(255,150,0,.1);
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% {
    opacity:1;
    transform:scale(1);
  }
  50% {
    opacity:.5;
    transform:scale(1.4);
  }
}
.hero-h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  animation: fadeUp .65s .1s ease both;
}
.hero-h1 .grad-o {
  background: linear-gradient(135deg, #ffd000 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  padding-right: 0.1em;
  filter: drop-shadow(0 4px 12px rgba(255,140,0,0.25));
}
.hero-h1 .fw-light {
  font-weight: 300;
  opacity: 0.9;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
  animation: fadeUp .65s .2s ease both;
}
.quick-wins {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  animation: fadeUp .65s .3s ease both;
}
.quick-win-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text);
  transition: all .2s;
}
.quick-win-chip i {
  color: var(--accent);
  font-size: 1rem;
}
.quick-win-chip:hover {
  border-color: rgba(255,150,0,.3);
  background: rgba(255,150,0,.05);
  transform: translateY(-1px);
}
.hero-cta {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp .65s .4s ease both;
}
.trust-line {
  margin-top: 24px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeUp .65s .5s ease both;
}
.trust-line span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.trust-line i {
  font-size: 1rem;
  color: #10b981;
}
.trust-dot {
  width: 3px;
  height: 3px;
  background: var(--border);
  border-radius: 50%;
}
/* ─── COMPACT LOGIN CARD ─────────────────────────────────── */
.login-card {
  background: linear-gradient(145deg, rgba(20,25,40,0.6) 0%, rgba(10,12,20,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 20px 50px rgba(0,0,0,.5);
  animation: fadeUp .7s .2s ease both;
}
.login-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), var(--accent), transparent);
}
.login-card-title {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 2px;
}
.login-card-sub {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.login-card .form-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 4px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.login-card .form-control {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-b);
  font-size: .9rem;
  padding: 10px 12px;
  transition: all .2s;
}
.login-card .form-control:focus {
  background: rgba(0,0,0,0.5);
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(0,171,235,.15);
  color: var(--text);
  outline: none;
}
.login-card .form-group {
  margin-bottom: 14px;
}
.forgot-password {
  font-size: .7rem;
  color: var(--secondary);
  font-weight: 600;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .2s;
}
.forgot-password:hover {
  opacity: .7;
  text-decoration: underline;
}
/* ─── COMPACT BENTO GRID WITH EDGE-TO-EDGE FOOTERS ───────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.6;
  max-width: 520px;
  font-weight: 500;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.bento {
  background: linear-gradient(145deg, rgba(20,25,40,0.6) 0%, rgba(10,12,20,0.8) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 10px 25px rgba(0,0,0,0.3);
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento:hover {
  transform: translateY(-3px);
  border-color: rgba(255,150,0,.25);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 15px 35px rgba(0,0,0,0.4);
}
.bento.blue-glow:hover {
  border-color: rgba(0,171,235,.25);
}
/* Bento inner content */
.bento-body {
  padding: 24px 24px 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  z-index: 2;
}
.bento-footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.04);
  width: 100%;
  margin-top: auto;
  padding: 12px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}
.platform-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
  background: rgba(255,150,0,.08);
  color: var(--accent);
  border: 1px solid rgba(255,150,0,.15);
}
.platform-icon.blue {
  background: rgba(0,171,235,.08);
  color: var(--secondary);
  border-color: rgba(0,171,235,.15);
}
.bento-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.bento-sub {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 14px;
  max-width: 90%;
}
.bento-tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bento-tag-list li {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text);
  padding: 4px 10px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 100px;
}
.col-span-4 {
  grid-column: span 4;
}
.col-span-5 {
  grid-column: span 5;
}
.col-span-7 {
  grid-column: span 7;
}
/* =========================================SEAMLESS BOTTOM UI MOCKS========================================= */
/* Instagram Footer Bar */
.ig-feed {
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  height: 28px;
}
.ig-mock-row {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  animation: slideUpFade 0.4s ease-out forwards;
  position: absolute;
  left: 0;
  width: 100%;
}
.ig-mock-row i {
  color: #ff3040;
  font-size: 1rem;
  filter: drop-shadow(0 0 4px rgba(255,48,64,0.4));
}
.ig-mock-row.exit {
  animation: slideOutUp 0.4s ease-in forwards;
}
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideOutUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-15px);
  }
}
/* TikTok Footer Bar */
.tk-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 10px;
}
.tk-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  font-family: monospace;
}
.tk-stat i {
  font-size: 1.1rem;
}
.tk-stat i.text-danger {
  color: #ff3b5c !important;
  animation: pulse 1.5s infinite;
}
.tk-stat i.text-warning {
  color: #f5b041 !important;
}
/* YouTube Footer Bar */
.yt-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.yt-info {
  display: flex;
  flex-direction: column;
}
.yt-label {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.yt-count {
  font-size: 1.1rem;
  font-weight: 900;
  font-family: var(--font-h);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.yt-trend {
  font-size: 0.7rem;
  color: #10b981;
  animation: flashGreen 2s infinite;
}
@keyframes flashGreen {
  0%,100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}
/* Telegram Footer Bar */
.tg-bar {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  height: 28px;
  position: relative;
}
.tg-bubble {
  background: rgba(0, 171, 235, 0.15);
  border: 1px solid rgba(0, 171, 235, 0.25);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  animation: slideInRight 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  position: absolute;
  left: 0;
}
.tg-bubble span {
  color: #7ee8ff;
  font-weight: 800;
  margin-right: 4px;
}
.tg-bubble.exit {
  animation: slideOutLeft 0.4s ease-in forwards;
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-20px);
  }
}
/* API IDE Block - Perfectly fits bottom */
.api-footer {
  width: 100%;
  padding: 16px 24px;
  background: #05070d;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: 'Courier New', monospace;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1.6;
}
.ide-header {
  display: flex;
  gap: 5px;
  margin-bottom: 8px;
}
.ide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.ide-dot.r {
  background: #ff5f56;
}
.ide-dot.y {
  background: #ffbd2e;
}
.ide-dot.g {
  background: #27c93f;
}
.code-line {
  opacity: 0;
  transform: translateX(-4px);
  will-change: transform, opacity;
}
.c-keyword {
  color: #f97316;
}
.c-string {
  color: #4ade80;
}
.c-prop {
  color: #38bdf8;
}
.c-num {
  color: #a78bfa;
}
.c-muted {
  color: #64748b;
}
@keyframes codeFade {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .col-span-4, .col-span-5, .col-span-7 {
    grid-column: span 6;
  }
}
@media (max-width: 768px) {
  .col-span-4, .col-span-5, .col-span-7 {
    grid-column: span 12;
  }
  .cta-content-wrapper {
    max-width: 380px !important;
    transform: scale(0.9);
    transform-origin: center;
  }
  .cta-orbits {
    transform: translate(-50%, -50%) scale(0.7) !important;
  }
}
/* ─── SECTIONS COMPACT SPACING ───────────────────────────── */
#services, #why, #how, #cta {
  padding: 70px 0;
}
/* ─── WHY SECTION ────────────────────────────────────────── */
#why {
  position: relative;
  overflow: hidden;
}
.why-glow {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 500px;
  height: 500px;
  background: var(--secondary);
  filter: blur(160px);
  opacity: 0.15;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.why-card:hover {
  border-color: rgba(255,150,0,.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.why-card:hover::after {
  transform: scaleX(1);
}
.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,150,0,.08);
  border: 1px solid rgba(255,150,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.why-card h5 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.why-card p {
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}
/* ─── HOW IT WORKS ───────────────────────────────────────── */
#how {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.how-glow {
  position: absolute;
  left: -10%;
  bottom: 0;
  width: 600px;
  height: 600px;
  background: var(--accent);
  filter: blur(180px);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  position: relative;
  margin-top: 40px;
  z-index: 1;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-glow-b), var(--border-glow-o), transparent);
}
.step-card {
  padding: 0 10px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--muted);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(0,0,0,.3);
}
.step-card:hover .step-num {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(255,150,0,.2);
  transform: scale(1.1);
}
.step-card h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.step-card p {
  font-size: .8rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}
/* ─── TICKER & STATS ─────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  background: var(--surface);
  position: relative;
  z-index: 1;
}
.ticker-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: tickerScroll 30s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.ticker-item i {
  color: var(--accent);
  font-size: 1.1rem;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.stat-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
.stat-ticker {
  font-size: 2.4rem;
  font-weight: 800;
  font-family: var(--font-h);
  color: var(--text);
  letter-spacing: -.02em;
}
.stat-label {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 700;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
/* ─── FINAL CTA (MERRY-GO-ROUND ANIMATION) ───────────────── */
#cta {
  position: relative;
  overflow: hidden;
}
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
  z-index: 1;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--secondary), transparent);
  z-index: 10;
}
/* CTA Concentric Orbits */
.cta-orbits {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  z-index: 1;
  pointer-events: none;
}
.orbit-track {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 50%;
}
/* Tracks start at 650px so they fully clear the max-width 500px text container */
.orbit-1 {
  width: 650px;
  height: 650px;
  margin: -325px 0 0 -325px;
  animation: orbit-spin 35s linear infinite;
}
.orbit-2 {
  width: 800px;
  height: 800px;
  margin: -400px 0 0 -400px;
  animation: orbit-spin-rev 45s linear infinite;
}
.orbit-3 {
  width: 950px;
  height: 950px;
  margin: -475px 0 0 -475px;
  animation: orbit-spin 55s linear infinite;
}
.orbit-4 {
  width: 1100px;
  height: 1100px;
  margin: -550px 0 0 -550px;
  animation: orbit-spin-rev 65s linear infinite;
}
.orbit-5 {
  width: 1250px;
  height: 1250px;
  margin: -625px 0 0 -625px;
  animation: orbit-spin 75s linear infinite;
}
/* Icons that ride the tracks */
.orbit-item {
  position: absolute;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5), inset 0 2px 5px rgba(255,255,255,0.3);
  z-index: 2;
}
/* Counter-spin perfectly cancels out the track spin to maintain gravity uprightness */
.orbit-1 .orbit-item {
  animation: counter-spin 35s linear infinite;
}
.orbit-2 .orbit-item {
  animation: counter-spin-rev 45s linear infinite;
}
.orbit-3 .orbit-item {
  animation: counter-spin 55s linear infinite;
}
.orbit-4 .orbit-item {
  animation: counter-spin-rev 65s linear infinite;
}
.orbit-5 .orbit-item {
  animation: counter-spin 75s linear infinite;
}
/* Placement on the circles */
.pos-top {
  top: 0;
  left: 50%;
}
.pos-bottom {
  top: 100%;
  left: 50%;
}
.pos-left {
  top: 50%;
  left: 0;
}
.pos-right {
  top: 50%;
  left: 100%;
}
/* Brand Colors */
.bg-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.bg-yt {
  background: #ff0000;
}
.bg-tg {
  background: #2AABEE;
}
.bg-tk {
  background: #000;
  border: 1px solid rgba(255,255,255,0.2);
}
.bg-x {
  background: #000;
  border: 1px solid rgba(255,255,255,0.2);
}
.bg-fb {
  background: #1877F2;
}
.bg-pi {
  background: #E60023;
}
.bg-in {
  background: #0A66C2;
}
@keyframes orbit-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes counter-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes orbit-spin-rev {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes counter-spin-rev {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Protect inner CTA content above orbits */
.cta-content-wrapper {
  position: relative;
  z-index: 10;
  pointer-events: none;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.cta-content-wrapper > * {
  pointer-events: auto;
}
.cta-box h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -.02em;
}
.cta-box p {
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
  margin: 0 auto 32px;
  line-height: 1.6;
}
.features-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}
.f-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 700;
  transition: all .2s;
}
.f-chip i {
  color: var(--accent);
  font-size: 1rem;
}
.f-chip:hover {
  border-color: rgba(255,150,0,.3);
  background: rgba(255,150,0,.05);
  transform: translateY(-1px);
}
/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover {
  color: var(--text);
}
.footer-copy {
  font-size: .8rem;
  font-weight: 500;
  color: #4a5070;
}
/* ─── UTILS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(0.2, 0.8, 0.2, 1), transform .6s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.live-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,150,0,.06);
  border: 1px solid rgba(255,150,0,.15);
  border-radius: 10px;
  padding: 10px 16px;
  margin-top: 20px;
}
.live-dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background: var(--accent);
  animation: pulse 1.2s infinite;
  box-shadow: 0 0 8px var(--accent);
}
.live-text {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
}
.live-text strong {
  color: var(--text);
  font-weight: 800;
  font-family: var(--font-h);
}
