/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --red: #F55200;
  --red-dark: #CC3F00;
  --bg: #F5F5F5;
  --black: #191919;
  --white: #ffffff;
  --gray: #767676;
  --text: #191919;
  --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: #F55200; color: var(--text); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
.grayscale { filter: grayscale(100%); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 200;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(204, 63, 0, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}
.logo i { font-size: 20px; }
.logo-img { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; }
.main-nav { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.main-nav a { color: rgba(255,255,255,0.88); transition: opacity 0.2s; }
.main-nav a:hover { opacity: 0.65; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.contact-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.88); transition: opacity 0.2s; }
.contact-link:hover { opacity: 0.65; }
.menu-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  border-radius: 50px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.menu-toggle:hover { background: rgba(255,255,255,0.15); }

/* ============================================================
   HERO — sticky scroll-jacking
   wrapper is 300vh; section is sticky, 100vh
   ============================================================ */
.hero-wrapper {
  height: 250vh;
  position: relative;
}
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #F55200;
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}
.hero-blob {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(255,120,60,0.70) 0%, rgba(204,63,0,0.32) 45%, transparent 72%);
  filter: blur(50px);
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* bg decorative circles */
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.circle-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255,120,60,0.3) 0%, transparent 65%);
  top: -300px; right: -150px;
}
.circle-2 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  bottom: -150px; left: -100px;
}
.circle-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,150,80,0.2) 0%, transparent 70%);
  top: 40%; left: 20%;
}

@keyframes wave1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-40px, 30px) scale(1.05); }
  66%       { transform: translate(20px, -20px) scale(0.97); }
}
@keyframes wave2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(30px, -40px) scale(1.08); }
  70%       { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes wave3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%       { transform: translate(50px, -30px) scale(1.15); opacity: 1; }
}

.hero-content {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

/* LEFT: text */
.hero-text {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  will-change: transform, opacity;
  padding-bottom: 20px;
}
.hero-text h1 {
  font-size: clamp(56px, 7vw, 100px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: #fff;
}
.hero-text p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.92);
  max-width: 440px;
}

/* store buttons */
.store-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-store {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm);
  color: var(--white);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.btn-store:hover { background: rgba(0,0,0,0.9); transform: translateY(-2px); }
.btn-store.dark { background: var(--black); border-color: rgba(255,255,255,0.1); }
.btn-store i { font-size: 26px; }
.btn-store .fa-apple { font-size: 30px; }
.btn-store-text { display: flex; flex-direction: column; text-align: left; line-height: 1.25; }
.btn-store-text small { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.btn-store-text strong { font-size: 15px; }

.scroll-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.6;
  animation: bounce 2.5s ease infinite;
  width: fit-content;
  margin-bottom: 0;
}
@keyframes bounce {
  0%,60%,100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

/* RIGHT: phones */
.hero-phones {
  flex: 0 0 50%;
  position: relative;
  height: 100vh;
}
.phone {
  position: absolute;
  will-change: transform;
  filter: none;
}

/* iPhone frame CSS */
.iphone-frame {
  background: #111;
  border-radius: 44px;
  border: 8px solid #222;
  box-shadow: 0 0 0 1px #444, 0 40px 80px rgba(0,0,0,0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.iphone-notch {
  flex-shrink: 0;
  height: 26px;
  background: #111;
  position: relative;
  display: flex;
  justify-content: center;
}
.iphone-notch::after {
  content: '';
  width: 90px;
  height: 22px;
  background: #111;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
}
.iphone-screen {
  width: 100%;
  display: block;
}

.phone-1 {
  width: 320px;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}
.phone-2 {
  display: none;
}
.phone-3 {
  width: 280px;
  right: 5%;
  top: 50%;
  transform: translateY(-42%) rotate(8deg);
  z-index: 2;
  opacity: 1;
}


/* dark overlay on scroll */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}

