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

:root {
  --black:    #000000;
  --dark1:    #1d1d1d;
  --dark2:    #141414;
  --dark3:    #0a0a0a;
  --mid:      #3e3e3e;
  --muted:    #808080;
  --red:      #91212e;
  --red-lite: #b02535;
  --red-dark: #6e1722;
  --white:    #ffffff;
  --offwhite: #d8d8d8;
  --border:   #2a2a2a;
  --border2:  #333;
  --green:    #1a5c2e;
  --green-lite:#22783b;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--offwhite);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-chevron { display: flex; align-items: center; gap: 2px; }
.logo-chevron span { display: block; width: 0; height: 0; border-top: 14px solid transparent; border-bottom: 14px solid transparent; }
.logo-chevron span:first-child { border-left: 10px solid var(--red); }
.logo-chevron span:last-child  { border-left: 10px solid var(--muted); opacity: 0.4; margin-left: -4px; }

.logo-wordmark { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 3px; color: var(--white); }
.logo-wordmark em { color: var(--red); font-style: normal; }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { background: var(--red) !important; color: white !important; padding: 10px 24px !important; transition: background 0.2s !important; }
.nav-cta:hover { background: var(--red-lite) !important; }

/* ─── HERO ─── */
.hero {
  margin-top: 68px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 48px 0;
  overflow: hidden;
  background: var(--black);
}

.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 8px; background: var(--red); }

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(145,33,46,0.08) 0%, transparent 70%), linear-gradient(180deg, #000 0%, #0d0d0d 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

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

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 24px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--red); opacity: 0.6; }

.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(64px, 10vw, 130px); letter-spacing: 6px; line-height: 0.9; color: var(--white); margin-bottom: 6px; }
.hero h1 .red { color: var(--red); }
.hero h1 .outline { -webkit-text-stroke: 1px rgba(255,255,255,0.2); color: transparent; }
.hero-sub { max-width: 560px; margin: 24px auto 40px; font-size: 13px; font-weight: 300; color: var(--muted); letter-spacing: 0.5px; line-height: 1.9; }

/* ─── BILLING TOGGLE ─── */
.billing-toggle { display: inline-flex; border: 1px solid var(--border2); overflow: hidden; margin-bottom: 0; }
.tog-btn { padding: 10px 28px; font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; cursor: pointer; border: none; background: transparent; color: var(--muted); font-family: 'Montserrat', sans-serif; transition: color 0.3s, background 0.3s; }
.tog-btn.active { background: var(--red); color: white; }
.save-tag { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 1px; background: #1a5c2e; color: #4ade80; padding: 2px 7px; margin-left: 6px; border-radius: 1px; }

/* ─── TICKER ─── */
.ticker-banner { background: var(--red); padding: 14px 48px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 60px; }
.ticker-text { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 3px; color: white; }
.ticker-link { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: white; text-decoration: none; border: 1px solid rgba(255,255,255,0.5); padding: 8px 20px; transition: all 0.2s; }
.ticker-link:hover { background: white; color: var(--red); }

/* ─── STATS ─── */
.stats-row { display: flex; border-bottom: 1px solid var(--border); }
.stat-block { flex: 1; padding: 40px 20px; text-align: center; border-right: 1px solid var(--border); background: var(--dark3); }
.stat-block:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; letter-spacing: 2px; color: var(--white); line-height: 1; }
.stat-num span { color: var(--red); }
.stat-lbl { font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ─── SECTION ─── */
.section { padding: 80px 56px; max-width: 1320px; margin: 0 auto; }
.section-head { margin-bottom: 56px; }
.eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--red); }
h2.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 64px); letter-spacing: 3px; color: var(--white); line-height: 1; margin-bottom: 12px; }
.section-desc { font-size: 13px; font-weight: 300; color: var(--muted); max-width: 560px; line-height: 1.9; }

