:root {
  --color-dark: #2F3631;
  --color-light: #FAF4E8;
  --color-mana-green: #A5C882;
  --color-dark-green: #256A2B;
  --color-hero-center: #1c304f;
  /* Spotlight center, strong navy blue */
  --color-hero-bg: #0d1b2a;
  /* Outer gradient edge, standard dark navy instead of black */
  --color-neon: #c8e63e;
  /* Reference Vercel Lime Green */
  --color-dark-blue: #0A1B3F;

  --font-base: 'Outfit', sans-serif;
}

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

body {
  overflow-x: hidden;
  background-color: var(--color-mana-green);
  color: var(--color-dark);
  font-family: var(--font-base);
  -webkit-font-smoothing: antialiased;
}

/* CUSTOM CURSOR */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--color-dark);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
}

/* LOADING OVERLAY */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #060e18;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  overflow: hidden;
  transition: none; /* GSAP handles exit */
}

.loading-overlay.hidden {
  pointer-events: none;
}

/* Noise texture */
.loader-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.04;
  pointer-events: none;
  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)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

/* Ambient glow orbs */
.loader-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.loader-glow-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  left: -150px;
  background: rgba(200, 230, 62, 0.08);
  animation: loaderFloat1 4s ease-in-out infinite;
}

.loader-glow-2 {
  width: 400px;
  height: 400px;
  bottom: -120px;
  right: -120px;
  background: rgba(20, 80, 160, 0.1);
  animation: loaderFloat2 5s ease-in-out infinite;
}

@keyframes loaderFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.15); }
}

@keyframes loaderFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -20px) scale(1.1); }
}

/* Content wrapper */
.loading-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

/* Stagger-reveal brand name */
.loader-brand {
  font-family: var(--font-base);
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--color-neon);
  text-transform: uppercase;
  display: flex;
  overflow: hidden;
}

.loader-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: letterReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.loader-letter-space {
  width: 0.3em;
}

/* Stagger each letter with incremental delay */
.loader-letter:nth-child(1)  { animation-delay: 0.05s; }
.loader-letter:nth-child(2)  { animation-delay: 0.10s; }
.loader-letter:nth-child(3)  { animation-delay: 0.15s; }
.loader-letter:nth-child(4)  { animation-delay: 0.20s; }
.loader-letter:nth-child(5)  { animation-delay: 0.25s; }
.loader-letter:nth-child(6)  { animation-delay: 0.30s; }
.loader-letter:nth-child(7)  { animation-delay: 0.35s; }
.loader-letter:nth-child(8)  { animation-delay: 0.40s; }
.loader-letter:nth-child(9)  { animation-delay: 0.45s; }
.loader-letter:nth-child(10) { animation-delay: 0.50s; }
.loader-letter:nth-child(11) { animation-delay: 0.55s; }
.loader-letter:nth-child(12) { animation-delay: 0.60s; }

@keyframes letterReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Neon progress bar */
.loader-bar-track {
  width: clamp(240px, 40vw, 420px);
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  position: relative;
  overflow: visible;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--color-neon);
  border-radius: 4px;
  transition: width 0.3s ease-out;
  box-shadow: 0 0 12px rgba(200, 230, 62, 0.5);
}

/* Trailing glow dot */
.loader-bar-glow {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 16px;
  height: 16px;
  background: var(--color-neon);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  filter: blur(6px);
  opacity: 0.8;
  transition: left 0.3s ease-out;
  box-shadow: 0 0 20px rgba(200, 230, 62, 0.6);
}

/* Bottom: counter + status */
.loader-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.loader-counter {
  font-family: var(--font-base);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: white;
  letter-spacing: 2px;
  font-variant-numeric: tabular-nums;
}

.loader-status {
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  animation: statusPulse 2s ease-in-out infinite;
}

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

/* Responsive */
@media (max-width: 768px) {
  .loader-brand {
    font-size: clamp(36px, 10vw, 60px);
    letter-spacing: 4px;
  }
  .loader-counter {
    font-size: clamp(28px, 8vw, 44px);
  }
  .loader-bar-track {
    width: 70vw;
  }
  .loading-content {
    gap: 28px;
  }
}

/* HEADER */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  z-index: 100;
  font-weight: 500;
  font-size: 16px;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.main-header a {
  text-decoration: none;
  color: white;
}

