@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --black:   #000000;
  --red:     #CC0000;
  --red-dim: #8B0000;
  --red-glow:#FF2020;
  --silver:  #A0A0A0;
  --white:   #FFFFFF;
  --off-white: #E8E8E8;
  --card-bg: #0D0D0D;
  --card-border: #2A2A2A;
  --section-alt: #080808;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-glow); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
.eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .5rem;
}

/* ── Nav ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body > nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 72px;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(204,0,0,.25);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  line-height: 1;
}
/* icon is dark red on black — boost brightness so it reads as vivid red */
.nav-logo img { width: 36px; height: 36px; filter: brightness(2.5) saturate(1.5); }
/* single span wraps all text so flex gap doesn't split letters */
.nav-logo .logo-text { letter-spacing: 0; display: inline; color: #ffffff !important; }
.nav-logo .logo-v { color: var(--red) !important; font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .9rem;
  color: var(--silver);
  font-weight: 500;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: .45rem 1.1rem;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: .06em;
  transition: background .2s;
}
.btn-nav:hover { background: var(--red-glow) !important; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
body > nav.scrolled {
  background: rgba(0,0,0,.97);
  border-bottom-color: rgba(204,0,0,.5);
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: .85rem 2rem;
  border-radius: 4px;
}
.btn-primary:hover {
  background: var(--red-glow);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(204,0,0,.4);
}
.btn-outline {
  background: transparent;
  color: var(--silver);
  padding: .8rem 1.8rem;
  border-radius: 4px;
  border: 1px solid var(--card-border);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--white);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-owl.png');
  background-size: cover;
  background-position: center top;
  filter: brightness(.55);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.6) 50%,
    rgba(0,0,0,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 4rem 2rem 4rem 8vw;
}
.hero-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: .75rem;
}
.hero-tagline .red { color: var(--red); }
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: var(--silver);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 600;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 2px;
  border: 1px solid rgba(160,160,160,.3);
  color: var(--silver);
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Waitlist form (inline hero) ── */
.waitlist-form {
  display: flex;
  gap: .5rem;
  max-width: 440px;
  flex-wrap: wrap;
}
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: .8rem 1rem;
  color: var(--white);
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.waitlist-form input[type="email"]:focus { border-color: var(--red); }
.waitlist-form input::placeholder { color: rgba(255,255,255,.35); }
.waitlist-note { font-size: .75rem; color: var(--silver); margin-top: .6rem; opacity: .7; }
.age-gate-label { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: rgba(255,255,255,.55); margin-top: .4rem; cursor: pointer; }
.age-gate-label input[type="checkbox"] { accent-color: var(--red); width: 1rem; height: 1rem; flex-shrink: 0; cursor: pointer; }

/* ── Sections ── */
section { padding: 5rem 2rem; }
.section-alt { background: var(--section-alt); }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: .75rem; }
.section-header p { color: var(--silver); max-width: 560px; margin: 0 auto; }

/* ── Why section ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 1.75rem;
  transition: border-color .2s;
}
.why-card:hover { border-color: rgba(204,0,0,.4); }
.why-icon {
  width: 40px; height: 40px;
  border-radius: 4px;
  background: rgba(204,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.why-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: .5rem; }
.why-card p { font-size: .88rem; color: var(--silver); line-height: 1.65; }

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 2rem;
}
.feature-card .tier-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  display: inline-block;
}
.tier-u { background: rgba(160,160,160,.15); color: var(--silver); }
.tier-l { background: rgba(204,0,0,.15); color: #ff6060; }
.tier-s { background: rgba(204,0,0,.3); color: #ff9090; border: 1px solid rgba(204,0,0,.4); }
.feature-card h3 { font-size: 1.25rem; color: var(--white); margin-bottom: .35rem; }
.feature-card .price { font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--red); margin-bottom: 1rem; }
.feature-card .price span { font-size: .9rem; color: var(--silver); font-weight: 400; }
.feature-list { list-style: none; space-y: .4rem; }
.feature-list li {
  font-size: .87rem;
  color: var(--silver);
  padding: .3rem 0;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: "▸"; color: var(--red); flex-shrink: 0; margin-top: .05rem; }
.feature-list li.locked { opacity: .35; }
.feature-list li.locked::before { content: "—"; color: var(--silver); }

/* ── Benefits ── */
.benefits-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.benefits-img { border-radius: 8px; overflow: hidden; border: 1px solid var(--card-border); }
.benefits-img img { width: 100%; filter: brightness(.9); }
.benefit-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.benefit-item:last-child { margin-bottom: 0; }
.benefit-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 2rem;
}
.benefit-item h4 { font-size: 1rem; color: var(--white); margin-bottom: .3rem; }
.benefit-item p { font-size: .87rem; color: var(--silver); line-height: 1.6; }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, #0d0000 0%, #1a0000 50%, #0d0000 100%);
  border-top: 1px solid rgba(204,0,0,.3);
  border-bottom: 1px solid rgba(204,0,0,.3);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: var(--silver); margin-bottom: 2rem; }
.cta-form { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; max-width: 460px; margin: 0 auto; }
.cta-form input[type="email"] {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  padding: .8rem 1rem;
  color: var(--white);
  font-size: .95rem;
  outline: none;
}
.cta-form input:focus { border-color: var(--red); }