/* cookie */
.cookie-banner {
  position: fixed;
  bottom: 4px; right: 24px;
  background: rgba(8,8,8,0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  max-width: 360px;
  z-index: 300;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-icon { font-size: 22px; flex-shrink: 0; }
.cookie-banner p { font-size: 12px; line-height: 1.4; flex: 1; }
.btn-accept {
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}
.btn-accept:hover { background: var(--red-dark); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 24s linear infinite;
}
.ticker-track span { display: inline-block; margin: 0 28px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; }
.ticker-track span.dot { color: var(--red); margin: 0 6px; opacity: 1; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   STATEMENT
   ============================================================ */
.statement { background: linear-gradient(180deg, #F55200 0%, #E04A00 60%, #CC3F00 100%); color: var(--white); padding: 120px 40px 220px; position: relative; margin-top: -8px; padding-top: 128px; }
.statement::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 12px; background: #F55200; }
.statement-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}
.section-label.light { color: rgba(255,255,255,0.65); }
.label-line { display: inline-block; width: 40px; height: 1.5px; background: currentColor; flex-shrink: 0; }
.statement-inner h2 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 900px;
  color: var(--white);
}
.statement-inner p { color: rgba(255,255,255,0.75); }
.statement-inner .section-eyebrow { color: rgba(255,255,255,0.6); }
.statement-inner p { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.8); max-width: 600px; }

/* scatter cards */
.cards-scatter { max-width: 1100px; margin: 80px auto 0; position: relative; height: 560px; }
.scatter-card {
  position: absolute;
  width: 240px;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  background: var(--white);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}
.scatter-card:hover { box-shadow: 0 32px 70px rgba(0,0,0,0.26); }
.scatter-card img { width: 100%; height: 200px; object-fit: cover; object-position: center; }
.card-badge {
  position: absolute;
  top: 10px; left: 10px;
  width: 26px; height: 26px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 11px;
}
.card-label {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1.4;
}
.card-1 { --rot: -6deg;  top: 20px;  left: 5%;   }
.card-2 { --rot: 3deg;   top: 110px; left: 27%;  }
.card-3 { --rot: -2deg;  top: 35px;  right: 27%; }
.card-4 { --rot: 6deg;   top: 195px; right: 7%;  }
.scatter-card { transform: rotate(var(--rot)); }
.scatter-card:hover { transform: rotate(var(--rot)) scale(1.06); z-index: 20; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--black); color: var(--white); padding: 120px 40px; }
.how-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 64px; }
.how-inner h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; max-width: 560px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  transition: background 0.25s;
}
.step:hover { background: rgba(255,255,255,0.08); }
.step-number { font-size: 48px; font-weight: 900; color: var(--red); line-height: 1; letter-spacing: -0.03em; }
.step h3 { font-size: 20px; font-weight: 700; color: var(--white); }
.step p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.55); }

/* ============================================================
   IMPACT STATS
   ============================================================ */
