/* ========================================
   CashBFF V2 — styles.css
   Editorial brutalist × Gen Z energy
   ======================================== */

/* --- Font Faces --- */
@font-face {
  font-family: 'Greed Condensed';
  src: url('fonts/GreedCondensed-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Greed Condensed';
  src: url('fonts/GreedCondensed-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

/* --- Custom Properties --- */
:root {
  --cash-green: #014751;
  --cash-green-dark: #01353d;
  --electric-green: #D3FFB4;
  --periwinkle: #C5B6F1;
  --off-black: #1A1717;
  --vanilla: #FCFAF2;

  --font-display: 'Greed Condensed', 'Arial Narrow', Impact, sans-serif;
  --font-sub: 'Greed Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Instrument Sans', system-ui, -apple-system, sans-serif;

  --max-width: 1200px;
  --nav-height: 72px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--off-black);
  background: var(--vanilla);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Grain overlay --- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* --- Section titles --- */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--cash-green);
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 0.95;
}

.section-title--light {
  color: var(--electric-green);
}

.section-title--dark {
  color: var(--off-black);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.4s var(--ease-out-back),
    box-shadow 0.4s var(--ease-smooth),
    background 0.3s ease;
  background: var(--electric-green);
  color: var(--off-black);
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

.btn--sm {
  font-size: 0.875rem;
  padding: 0.65rem 1.5rem;
}

.btn--large {
  font-size: 1.125rem;
  padding: 1.15rem 3rem;
  font-weight: 700;
}

.btn--electric {
  background: var(--electric-green);
  color: var(--off-black);
}

.btn--electric:hover {
  box-shadow: 0 12px 40px rgba(211, 255, 180, 0.3), 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn--magnetic {
  will-change: transform;
}


/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.5s var(--ease-smooth),
    backdrop-filter 0.5s var(--ease-smooth),
    border-color 0.5s var(--ease-smooth),
    box-shadow 0.5s var(--ease-smooth);
}

.nav--scrolled {
  background: rgba(1, 71, 81, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(211, 255, 180, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 28px;
  width: auto;
  transition: opacity 0.3s ease;
}

.nav__logo:hover img {
  opacity: 0.8;
}

.nav__cta {
  font-size: 0.875rem;
  padding: 0.6rem 1.4rem;
  background: var(--electric-green);
  color: var(--off-black);
}

.nav__cta:hover {
  background: #e0ffca;
}


/* ============ HERO ============ */
.hero {
  background: var(--cash-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 2.5rem) 2rem 2.5rem;
}

/* Dot grid texture */
.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(211, 255, 180, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 70%);
}

/* Soft gradient glows */
.hero__glow--1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 255, 180, 0.08) 0%, transparent 70%);
  top: -15%;
  right: -10%;
  pointer-events: none;
  filter: blur(40px);
}

.hero__glow--2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 182, 241, 0.07) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  pointer-events: none;
  filter: blur(40px);
}

.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero__content {
  flex: 1;
  min-width: 0;
}

/* Pill badge */
.pill {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric-green);
  border: 1px solid rgba(211, 255, 180, 0.2);
  border-radius: 100px;
  padding: 0.5rem 1.75rem;
  margin-bottom: 1.25rem;
  background: rgba(211, 255, 180, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Hero headline - massive brutalist typography */
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  line-height: 0.9;
  color: var(--electric-green);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.line {
  display: block;
  will-change: transform;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--vanilla);
  max-width: 480px;
  margin: 0 0 1.5rem;
  opacity: 0.8;
  line-height: 1.75;
  font-weight: 400;
}

.hero__sub em {
  font-style: italic;
  color: var(--electric-green);
  font-weight: 500;
}

.hero__ctas {
  margin-bottom: 0;
}

.hero__ctas .btn {
  background: var(--electric-green);
  color: var(--off-black);
  font-weight: 700;
}