.nav-item {
  background: white;
  padding: 10px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.icon-circle {
  background: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-weight: 500;
}

.logo {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
}

.icon {
  width: 20px;
  height: 20px;
}

/* BUTTONS */
button {
  font-family: var(--font-base);
  cursor: pointer;
  text-transform: none;
  border: none;
}

.hero-bottom {
  z-index: 30;
  position: relative;
  pointer-events: auto;
}

.green-btn {
  background: #185223;
  color: white;
  padding: 16px 40px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.green-btn:hover {
  transform: scale(1.05);
}

/* WRAPPER AND 3D */
.wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 20;
}

.can-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 40;
  /* Elevated so the 3D can floats over the cards */
  pointer-events: none;
}

/* HERO Section */
.panel.hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  z-index: 20;
  background: radial-gradient(circle at center, var(--color-hero-center) 0%, var(--color-hero-bg) 100%);
  color: white;
}

.hero-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8%;
}

/* Background elements */
.bg-streak {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: -5px;
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}

.bg-bolt {
  display: inline-block;
  width: 22vw;
  height: 30vw;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="rgba(255,255,255,0.03)" xmlns="http://www.w3.org/2000/svg"><path d="M13 2L3 14h9l-1 8 10-12h-9l1-8z"/></svg>') no-repeat center;
  background-size: contain;
}

.bg-circles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.ring-1 {
  width: 40vw;
  height: 40vw;
}

.ring-2 {
  width: 60vw;
  height: 60vw;
}

.ring-3 {
  width: 80vw;
  height: 80vw;
}

.ring-4 {
  width: 100vw;
  height: 100vw;
}

/* Left Stats */
.hero-left-stats {
  display: flex;
  flex-direction: column;
  gap: 80px;
  z-index: 30;
  pointer-events: auto;
  position: relative;
  left: 2%;
}

.stat-badge {
  background: var(--color-badge-bg);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-num {
  font-size: 26px;
  font-weight: 900;
  color: var(--color-neon);
  line-height: 1;
}

.stat-text {
  font-size: 10px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 5px;
  text-align: center;
}

.float-1 {
  --tx: 100px;
  animation: float 6s ease-in-out infinite;
}

.float-2 {
  --tx: 50px;
  animation: float 5s ease-in-out infinite reverse;
}

.float-3 {
  --tx: 0px;
  animation: float 7s ease-in-out infinite;
}

/* Right Text */
.hero-right-text {
  max-width: 450px;
  z-index: 30;
  pointer-events: auto;
  position: relative;
  right: 2%;
}

.hero-kicker {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-neon);
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 65px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: white;
}

.yellow-text {
  color: var(--color-neon);
}

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}

.shop-btn {
  background: var(--color-neon);
  color: var(--color-dark-blue);
  padding: 16px 45px;
  font-size: 18px;
  font-weight: 900;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s;
}

.shop-btn:hover {
  transform: scale(1.05);
}

/* Header adjustments */
.logo-streak {
  color: var(--color-neon);
  font-size: 24px;
  letter-spacing: 2px;
}

.nav-socials {
  gap: 20px;
  margin-left: -10px;
}

.social-icon {
  color: white;
  opacity: 0.7;
  transition: opacity 0.2s;
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  opacity: 1;
}

.btn-buy-now {
  background: var(--color-neon) !important;
  color: var(--color-hero-bg) !important;
  font-weight: 900;
  font-size: 14px;
  padding: 10px 25px;
  border-radius: 30px;
}

@keyframes float {
  0% {
    transform: translate(var(--tx, 0px), 0px) rotate(0deg);
  }

  50% {
    transform: translate(var(--tx, 0px), -30px) rotate(5deg);
  }

  100% {
    transform: translate(var(--tx, 0px), 0px) rotate(0deg);
  }
}

/* PINNED SEQUENCE SECTION */
.pinned-sequence {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at center, var(--color-hero-center) 0%, var(--color-hero-bg) 100%);
  overflow: hidden;
  z-index: 25;
}

.wheel-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 150vh;
  will-change: transform;
}

.top-curve {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10vh;
  z-index: 25;
}

.seq-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 30;
  padding-bottom: 15vh;
  /* Elevates content above the bottom can */
  transform-origin: 50% 150vh;
  /* Distributes panels along the circumference */
}

/* CIRCULAR SCROLL TITLE */
.circular-scroll-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 40;
}