/* ─── PAYMENT LOGIC EXPLAINER ─── */
.payment-logic {
  background: var(--dark1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.payment-logic-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.payment-logic-text { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.8; }
.payment-logic-text strong { color: var(--offwhite); font-weight: 600; }

/* ─── PLAN CARDS ─── */
.plans-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  gap: 0;
}
@media (max-width: 1100px) { .plans-wrap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .plans-wrap { grid-template-columns: 1fr; } }

.plan {
  background: var(--dark3);
  border-right: 1px solid var(--border);
  padding: 40px 28px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s;
}
.plan:last-child { border-right: none; }
.plan:hover { background: #0f0f0f; }
.plan.featured { background: var(--dark1); border-top: 2px solid var(--red); }
.plan.featured:hover { background: #222; }

.featured-tag {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--red); text-align: center;
  font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: white; padding: 5px;
}

.plan-tier { font-size: 9px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.plan.featured .plan-tier { margin-top: 24px; }

/* Price display */
.plan-price-row { display: flex; align-items: flex-start; gap: 0; line-height: 1; margin-bottom: 4px; }
.plan-currency { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--red); margin-top: 8px; }
.plan-amount { font-family: 'Bebas Neue', sans-serif; font-size: 64px; letter-spacing: 1px; color: var(--white); }
.plan-period { font-size: 11px; color: var(--muted); font-weight: 300; margin-top: 4px; margin-bottom: 6px; }
.plan-blurb { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.8; margin-bottom: 24px; }
.plan-rule { height: 1px; background: linear-gradient(90deg, var(--red) 0%, transparent 100%); margin-bottom: 24px; opacity: 0.4; }

/* ─── DEPOSIT / BALANCE BLOCK ─── */
.payment-block {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  padding: 16px;
  margin-bottom: 16px;
}

.payment-block-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.payment-split-amounts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 8px;
}

.split-item {
  text-align: center;
  flex: 1;
}

.split-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.split-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}

.split-amount.deposit { color: var(--red); }
.split-amount.balance { color: #4ade80; }

.split-divider {
  width: 1px;
  height: 36px;
  background: var(--border2);
  flex-shrink: 0;
}

.split-plus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--border2);
}

/* ─── DUAL BUTTONS ─── */
.btn-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}

.btn {
  display: block;
  text-align: center;
  padding: 12px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
  line-height: 1.3;
}

.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-lite); }

.btn-green { background: var(--green); color: #4ade80; border: 1px solid #1a5c2e; }
.btn-green:hover { background: var(--green-lite); }

.btn-ghost { background: transparent; color: var(--offwhite); border: 1px solid var(--border2); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); }

.btn-full {
  display: block;
  text-align: center;
  padding: 12px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.2s;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  margin-bottom: 6px;
}
.btn-full:hover { border-color: var(--muted); color: var(--offwhite); }

