/* =============================================
   FITCHECK AI — GEN Z / AURA / CYBER-STREETWEAR
   Huge Typo, Dark Mode, Noise, Pill Buttons
   ============================================= */

:root {
  --bg-main: #050505;
  --bg-darker: #000000;
  --text-main: #ffffff;
  --accent: #e1ff00;
  /* Neon Lime/Lime Green */
  --aura-1: rgba(225, 255, 0, 0.3);
  /* Neon Yellow/Green */
  --aura-2: rgba(180, 255, 0, 0.25);
  /* Lighter Neon Green */
  --font-bold: "Inter", sans-serif;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-main);
  color: var(--text-main);
}

body {
  font-family: var(--font-bold);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE OVERLAY ── */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' 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;
}

/* ── AURA BG ── */
.aura {
  position: fixed;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.6;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: auraPulse 10s ease-in-out infinite alternate;
}

.aura-1 {
  background: radial-gradient(circle, var(--aura-1), transparent 70%);
  top: -20%;
  left: -20%;
}

.aura-2 {
  background: radial-gradient(circle, var(--aura-2), transparent 70%);
  bottom: -20%;
  right: -20%;
  animation-delay: -5s;
}

@keyframes auraPulse {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.1) translate(2%, 2%);
  }
}

/* ── UTILS ── */
.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 2rem;
}

.mt-5 {
  margin-top: 4rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 4rem;
}

.text-center {
  text-align: center;
}

.op-50 {
  opacity: 0.5;
}

/* ── PRELOADER ── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-main);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.loader-text {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: #fff;
  text-transform: uppercase;
}

.loader-bar-wrap {
  width: 200px;
  height: 4px;
  background: #222;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  animation: loadBar 1.2s ease-in-out infinite;
}

@keyframes loadBar {
  0% {
    left: -30%;
    width: 30%;
  }

  50% {
    width: 50%;
  }

  100% {
    left: 100%;
    width: 30%;
  }
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* ── LOADER ICONS ── */
.loader-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.l-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  color: var(--accent);
  opacity: 0;
  filter: drop-shadow(0 0 10px var(--accent));
}

.l-icon-1 {
  top: 20%;
  left: 25%;
  animation: floatIcon 3s ease-in-out infinite, pulseIcon 2s infinite alternate;
}

.l-icon-2 {
  top: 30%;
  right: 20%;
  width: 40px;
  height: 40px;
  animation: floatIcon 4s ease-in-out infinite reverse, pulseIcon 2.5s infinite alternate;
}

.l-icon-3 {
  bottom: 25%;
  left: 30%;
  animation: floatIcon 3.5s ease-in-out infinite, pulseIcon 2.2s infinite alternate;
}

.l-icon-4 {
  bottom: 20%;
  right: 25%;
  width: 36px;
  height: 36px;
  animation: floatIcon 4.5s ease-in-out infinite reverse, pulseIcon 1.8s infinite alternate;
}

@keyframes floatIcon {

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

  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

@keyframes pulseIcon {
  0% {
    opacity: 0.1;
    transform: scale(0.9);
  }

  100% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* ── BUTTONS (PILL) ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-pill {
  border-radius: 999px;
}

.btn-neon {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px rgba(225, 255, 0, 0.4);
}

.btn-neon:hover {
  background: #fff;
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid var(--text-main);
  color: var(--text-main);
}

.btn-outline:hover {
  background: var(--text-main);
  color: #000;
}

.btn-white {
  background: #fff;
  color: #000;
}

.btn-white:hover {
  background: var(--accent);
}

/* ── GIRL MODE OVERRIDES ── */
body.girl-mode {
  --accent: #FFB7C5;
  /* Rose Gold */
  --aura-1: rgba(255, 183, 197, 0.4);
  --aura-2: rgba(255, 246, 249, 0.4);
  /* Soft Pearl */
}

/* ── MODE TOGGLE ── */
.mode-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.m-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #666;
  white-space: nowrap;
  transition: 0.3s;
}

.m-label.active {
  color: #fff;
}

.m-switch {
  width: 44px;
  height: 24px;
  background: #222;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
  border: 1px solid #444;
  transition: 0.3s;
}

.m-knob {
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.girl-mode .m-switch {
  background: #332528;
  border-color: #66494f;
}

body.girl-mode .m-knob {
  left: 22px;
}

body.girl-mode .scanner-laser {
  background: rgba(255, 183, 197, 0.7);
  box-shadow: 0 0 15px var(--accent);
}

/* ── NAV ── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 5%;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-mini {
  background: #222;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #444;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: #888;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* ── MOBILE MENU ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-links {
  list-style: none;
  text-align: center;
}

.mobile-link {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  margin: 1.5rem 0;
  letter-spacing: -0.05em;
  transition: color 0.3s;
}

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

/* ── HERO BRUTALIST ── */
.hero-brutal {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 5%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}

.hero-container {
  position: relative;
}

.hero-mega {
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 2;
  word-break: break-word;
}

.hero-mega.indent {
  padding-left: 10%;
}

/* GLITCH EFFECT */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.glitch::before {
  color: #0ff;
  z-index: -1;
  animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
}

.glitch::after {
  color: #f0f;
  z-index: -2;
  animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite reverse;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-2px, 2px);
  }

  40% {
    transform: translate(-2px, -2px);
  }

  60% {
    transform: translate(2px, 2px);
  }

  80% {
    transform: translate(2px, -2px);
  }

  100% {
    transform: translate(0);
  }
}