#panel-5 {
  padding-bottom: 0;
}

.mana-style-title {
  color: var(--color-neon);
  font-family: 'General Sans', sans-serif;
  font-size: clamp(50px, 6.5vw, 100px);
  font-weight: 300;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  padding: 0 10%;
}

.mana-style-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 20px;
  /* Slightly smaller for elegance */
  font-weight: 400;
  letter-spacing: 0px;
}

/* ONLY THE BEST SVG */
.only-best-container {
  position: relative;
  width: 100vw;
  height: auto;
  z-index: 28;
  pointer-events: none;
  display: flex;
  justify-content: center;
  opacity: 1;
  /* Fixed visibility */
  will-change: opacity;
}

#panel-5 {
  will-change: opacity;
}

.only-best-svg {
  width: 100%;
  height: 100%;
}

.best-text {
  fill: var(--color-neon);
  font-family: 'General Sans', sans-serif;
  font-size: 110px;
  font-weight: 300;
  letter-spacing: 25px;
}

.deco-circle {
  fill: transparent;
  stroke: var(--color-neon);
  stroke-width: 3px;
}

/* WHEEL IMAGE CARDS */
.image-card {
  width: 450px;
  height: 550px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transform: translateY(-5vh);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.image-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}

.image-card:hover {
  transform: translateY(-7vh) scale(1.02);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5), 0 0 35px rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .image-card {
    width: 320px;
    height: 400px;
  }
}

/* CONTINUOUS SCROLL CONTAINER for sections 2 & 3 */
.continuous-scroll-container {
  position: relative;
  width: 100%;
  z-index: 50;
}

.continuous-scroll-inner {
  width: 100%;
  height: auto; /* Natural stacking — no scrub-based y translation needed */
}

/* COMPARISON SECTION — 50/50 split: image left, table right */
.comparison-section {
  --comparison-mark-width: 130px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 30;
  padding: 0;
  background: #09111C;
  overflow: hidden;
}

.comparison-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
  animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {

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

  50% {
    opacity: 0.55;
    transform: scale(1.08);
  }
}

.comparison-glow-left {
  width: 450px;
  height: 450px;
  top: 20%;
  left: -120px;
  background: rgba(200, 230, 62, 0.1);
}

.comparison-glow-right {
  width: 400px;
  height: 400px;
  right: -100px;
  bottom: 15%;
  background: rgba(25, 70, 120, 0.18);
  animation-delay: 3s;
}

/* ---- LAYOUT: 50/50 GRID ---- */
.comparison-layout {
  position: relative;
  z-index: 3;
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: auto 1fr;
}

/* LEFT COLUMN: Full-height image with decorative curves */
.comparison-visual-shell {
  position: relative;
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.comparison-loop {
  position: absolute;
  top: 0;
  left: -10%;
  width: 110%;
  height: 100%;
  opacity: 1;
}

.comparison-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Cover exact 50vw/100vh area */
}

/* RIGHT COLUMN: Title */
.comparison-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 4vw 20px 6vw;
}

/* Table card — right column row 2 */
.comparison-table-card {
  grid-column: 2;
  grid-row: 2;
}

.comparison-title {
  margin-bottom: 40px;
  font-size: clamp(32px, 4vw, 65px);
  line-height: 1.0;
  font-weight: 900;
  color: white;
  font-style: italic;
  letter-spacing: -2px;
}

.comparison-title-highlight {
  color: var(--color-neon);
}

.comparison-table-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #0A121F;
  /* Very dark navy almost black */
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.comparison-table-card::before {
  display: none;
}

.comparison-table {
  position: relative;
  z-index: 1;
  width: 100%;
}

.comparison-table-head,
.comparison-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) var(--comparison-mark-width) var(--comparison-mark-width);
  align-items: center;
}

