@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono:wght@300;400&family=DM+Sans:ital,wght@0,300;0,400;1,300&display=swap');

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

:root {
  --black: #0c0c0c;
  --white: #f2ede6;
  --red: #d63a2f;
  --gray: #3a3a3a;
  --mid: #888;
  --line: rgba(242,237,230,0.1);
  --line-bright: rgba(242,237,230,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: crosshair;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.35;
}

/* TICKER */
.ticker { background: var(--red); padding: 8px 0; overflow: hidden; white-space: nowrap; }
.ticker-inner {
  display: inline-block;
  animation: ticker 28s linear infinite;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* NAV */
nav {
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.logo-wrap {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 4px;
  text-decoration: none;
  color: var(--white);
}
.logo span { color: var(--red); }

.logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--white);
  margin-top: 2px;
  text-transform: uppercase;
}

footer .logo-sub { font-size: 10px; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { border-bottom: 1px solid var(--red); padding-bottom: 2px; }

/* FOOTER */
footer {
  padding: 48px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 40px;
}
footer .logo { font-size: 20px; display: block; }
footer .logo-wrap { margin-bottom: 8px; }
.footer-tagline { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--mid); letter-spacing: 1px; line-height: 1.8; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-end; }
.footer-socials { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.footer-socials a {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 6px 12px;
  transition: all 0.2s;
}
.footer-socials a:hover { color: var(--white); border-color: var(--white); }
.footer-founder {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 1px;
  text-align: right;
}
.footer-founder a { color: var(--mid); text-decoration: none; border-bottom: 1px solid var(--line); transition: color 0.2s; }
.footer-founder a:hover { color: var(--white); }

/* SECTION LABEL */
.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--red);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* SHARE COUNTER BLOCK */
.share-counter-block {
  background: rgba(214,58,47,0.08);
  border: 1px solid rgba(214,58,47,0.3);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 32px 0;
}
.counter-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--red);
  line-height: 1;
  letter-spacing: 2px;
  min-width: 140px;
}
.counter-label { font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.5; }
.counter-label strong { color: var(--white); font-weight: 400; display: block; margin-bottom: 4px; font-size: 17px; }

/* BUTTONS */
.btn-red {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 16px 40px;
  cursor: crosshair;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.btn-red:hover { opacity: 0.88; }
.btn-red:active { transform: scale(0.98); }

.btn-outline {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 1px solid var(--line-bright);
  background: transparent;
  color: var(--white);
  cursor: crosshair;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* INPUT STYLES */
.input-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
  display: block;
}
.input-field {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(242,237,230,0.2);
  outline: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--white);
  padding-bottom: 4px;
  transition: border-color 0.2s;
  letter-spacing: 2px;
  width: 100%;
  max-width: 160px;
}
.input-field:focus { border-color: var(--red); }
.input-field::placeholder { color: rgba(242,237,230,0.1); }
.input-unit { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--mid); }
.input-hint { margin-top: 8px; font-size: 11px; color: rgba(136,136,136,0.5); font-style: italic; }

/* DIVIDER */
.divider { height: 1px; background: var(--line); margin: 48px 0; }

/* RESULTS */
.results { display: none; animation: revealUp 0.5s ease forwards; }
@keyframes revealUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.result-grid {
  display: grid;
  gap: 2px;
  background: var(--line);
  margin-bottom: 2px;
}
.result-card {
  background: var(--black);
  padding: 32px 36px;
  transition: background 0.2s;
}
.result-card:hover { background: #111; }
.result-card.featured { background: var(--red); }
.result-card.featured:hover { background: #c5332a; }
.result-card.dark-card { background: #0f0f0f; }

.result-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(242,237,230,0.4);
  margin-bottom: 12px;
  display: block;
}
.result-card.featured .result-label { color: rgba(242,237,230,0.65); }

.result-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1;
  letter-spacing: 2px;
}
.result-desc {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(242,237,230,0.45);
  line-height: 1.55;
  max-width: 380px;
}
.result-card.featured .result-desc { color: rgba(242,237,230,0.75); }

.verdict-box {
  border: 1px solid var(--red);
  padding: 36px 40px;
  margin: 2px 0 32px;
}
.verdict-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(24px, 3.5vw, 42px);
  letter-spacing: 1.5px;
  line-height: 1.1;
}
.verdict-text span { color: var(--red); }
.verdict-sub { margin-top: 14px; font-size: 14px; font-weight: 300; font-style: italic; color: var(--mid); line-height: 1.6; max-width: 680px; }

.share-text-box {
  background: rgba(242,237,230,0.04);
  border: 1px solid var(--line);
  padding: 20px 24px;
  font-size: 15px;
  font-style: italic;
  color: var(--white);
  line-height: 1.65;
  margin: 20px 0;
  font-weight: 300;
}
.share-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .nav-links { gap: 16px; }
  footer { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .footer-links { justify-content: center; }
  .footer-right { text-align: center; }
  .share-counter-block { flex-direction: column; align-items: flex-start; }
}