/* ── Footer ── */
footer {
  background: #030303;
  border-top: 1px solid var(--card-border);
  padding: 2.5rem 2rem;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}
.footer-logo img { width: 24px; height: 24px; }
.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  /* override nav { position:fixed } — footer nav must NOT be fixed */
  position: static;
  height: auto;
  background: none;
  backdrop-filter: none;
  border: none;
  padding: 0;
  z-index: auto;
}
.footer-links a { font-size: .82rem; color: var(--silver); }
.footer-meta { font-size: .75rem; color: rgba(160,160,160,.5); }

/* ── Page hero (inner pages) ── */
.page-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--white); margin-bottom: .5rem; }
.page-hero p { color: var(--silver); max-width: 520px; margin: 0 auto; }

/* ── Pricing page ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { border-color: var(--red); position: relative; }
.pricing-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .2rem .9rem;
  border-radius: 0 0 4px 4px;
}
.pricing-card h3 { font-size: 1.4rem; color: var(--white); margin-bottom: .25rem; }
.pricing-card .tier-desc { font-size: .82rem; color: var(--silver); margin-bottom: 1.5rem; min-height: 3.6rem; }
.pricing-card .price-big {
  font-family: 'Rajdhani', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: .25rem;
}
.pricing-card .price-big span { font-size: 1rem; color: var(--silver); font-weight: 400; }
.pricing-card .seats { font-size: .8rem; color: var(--silver); margin-bottom: 1.5rem; }
.pricing-card .feature-list { flex: 1; margin-bottom: 1.5rem; }
.waitlist-btn {
  display: block;
  text-align: center;
  padding: .85rem;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.waitlist-btn-primary { background: var(--red); color: var(--white); }
.waitlist-btn-primary:hover { background: var(--red-glow); }
.waitlist-btn-outline { background: transparent; color: var(--silver); border: 1px solid var(--card-border); }
.waitlist-btn-outline:hover { border-color: var(--red); color: var(--white); }

/* ── Download page ── */
.download-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.download-card.coming-soon { opacity: .5; }
.dl-info h3 { font-size: 1.2rem; color: var(--white); margin-bottom: .25rem; }
.dl-info p { font-size: .85rem; color: var(--silver); }
.dl-meta { font-size: .78rem; color: rgba(160,160,160,.6); margin-top: .3rem; }
.sysreq { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 6px; padding: 1.5rem 2rem; margin-top: 2rem; }
.sysreq h4 { font-size: 1rem; color: var(--white); margin-bottom: 1rem; }
.sysreq ul { list-style: none; }
.sysreq li { font-size: .85rem; color: var(--silver); padding: .3rem 0; display: flex; gap: .5rem; }
.sysreq li::before { content: "▸"; color: var(--red); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--card-border); padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-item h4 { font-size: 1.05rem; color: var(--white); margin-bottom: .5rem; font-family: 'Rajdhani', sans-serif; }
.faq-item p { font-size: .88rem; color: var(--silver); line-height: 1.7; }

/* ── Brand banner — owl-banner-crop.png, natural proportions, bird centered ── */
.brand-banner {
  position: relative;
  width: 100%;
  background: var(--black);
}
.brand-banner img {
  width: 100%;
  height: auto;
  display: block;
}
.brand-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%, rgba(0,0,0,.25) 100%);
  pointer-events: none;
}

/* ── Full-bleed brand statement (sovere-brand.png) ── */
.brand-statement {
  position: relative;
  width: 100%;
  height: clamp(260px, 36vw, 460px);
  overflow: hidden;
}
.brand-statement img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.brand-statement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.2) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,.25) 100%);
}

/* ── Benefits grid (2×2) ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.benefit-card {
  display: flex;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
  padding: 1.5rem;
}
.benefit-card .benefit-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  flex-shrink: 0;
  width: 2.2rem;
}
.benefit-card h4 { font-size: 1rem; color: var(--white); margin-bottom: .35rem; }
.benefit-card p { font-size: .86rem; color: var(--silver); line-height: 1.65; }

/* ── Divider ── */
.red-line { height: 2px; background: linear-gradient(90deg, transparent, var(--red), transparent); margin: 0; border: none; }

/* ── Success message ── */
.form-success { display: none; text-align: center; color: #7ddd7d; font-size: .9rem; margin-top: .75rem; }

/* ── Add-on seats note ── */
.addon-note {
  background: rgba(204,0,0,.07);
  border: 1px solid rgba(204,0,0,.2);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  font-size: .88rem;
  color: var(--silver);
  text-align: center;
  line-height: 1.7;
}
.addon-note strong { color: var(--white); }

/* ── Enterprise band ── */
.enterprise-band {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.enterprise-band h3 { font-size: 1.3rem; color: var(--white); margin-bottom: .3rem; }
.enterprise-band p { font-size: .88rem; color: var(--silver); }

/* ── Contact form ── */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-family: 'Rajdhani', sans-serif;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: .8rem 1rem;
  color: var(--white);
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.25); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-content { padding: 3rem 1.5rem; }
  .benefits-wrap { grid-template-columns: 1fr; }
  .benefits-img { order: -1; }
  .download-card { flex-direction: column; align-items: flex-start; }
  section { padding: 3.5rem 1.25rem; }
}