.comparison-table-head {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-table-head span:nth-child(2),
.comparison-table-head span:nth-child(3) {
  justify-self: center;
  text-align: center;
}

.comparison-table-head span:first-child,
.comparison-row .comparison-feature {
  padding-left: 24px;
}

.comparison-brand {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.comparison-brand-active {
  padding: 8px 14px;
  border-radius: 20px;
  background: #172F1F;
  color: var(--color-neon);
  font-size: 11px;
}

.comparison-row {
  min-height: 68px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background-color 0.3s ease;
}

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

.comparison-row:hover {
  background: rgba(200, 230, 62, 0.03);
}

.comparison-feature {
  padding-right: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
}

.comparison-mark {
  justify-self: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}

.comparison-mark-positive {
  background: #1F3622;
  color: var(--color-neon);
}

.comparison-mark-negative {
  background: #2c1a1f;
  color: #ff6b6b;
}

.comparison-mark-muted {
  background: #1F3622;
  color: var(--color-neon);
  opacity: 1.0;
}

@keyframes comparisonFloat {

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

  50% {
    transform: translateY(-14px);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 50px;
  }

  .bg-streak {
    font-size: 25vw;
  }

  .comparison-section {
    --comparison-mark-width: 100px;
  }

  .comparison-layout {
    grid-template-columns: 40% 1fr;
    grid-template-rows: auto auto;
    height: auto;
    min-height: auto;
  }

  .comparison-visual-shell {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    height: auto;
    min-height: 280px;
    max-height: 50vh;
  }

  .comparison-copy {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: auto;
    padding: 40px 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .comparison-table-card {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 0 5vw 40px;
  }

  .comparison-title {
    font-size: clamp(32px, 7vw, 52px);
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 0 20px;
    height: 70px;
  }

  .logo {
    font-size: 22px;
  }

  .nav-left {
    display: none;
  }

  .btn-buy-now {
    font-size: 12px;
    padding: 8px 15px;
  }

  .hero-content {
    flex-direction: column;
    justify-content: flex-end;
    padding: 90px 5% 50px;
    align-items: center;
    text-align: center;
  }

  .hero-left-stats {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 15px;
  }

  .stat-badge {
    width: 80px;
    height: 80px;
    animation: none !important;
    /* disable float to prevent overlap */
  }

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

  .stat-text {
    font-size: 9px;
  }

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

  .hero-right-text {
    position: relative;
    right: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50vh;
    /* space for the 3D can */
  }

  .hero-title {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .bg-streak {
    top: 50%;
    font-size: 38vw;
    letter-spacing: -2px;
  }

  .bg-circles .ring {
    opacity: 0.5;
  }

  /* Pinned Sequence */
  .mana-style-title {
    font-size: 7vw;
    padding: 0 5%;
  }

  .mana-style-subtitle {
    font-size: 16px;
  }

  .benefit-card {
    width: 85%;
    padding: 25px;
  }

  .card-header {
    font-size: 22px;
  }

  .card-desc {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .best-text {
    font-size: 130px;
    letter-spacing: 15px;
  }

  .comparison-section {
    --comparison-mark-width: 80px;
  }

  .comparison-visual-shell {
    min-height: 40vh;
    height: 40vh;
  }

  .comparison-copy {
    padding: 40px 20px 50px;
  }

  .comparison-title {
    font-size: clamp(28px, 8vw, 42px);
    margin-bottom: 24px;
  }

  .comparison-table-card {
    border-radius: 16px;
  }

  .comparison-table-head,
  .comparison-row {
    grid-template-columns: minmax(0, 1fr) var(--comparison-mark-width) var(--comparison-mark-width);
  }

  .comparison-table-head {
    font-size: 11px;
  }

  .comparison-table-head span:first-child,
  .comparison-row .comparison-feature {
    padding-left: 16px;
  }

  .comparison-row {
    min-height: 56px;
  }

  .comparison-feature {
    font-size: 14px;
  }

  .comparison-mark {
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .hero-right-text {
    margin-top: 45vh;
  }

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

  .hero-desc {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .shop-btn {
    padding: 12px 30px;
    font-size: 16px;
  }

  .stat-badge {
    width: 70px;
    height: 70px;
  }

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

  .stat-text {
    font-size: 8px;
  }

  .stat-icon svg {
    width: 16px;
    height: 16px;
  }

  .mana-style-title {
    font-size: 8vw;
  }

  .mana-style-subtitle {
    font-size: 14px;
  }

  .best-text {
    font-size: 160px;
    letter-spacing: 10px;
  }

  .comparison-section {
    --comparison-mark-width: 64px;
  }

  .comparison-visual-shell {
    min-height: 35vh;
    height: 35vh;
  }

  .comparison-image {
    width: 60%;
  }

  .comparison-mark {
    width: 32px;
    height: 32px;
    font-size: 16px;
    border-radius: 6px;
  }
}

/* TESTIMONIALS SECTION (PAGE 4) */
.testimonials-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: white;
  background: #0a1a10;
}

.testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.testimonials-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 26, 16, 0.45) 0%, rgba(10, 26, 16, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.testimonials-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.testimonials-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* Pushed to the top */
  padding-top: 15vh;
  text-align: center;
}

.matcha-pretitle {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(16px, 2.5vw, 24px);
  color: var(--color-neon);
  margin-bottom: -5px;
  opacity: 1;
  z-index: 10;
  position: relative;
  text-shadow: 0 4px 20px rgba(200, 230, 62, 0.3);
  letter-spacing: 0.5px;
}

.matcha-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 6vw, 84px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  background: linear-gradient(180deg, #FFFFFF 10%, rgba(255, 255, 255, 0.15) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 5px;
  /* prevents geometric clipping of descenders */
  text-shadow: 0 10px 40px rgba(255, 255, 255, 0.05);
}

.testimonials-bottom {
  padding-bottom: 2vh;
  text-align: center;
}

.testimonials-heading {
  font-size: 11px;
  letter-spacing: 4px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 24px;
  border-radius: 40px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  margin-bottom: 25px;
}

.testimonials-slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 8vh;
}

.slider-arrows-centered {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 10;
}

.slider-btn {
  background: white;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F3631;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
  border: none;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
  background: #eee;
  transform: scale(1.1);
}

.testimonials-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}

.testimonials-wrapper:active {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 20px 0;
  transition: none;
  /* handled strictly by GSAP */
  user-select: none;
  -webkit-user-select: none;
}

.testimonial-card {
  flex: 0 0 350px;
  background-color: rgba(20, 40, 25, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(200, 230, 62, 0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  color: #ffffff;
  transition: box-shadow 0.4s ease, border-color 0.4s ease, background-color 0.4s ease, color 0.4s ease, opacity 0.4s ease;
  will-change: transform, box-shadow;
}

.testimonial-card.is-active {
  background-color: #ffffff;
  color: #2F3631;
}

/* CSS active/hover removed to completely defer to GSAP explicitly requested formulas */
.testimonial-card:hover .stars {
  animation: pulseStars 1.5s ease-in-out infinite;
}

@keyframes pulseStars {
  0% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(200, 230, 62, 0);
  }

  50% {
    transform: scale(1.08);
    text-shadow: 0 0 10px rgba(200, 230, 62, 0.6);
  }

  100% {
    transform: scale(1);
    text-shadow: 0 0 0 rgba(200, 230, 62, 0);
  }
}

.stars {
  color: var(--color-neon);
  font-size: 12px;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.test-title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
  color: inherit;
  transition: color 0.4s ease;
}

.test-body {
  font-size: 15px;
  line-height: 1.4;
  color: inherit;
  opacity: 0.85;
  margin-bottom: 20px;
  flex-grow: 1;
  transition: color 0.4s ease;
}

.test-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.test-name {
  font-weight: 700;
  font-size: 15px;
  color: inherit;
  transition: color 0.4s ease;
}

.test-verified {
  font-size: 12px;
  color: inherit;
  opacity: 0.6;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media (max-width: 768px) {
  .testimonials-slider-container {
    padding: 0;
  }

  .slider-btn {
    display: none;
  }

  .testimonials-track {
    padding: 10px 20px;
  }

  .testimonial-card {
    flex: 0 0 280px;
  }

  .matcha-title {
    font-size: clamp(40px, 12vw, 80px);
  }
}

/* ============================================= */
/* INSTAGRAM / LIKE PAGE SECTION                 */
/* ============================================= */

.insta-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--color-neon);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 40;
}

/* Subtle grain / noise overlay for texture */
.insta-bg-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.06;
  pointer-events: none;
  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)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ---- SPLIT LAYOUT ---- */
.insta-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) clamp(32px, 5vw, 80px);
}