.hero__ctas .btn:hover {
  box-shadow:
    0 0 40px rgba(211, 255, 180, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Hero price tag - 3D flip */
.hero__tag {
  perspective: 600px;
  width: 160px;
  height: 80px;
  margin: 0 auto;
}

.hero__tag-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: tagFlip 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes tagFlip {
  0%, 40% {
    transform: rotateX(0deg);
  }
  50%, 90% {
    transform: rotateX(180deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}

.hero__tag-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hero__tag-front {
  background: rgba(211, 255, 180, 0.1);
  border: 1px solid rgba(211, 255, 180, 0.2);
}

.hero__tag-back {
  background: rgba(197, 182, 241, 0.15);
  border: 1px solid rgba(197, 182, 241, 0.25);
  transform: rotateX(180deg);
}

.hero__tag-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(252, 250, 242, 0.5);
  margin-bottom: 0.15rem;
}

.hero__tag-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--electric-green);
}

.hero__tag-back .hero__tag-value {
  color: var(--periwinkle);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(252, 250, 242, 0.35);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(211, 255, 180, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
    transform-origin: top;
  }
}


/* ============ MARQUEE ============ */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 1.125rem 0;
}

.marquee--green {
  background: var(--electric-green);
  color: var(--off-black);
}

.marquee--periwinkle {
  background: var(--periwinkle);
  color: var(--off-black);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee--reverse .marquee__track {
  animation-direction: reverse;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee__content span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0 1rem;
}

.marquee__dot {
  opacity: 0.5;
  font-size: 0.75rem !important;
}

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


/* ============ HOW IT WORKS ============ */
.how {
  background: var(--vanilla);
  padding: 8rem 2rem;
  position: relative;
}

.how__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.how__card {
  background: #fff;
  border-radius: 20px;
  padding: 2.75rem 2rem 2.5rem;
  text-align: center;
  border: 1px solid rgba(1, 71, 81, 0.05);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.5s var(--ease-out-back),
    box-shadow 0.5s var(--ease-smooth);
}

/* Gradient border on hover */
.how__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(211, 255, 180, 0.4) 30%,
    rgba(197, 182, 241, 0.4) 70%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}

.how__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(1, 71, 81, 0.08);
}

.how__card:hover::before {
  opacity: 1;
}

.how__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 5rem;
  color: var(--periwinkle);
  opacity: 1;
  position: absolute;
  top: 0.75rem;
  right: 1.5rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.how__icon {
  margin-bottom: 1.5rem;
  color: var(--cash-green);
  transition: transform 0.4s var(--ease-out-back);
}

.how__card:hover .how__icon {
  transform: scale(1.1) rotate(-3deg);
}

.how__card-title {
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: var(--cash-green);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.how__card-text {
  font-size: 0.9375rem;
  color: #666;
  line-height: 1.7;
}


/* ============ INTERACTIVE DEMO ============ */
.demo {
  background: var(--cash-green);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Subtle aurora glow */
.demo__aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(197, 182, 241, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(211, 255, 180, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 30% at 50% 50%, rgba(211, 255, 180, 0.03) 0%, transparent 60%);
  animation: auroraDrift 12s ease-in-out infinite alternate;
}

@keyframes auroraDrift {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(-20px) translateY(10px);
  }
}

.demo__inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.demo__sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  color: var(--vanilla);
  opacity: 0.7;
  margin-top: -1.5rem;
  margin-bottom: 3.5rem;
  line-height: 1.6;
}

.demo__converter {
  margin-bottom: 3rem;
}

/* MASSIVE input field */
.demo__input-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.demo__dollar {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5rem);
  color: rgba(211, 255, 180, 0.3);
  line-height: 1;
  transition: color 0.3s ease;
}

.demo__input-wrap:focus-within .demo__dollar {
  color: var(--electric-green);
}

.demo__input {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--electric-green);
  background: transparent;
  border: none;
  outline: none;
  width: 5ch;
  text-align: left;
  caret-color: var(--electric-green);
  line-height: 1;
  border-bottom: 3px solid rgba(211, 255, 180, 0.15);
  padding-bottom: 0.15em;
  transition: border-color 0.3s ease;
}

.demo__input::placeholder {
  color: rgba(211, 255, 180, 0.2);
}

.demo__input:focus {
  border-bottom-color: var(--electric-green);
  box-shadow: 0 4px 20px rgba(211, 255, 180, 0.1);
}

