/* ============================================
   EARNREAL — FINAL ENHANCEMENT CSS
   ============================================ */

/* ---- RESET ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ---- DESIGN TOKENS ---- */
:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --text: #f0ede8;
  --text-secondary: #D8D4CE;
  --text-muted: #999999;
  --text-dim: #777777;
  --orange: #ff5c1a;
  --cream: #e8d5b0;
  --border: #3a3a3a;
  --border-subtle: #2e2e2e;
  --font-display: "Clash Display", "Syne", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --font-hand: "Caveat", cursive;
  --content-max: 1100px;
  --content-pad: 24px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: #050505;
}

body {
  background: radial-gradient(circle at top right, #1a0b05 0%, #0d0d0d 40%, #050505 100%);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.85;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---- LAYOUT HELPERS ---- */
.section-inner, .hero-inner, .nav-inner, .cta-inner,
.recognition-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}
p { max-width: 640px; }

/* ---- SCROLL REVEAL ---- */
.section-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.section-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Hero stagger */
.reveal-hero {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal-hero.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,92,26,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--content-pad);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}
.nav-cta-btn {
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
  padding: 9px 20px;
  font-size: 13px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.nav-cta-btn:hover {
  background: var(--orange);
  color: #0D0D0D;
}

/* ============================================
   HERO
   ============================================ */
#hero {
  background: #0D0D0D;
  padding: 140px 0 110px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.eyebrow {
  font-family: var(--font-hand);
  font-size: 16px;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.orange-word { color: var(--orange); }
.hero-headline-sub {
  font-family: var(--font-display);
  font-size: 22px;
  color: #999999;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: #999999;
  line-height: 1.8;
  max-width: 480px;
  margin-top: 20px;
  margin-bottom: 32px;
}

/* Email input */
.email-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.input-wrap {
  flex: 1;
  position: relative;
}
.input-wrap input[type="email"] {
  width: 100%;
  background: #1e1e1e;
  border: 1.5px solid #555555;
  color: var(--text);
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 6px;
  outline: none;
  font-family: var(--font-body);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.input-wrap input::placeholder { color: #777777; }
.input-wrap input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,92,26,0.12);
}
.input-wrap input:focus + .input-hint {
  opacity: 1;
  transform: translateY(0);
}
.input-hint {
  display: block;
  font-size: 11px;
  color: #777777;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* CTA button */
.cta-btn-wrap {
  position: relative;
  display: inline-flex;
}
.cta-tooltip {
  position: absolute;
  top: calc(100% + 12px);
  left: 65%;
  transform: translateX(-50%) rotate(-3deg);
  background: #FFF5E6;
  color: #1A1A1A;
  font-family: var(--font-hand);
  font-size: 16px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 4px;
  border: 1.5px solid #E0C89A;
  box-shadow: 2px 3px 0px rgba(0,0,0,0.15);
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  line-height: 1.2;
  text-align: center;
}
.cta-tooltip::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 25%;
  border-style: solid;
  border-width: 6px;
  border-color: transparent transparent #FFF5E6 transparent;
  margin-left: -6px;
}
.cta-btn {
  background: var(--orange);
  color: #0D0D0D;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 6px;
  border: none;
  letter-spacing: 0.3px;
  transition: all 0.08s ease;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.cta-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: none;
}
.cta-btn:active {
  transform: translate(3px, 3px);
}
.trust-signals {
  font-size: 12px;
  color: #777777;
  margin-top: 14px;
}

/* Hero card */
.hero-card-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.hero-card-glow {
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,26,0.20) 0%, rgba(255,92,26,0.08) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.hero-product-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(150deg, #1E1E1E 0%, #161616 100%);
  border: 1px solid #4A4A4A;
  border-radius: 14px;
  padding: 28px;
  transform: rotate(2deg);
  animation: float 3s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(255,92,26,0.08),
    0 0 60px rgba(255,92,26,0.18),
    0 0 120px rgba(255,92,26,0.08),
    0 32px 64px rgba(0,0,0,0.6);
  width: 100%;
  min-width: 320px;
  max-width: 380px;
}
@keyframes float {
  0%, 100% { transform: rotate(2deg) translateY(0px); }
  50% { transform: rotate(2deg) translateY(-10px); }
}
.card-live-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); background: #22C55E; }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); background: #22C55E; }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); background: #22C55E; }
}
.live-text {
  font-size: 11px;
  color: #777777;
}
.card-label {
  font-size: 10px;
  color: #777777;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.path-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #2E2E2E;
}
.path-row:last-of-type { border-bottom: none; }
.path-num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  min-width: 30px;
}
.path-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  padding: 0 12px;
}
.path-earn {
  font-size: 12px;
  color: #777777;
  background: #2C2C2C;
  border: 1px solid #444444;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.card-footer {
  margin-top: 16px;
  border-top: 1px solid #2E2E2E;
  padding-top: 12px;
  font-size: 12px;
  font-style: italic;
  color: #777777;
}