/* ---- LEFT COLUMN: TEXT & CTAs ---- */
.insta-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}

/* Kicker badge */
.insta-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-base);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-hero-bg);
  background: rgba(13, 27, 42, 0.1);
  border: 1.5px solid rgba(13, 27, 42, 0.2);
  padding: 8px 16px 8px 13px;
  border-radius: 30px;
  margin-bottom: 2px;
}

.insta-handle {
  font-family: var(--font-base);
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 900;
  letter-spacing: 6px;
  color: var(--color-hero-bg);
  text-transform: uppercase;
  opacity: 0.6;
}

.insta-headline {
  font-family: var(--font-base);
  font-size: clamp(40px, 6vw, 90px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: var(--color-hero-bg);
}

/* Tagline subtitle */
.insta-tagline {
  font-family: var(--font-base);
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 500;
  color: var(--color-hero-bg);
  opacity: 0.5;
  line-height: 1.55;
  max-width: 340px;
  margin-top: 4px;
}

/* ---- RIGHT COLUMN: IMAGE GRID ---- */
.insta-gallery {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 14px;
  min-width: 0;
}

/* Photo 1 spans 2 rows for a tall card */
.insta-photo-1 { grid-row: 1 / 3; }

.insta-photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.2),
    0 4px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.65);
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.4s ease;
}