.impact-stats { background: var(--bg); padding: 100px 40px; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 56px; }
.stats-inner h2 { font-size: clamp(36px, 4.5vw, 60px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.stat-number {
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-plus { font-size: 32px; font-weight: 900; color: var(--red); line-height: 1; margin-left: 2px; }
.stat-label { font-size: 14px; color: #666; font-weight: 500; line-height: 1.4; margin-top: 4px; }

/* ============================================================
   FOR BUSINESS
   ============================================================ */
.for-biz { background: var(--bg); padding: 100px 40px; }
.biz-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.biz-text { display: flex; flex-direction: column; gap: 24px; }
.biz-text h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }
.biz-text p { font-size: 16px; line-height: 1.7; color: #555; max-width: 480px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  width: fit-content;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-primary.btn-white { background: var(--white); color: var(--red); }
.btn-primary.btn-white:hover { background: #f0f0f0; }

.biz-visual { display: flex; justify-content: center; }
.biz-card {
  background: var(--white);
  border-radius: 24px;
  padding: 28px;
  width: 100%; max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  display: flex; flex-direction: column; gap: 16px;
}
.biz-card-header { display: flex; align-items: center; gap: 14px; }
.biz-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #FF7A3D); flex-shrink: 0; }
.biz-card-header strong { display: block; font-size: 16px; font-weight: 700; }
.biz-card-header span { font-size: 12px; color: var(--gray); }
.biz-card-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 11px; font-weight: 600; padding: 4px 12px; background: #f0f0f0; border-radius: 50px; color: #333; }
.biz-card-desc { font-size: 13px; line-height: 1.6; color: #555; }
.biz-card-actions { display: flex; gap: 10px; margin-top: 4px; }
.btn-support {
  flex: 1;
  background: var(--red); color: var(--white);
  border: none; border-radius: 50px;
  padding: 12px 20px; font-size: 14px; font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: background 0.2s;
}
.btn-support:hover { background: var(--red-dark); }
.btn-skip {
  width: 46px; height: 46px;
  background: #f0f0f0; border: none; border-radius: 50%;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.btn-skip:hover { background: #e0e0e0; }

/* ============================================================
   BIG QUOTE
   ============================================================ */
.big-quote { background: linear-gradient(180deg, #CC3F00 0%, #E04A00 50%, #F55200 100%); padding: 160px 40px; position: relative; text-align: center; overflow: hidden; margin-top: -2px; }
.big-quote-inner { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 2; }
.big-quote-inner h2 { font-size: clamp(32px, 4.5vw, 62px); font-weight: 300; line-height: 1.2; letter-spacing: -0.01em; color: rgba(255,255,255,0.85); }
.big-quote-inner h2.accent { color: rgba(255,255,255,0.5); font-weight: 200; }

/* Coin photo */
.coin-3d {
  position: absolute; top: 50%; right: 8%;
  width: 180px; height: 180px;
  animation: coinFloat 3s ease-in-out infinite, coinGlow 3s ease-in-out infinite;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  perspective: 600px;
}
.coin-3d img {
  width: 100%; height: 100%;
  object-fit: contain;
  animation: coinSpin 3s ease-in-out infinite;
}
.coin-face, .coin-back, .coin-edge { display: none; }
.coin-symbol {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; font-weight: 900;
  color: rgba(120, 70, 0, 0.55);
  pointer-events: none;
  text-shadow: 0 2px 6px rgba(0,0,0,0.15);
  font-family: var(--font);
}
@keyframes coinSpin {
  0%   { transform: rotate(-6deg) scale(1.0); }
  50%  { transform: rotate(6deg)  scale(1.04); }
  100% { transform: rotate(-6deg) scale(1.0); }
}
@keyframes coinFloat {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 20px)); }
}
@keyframes coinGlow {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(255,200,0,0.55)) drop-shadow(0 16px 32px rgba(0,0,0,0.45)); }
  50%       { filter: drop-shadow(0 0 48px rgba(255,220,0,1.0)) drop-shadow(0 16px 32px rgba(0,0,0,0.45)); }
}
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.5; margin-bottom: 8px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: linear-gradient(180deg, #1a1010 0%, #1a1a1a 100%); color: var(--white); padding: 140px 40px; position: relative; margin-top: -2px; }
.cta-inner { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.cta-inner h2 { font-size: clamp(36px, 5vw, 72px); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.cta-step { white-space: nowrap; }
.cta-arrow { color: var(--red); font-size: 0.7em; opacity: 0.7; }
.cta-highlight { color: var(--red); }
.cta-inner p { font-size: 18px; line-height: 1.65; opacity: 0.88; max-width: 560px; }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-for { background: #111; color: var(--white); padding: 180px 40px; position: relative; }
.who-inner { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.who-inner h2 { font-size: clamp(40px, 5.5vw, 76px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; }
.who-desc { font-size: 20px; line-height: 1.65; color: rgba(255,255,255,0.75); max-width: 620px; }

/* ============================================================
   FREE + FOUNDER
   ============================================================ */
.free-section { background: #0d0d0d; color: var(--white); padding: 140px 40px; position: relative; }
.free-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: start; }
.free-text { display: flex; flex-direction: column; gap: 24px; }
.free-text h2 { font-size: clamp(40px, 5vw, 68px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; }
.free-text p { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.65); max-width: 560px; }
.founder-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 28px; display: flex; flex-direction: column; align-items: center; gap: 16px; min-width: 200px; text-align: center; color: var(--white); }
.founder-photo { width: 140px; height: 140px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #FF7A3D); overflow: hidden; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-info strong { display: block; font-size: 16px; font-weight: 700; }
.founder-info span { font-size: 13px; color: var(--gray); }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--black); color: var(--white); padding: 120px 40px; position: relative; }
.features-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 64px; }
.features-inner h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; gap: 16px; transition: background 0.25s; }
.feature-card:hover { background: rgba(255,255,255,0.08); }
.feature-icon { width: 48px; height: 48px; background: var(--red); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--white); }
.feature-card h3 { font-size: 20px; font-weight: 700; }
.feature-card p { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.55); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: #111; color: var(--white); padding: 120px 40px; position: relative; }
.faq-inner { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.faq-inner h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(0,0,0,0.1); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 22px 0; font-size: 20px; font-weight: 500; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; color: var(--white); }
.faq-q:hover { color: rgba(255,255,255,0.6); }
.faq-q i { flex-shrink: 0; font-size: 14px; color: rgba(255,255,255,0.5); transition: transform 0.3s; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   BUSINESS OWNERS
   ============================================================ */
.biz-owners { background: var(--red); color: var(--white); padding: 140px 40px; position: relative; }
.biz-owners-inner { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 28px; }
.biz-owners-inner h2 { font-size: clamp(40px, 5.5vw, 76px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; }
.biz-owners-inner h2 em { font-style: italic; }
.biz-owners-inner p { font-size: 18px; line-height: 1.7; opacity: 0.88; max-width: 620px; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: #ffffff; color: var(--black); padding: 100px 40px 60px; text-align: center; position: relative; }
.newsletter-inner { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 36px; }
.newsletter-inner h2 { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; }

/* pill download button */
.btn-download-pill {
  display: block; width: 100%; max-width: 560px;
  background: var(--red);
  color: #fff; font-size: clamp(20px, 3vw, 36px); font-weight: 700;
  text-align: center; padding: 28px 40px;
  border-radius: 50px; text-decoration: none;
  box-shadow: 0 8px 0 #a33500, 0 12px 30px rgba(245,82,0,0.35);
  transition: transform 0.1s, box-shadow 0.1s;
  position: relative; overflow: hidden;
  transform: translateY(0);
}
.btn-download-pill::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: btnShimmer 2.4s ease-in-out infinite;
}
.btn-download-pill:hover { transform: translateY(4px); box-shadow: 0 4px 0 #a33500, 0 6px 20px rgba(245,82,0,0.3); }
.btn-download-pill:active { transform: translateY(8px); box-shadow: 0 0px 0 #a33500, 0 2px 10px rgba(245,82,0,0.2); }
@keyframes btnShimmer {
  0%   { left: -100%; }
  100% { left: 160%; }
}

/* social row */
.social-row { display: flex; align-items: center; gap: 20px; width: 100%; }
.social-line { flex: 1; height: 1px; background: rgba(0,0,0,0.12); }
.social-row a { color: rgba(0,0,0,0.5); font-size: 20px; transition: color 0.2s; }
.social-row a:hover { color: var(--black); }

.newsletter-desc { font-size: 16px; opacity: 0.5; max-width: 400px; color: var(--black); }
.newsletter-form { display: flex; gap: 0; width: 100%; max-width: 460px; border-radius: 50px; overflow: hidden; background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); }
.newsletter-form input { flex: 1; background: transparent; border: none; padding: 16px 24px; font-size: 15px; color: var(--white); outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button { background: var(--white); color: var(--red); border: none; padding: 16px 28px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s; white-space: nowrap; border-radius: 50px; margin: 4px; }
.newsletter-form button:hover { background: #f0f0f0; }

/* footer bar */
.site-footer { background: linear-gradient(160deg, #e03010 0%, #8a0800 100%); position: relative; z-index: 2; }
.footer-bottom-bar { max-width: 1200px; margin: 0 auto; padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.15); }
.footer-bottom-bar p { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--black); color: var(--white); padding: 100px 40px; }
.testi-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 56px; }
.testi-inner h2 { font-size: clamp(36px, 4.5vw, 60px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 24px;
  transition: background 0.25s;
}
.testi-card:hover { background: rgba(255,255,255,0.09); }
.testi-card p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.8); font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 14px; color: var(--white); }
.testi-author span { font-size: 12px; color: rgba(255,255,255,0.45); }

/* ============================================================
   SPONSOR
   ============================================================ */
.sponsor { background: var(--red); color: var(--white); padding: 120px 40px; text-align: center; position: relative; }
.sponsor-inner { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.sponsor-inner h2 { font-size: clamp(40px, 6vw, 72px); font-weight: 900; line-height: 1.05; letter-spacing: -0.025em; }
.sponsor-inner p { font-size: 18px; line-height: 1.6; opacity: 0.88; }

/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta { background: var(--black); color: var(--white); padding: 120px 40px; text-align: center; }
.footer-cta-inner { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-cta-inner h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; }
.footer-cta-inner p { font-size: 16px; opacity: 0.6; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0a0a0a; color: rgba(255,255,255,0.65); padding: 64px 40px 0; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; flex-direction: column; gap: 12px; max-width: 260px; }
.footer-brand .logo { color: var(--white); font-size: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.6; }
.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col strong { color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 20px 0; font-size: 12px; color: rgba(255,255,255,0.3); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* scatter cards reveal */
.scatter-card { opacity: 0; transform: rotate(var(--rot)) translateY(40px) scale(0.88); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.scatter-card.visible { opacity: 1; transform: rotate(var(--rot)) scale(1); }
.scatter-card.visible:hover { transform: rotate(var(--rot)) scale(1.06); }

/* stat number counting */
.stat-number { display: inline; }

/* ============================================================
   MOBILE NAV OPEN
   ============================================================ */
.main-nav.nav-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%; left: 0;
  width: 100%;
  background: rgba(205, 15, 15, 0.97);
  backdrop-filter: blur(14px);
  padding: 20px 32px 28px;
  gap: 20px;
  animation: navDown 0.3s var(--ease);
}
@keyframes navDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ============================================================
   TABLET LARGO — 769px–1024px
   ============================================================ */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-inner { grid-template-columns: 1fr; gap: 48px; }
  .testi-grid { grid-template-columns: 1fr; }

  .hero-content { padding: 0 28px; }
  .hero-text { flex: 0 0 52%; }
  .hero-text h1 { font-size: clamp(44px, 6vw, 80px); }
  .phone-1 { width: 260px; }
  .phone-3 { width: 210px; right: 2%; }

  .statement { padding: 100px 28px 180px; }
  .cards-scatter { height: 500px; }
  .scatter-card { width: 200px; }

  .big-quote { padding: 120px 28px; }
  .coin-3d { width: 130px; height: 130px; right: 5%; }

  .cta-section { padding: 100px 28px; }
  .who-for { padding: 120px 28px; }
  .free-section { padding: 100px 28px; }
  .free-inner { gap: 48px; }

  .features { padding: 100px 28px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .faq-section { padding: 100px 28px; }
  .biz-owners { padding: 100px 28px; }
  .sponsor { padding: 100px 28px; }
  .newsletter { padding: 80px 28px 48px; }
  .footer-bottom-bar { padding: 20px 28px; }
}

@media (max-width: 768px) {
  .header-inner { padding: 14px 20px; }
  .main-nav { display: none; }
  .contact-link { display: none; }

  /* HERO — coluna, phones abaixo do texto sem cortar; desliga sticky scroll-jacking */
  .hero-wrapper { height: auto !important; overflow: visible; }
  body { overflow-x: hidden; }
  .hero { position: relative; height: auto; min-height: 100svh; align-items: flex-start; padding-top: 0; overflow: visible; padding-bottom: 0; }
  .hero-content {
    flex-direction: column;
    padding: 90px 20px 0;
    justify-content: flex-start;
    gap: 24px;
    align-items: flex-start;
  }
  .hero-text { flex: none; width: 100%; order: 1; position: static; }
  .scroll-hint { position: static; margin-top: 4px; }
  .hero-text h1 { font-size: clamp(38px, 11vw, 54px); line-height: 0.96; }
  .hero-text p { font-size: 15px; max-width: 100%; }
  .hero-phones {
    flex: none;
    width: 100%;
    height: 420px;
    position: relative;
    order: 2;
    overflow: visible;
    margin-top: -20px;
    margin-bottom: 40px;
  }
  .phone-1 {
    position: absolute !important;
    width: 190px !important;
    left: calc(50% - 192px) !important;
    right: auto !important;
    margin-left: 0 !important;
    top: -30px !important;
    transform: none;
  }
  .phone-2 { display: none !important; }
  .phone-3 {
    display: block !important;
    position: absolute !important;
    width: 168px !important;
    left: calc(50% + 2px) !important;
    right: auto !important;
    margin-left: 0 !important;
    top: -14px !important;
    opacity: 1;
  }
  .cookie-banner { display: none; }

  /* MOEDA — reposiciona para não sobrepor texto */
  .coin-3d {
    width: 100px; height: 100px;
    top: auto; right: auto;
    position: relative;
    margin: 0 auto 24px;
    transform: none;
    animation: coinFloat-mobile 3s ease-in-out infinite, coinGlow 3s ease-in-out infinite;
  }
  .big-quote-inner { align-items: center; }
  @keyframes coinFloat-mobile {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
  }

  .statement { padding: 80px 20px 40px; }
  .statement-inner h2 { font-size: 38px; }

  /* cards — grid 2x2 simples sem rotação */
  .cards-scatter {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px 20px !important;
    position: static !important;
    height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 40px 0 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  .scatter-card {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    left: auto !important; right: auto !important; top: auto !important;
    margin-top: 0 !important;
  }
  .scatter-card img { height: 130px; }
  .card-1 { transform: rotate(-4deg) translateY(0px) !important; }
  .card-2 { transform: rotate(3deg)  translateY(40px) !important; }
  .card-3 { transform: rotate(-2deg) translateY(-20px) !important; }
  .card-4 { transform: rotate(5deg)  translateY(30px) !important; }
  .scatter-card.visible { opacity: 1; }
  .scatter-card.visible:hover { transform: scale(1.04) !important; }

  .big-quote { padding: 48px 20px 64px; }
  .big-quote-inner h2 { font-size: 34px; }
  .cta-section { padding: 80px 20px; }
  .cta-inner h2 { font-size: clamp(28px, 8vw, 42px); gap: 10px; }
  .who-for { padding: 80px 20px; }
  .free-section { padding: 80px 20px; }
  .free-inner { grid-template-columns: 1fr; }
  .features { padding: 80px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 80px 20px; }
  .faq-q { font-size: 16px; }
  .biz-owners { padding: 80px 20px; }
  .sponsor { padding: 80px 20px; }

  /* NEWSLETTER — fundo, form e input corrigidos */
  .newsletter { padding: 80px 20px 60px; background: #ffffff; }
  .newsletter-form {
    max-width: 100%;
    background: #f0f0f0;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 50px;
    overflow: hidden;
  }
  .newsletter-form input {
    color: var(--black);
    background: transparent;
  }
  .newsletter-form input::placeholder { color: rgba(0,0,0,0.4); }
  .newsletter-form button {
    background: var(--red);
    color: var(--white);
    border-radius: 50px;
    margin: 4px;
    padding: 12px 20px;
    font-size: 14px;
  }

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
  .store-buttons { flex-direction: column; align-items: flex-start; }
  .store-buttons .btn-store { width: auto; min-width: 160px; max-width: 200px; padding: 10px 16px; }
  .store-buttons .btn-store-text { align-items: flex-start; line-height: 1.4; }
  .store-buttons .btn-store-text small { margin-bottom: 2px; }
  .store-buttons .btn-store i { font-size: 20px; }
  .store-buttons .btn-store-text strong { font-size: 13px; }
  .newsletter-inner .store-buttons { align-items: center; }
  .footer-bottom-bar { flex-direction: column; gap: 12px; text-align: center; padding: 20px; }
}

/* ============================================================
   MOBILE PEQUENO — ≤480px (iPhone SE, Galaxy A series)
   ============================================================ */
@media (max-width: 480px) {
  .hero-content { padding: 88px 16px 40px; gap: 24px; }
  .hero-text h1 { font-size: clamp(32px, 10vw, 42px); }
  .hero-text p { font-size: 14px; }
  .hero-phones { height: 220px; }
  .phone-1 { width: 150px; }

  .store-buttons { gap: 10px; }
  .btn-store { padding: 11px 18px; gap: 10px; }
  .btn-store i { font-size: 22px; }
  .btn-store-text strong { font-size: 13px; }

  .statement { padding: 60px 16px 120px; }
  .statement-inner h2 { font-size: clamp(28px, 9vw, 38px); }
  .cards-scatter { height: 380px; }
  .scatter-card { width: 150px; }
  .scatter-card img { height: 110px; }
  .card-2 { left: 20%; top: 70px; }
  .card-3 { right: 20%; top: 15px; }
  .card-4 { right: 0%; top: 145px; }

  .big-quote { padding: 60px 16px; }
  .big-quote-inner h2 { font-size: clamp(24px, 8vw, 32px); }

  .cta-section { padding: 60px 16px; }
  .cta-inner h2 { font-size: clamp(24px, 8vw, 36px); flex-direction: column; align-items: flex-start; gap: 4px; }
  .cta-arrow { display: none; }

  .who-for { padding: 60px 16px; }
  .who-inner h2 { font-size: clamp(32px, 10vw, 48px); }
  .who-desc { font-size: 16px; }

  .free-section { padding: 60px 16px; }
  .free-text h2 { font-size: clamp(32px, 10vw, 48px); }

  .features { padding: 60px 16px; }
  .features-grid { grid-template-columns: 1fr; }

  .faq-section { padding: 60px 16px; }
  .faq-q { font-size: 15px; padding: 18px 0; }

  .biz-owners { padding: 60px 16px; }
  .biz-owners-inner h2 { font-size: clamp(32px, 10vw, 52px); }

  .sponsor { padding: 60px 16px; }
  .sponsor-inner h2 { font-size: clamp(28px, 9vw, 48px); }

  .newsletter { padding: 60px 16px 48px; }
  .newsletter-inner h2 { font-size: clamp(32px, 10vw, 52px); }
  .btn-download-pill { font-size: clamp(16px, 5vw, 22px); padding: 22px 28px; }
  .newsletter-form { flex-direction: column; border-radius: 16px; gap: 0; }
  .newsletter-form input { padding: 16px 20px; border-radius: 12px 12px 0 0; }
  .newsletter-form button { border-radius: 0 0 12px 12px; margin: 0; padding: 14px 20px; }

  .stats-grid { grid-template-columns: 1fr; }
  .footer-bottom-bar { flex-direction: column; gap: 10px; padding: 16px; }
  .footer-legal { gap: 16px; flex-wrap: wrap; justify-content: center; }
}
