/* ============================================
   TRADEMOMO — GLOBAL STYLES
   Brand: Black (#0a0a0a), Red (#CC1111), White (#FFFFFF)
   ============================================ */

:root {
  --red: #CC1111;
  --red-hover: #e01515;
  --red-dark: #990d0d;
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --black-border: #222222;
  --white: #ffffff;
  --white-muted: #aaaaaa;
  --white-dim: #666666;
  --font-heading: 'Barlow Condensed', 'Impact', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --radius: 8px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-hover); }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }

.text-red { color: var(--red); }
.text-white { color: var(--white); }
.text-muted { color: var(--white-muted); }
.text-center { text-align: center; }

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
section.tight { padding: 48px 0; }
section.hero-section { padding: 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(204,17,17,0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white-dim);
}
.btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-large { padding: 20px 48px; font-size: 1.3rem; }
.btn-full { width: 100%; display: block; }

/* ---- NAVBAR ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--black-border);
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--white-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta .btn { padding: 10px 24px; font-size: 0.85rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(204,17,17,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(204,17,17,0.15);
  border: 1px solid rgba(204,17,17,0.4);
  color: var(--red);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 24px; }
.hero h1 span { color: var(--red); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--white-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 48px;
}

.hero-proof {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-item { text-align: left; }
.proof-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.proof-label {
  font-size: 0.8rem;
  color: var(--white-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---- SOCIAL PROOF BAR ---- */
.proof-bar {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: 20px 0;
}

.proof-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-muted);
}

.proof-bar-item .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
}

/* ---- SECTION HEADERS ---- */
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 16px; }
.section-sub {
  font-size: 1.1rem;
  color: var(--white-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- PILLARS / 3-COL GRID ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: rgba(204,17,17,0.4);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px; height: 48px;
  background: rgba(204,17,17,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.card p { color: var(--white-muted); font-size: 0.95rem; line-height: 1.7; }

/* ---- TOOLS GRID ---- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.tool-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 28px;
  transition: all var(--transition);
}

.tool-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.tool-card.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(204,17,17,0.08), var(--black-card));
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.tool-tag {
  display: inline-block;
  background: rgba(204,17,17,0.15);
  color: var(--red);
  border: 1px solid rgba(204,17,17,0.3);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tool-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.tool-card p { color: var(--white-muted); font-size: 0.9rem; line-height: 1.6; }

/* ---- PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, rgba(204,17,17,0.06), var(--black-card));
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-tier-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-price span { font-size: 1rem; color: var(--white-muted); font-family: var(--font-body); font-weight: 400; }

.pricing-annual {
  font-size: 0.85rem;
  color: var(--white-dim);
  margin-bottom: 24px;
}
.pricing-annual strong { color: #4ade80; }

.pricing-divider {
  border: none;
  border-top: 1px solid var(--black-border);
  margin: 24px 0;
}

.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--white-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .check { color: var(--red); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ---- FOUNDING MEMBER BANNER ---- */
.founding-banner {
  background: linear-gradient(135deg, rgba(204,17,17,0.15), rgba(204,17,17,0.05));
  border: 1px solid rgba(204,17,17,0.4);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin-top: 48px;
}

.founding-banner h2 { margin-bottom: 16px; }
.founding-banner p { color: var(--white-muted); font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

.spots-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,17,17,0.2);
  border: 1px solid rgba(204,17,17,0.5);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.spots-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ---- GUARANTEE ---- */
.guarantee-box {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-left: 4px solid var(--red);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.guarantee-icon { font-size: 2.5rem; flex-shrink: 0; }
.guarantee-box h3 { margin-bottom: 12px; }
.guarantee-box p { color: var(--white-muted); line-height: 1.7; }

/* ---- HOW IT WORKS ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.5%;
  right: 16.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px; height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.step p { color: var(--white-muted); font-size: 0.9rem; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: 12px;
  padding: 28px;
}

.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--white-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: var(--white-dim); }

/* ---- FAQ ---- */
.faq-list { margin-top: 48px; max-width: 800px; margin-left: auto; margin-right: auto; }

.faq-item {
  border-bottom: 1px solid var(--black-border);
  padding: 24px 0;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--red);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  color: var(--white-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  display: none;
}

.faq-item.open .faq-answer { display: block; }

/* ---- FOOTER ---- */
footer {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 48px; width: auto; }
.footer-desc { color: var(--white-dim); font-size: 0.9rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--white-dim);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--white-dim);
  line-height: 1.6;
  max-width: 800px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: var(--white-dim);
}

/* ---- UTILITY ---- */
.divider { border: none; border-top: 1px solid var(--black-border); margin: 0; }
.bg-dark { background: var(--black-soft); }
.bg-card { background: var(--black-card); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-3, .tools-grid, .pricing-grid, .steps, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .tool-card.featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .grid-3, .grid-2, .tools-grid, .pricing-grid, .steps, .testimonials-grid { grid-template-columns: 1fr; }
  .tool-card.featured { grid-column: span 1; display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
  .hero-proof { gap: 24px; }
  .founding-banner { padding: 32px 24px; }
  .guarantee-box { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .steps::before { display: none; }
}