.insta-photo-1 { transform: rotate(-3deg); }
.insta-photo-2 { transform: rotate(2deg); }
.insta-photo-3 { transform: rotate(1.5deg); }
.insta-photo-4 { transform: rotate(-2deg); }
.insta-photo-5 { transform: rotate(3deg); grid-column: 2 / 4; }

.insta-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 5;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.insta-photo-1 img { aspect-ratio: 3 / 5; }
.insta-photo-5 img { aspect-ratio: 16 / 9; }

.insta-photo:hover {
  transform: rotate(0deg) scale(1.04);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.insta-photo:hover img {
  transform: scale(1.06);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .insta-split {
    gap: 32px;
  }
  .insta-headline {
    font-size: clamp(34px, 5.5vw, 70px);
    letter-spacing: -2px;
  }
}

@media (max-width: 768px) {
  .insta-section {
    min-height: auto;
  }
  .insta-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 60px 24px;
  }
  .insta-left {
    align-items: center;
  }
  .insta-headline {
    font-size: clamp(32px, 10vw, 56px);
    letter-spacing: -1px;
    text-align: center;
  }
  .insta-handle {
    font-size: clamp(14px, 4vw, 20px);
    letter-spacing: 4px;
  }
  .insta-tagline {
    text-align: center;
    max-width: 300px;
  }
  .insta-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    max-width: 500px;
  }
  .insta-photo-1 { grid-row: auto; }
  .insta-photo-5 { grid-column: 1 / 3; }
  .insta-photo-1 img { aspect-ratio: 4 / 5; }
}

@media (max-width: 480px) {
  .insta-headline {
    font-size: clamp(28px, 9vw, 44px);
  }
  .insta-kicker {
    font-size: 9px;
    padding: 7px 13px 7px 11px;
  }
  .insta-gallery {
    gap: 8px;
  }
}


/* ================================================
   TESTIMONIALS — THEME REFRESH
   ================================================ */

/* Badge-style pretitle — fix missing Instrument Serif, match brand */
.matcha-pretitle {
  font-family: var(--font-base);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(10px, 1.3vw, 13px);
  color: var(--color-neon);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
  background: rgba(200, 230, 62, 0.07);
  border: 1px solid rgba(200, 230, 62, 0.22);
  padding: 9px 22px;
  border-radius: 30px;
  display: inline-block;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: none;
  opacity: 1;
}

/* Big bold heading — fix missing Inter, use Outfit Black */
.matcha-title {
  font-family: var(--font-base);
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -5px;
  background: linear-gradient(160deg, #ffffff 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 12px;
  text-transform: uppercase;
  text-shadow: none;
}

/* Community badge → neon themed */
.testimonials-heading {
  background: rgba(200, 230, 62, 0.08);
  border: 1px solid rgba(200, 230, 62, 0.25);
  color: var(--color-neon);
  font-size: 10px;
  letter-spacing: 5px;
  text-shadow: 0 0 20px rgba(200, 230, 62, 0.2);
  box-shadow: 0 4px 20px rgba(200, 230, 62, 0.08);
}

/* Arrow buttons → themed, neon on hover */
.slider-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
  background: var(--color-neon);
  border-color: var(--color-neon);
  color: var(--color-hero-bg);
  transform: scale(1.1);
}

/* Active card: fix invisible border on white background */
.testimonial-card.is-active .test-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

/* Active card: dark green stars visible on white background */
.testimonial-card.is-active .stars {
  color: var(--color-dark-green);
}

@media (max-width: 768px) {
  .matcha-title {
    font-size: clamp(56px, 14vw, 100px);
    letter-spacing: -3px;
  }
}