/* ============================================
   SECTION 2 — RECOGNITION
   ============================================ */
#recognition {
  background: #111111;
  padding: 110px 0;
}
.recognition-body {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 2.0;
  max-width: 640px;
  margin-bottom: 0;
}
.recognition-punch {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--orange);
  font-weight: 700;
  display: block;
  margin-top: 32px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  max-width: none;
}
.expectation-line {
  font-size: 14px;
  color: #666666;
  font-style: italic;
  margin-top: 16px;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 2px solid #333333;
}
.handwritten-note {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--cream);
  transform: rotate(-2deg);
  display: inline-block;
}

/* ============================================
   SECTION 3 — HOW IT WORKS
   ============================================ */
#how-it-works {
  background: #0D0D0D;
  padding: 110px 0;
}
.section-heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 56px;
  letter-spacing: -0.5px;
  max-width: none;
}
.two-col-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
}
.col-divider {
  width: 1px;
  align-self: stretch;
  min-height: 200px;
  background: linear-gradient(to bottom, transparent 0%, #555555 15%, #555555 85%, transparent 100%);
}
.col-label {
  font-size: 12px;
  color: #999999;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 28px;
  font-weight: 600;
  max-width: none;
}
.col-label--orange { color: var(--orange); }
.clean-list li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 2.3;
  padding-bottom: 8px;
  border-bottom: 1px solid #2e2e2e;
  max-width: none;
}
.clean-list li:last-child { border-bottom: none; }

/* ============================================
   ROADMAP — DAY BY DAY
   ============================================ */
#roadmap {
  background: #0F0F0F;
  padding: 110px 0;
}
.roadmap-subtext {
  font-size: 15px;
  color: var(--text-dim);
  margin-top: -40px;
  margin-bottom: 56px;
}
.roadmap-timeline {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.roadmap-card {
  background: #141414;
  border: 1px solid #2E2E2E;
  border-top: 3px solid var(--orange);
  border-radius: 0 0 8px 8px;
  padding: 28px 22px;
  flex: 1;
  min-height: 200px;
  min-width: 0;
  transition: all 0.25s ease;
}
.roadmap-card:hover {
  background: #181818;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.roadmap-line {
  height: 2px;
  background: linear-gradient(to right, #3a3a3a, #555555, #3a3a3a);
  flex: 0 0 24px;
  margin-top: 44px;
  align-self: flex-start;
  opacity: 0.8;
}
.roadmap-day {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.roadmap-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.2;
  max-width: none;
  letter-spacing: -0.5px;
}
.roadmap-body {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.8;
}

/* ============================================
   SECTION 4 — PATH CARD
   ============================================ */
#real-path {
  background: #111111;
  padding: 110px 0;
}
.path-card-bleed {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--content-pad);
}
.real-path-card {
  border-left: 4px solid var(--orange) !important;
  border-right: none !important;
  border-top: none !important;
  border-bottom: none !important;
  border-radius: 0 12px 12px 0 !important;
  background: #141414;
  padding: 36px 36px 36px 40px;
  max-width: 800px;
  margin-left: -40px !important;
}
.rpc-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 20px;
  max-width: none;
  letter-spacing: -0.5px;
}
.rpc-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.badge {
  background: #2C2C2C;
  border: 1px solid #4A4A4A;
  color: #999999;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
}
.rpc-meta {
  font-size: 12px;
  color: #777777;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #2E2E2E;
}
.step-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #2e2e2e;
  transition: background 0.2s ease;
}
.step-row:hover {
  background: rgba(255,92,26,0.02);
}
.step-row:last-child { border-bottom: none; }
.step-day {
  font-size: 10px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  min-width: 72px;
  padding-top: 2px;
}
.step-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}
.rpc-honest {
  background: #181818;
  border: none;
  border-left: 2px solid #555555;
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin-top: 28px;
}
.rpc-honest p {
  font-size: 14px;
  font-style: italic;
  color: #999999;
  line-height: 1.7;
}
.path-card-sub {
  font-size: 14px;
  color: #999999;
  margin-top: 12px;
  line-height: 1.7;
}
#real-path .handwritten-note {
  font-size: 18px;
  transform: rotate(-1deg);
  margin-top: 20px;
}

