/* ============================================
   NowTheySeeYou — style.css
   Theme: Black text · Green accent · White bg
   ============================================ */
:root {
  --green:       #16A34A;
  --green-dark:  #14532D;
  --green-light: #DCFCE7;
  --green-mid:   #86EFAC;
  --green-faded: #F0FDF4;
  --yellow:      #F4C430;
  --black:       #0A0A0A;
  --gray:        #1F2937;
  --gray-mid:    #4B5563;
  --gray-lt:     #E5E7EB;
  --bg:          #FFFFFF;
  --bg-alt:      #F0FDF4;
  --border:      #D1D5DB;
  --border-dark: #0A0A0A;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'JetBrains Mono', monospace; background: var(--bg); color: var(--black); overflow-x: hidden; }

/* ── TICKER ── */
.ticker { background: var(--green); overflow: hidden; white-space: nowrap; padding: 9px 0; cursor: pointer; }
.ticker-inner { display: inline-flex; animation: tick 22s linear infinite; }
.ticker-inner:hover { animation-play-state: paused; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tick-item { display: inline-flex; align-items: center; gap: 10px; padding: 0 1.5rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; }
.tick-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5); }

/* ── NAV ── */
nav { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 3rem; border-bottom: 2px solid var(--border-dark); background: var(--bg); position: sticky; top: 0; z-index: 100; gap: 1rem; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-icon { height: 48px; width: 48px; object-fit: contain; display: block; background: #fff; border-radius: 10px; padding: 4px; border: 1.5px solid var(--gray-lt); flex-shrink: 0; }
.logo-wordmark { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--black); white-space: nowrap; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--gray); text-decoration: none; transition: color 0.15s; }
.nav-link:hover { color: var(--green); }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-fomo { display: flex; align-items: center; gap: 7px; background: var(--green-light); border: 1.5px solid var(--green-mid); border-radius: 999px; padding: 5px 13px; white-space: nowrap; }
.nav-fomo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(1.4); } }
.nav-fomo-text { font-size: 0.7rem; color: var(--green-dark); }
.nav-fomo-text strong { color: var(--black); }
.nav-fomo-text em { font-style: normal; color: var(--green); font-weight: 700; }
.nav-cta { display: inline-flex; align-items: center; background: var(--green); color: #fff; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.88rem; padding: 0.55rem 1.2rem; border-radius: 8px; border: 2px solid var(--green-dark); cursor: pointer; text-decoration: none; box-shadow: 2px 2px 0px var(--green-dark); transition: all 0.15s; flex-shrink: 0; white-space: nowrap; }
.nav-cta:hover { background: var(--yellow); color: var(--black); border-color: var(--black); box-shadow: 2px 2px 0px var(--black); }

/* ── HERO ── */
.hero { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1100px; margin: 0 auto; padding: 5rem 3rem; }
.hero-kicker { display: inline-flex; align-items: center; gap: 6px; background: var(--yellow); border: 1.5px solid var(--black); border-radius: 999px; padding: 5px 14px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; color: var(--black); margin-bottom: 1.5rem; }
.kicker-star { font-size: 0.85rem; }
h1 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1.08; letter-spacing: -0.03em; color: var(--black); margin-bottom: 1.25rem; }
.hl-box { background: var(--yellow); color: var(--black); padding: 2px 10px 5px; border-radius: 6px; display: inline-block; transform: rotate(-1.5deg); line-height: 1.2; }
.h1-green { color: var(--green); }
.hero-sub { font-size: 0.88rem; color: var(--gray); line-height: 1.85; margin-bottom: 2rem; max-width: 440px; font-weight: 500; }

