/* ================================================================
   $NOTHING — styles.css
   Dark cinematic × liberating hope
   Fonts: Bebas Neue (display) · DM Mono (body) · Crimson Pro (editorial)
   ================================================================ */

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

/* === TOKENS === */
:root {
  --black:        #050505;
  --surface:      #0d0d0d;
  --surface-2:    #131313;
  --surface-3:    #1a1a1a;

  --orange:       #ff6b2b;
  --orange-lt:    #ff8f5e;
  --orange-dim:   rgba(255, 107, 43, 0.13);
  --orange-glow:  0 0 32px rgba(255, 107, 43, 0.28), 0 0 64px rgba(255, 107, 43, 0.1);

  --cream:        #f0ebe0;
  --cream-60:     rgba(240, 235, 224, 0.6);
  --cream-40:     rgba(240, 235, 224, 0.4);
  --muted:        #555;
  --border:       rgba(255, 255, 255, 0.055);
  --border-or:    rgba(255, 107, 43, 0.22);

  --font-d:  'Bebas Neue', cursive;
  --font-b:  'DM Mono', monospace;
  --font-e:  'Crimson Pro', Georgia, serif;

  --nav-h:   64px;
  --max-w:   1100px;
  --pad-x:   clamp(20px, 5vw, 64px);
  --pad-y:   clamp(80px, 10vw, 140px);
}

/* === BASE === */
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* === GRAIN === */
.grain {
  position: fixed;
  inset: -120px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 240px 240px;
  animation: grain 0.38s steps(1) infinite;
}

@keyframes grain {
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-4%,-5%); }
  20%  { transform: translate(-9%, 4%); }
  30%  { transform: translate(5%,-8%); }
  40%  { transform: translate(-5%,12%); }
  50%  { transform: translate(-9%, 4%); }
  60%  { transform: translate(11%, 0%); }
  70%  { transform: translate(0%, 9%); }
  80%  { transform: translate(-13%, 0%); }
  90%  { transform: translate(9%, 4%); }
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.text-center { text-align: center; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-orange {
  background: var(--orange);
  color: #000;
  border-color: var(--orange);
}
.btn-orange:hover {
  background: var(--orange-lt);
  border-color: var(--orange-lt);
  box-shadow: var(--orange-glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(240,235,224,0.22);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-lg  { padding: 16px 36px; font-size: 0.77rem; }
.btn-xl  { padding: 20px 52px; font-size: 0.82rem; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(5,5,5,0.6);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease;
}

.nav-logo {
  font-family: var(--font-d);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 0.06em;
  color: var(--orange);
  text-shadow: 0 0 22px rgba(255,107,43,0.38);
}

/* === HERO === */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url('nothing.jpeg') center 30% / cover no-repeat;
  transform: scale(1.06);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 35% at 50% 108%, rgba(255,107,43,0.1) 0%, transparent 65%),
    linear-gradient(
      to bottom,
      rgba(5,5,5,0.76) 0%,
      rgba(5,5,5,0.32) 32%,
      rgba(5,5,5,0.12) 54%,
      rgba(5,5,5,0.52) 80%,
      rgba(5,5,5,0.9)  100%
    );
}

.hero-glow-bottom {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 55%; height: 28%;
  background: radial-gradient(ellipse, rgba(255,107,43,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Ambient ghost words */
.ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.aw {
  position: absolute;
  font-family: var(--font-d);
  color: rgba(255,255,255,0.028);
  letter-spacing: 0.04em;
  user-select: none;
  animation: aw-drift 22s ease-in-out infinite;
}
.aw:nth-child(2) { animation-duration: 27s; }
.aw:nth-child(3) { animation-duration: 19s; }
.aw:nth-child(4) { animation-duration: 24s; }
.aw:nth-child(5) { animation-duration: 31s; }
.aw:nth-child(6) { animation-duration: 17s; }

@keyframes aw-drift {
  0%,100% { transform: translateY(0px) rotate(-2deg);  opacity: 0.028; }
  40%      { transform: translateY(-14px) rotate(1deg); opacity: 0.048; }
  70%      { transform: translateY(7px) rotate(-1deg);  opacity: 0.02;  }
}

/* Hero content — upper sky zone */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: calc(var(--nav-h) + clamp(36px, 7vw, 72px)) var(--pad-x) 0;
  max-width: 960px;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-b);
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(4.8rem, 15vw, 10.5rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
}

.ht-line {
  display: block;
}

.hero-title .accent {
  color: var(--orange);
  text-shadow: 0 0 55px rgba(255,107,43,0.45), 0 0 110px rgba(255,107,43,0.15);
}

.hero-sub {
  font-family: var(--font-e);
  font-style: italic;
  font-size: clamp(1rem, 2.3vw, 1.22rem);
  color: var(--cream-60);
  line-height: 1.62;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero entry animations */
.hero-anim {
  opacity: 0;
  transform: translateY(22px);
  animation: fade-up 0.75s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%,100% { opacity: 0.35; transform: scaleY(1); }
  50%      { opacity: 1;    transform: scaleY(1.25); }
}

/* === SECTION SHARED === */
.eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.93;
  letter-spacing: 0.025em;
  color: var(--cream);
  margin-bottom: clamp(40px, 6vw, 68px);
}

/* === STORY === */
.story {
  padding: var(--pad-y) 0;
  background: var(--surface);
}

.story-inner { max-width: 680px; }

.story-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.story-body p {
  font-family: var(--font-e);
  font-size: clamp(1.05rem, 1.9vw, 1.18rem);
  color: var(--cream-60);
  line-height: 1.78;
}

.story-quote {
  border-left: 2px solid var(--orange);
  padding: 18px 0 18px 26px;
  font-family: var(--font-e);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.32rem);
  color: var(--cream);
  line-height: 1.62;
  list-style: none;
  margin: 4px 0;
}

.story-quote strong {
  color: var(--orange);
  font-style: normal;
}

.story-source {
  display: flex;
  align-items: center;
  margin-top: 4px;
}

.story-source a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-b);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  transition: color 0.2s;
}