/* ============================================
   SECTION 5 — SOCIAL PROOF
   ============================================ */
#social-proof {
  background: #0D0D0D;
  padding: 110px 0;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 104px !important;
  font-weight: 700;
  color: var(--orange);
  line-height: 0.9;
  display: block;
  letter-spacing: -2px;
}
.proof-label {
  font-size: 14px;
  color: #777777;
  margin-top: 10px;
  display: block;
}
.proof-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.9;
  max-width: 360px;
}
.proof-attr {
  font-size: 12px;
  color: #777777;
  margin-top: 12px;
}
.wins-feed { margin-top: 0; }
.wins-label {
  font-size: 11px;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  max-width: none;
}
.wins-card {
  border: 1.5px dashed #4A4A4A;
  border-radius: 10px;
  padding: 64px 32px;
  text-align: center;
  background: transparent;
  transition: border-color 0.3s ease;
}
.wins-card:hover {
  border-color: #555555;
}
.wins-empty {
  font-family: var(--font-display);
  font-size: 24px;
  color: #555555;
  margin-bottom: 10px;
  max-width: none;
  letter-spacing: -0.5px;
}
.wins-cta {
  font-size: 34px !important;
  font-family: var(--font-hand) !important;
  color: var(--orange) !important;
  transform: rotate(-2.5deg) !important;
  display: inline-block !important;
  margin-top: 8px !important;
  width: auto;
}
.wins-disclaimer {
  font-size: 13px;
  color: #777777;
  font-style: italic;
  margin-top: 20px;
}

/* ============================================
   SECTION 6 — WHO IT'S FOR
   ============================================ */
#who-its-for {
  background: #111111;
  padding: 110px 0;
}
#who-its-for .section-heading { margin-bottom: 32px; }
.who-text {
  max-width: 620px;
}
.who-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}
.who-text p:last-child { margin-bottom: 0; }
.muted-text { color: #999999; }

/* ============================================
   FOUNDER
   ============================================ */
#founder {
  background: #0D0D0D;
  padding: 110px 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.founder-photo { 
  position: relative; 
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}
.founder-character-wrap {
  position: relative;
  display: inline-block;
  max-width: 280px;
  margin: 0 auto;
}
.founder-character-img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 32px 48px rgba(255,92,26,0.15));
  border-radius: 12px;
}

/* Floating notification badges */
.float-badge {
  position: absolute;
  background: #1C1C1C;
  border: 1px solid #4A4A4A;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  min-width: 150px;
}
.badge-upi {
  top: 10%; right: -25%;
  animation: badgeFloat 3s ease-in-out infinite;
}
.badge-order {
  bottom: 25%; left: -25%;
  animation: badgeFloat 3s ease-in-out infinite;
  animation-delay: 1.5s;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.badge-dot--green { background: #22C55E; }
.badge-dot--orange { background: var(--orange); }
.badge-text-col {
  display: flex;
  flex-direction: column;
}
.badge-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 4px;
}
.badge-amount {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.2;
}
.badge-amount--green { color: #22C55E; }
.founder-caveat-label {
  font-family: var(--font-hand);
  font-size: 22px;
  color: #E8D5B0;
  text-align: center;
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  transform: rotate(-2deg);
  transform-origin: center center;
}
.founder-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
  max-width: 480px;
}
.founder-text p:last-of-type:not(.founder-sig) { margin-bottom: 0; }
.founder-sig {
  font-family: var(--font-hand);
  font-size: 28px;
  color: var(--cream);
  margin-top: 28px;
  display: block;
  text-align: left;
}

/* ============================================
   FINAL CTA
   ============================================ */
#final-cta {
  background: #080808;
  padding: 140px 20px;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.final-cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(255,92,26,0.18) 0%, rgba(255,92,26,0.08) 40%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.cta-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
  width: 100%;
  text-align: center;
}
.cta-sub {
  font-size: 16px;
  color: #666666;
  max-width: 380px;
  text-align: center;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.email-row--centered {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.email-row--centered .input-wrap {
  width: 100%;
}
#final-cta input[type="email"] {
  width: 100%;
  background: #1A1A1A;
  border: 1.5px solid #333333;
  color: #F0EDE8;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 6px;
  box-sizing: border-box;
}
#final-cta .cta-btn {
  width: 100%;
  background: #FF5C1A;
  color: #0D0D0D;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
#final-cta .cta-btn:hover {
  transform: translate(2px, 2px);
}
.cta-counter {
  font-family: var(--font-body);
  font-size: 13px;
  color: #555555;
  text-align: center;
  width: 100%;
  display: block;
  margin-top: 16px;
}
.form-msg { margin-top: 8px; font-size: 13px; }
.form-msg.error { color: #ef4444; }

/* ============================================
   FOOTER
   ============================================ */
#footer {
  background: #080808;
  border-top: 1px solid rgba(255,92,26,0.4);
  padding: 36px var(--content-pad);
  text-align: center;
}
.footer-free {
  font-size: 12px;
  color: #777777;
  font-style: italic;
  margin-bottom: 12px;
  max-width: none;
}
.footer-brand {
  font-size: 13px;
  color: #777777;
  margin-bottom: 4px;
  max-width: none;
}
.footer-meta {
  font-size: 13px;
  color: #777777;
  max-width: none;
}
.insta-link {
  color: var(--orange);
  text-decoration: none;
}
.insta-link:hover { text-decoration: underline; }