/* ── BUTTONS ── */
.btn-icon { width: 28px; height: 28px; flex-shrink: 0; }
.hero-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--green); color: #fff; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1rem; padding: 0.9rem 1.75rem; border-radius: 12px; border: 2px solid var(--green-dark); cursor: pointer; text-decoration: none; transition: all 0.2s; box-shadow: 3px 3px 0px var(--green-dark); }
.hero-cta:hover { background: var(--yellow); color: var(--black); border-color: var(--black); box-shadow: 5px 5px 0px var(--black); transform: translate(-2px,-2px); }
.cta-arrow { transition: transform 0.2s; }
.hero-cta:hover .cta-arrow { transform: translateX(4px); }
.hero-note { font-size: 0.7rem; color: var(--gray-mid); margin-top: 0.85rem; }

/* Hero proof */
.hero-proof { display: flex; align-items: center; gap: 10px; margin-top: 1.5rem; }
.proof-avs { display: flex; }
.pav { width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--bg); display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-size: 9px; font-weight: 700; margin-left: -8px; }
.proof-avs .pav:first-child { margin-left: 0; }
.pav1 { background: #DBEAFE; color: #1e40af; }
.pav2 { background: var(--green-light); color: var(--green-dark); }
.pav3 { background: #FEE2E2; color: #991b1b; }
.pav4 { background: #FEF3C7; color: #92400e; }
.proof-txt { font-size: 0.78rem; color: var(--gray); font-weight: 500; }
.proof-txt strong { color: var(--black); }

/* Hero right mockup */
.hero-mockup { background: var(--bg); border: 2px solid var(--border-dark); border-radius: 16px; padding: 1.5rem; box-shadow: 6px 6px 0px var(--black); }
.mockup-label { font-size: 0.72rem; font-weight: 700; color: var(--gray-mid); margin-bottom: 1rem; }
.mock-thread { display: flex; gap: 10px; align-items: flex-start; background: var(--green-faded); border: 1.5px solid var(--green-mid); border-radius: 10px; padding: 0.85rem 1rem; margin-bottom: 0.75rem; }
.mock-thread:last-of-type { margin-bottom: 0; }
.mock-plat { width: 30px; height: 30px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.7rem; flex-shrink: 0; }
.plat-r { background: #FF6314; color: #fff; }
.plat-x { background: #000; color: #fff; }
.plat-li { background: #0077B5; color: #fff; }
.mock-content { flex: 1; }
.mock-title { font-size: 0.8rem; font-weight: 700; color: var(--black); margin-bottom: 3px; line-height: 1.4; }
.mock-meta { font-size: 0.68rem; color: var(--gray-mid); margin-bottom: 5px; font-weight: 500; }
.mock-script { font-size: 0.7rem; color: var(--green-dark); font-weight: 700; background: var(--green-light); padding: 3px 8px; border-radius: 5px; display: inline-block; border: 1px solid var(--green-mid); }
.mockup-footer { text-align: center; font-size: 0.68rem; color: var(--gray-mid); margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-lt); letter-spacing: 0.06em; font-weight: 600; }

/* ── SECTION HEADINGS ── */
.section-heading { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.6rem); letter-spacing: -0.02em; color: var(--black); text-align: center; line-height: 1.15; margin-bottom: 0.75rem; }
.section-sub { font-size: 0.82rem; color: var(--gray-mid); text-align: center; margin-bottom: 2rem; font-weight: 500; }
.h2-green { color: var(--green); }

/* ── THOUGHT / FOMO SECTION ── */
.thought-section { background: var(--yellow); border-top: 2px solid var(--black); border-bottom: 2px solid var(--black); padding: 5rem 2.5rem; position: relative; margin-top: 60px; }

/* Floating logo card — straddles the top border */
.floating-logo-card { position: absolute; top: -38px; left: 50%; transform: translateX(-50%); background: #fff; border: 2px solid var(--black); border-radius: 16px; padding: 8px 20px; display: flex; align-items: center; gap: 10px; box-shadow: 4px 4px 0px var(--black); z-index: 10; white-space: nowrap; }
.floating-logo-img { width: 36px; height: 36px; object-fit: contain; }
.floating-logo-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.95rem; color: var(--black); }

.thought-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.thought-heading { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.03em; color: var(--black); margin-bottom: 1.25rem; line-height: 1.1; }
.thought-green { color: var(--green-dark); }
.thought-sub { font-size: 0.9rem; color: var(--black); line-height: 1.8; margin-bottom: 3rem; font-weight: 500; opacity: 0.8; }
.thought-stats { display: flex; align-items: stretch; justify-content: center; margin-bottom: 2.5rem; border: 2px solid var(--black); border-radius: 14px; overflow: hidden; background: #fff; }
.thought-stat { flex: 1; padding: 1.5rem 1rem; text-align: center; }
.ts-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 2.2rem; color: var(--green); letter-spacing: -0.03em; }
.ts-label { font-size: 0.75rem; color: var(--gray); margin-top: 4px; line-height: 1.4; font-weight: 500; }
.thought-divider { width: 2px; background: var(--black); }
.thought-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--black); color: #fff; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 1rem; padding: 0.9rem 1.75rem; border-radius: 12px; border: 2px solid var(--black); cursor: pointer; text-decoration: none; transition: all 0.2s; box-shadow: 3px 3px 0px rgba(0,0,0,0.4); }
.thought-cta:hover { background: var(--green); color: #fff; border-color: var(--green-dark); transform: translate(-2px,-2px); box-shadow: 5px 5px 0px var(--green-dark); }

/* ── BEFORE / AFTER ── */
.ba-section { background: var(--bg-alt); border-top: 2px solid var(--black); border-bottom: 2px solid var(--black); padding: 5rem 2.5rem; }
.ba-inner { max-width: 820px; margin: 0 auto; }
.toggle-wrap { display: flex; justify-content: center; margin-bottom: 2.5rem; }
.toggle-pill { display: flex; background: #fff; border: 2px solid var(--black); border-radius: 999px; padding: 4px; gap: 4px; box-shadow: 3px 3px 0px var(--black); }
.tog-btn { font-family: 'JetBrains Mono', monospace; font-size: 0.76rem; font-weight: 700; padding: 9px 22px; border-radius: 999px; border: none; cursor: pointer; transition: all 0.2s; background: transparent; color: var(--gray-mid); white-space: nowrap; }
.tog-btn.active { background: var(--green); color: #fff; }
.ba-panel { display: none; }
.ba-panel.show { display: block; animation: fadeUp 0.3s ease both; }
@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

.before-scene { background: #fff5f5; border: 2px solid #fca5a5; border-radius: 16px; padding: 2rem; box-shadow: 4px 4px 0px #fca5a5; }
.tweet-mock { background: #fff; border: 1px solid var(--gray-lt); border-radius: 12px; padding: 1.25rem; margin-bottom: 1rem; }
.tweet-header { display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem; }
.tweet-av { width: 36px; height: 36px; border-radius: 50%; background: #e5e7eb; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; color: var(--gray); flex-shrink: 0; }
.tweet-name { font-size: 0.82rem; font-weight: 700; color: var(--black); }
.tweet-handle { font-size: 0.7rem; color: var(--gray-mid); }
.tweet-body { font-size: 0.82rem; line-height: 1.7; color: var(--gray); }
.tweet-pitch { color: #dc2626; font-size: 0.75rem; display: block; margin-top: 0.5rem; font-weight: 700; }
.before-label { font-size: 0.68rem; font-weight: 700; color: #dc2626; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; gap: 6px; }
.before-stat { background: #fee2e2; border: 1.5px solid #fca5a5; border-radius: 10px; padding: 1rem 1.25rem; margin-top: 1.25rem; font-size: 0.8rem; color: #7f1d1d; line-height: 1.7; }
.before-stat strong { color: #dc2626; }

.after-scene { background: var(--green-faded); border: 2px solid var(--green-mid); border-radius: 16px; padding: 2rem; box-shadow: 4px 4px 0px var(--green-mid); }
.after-label { font-size: 0.68rem; font-weight: 700; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; gap: 6px; }
.thread-row { background: #fff; border: 1.5px solid var(--green-mid); border-radius: 12px; padding: 1.1rem 1.25rem; margin-bottom: 0.75rem; display: flex; gap: 14px; align-items: flex-start; }
.thread-row:last-of-type { margin-bottom: 0; }
.plat-badge { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.72rem; flex-shrink: 0; }
.plat-r { background: #FF6314; color: #fff; }
.plat-x { background: #000; color: #fff; }
.thread-body { flex: 1; }
.thread-title { font-size: 0.82rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.thread-sub { font-size: 0.72rem; color: var(--gray-mid); line-height: 1.6; font-weight: 500; }
.thread-tag { font-size: 0.65rem; font-weight: 700; background: var(--green-light); color: var(--green-dark); padding: 2px 8px; border-radius: 999px; margin-top: 6px; display: inline-block; border: 1px solid var(--green-mid); }
.after-stat { background: var(--green-light); border: 1.5px solid var(--green-mid); border-radius: 10px; padding: 1rem 1.25rem; margin-top: 1.25rem; font-size: 0.8rem; color: var(--green-dark); line-height: 1.7; }
.after-stat strong { color: var(--green); }

/* ── HOW IT WORKS ── */
.how-section { background: var(--bg); padding: 6rem 2.5rem; border-top: 2px solid var(--black); }
.how-inner { max-width: 960px; margin: 0 auto; }
.how-underline { width: 60px; height: 4px; background: var(--yellow); margin: 0 auto 3rem; border-radius: 2px; }
.how-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
.how-card { border: 2px solid var(--black); border-radius: 16px; padding: 2rem 1.5rem; position: relative; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 4px 4px 0px var(--black); }
.how-card:hover { transform: translate(-3px,-3px); box-shadow: 7px 7px 0px var(--black); }
.how-card-1 { background: #BFDBFE; }
.how-card-2 { background: #E9D5FF; }
.how-card-3 { background: var(--green-light); }
.how-num { position: absolute; top: -14px; left: 16px; background: var(--bg); border: 2px solid var(--black); border-radius: 8px; padding: 2px 10px; font-size: 0.72rem; font-weight: 700; color: var(--black); letter-spacing: 0.06em; }
.how-icon { font-size: 2rem; margin-bottom: 1rem; margin-top: 0.5rem; display: block; }
.how-title-pill { display: inline-block; background: var(--yellow); color: var(--black); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 0.9rem; padding: 3px 12px; border-radius: 6px; margin-bottom: 0.85rem; }
.how-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.75; font-weight: 500; }

/* ── PRICING ── */
.price-section { background: var(--bg-alt); border-top: 2px solid var(--black); padding: 6rem 2.5rem; }
.price-inner { max-width: 540px; margin: 0 auto; text-align: center; }
.price-card { background: #fff; border: 2px solid var(--black); border-radius: 18px; padding: 2.5rem 2rem; position: relative; margin-top: 2.5rem; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 6px 6px 0px var(--black); }
.price-card:hover { transform: translate(-3px,-3px); box-shadow: 9px 9px 0px var(--black); }
.price-popular { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--yellow); color: var(--black); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.75rem; letter-spacing: 0.08em; padding: 4px 18px; border-radius: 999px; border: 2px solid var(--black); white-space: nowrap; }
.price-card-title { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.08em; color: var(--black); margin-bottom: 0.5rem; margin-top: 0.5rem; }
.price-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 5.5rem; color: var(--black); line-height: 1; letter-spacing: -0.05em; margin-bottom: 1.5rem; }
.price-num sup { font-size: 2rem; vertical-align: super; letter-spacing: 0; color: var(--green); }
.feat-list { list-style: none; margin-bottom: 2rem; text-align: left; }
.feat-list li { font-size: 0.82rem; color: var(--gray); padding: 0.6rem 0; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--gray-lt); font-weight: 500; }
.feat-list li:last-child { border-bottom: none; }
.feat-check { width: 20px; height: 20px; border-radius: 50%; background: var(--green); border: 2px solid var(--green-dark); display: flex; align-items: center; justify-content: center; font-size: 10px; color: #fff; font-weight: 700; flex-shrink: 0; }
.price-btn { display: flex; width: 100%; justify-content: center; align-items: center; gap: 10px; background: var(--yellow); color: var(--black); font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 1rem; padding: 1rem 1.5rem; border-radius: 12px; border: 2px solid var(--black); cursor: pointer; text-decoration: none; transition: all 0.2s; box-shadow: 3px 3px 0px var(--black); }
.price-btn:hover { background: var(--green); color: #fff; border-color: var(--green-dark); transform: translate(-2px,-2px); box-shadow: 5px 5px 0px var(--black); }
.price-guarantee { font-size: 0.72rem; color: var(--gray-mid); margin-top: 1rem; line-height: 1.7; font-weight: 500; }

/* ── FAQ ── */
.faq-section { background: var(--bg); border-top: 2px solid var(--black); padding: 6rem 2.5rem; }
.faq-inner { max-width: 900px; margin: 0 auto; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.faq-box { border: 2px solid var(--black); border-radius: 14px; padding: 1.25rem 1.5rem; cursor: pointer; transition: all 0.2s; background: var(--bg); box-shadow: 3px 3px 0px var(--black); }
.faq-box:hover { background: var(--yellow); transform: translate(-2px,-2px); box-shadow: 5px 5px 0px var(--black); }
.faq-box.open { background: var(--yellow); border-color: var(--black); box-shadow: 3px 3px 0px var(--black); }
.faq-q { font-family: 'Bricolage Grotesque', sans-serif; font-size: 0.9rem; font-weight: 700; color: var(--black); display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; user-select: none; line-height: 1.4; }
.faq-icon { color: var(--green); font-size: 1.2rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-box.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 0.8rem; color: var(--gray); line-height: 1.85; margin-top: 0.85rem; display: none; font-weight: 500; }
.faq-a.show { display: block; }

/* ── FINAL CTA ── */
.final-cta-section { background: var(--bg-alt); border-top: 2px solid var(--black); border-bottom: 2px solid var(--black); padding: 6rem 2.5rem; text-align: center; }
.final-cta-inner { max-width: 640px; margin: 0 auto; }
.final-logo-icon { width: 72px; height: 72px; object-fit: contain; margin-bottom: 1.5rem; }
.final-heading { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.03em; color: var(--black); margin-bottom: 2rem; line-height: 1.15; }

/* ── FOOTER ── */
footer { background: var(--black); color: rgba(255,255,255,0.45); text-align: center; padding: 2rem; font-size: 0.72rem; }
footer a { color: var(--yellow); text-decoration: none; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .nav-fomo { display: none; }
}
@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  nav { padding: 0.75rem 1.25rem; }
  .nav-links { display: none; }
  .logo-wordmark { font-size: 0.9rem; }
  .logo-icon { height: 38px; width: 38px; }
  .hero { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .hero-right { display: none; }
  h1 { font-size: 2.3rem; }
  .hero-sub { max-width: 100%; }
  .hero-cta { font-size: 0.92rem; padding: 0.8rem 1.4rem; }
  .ba-section, .how-section, .price-section, .faq-section, .final-cta-section { padding: 4rem 1.25rem; }
  .thought-section { padding: 5rem 1.25rem 3rem; margin-top: 50px; }
  .floating-logo-card { padding: 6px 14px; top: -32px; }
  .floating-logo-img { width: 28px; height: 28px; }
  .floating-logo-name { font-size: 0.82rem; }
  .thought-stats { flex-direction: column; }
  .thought-divider { width: 100%; height: 2px; }
  .tog-btn { font-size: 0.68rem; padding: 8px 12px; }
  .price-num { font-size: 4rem; }
  .section-heading { font-size: 1.7rem; }
  .price-section { padding: 4rem 1.25rem; }
  .price-inner { max-width: 100%; }
}
@media (max-width: 420px) {
  h1 { font-size: 2rem; }
  .hero-kicker { font-size: 0.62rem; }
  .nav-cta { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
}