.btn-note {
  font-size: 9px;
  color: var(--border2);
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.stripe-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 9px;
  color: #3a3a3a;
  margin-top: 8px;
}
.stripe-pill { background: #635bff; color: white; font-size: 8px; font-weight: 700; letter-spacing: 1px; padding: 2px 6px; }

/* ─── FEATURES ─── */
.feat-list { list-style: none; flex: 1; margin-bottom: 20px; }
.feat-list li { font-size: 12px; font-weight: 400; color: #aaa; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.04); display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.feat-list li:last-child { border-bottom: none; }
.feat-list li .ico { color: var(--red); font-size: 8px; margin-top: 5px; flex-shrink: 0; }
.feat-list li .ico.off { color: #333; }
.feat-list li.off-feat { color: #3a3a3a; }

/* ─── MAINTENANCE ─── */
.maint-wrap { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); gap: 0; }
@media (max-width: 860px) { .maint-wrap { grid-template-columns: 1fr; } }

.maint-plan { background: var(--dark3); border-right: 1px solid var(--border); padding: 36px 28px 28px; display: flex; flex-direction: column; position: relative; transition: background 0.3s; }
.maint-plan:last-child { border-right: none; }
.maint-plan:hover { background: #0f0f0f; }
.maint-plan.featured { background: var(--dark1); border-top: 2px solid var(--red); }

/* Monthly single button */
.btn-single { display: block; text-align: center; padding: 13px 20px; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; cursor: pointer; border: none; font-family: 'Montserrat', sans-serif; transition: all 0.2s; margin-bottom: 8px; }
.btn-single.red { background: var(--red); color: white; }
.btn-single.red:hover { background: var(--red-lite); }
.btn-single.ghost { background: transparent; color: var(--offwhite); border: 1px solid var(--border2); }
.btn-single.ghost:hover { border-color: var(--red); color: var(--red); }

/* ─── ADDONS ─── */
.addons-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
.addon-row { display: grid; grid-template-columns: 48px 1fr auto auto; align-items: center; gap: 20px; padding: 22px 28px; border-bottom: 1px solid var(--border); background: var(--dark3); transition: background 0.2s; }
.addon-row:last-child { border-bottom: none; }
.addon-row:hover { background: var(--dark1); }
.addon-icon-box { width: 40px; height: 40px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; background: var(--dark1); }
.addon-name-row { font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; color: var(--white); line-height: 1.1; margin-bottom: 3px; }
.addon-desc-row { font-size: 11px; font-weight: 300; color: var(--muted); line-height: 1.6; }
.addon-price-row { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; color: var(--red); white-space: nowrap; text-align: right; }
.addon-price-row small { font-family: 'Montserrat', sans-serif; font-size: 10px; color: var(--muted); font-weight: 300; display: block; text-align: right; margin-top: -4px; }
.addon-btn { display: inline-block; padding: 10px 20px; font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; color: var(--offwhite); border: 1px solid var(--border2); white-space: nowrap; transition: all 0.2s; font-family: 'Montserrat', sans-serif; }
.addon-btn:hover { border-color: var(--red); color: var(--red); }

/* ─── CTA STRIP ─── */
.cta-strip { background: var(--dark1); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 32px; padding: 48px 56px; }
.cta-strip-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px, 4vw, 52px); letter-spacing: 3px; color: var(--white); line-height: 1; margin-bottom: 8px; }
.cta-strip-sub { font-size: 12px; font-weight: 300; color: var(--muted); }
.btn-red-lg { background: var(--red); color: white; padding: 16px 40px; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; text-decoration: none; display: inline-block; white-space: nowrap; transition: background 0.2s; }
.btn-red-lg:hover { background: var(--red-lite); }

/* ─── FAQ ─── */
.faq-wrap { border: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); background: var(--dark3); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 22px 28px; color: var(--white); font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-q:hover { color: var(--red); }
.faq-plus { font-size: 22px; color: var(--red); transition: transform 0.3s; flex-shrink: 0; font-family: 'Montserrat', sans-serif; font-weight: 300; }
.faq-plus.open { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.9; padding: 0 28px; }
.faq-a.open { max-height: 200px; padding: 0 28px 22px; }

/* ─── DIVIDER ─── */
.full-divider { height: 1px; background: var(--border); }

/* ─── FOOTER ─── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 32px 56px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 3px; color: var(--white); }
.footer-logo em { color: var(--red); font-style: normal; }
footer p { font-size: 11px; color: #3a3a3a; }
footer a { color: var(--red); text-decoration: none; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #444; text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--red); }

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .section { padding: 56px 20px; }
  .cta-strip { padding: 36px 20px; grid-template-columns: 1fr; }
  .addon-row { grid-template-columns: 40px 1fr; }
  .addon-price-row, .addon-btn { display: none; }
  footer { padding: 24px 20px; flex-direction: column; text-align: center; }
  .stats-row { flex-wrap: wrap; }
  .stat-block { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
  .ticker-banner { padding: 14px 20px; }
  .plans-wrap { grid-template-columns: 1fr; }
  .maint-wrap { grid-template-columns: 1fr; }
}