.glitch::before,
.glitch::after {
  display: none;
}

/* Only active via JS on hover to avoid seizure */
.glitch:hover::before,
.glitch:hover::after {
  display: block;
}

.hero-imagery {
  position: absolute;
  top: 0rem;
  right: 5%;
  width: 35vw;
  max-width: 400px;
  z-index: 10;
  pointer-events: none;
}

.polaroid-card {
  background: #111;
  padding: 10px 10px 20px;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
  transform: rotate(4deg);
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  filter: contrast(1.1) brightness(0.9);
}

.p-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 0 5px;
}

.p-score {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--accent);
}

.p-tag {
  font-size: 0.65rem;
  color: #888;
  font-weight: 800;
}

.scanner-laser {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: rgba(225, 255, 0, 0.7);
  box-shadow: 0 0 15px var(--accent);
  border-radius: 999px;
  animation: scanDown 4s ease-in-out infinite;
}

@keyframes scanDown {

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

  50% {
    transform: translateY(300px);
  }
}

.float-anim {
  animation: floatBox 6s ease-in-out infinite;
}

@keyframes floatBox {

  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.hero-desc {
  max-width: 400px;
  margin-top: 4rem;
  font-size: 1rem;
  color: #aaa;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  z-index: 5;
}

/* ── MARQUEE ── */
.marquee-wrap {
  width: 100%;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 1.5rem 0;
  overflow: hidden;
  background: #000;
  display: flex;
  margin: 4rem 0;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 900;
  animation: scrollLeft 15s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.marquee-content span {
  padding-right: 2rem;
  color: var(--accent);
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── DRIP ANALYSIS ── */
.drip-analysis {
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.drip-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.badge-tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.title-bold {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.text-sub {
  font-size: 1.1rem;
  color: #888;
  line-height: 1.6;
}

.bars-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bar-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.bar-track {
  width: 100%;
  height: 8px;
  background: #222;
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #fff;
  width: 0%;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.bar-item:nth-child(2) .bar-fill {
  background: var(--aura-1);
}

.bar-item:nth-child(3) .bar-fill {
  background: var(--accent);
}

/* VIBE CODE TERMINAL */
.glass-panel {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.gp-header {
  background: #111;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #222;
}

.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  margin-right: 6px;
}

.dots span:nth-child(1) {
  background: #ff5f56;
}

.dots span:nth-child(2) {
  background: #ffbd2e;
}

.dots span:nth-child(3) {
  background: #27c93f;
}

.gp-title {
  margin: 0 auto;
  padding-right: 48px;
  font-size: 0.7rem;
  color: #666;
  font-family: monospace;
}

.gp-code {
  font-family: monospace;
  padding: 2rem;
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.8;
}

.c-key {
  color: #f0f;
}

.c-var {
  color: #0ff;
}

.c-green {
  color: var(--accent);
}

.c-dim {
  color: #555;
  font-style: italic;
}

/* ── BENTO GRID ── */
.bento-section {
  max-width: 1400px;
  margin: 4rem auto 8rem;
  padding: 0 5%;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 300px 300px;
  gap: 1.5rem;
}

.bento-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  filter: grayscale(20%);
  transition:
    filter 0.3s,
    transform 0.3s;
}

.bento-box:hover {
  filter: grayscale(0%);
  transform: translateY(-5px);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.bento-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glass-blur {
  position: absolute;
  inset: 20px 20px auto;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-blur.bottom {
  inset: auto 20px 20px;
}

.glass-blur h3 {
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.glass-blur p {
  font-size: 0.8rem;
  color: #aaa;
}

.box-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.box-2 {
  grid-column: 3 / 5;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem;
}

.bg-neon {
  background: var(--accent);
  color: #000;
  border: none;
}

.mega-outline {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--accent);
  -webkit-text-stroke: 2px #000;
}

.box-3 {
  grid-column: 3 / 5;
  grid-row: 2;
}

/* ── FOOTER MEGA ── */
.footer-mega {
  border-top: 1px solid #222;
  padding: 6rem 5% 4rem;
  background: #000;
}

.footer-title {
  font-size: clamp(4rem, 15vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.8;
  -webkit-text-stroke: 2px var(--accent);
  color: transparent;
  transition: 0.4s;
}

.footer-title:hover {
  color: var(--accent);
}

.footer-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

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

/* ── PRICING SECTION ── */
.pricing-section {
  max-width: 1200px;
  margin: 4rem auto 8rem;
  padding: 0 5%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.pricing-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card h3 {
  font-size: 1rem;
  color: #888;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2rem;
}

.pricing-card .p-mo {
  font-size: 1rem;
  color: #666;
  font-weight: 600;
}

.p-features {
  list-style: none;
  margin-bottom: 2.5rem;
  text-align: center;
}

.p-features li {
  color: #aaa;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  border-bottom: 1px solid #222;
  padding-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.p-features li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pricing-card.popular {
  background: #1a1a1a;
  border: 1px solid var(--accent);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.badge-pop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--accent);
  color: #000;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  letter-spacing: 0.1em;
}

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

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── ECOSYSTEM FEATURES ── */
.eco-features {
  max-width: 1400px;
  margin: 0 auto 8rem;
  padding: 0 5%;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.eco-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  grid-column: span 2;
}

.eco-card.span-3 {
  grid-column: span 3;
}

.eco-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(225, 255, 0, 0.1);
}

.eco-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
      rgba(225, 255, 0, 0.1),
      transparent 50%);
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

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

.eco-number {
  font-size: 3rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  margin-bottom: 1rem;
  transition: 0.4s;
}

.eco-card:hover .eco-number {
  -webkit-text-stroke: 1px var(--accent);
  color: rgba(225, 255, 0, 0.1);
}

.eco-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  color: #fff;
}

.eco-desc {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-imagery {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 3rem auto 0;
    right: 0;
  }

  .hero-brutal {
    padding-top: calc(var(--nav-h) + 2rem);
  }

  .hero-mega.indent {
    padding-left: 0;
  }

  .drip-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .box-1 {
    grid-column: 1 / 3;
    grid-row: 1;
    height: 400px;
  }

  .box-2 {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .box-3 {
    grid-column: 1 / 3;
    grid-row: 3;
    height: 350px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pricing-card.popular {
    transform: none;
    z-index: auto;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .eco-card.span-3,
  .eco-card {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-inner {
    gap: 0.5rem;
  }

  .nav-logo {
    font-size: 1.25rem;
  }

  .badge-mini {
    display: none;
    /* Hide beta badge on small mobile to save space */
  }

  .mode-toggle .m-label {
    display: none;
    /* Hide labels on mobile toggle */
  }

  .nav-cta {
    gap: 0.5rem !important;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
  }

  .gp-code {
    font-size: 0.75rem;
    padding: 1.5rem;
  }

  .gp-title {
    padding-right: 0;
  }

  .hero-mega {
    font-size: clamp(3rem, 15vw, 6rem);
  }

  .hero-desc {
    max-width: 100%;
    margin-top: 2rem;
    font-size: 0.95rem;
  }

  .title-bold {
    font-size: 2.2rem;
  }

  .eco-card.span-3,
  .eco-card {
    grid-column: span 6;
    padding: 1.5rem;
  }

  .eco-number {
    font-size: 2.5rem;
  }

  .bento-box {
    height: 300px !important;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  /* LIST STYLE PRICING AS PER DRAWING */
  .pricing-grid {
    gap: 0.75rem;
  }

  .pricing-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    text-align: left;
    padding: 1.25rem;
    align-items: center;
    border-radius: 12px;
  }

  .pricing-card h3 {
    grid-column: 1 / 2;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
  }

  .pricing-card .price {
    grid-column: 1 / 2;
    margin-bottom: 0;
    font-size: 1.8rem;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
  }

  .pricing-card .p-mo {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .pricing-card .p-features {
    display: none;
    /* Hide features in list view to keep it clean like the drawing */
  }

  .pricing-card .btn {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    padding: 0.6rem 1rem;
    font-size: 0.65rem;
    width: 100px;
  }

  .pricing-card.popular {
    transform: none;
    margin: 0;
  }

  .badge-pop {
    top: 0.75rem;
    right: 1.25rem;
    transform: none;
    font-size: 0.55rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    left: auto;
  }
}

@media (max-width: 480px) {
  .hero-mega {
    font-size: 3.5rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .footer-title {
    font-size: 4rem;
  }
}