/* ============================================
   MOBILE STICKY BAR
   ============================================ */
#mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #3a3a3a;
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
#mobile-sticky-bar.visible {
  transform: translateY(0);
}
.sticky-text {
  font-size: 12px;
  color: #999999;
}
.sticky-btn {
  background: var(--orange);
  color: #0D0D0D;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: 5px;
  font-size: 13px;
  border: none;
  white-space: nowrap;
}

/* ============================================
   POST-SIGNUP FRICTION CARD
   ============================================ */
.signup-friction-card {
  background: #141414;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  padding: 32px 28px;
  max-width: 460px;
  margin: 0 auto;
  text-align: left;
  animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.friction-top {
  font-size: 13px;
  color: #999999;
  margin-bottom: 16px;
}
.friction-question {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 600;
  max-width: none;
  letter-spacing: -0.5px;
}
.friction-btn {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid #444444;
  color: #999999;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.2s ease;
}
.friction-btn:last-child { margin-bottom: 0; }
.friction-btn:hover {
  border-color: var(--orange);
  color: var(--text);
  background: rgba(255,92,26,0.04);
}
.friction-confirm {
  font-size: 14px;
  color: #999999;
  text-align: center;
  padding: 16px 0;
  max-width: none;
}
.friction-confirm-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
  max-width: none;
}
.friction-follow-link {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  text-decoration: none;
  margin-top: 12px;
}
.friction-follow-link:hover { text-decoration: underline; }

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root { --content-pad: 20px; }

  section { padding: 72px 0 !important; }

  #hero { padding: 120px 0 72px !important; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-headline { font-size: 36px; }
  .hero-headline-sub { font-size: 16px; }
  .hero-sub { font-size: 16px; }
  .email-row { flex-direction: column; gap: 10px; }
  .email-row .cta-btn-wrap { width: 100%; }
  .email-row .cta-btn { width: 100%; text-align: center; }
  .hero-product-card {
    max-width: 100%;
    min-width: 0;
    transform: rotate(0deg);
    animation: none;
  }
  .hero-card-col { align-items: flex-start; }

  .section-heading { font-size: 26px !important; margin-bottom: 32px !important; }

  .two-col-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .col-divider { display: none; }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .proof-number { font-size: 64px !important; }

  /* Roadmap mobile — vertical with left border */
  .roadmap-timeline {
    flex-direction: column;
    gap: 12px;
  }
  .roadmap-line { display: none; }
  .roadmap-card {
    width: 100%;
    border-top: none;
    border-left: 3px solid var(--orange);
    border-radius: 0 8px 8px 0;
    margin-left: 16px;
  }

  /* Path card */
  .real-path-card {
    margin-left: -20px !important;
    padding-left: 24px;
  }
  .step-row { flex-direction: column; gap: 4px; }
  .step-day { min-width: unset; }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .founder-character-wrap { max-width: 240px; display: block; margin: 0 auto; }
  .badge-upi { top: 5%; right: 0%; }
  .badge-order { bottom: 30%; left: 0%; }

  #final-cta { padding: 80px 0 !important; }
  .cta-headline { font-size: 36px !important; }
  .email-row--centered { flex-direction: column; }

  /* Show sticky bar on mobile */
  #mobile-sticky-bar { display: flex; }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-product-card { max-width: 380px; }
}

/* Large screens */
@media (min-width: 1200px) {
  :root { --content-max: 1120px; }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ---- UTILITIES ---- */
::selection {
  background: rgba(255, 92, 26, 0.3);
  color: var(--text);
}
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #444; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #666; }