.story-source a:hover { color: var(--orange); }

.qm {
  font-size: 1.8em;
  line-height: 0;
  vertical-align: -0.35em;
  color: var(--orange);
  font-style: normal;
  margin: 0 3px;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(32px, 5vw, 52px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat { text-align: center; }

.stat-label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.stat-value {
  font-family: var(--font-d);
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  letter-spacing: 0.05em;
  color: var(--cream);
  display: flex;
  justify-content: center;
  align-items: center;
}

.stat-inf {
  color: var(--orange);
  text-shadow: var(--orange-glow);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: var(--font-b);
}

.stat-up   { color: #4ade80; }
.stat-down { color: #f87171; }

/* CA Button */
.ca-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.ca-btn:hover {
  border-color: var(--border-or);
  color: var(--orange);
  box-shadow: 0 0 18px rgba(255,107,43,0.12);
}

.ca-icon {
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.ca-btn:hover .ca-icon { opacity: 1; }

/* === ETHOS === */
.ethos {
  padding: var(--pad-y) 0;
  background: var(--black);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.card {
  background: var(--surface);
  padding: clamp(28px, 5vw, 48px) clamp(22px, 4vw, 36px);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.28s, border-color 0.28s, transform 0.28s, box-shadow 0.28s;
}

.card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  transform: scaleX(0);
  transition: transform 0.32s ease;
}

.card:hover::after    { transform: scaleX(1); }
.card:hover {
  background: var(--surface-2);
  border-color: var(--border-or);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 44px rgba(255,107,43,0.055);
}

.card-icon {
  font-size: 1.9rem;
  margin-bottom: 18px;
  display: block;
}

.card-title {
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 12px;
}

.card-body {
  font-size: 0.82rem;
  color: var(--cream-40);
  line-height: 1.78;
}

/* === BUY SECTION === */
.buy-section {
  padding: var(--pad-y) 0;
  background: var(--surface);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: clamp(48px, 8vw, 80px);
}

.step {
  flex: 1;
  max-width: 280px;
  padding: 28px 20px;
  text-align: center;
}

.step-num {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--orange);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 14px;
  transition: opacity 0.3s ease;
}

.step:hover .step-num { opacity: 0.55; }

.step-title {
  font-family: var(--font-d);
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
  letter-spacing: 0.04em;
  color: var(--cream);
  margin-bottom: 10px;
}

.step-body {
  font-size: 0.8rem;
  color: var(--cream-40);
  line-height: 1.72;
}

.step-body a {
  color: var(--orange);
  transition: text-shadow 0.2s;
}

.step-body a:hover { text-shadow: 0 0 10px rgba(255,107,43,0.5); }

.step-arrow {
  font-family: var(--font-b);
  font-size: 1.3rem;
  color: var(--muted);
  padding: 44px 12px 0;
  flex-shrink: 0;
}

.buy-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 8vw, 80px) 0 clamp(32px, 5vw, 48px);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: 0.05em;
  color: var(--orange);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--orange); }

.footer-ca {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.footer-ca-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

.footer-ca-btn {
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  padding: 5px 10px;
  word-break: break-all;
  text-align: left;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  font-family: var(--font-e);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  color: rgba(85,85,85,0.65);
  white-space: nowrap;
}

/* === SCROLL FADE-IN === */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s cubic-bezier(0.22,1,0.36,1),
              transform 0.72s cubic-bezier(0.22,1,0.36,1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === TOAST === */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--orange);
  color: #000;
  font-family: var(--font-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* === KEYFRAMES === */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 860px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(4rem, 19vw, 6.5rem);
  }

  .hero-sub .br-desktop { display: none; }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-copy { white-space: normal; }

  .footer-ca-btn .ca-text {
    font-size: 0.58rem;
  }
}