/* ================================================
   INSTAGRAM / LAST PAGE — ENHANCEMENTS
   ================================================ */

/* Top edge: subtle dark separator from neon section */
.insta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(13, 27, 42, 0.5), transparent);
  z-index: 10;
}

/* Follow button — replaces plain icon-only link */
.insta-follow-btn {
  pointer-events: auto;
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-neon);
  background: var(--color-hero-bg);
  padding: 15px 36px;
  border-radius: 40px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.insta-follow-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.insta-follow-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--color-neon);
}

@media (max-width: 768px) {
  .insta-follow-btn {
    font-size: 11px;
    padding: 13px 28px;
    gap: 8px;
  }

  .insta-follow-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Shop CTA Buttons */
.insta-shop-buttons {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.insta-shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-base);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-decoration: none;
  padding: 18px 42px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.3s ease,
              color 0.3s ease,
              border-color 0.3s ease;
}

/* Shine sweep on hover */
.insta-shop-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  transition: none;
  pointer-events: none;
}

.insta-shop-btn:hover::after {
  animation: btnShine 0.6s ease forwards;
}

@keyframes btnShine {
  0% { left: -100%; }
  100% { left: 120%; }
}

/* Primary filled button — dark bg on neon section */
.insta-shop-btn-primary {
  background: var(--color-hero-bg);
  color: var(--color-neon);
  border: 2px solid var(--color-hero-bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.insta-shop-btn-primary:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(0, 0, 0, 0.1);
}

.insta-shop-btn-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Outline button */
.insta-shop-btn-outline {
  background: transparent;
  color: var(--color-hero-bg);
  border: 2px solid var(--color-hero-bg);
}

.insta-shop-btn-outline:hover {
  background: var(--color-hero-bg);
  color: var(--color-neon);
  border-color: var(--color-hero-bg);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
}

.insta-shop-btn-outline:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Arrow slide on hover */
.btn-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.insta-shop-btn-outline:hover .btn-arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .insta-shop-buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .insta-shop-btn {
    font-size: 13px;
    padding: 16px 36px;
    width: 100%;
    max-width: 260px;
  }
}

/* ================================================
   SITE FOOTER
   ================================================ */

.site-footer {
  position: relative;
  width: 100%;
  background: #080f1a;
  overflow: hidden;
  color: white;
  font-family: var(--font-base);
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  z-index: 0;
}

.footer-glow-left {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -100px;
  background: rgba(200, 230, 62, 0.055);
}

.footer-glow-right {
  width: 360px;
  height: 360px;
  bottom: -80px;
  right: -80px;
  background: rgba(25, 70, 120, 0.09);
}

/* Animated top glow line */
.footer-glow-line {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(200, 230, 62, 0.15) 20%,
    rgba(200, 230, 62, 0.6) 50%,
    rgba(200, 230, 62, 0.15) 80%,
    transparent 100%
  );
  animation: glowLinePulse 3s ease-in-out infinite;
}

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

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 80px 40px;
}

/* 4-column layout */
.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Brand column */
.footer-brand-col {
  gap: 16px;
}

.footer-logo-link {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--color-neon);
  text-decoration: none;
  line-height: 1;
  transition: text-shadow 0.3s ease;
}

.footer-logo-link:hover {
  text-shadow: 0 0 15px rgba(200, 230, 62, 0.4);
}

.footer-brand-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.3);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease, background 0.3s ease, transform 0.15s ease;
}

.footer-social-icon:hover {
  color: var(--color-neon);
  background: rgba(255, 255, 255, 0.1);
}

.footer-social-icon .icon {
  width: 16px;
  height: 16px;
}

/* Column titles */
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 8px;
}

/* Column links */
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-link:hover {
  color: var(--color-neon);
}

/* Product info column */
.footer-product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-product-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Credits bar */
.footer-credits {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 80px;
}

.footer-credits-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 400;
}

.footer-made-with {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  animation: subtlePulse 2s infinite;
}




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

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-columns {
    gap: 40px;
    flex-wrap: wrap;
  }

  .footer-brand-col {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .footer-inner {
    padding: 60px 24px 32px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 36px;
  }

  .footer-credits {
    padding: 20px 24px;
  }

  .footer-credits-inner {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    padding: 48px 20px 28px;
  }

  .footer-credits {
    padding: 18px 20px;
  }
}