/* Results 2x2 grid */
.demo__results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.demo__result {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    transform 0.4s var(--ease-out-back),
    background 0.4s ease,
    border-color 0.4s ease;
}

.demo__result:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(211, 255, 180, 0.15);
}

.demo__result-icon {
  font-size: 2rem;
  line-height: 1;
}

.demo__result-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--electric-green);
  line-height: 1;
}

.demo__result-label {
  font-size: 0.8125rem;
  color: rgba(252, 250, 242, 0.5);
  font-weight: 500;
  text-transform: lowercase;
}

.demo__note {
  font-size: 0.75rem;
  color: rgba(252, 250, 242, 0.3);
  font-weight: 400;
}

.demo__inner > .btn {
  margin-top: 0.5rem;
}


/* ============ COMING SOON ============ */
.coming {
  background: var(--electric-green);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.coming__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.coming__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

/* Glassmorphism cards */
.coming__card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition:
    transform 0.5s var(--ease-out-back),
    box-shadow 0.5s var(--ease-smooth);
}

.coming__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
}

.coming__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.coming__badge--live {
  background: var(--cash-green);
  color: var(--electric-green);
}

.coming__badge--soon {
  background: var(--periwinkle);
  color: var(--off-black);
}

.coming__card h3 {
  font-family: var(--font-sub);
  font-weight: 500;
  font-size: 1.375rem;
  text-transform: uppercase;
  color: var(--cash-green);
  margin-bottom: 0.625rem;
  letter-spacing: 0.01em;
}

.coming__card p {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.6;
}


/* ============ FOOTER ============ */
.footer {
  background: var(--off-black);
  padding: 6rem 2rem 3rem;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Massive footer headline */
.footer__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 7rem);
  text-transform: uppercase;
  color: var(--vanilla);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}

.footer__headline .line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.footer__headline .line {
  display: block;
}

.footer__cta {
  margin-bottom: 4rem;
}

