/* ─── WOWTRICS GLOBAL STYLES ─── */
/* See STYLE_GUIDE.md for design system documentation */

/* ─── DESIGN TOKENS ─── */
:root {
  --void: #ffffff;
  --deep: #f7f7f5;
  --surface: #f2f1ee;
  --border: rgba(0,0,0,0.1);
  --border-strong: rgba(0,0,0,0.2);
  --text: #0a0a0a;
  --text-dim: rgba(10,10,10,0.72);
  --text-muted: rgba(10,10,10,0.5);
  --signal: #cc1414;
  --signal-dim: rgba(204,20,20,0.08);
  --signal-bright: #e02020;
  --red: #cc1414;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--text);
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after { display: none; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 60px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeIn 0.6s ease 0.2s forwards;
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span { color: var(--signal); }

.nav-links {
  display: flex; gap: 40px; align-items: center;
  font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
}

.nav-links a { color: inherit; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; background: var(--signal);
  padding: 10px 22px; text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding: 100px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--border);
  background-image: radial-gradient(rgba(0,0,0,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(204,20,20,0.04) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 5% 90%, rgba(0,0,0,0.02) 0%, transparent 60%);
  pointer-events: none;
}

.hero-left { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: 'Syne Mono', monospace;
  font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(58px, 7.5vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}

.hero-headline strong {
  font-weight: 700;
  display: block;
}

.hero-headline em {
  font-style: italic;
  color: var(--signal);
}

.hero-sub {
  margin-top: 48px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-dim);
  max-width: 480px;
  opacity: 0; animation: fadeUp 0.8s ease 0.85s forwards;
}

.hero-actions {
  margin-top: 48px;
  display: flex; gap: 16px; align-items: center;
  opacity: 0; animation: fadeUp 0.8s ease 1s forwards;
}

.btn-primary {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #fff; background: var(--signal);
  padding: 16px 36px; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  font-family: 'Syne Mono', monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--text); }

.hero-right {
  position: relative; z-index: 1;
  opacity: 0; animation: fadeIn 1.2s ease 1.2s forwards;
}

.hero-statement-block {
  border-left: 2px solid var(--signal);
  padding-left: 40px;
  margin-bottom: 40px;
}

.hero-statement-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-dim);
}

.hero-statement-block p strong {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

.hero-ticker {
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.ticker-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: 'Syne Mono', monospace;
  font-size: 13px; letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.ticker-row:last-child { border-bottom: none; }

.ticker-label { text-transform: uppercase; }
.ticker-val { color: var(--signal); font-size: 15px; }
.ticker-val.neg { color: var(--red); }

/* ─── WHY US ─── */
.why-us {
  padding: 120px 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.why-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(204,20,20,0.02) 0%, transparent 70%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 100px;
  align-items: start;
}

.section-tag {
  font-family: 'Syne Mono', monospace;
  font-size: 12px; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 28px;
}

.why-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.why-headline em { font-style: italic; color: var(--signal); }

.why-body {
  margin-top: 40px;
  display: flex; flex-direction: column; gap: 28px;
}

.why-para {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-dim);
}

.why-para strong {
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

.why-right {
  padding-top: 80px;
}

.proof-line {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.proof-line:first-child { border-top: 1px solid var(--border); }

.proof-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--signal);
  margin-top: 8px;
  flex-shrink: 0;
}

.proof-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dim);
  font-weight: 400;
}

.proof-text strong { color: var(--text); font-weight: 600; }

/* ─── MANIFESTO BAND ─── */
.manifesto-band {
  padding: 100px 60px;
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.manifesto-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(204,20,20,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.manifesto-band blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  max-width: 900px;
  margin: 0 auto;
  color: #f5f5f5;
}

.manifesto-band blockquote strong {
  font-style: normal;
  font-weight: 700;
  color: var(--signal);
}

/* ─── FEATURES ─── */
.features-intro {
  padding: 100px 60px 60px;
  border-bottom: 1px solid var(--border);
}

.features-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 100px;
  align-items: end;
}

.features-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
}

.features-headline em { font-style: italic; color: var(--signal); }

.features-desc {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-dim);
  padding-top: 12px;
}

/* ─── FEATURE ROWS ─── */
.feature-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  min-height: 280px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.feature-row.visible { opacity: 1; transform: none; }

.feature-row:hover { background: rgba(249,115,22,0.03); border-left: 2px solid var(--signal); margin-left: -2px; }

.feature-num-col {
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  font-family: 'Syne Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(0,0,0,0.35);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.feature-main {
  padding: 50px 50px 50px 50px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.feature-icon { display: none; }

.feature-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.feature-title em { font-style: italic; color: var(--signal); }

.feature-tagline {
  margin-top: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 340px;
}

.feature-detail {
  padding: 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.feature-caps {
  font-family: 'Syne Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dim);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '\2192';
  color: var(--signal);
  flex-shrink: 0;
  font-size: 11px;
}

/* ─── SECOND MANIFESTO BAND ─── */
.band-2 {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
  background: #0d0d0d;
}

.band-2-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 100px;
  align-items: center;
}

.band-2-left {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: rgba(245,245,245,0.75);
}

.band-2-left strong { font-style: normal; font-weight: 700; color: #f5f5f5; }

.band-2-right {
  display: flex; flex-direction: column; gap: 24px;
}

.stat-block {
  border-left: 2px solid var(--signal);
  padding-left: 24px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: var(--signal);
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(245,245,245,0.65);
  margin-top: 6px;
  text-transform: uppercase;
}

/* ─── INTEGRATIONS ─── */
.integrations {
  padding: 80px 60px;
  border-bottom: 1px solid var(--border);
}

.integrations-label {
  font-family: 'Syne Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.integrations-grid {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.int-tag {
  font-family: 'Syne Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: default;
}

.int-tag:hover {
  border-color: var(--signal);
  color: var(--signal);
  background: var(--signal-dim);
}

/* ─── CTA SECTION ─── */
.cta-section {
  padding: 140px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(204,20,20,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 100px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  position: relative;
}

.cta-headline em { font-style: italic; color: var(--signal); }

.cta-sub {
  margin: 32px auto 0;
  max-width: 500px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
  position: relative;
}

.cta-actions {
  margin-top: 52px;
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
}

.btn-xl {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: var(--signal);
  padding: 20px 48px; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-xl:hover { opacity: 0.88; transform: translateY(-2px); }

/* ─── FOOTER ─── */
footer {
  padding: 32px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-logo span { color: var(--signal); }

.footer-copy {
  font-family: 'Syne Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links {
  display: flex; gap: 32px;
  font-family: 'Syne Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--signal); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── ANIMATIONS ─── */
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  nav .nav-links { display: none; }
  .hero, .why-us, .features-intro, .band-2, .integrations, .cta-section, footer {
    padding-left: 24px; padding-right: 24px;
  }
  .hero { grid-template-columns: 1fr; padding-top: 120px; }
  .hero-right { margin-top: 60px; }
  .why-grid, .features-intro-inner, .band-2-inner { grid-template-columns: 1fr; }
  .why-right { padding-top: 60px; }
  .feature-row { grid-template-columns: 1fr; min-height: auto; }
  .feature-num-col { display: none; }
  .feature-main { border-right: none; border-bottom: 1px solid var(--border); }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