.footer__cta:hover {
  box-shadow:
    0 0 40px rgba(211, 255, 180, 0.25),
    0 12px 40px rgba(0, 0, 0, 0.2);
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__logo img {
  height: 24px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer__logo:hover img {
  opacity: 1;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--vanilla);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.footer__link:hover {
  opacity: 1;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}

.footer__bottom p:first-child {
  font-size: 0.75rem;
  color: var(--vanilla);
  opacity: 0.3;
}

.footer__bottom p:last-child {
  font-size: 0.6875rem;
  color: var(--vanilla);
  opacity: 0.2;
}


/* ============ BROWSER MOCKUP ============ */
.mockup {
  position: relative;
  flex: 0 0 auto;
  width: 420px;
}

.mockup__glow {
  position: absolute;
  width: 80%;
  height: 60%;
  bottom: -20px;
  left: 10%;
  background: radial-gradient(ellipse, rgba(211, 255, 180, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.mockup__browser {
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(211, 255, 180, 0.06);
  background: #fff;
  position: relative;
}

.mockup__toolbar {
  background: linear-gradient(180deg, #f8f8f8, #f0f0f0);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid #e0e0e0;
}

.mockup__dots {
  display: flex;
  gap: 6px;
}

.mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.mockup__dots span:nth-child(1) { background: #ff5f57; }
.mockup__dots span:nth-child(2) { background: #ffbd2e; }
.mockup__dots span:nth-child(3) { background: #28c840; }

.mockup__url {
  flex: 1;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mockup__body {
  padding: 1.5rem;
}

.mockup__product {
  display: flex;
  gap: 1.25rem;
  text-align: left;
}

.mockup__img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 50%, #eee 100%);
  background-size: 200% 200%;
  animation: mockupShimmer 3s ease-in-out infinite;
}

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

.mockup__info {
  flex: 1;
  min-width: 0;
}

.mockup__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--off-black);
  margin-bottom: 0.35rem;
}

.mockup__stars {
  font-size: 0.8125rem;
  color: #f5a623;
  margin-bottom: 0.75rem;
}

.mockup__stars span {
  color: #999;
  font-size: 0.75rem;
}

.mockup__prices {
  position: relative;
  min-height: 2rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.mockup__price {
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.5s var(--ease-out-expo);
}

.mockup__price--old {
  color: var(--off-black);
}

.mockup__price--new {
  color: var(--cash-green);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(10px);
}

.mockup__price--old.hidden {
  opacity: 0;
  transform: translateY(-10px);
}

.mockup__price--new.visible {
  opacity: 1;
  transform: translateY(0);
}

.mockup__cashbff {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--cash-green);
  background: var(--electric-green);
  border-radius: 100px;
  padding: 0.3rem 0.7rem;
  opacity: 0;
  transform: scale(0.8) translateY(4px);
  transition: all 0.5s var(--ease-out-back);
  transition-delay: 0.15s;
}

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


/* ============ RESPONSIVE ============ */

/* Tablet & small desktop */
@media (max-width: 810px) {
  :root {
    --nav-height: 64px;
  }

  .hero {
    padding: calc(var(--nav-height) + 2rem) 1.5rem 2rem;
  }

  .hero__inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    font-size: clamp(3rem, 9vw, 5rem);
  }

  .mockup {
    width: 100%;
    max-width: 420px;
  }

  .how__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .coming__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 3.5rem;
  }

  .mockup__img {
    width: 90px;
    height: 90px;
  }

  .how, .demo, .coming {
    padding: 6rem 1.5rem;
  }

  .footer {
    padding: 5rem 1.5rem 2.5rem;
  }

  .footer__headline {
    font-size: clamp(2.5rem, 8vw, 5rem);
  }

  .hero__glow--1 {
    width: 400px;
    height: 400px;
  }

  .hero__glow--2 {
    width: 300px;
    height: 300px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  :root {
    --nav-height: 56px;
  }

  .nav__inner {
    padding: 0 1.25rem;
  }

  .nav__logo img {
    height: 22px;
  }

  .nav__cta {
    font-size: 0.8125rem;
    padding: 0.5rem 1.125rem;
  }

  .hero {
    padding: calc(var(--nav-height) + 1.5rem) 1.25rem 1.5rem;
  }

  .pill {
    font-size: 0.6875rem;
    padding: 0.4rem 1.125rem;
    margin-bottom: 2rem;
  }

  .hero__title {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
    margin-bottom: 1rem;
  }

  .hero__sub {
    font-size: 0.9375rem;
    margin-bottom: 2rem;
  }

  .hero__ctas {
    margin-bottom: 2.5rem;
    width: 100%;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .mockup__product {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mockup__img {
    width: 80px;
    height: 80px;
  }

  .mockup__price--new {
    position: static;
    display: block;
  }

  .btn--large {
    font-size: 1rem;
    padding: 1rem 2rem;
  }

  .hero__tag {
    width: 130px;
    height: 68px;
  }

  .hero__tag-value {
    font-size: 1.25rem;
  }

  .hero__scroll {
    display: none;
  }

  .hero__grid::before {
    background-size: 24px 24px;
  }

  /* Sections */
  .how, .demo, .coming {
    padding: 5rem 1.25rem;
  }

  .section-title {
    margin-bottom: 2.5rem;
  }

  .how__card {
    padding: 2rem 1.5rem;
  }

  .how__num {
    font-size: 4rem;
  }

  /* Demo */
  .demo__dollar,
  .demo__input {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .demo__results {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .demo__result {
    padding: 1.25rem 0.75rem;
    border-radius: 14px;
  }

  .demo__result-value {
    font-size: 1.75rem;
  }

  .demo__result-icon {
    font-size: 1.5rem;
  }

  .demo__result-label {
    font-size: 0.75rem;
  }

  .demo__sub {
    margin-bottom: 2.5rem;
  }

  /* Coming */
  .coming__card {
    padding: 1.75rem 1.25rem;
  }

  /* Footer */
  .footer {
    padding: 4rem 1.25rem 2rem;
  }

  .footer__headline {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
    margin-bottom: 2rem;
  }

  .footer__cta {
    width: 100%;
    margin-bottom: 3rem;
  }

  .footer__meta {
    flex-direction: column;
    gap: 1rem;
  }

  /* Marquee smaller */
  .marquee {
    padding: 0.875rem 0;
  }

  .marquee__content span {
    font-size: 0.8125rem;
    padding: 0 0.75rem;
  }
}
