:root {
  --black: #000000;
  --gold: #C9A227;
  --gold-light: #E8C44A;
  --gold-dim: rgba(201, 162, 39, 0.2);
  --white: #FFFFFF;
  --gray: #111111;
  --gray-mid: #1A1A1A;
  --text-muted: rgba(255, 255, 255, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Cinzel', serif; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-dim);
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 1.25rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}

.nav-cta:hover { background: var(--gold-light); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 162, 39, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  margin-bottom: 2.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.6); }
}

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
  max-width: 960px;
  margin-bottom: 1.75rem;
}

.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.5vw, 1.375rem);
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.hero-time {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
  opacity: 0.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  padding: 1rem 2.5rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
}

.btn-secondary:hover { background: rgba(201, 162, 39, 0.1); }

/* ─── SHARED SECTION HELPERS ─── */
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 3rem;
  font-size: 0.95rem;
}

/* ─── BROADCAST ─── */
.broadcast {
  padding: 7rem 2rem;
  background: var(--gray);
  text-align: center;
}

.video-wrap {
  max-width: 900px;
  margin: 0 auto 3rem;
  aspect-ratio: 16 / 9;
  background: #0a0a0a;
  border: 1px solid var(--gold-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.video-icon { font-size: 3.5rem; opacity: 0.25; }

.video-label {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.countdown-box {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--gold-dim);
  background: #0a0a0a;
  padding: 2.5rem 2rem;
}

.countdown-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.cd-unit { text-align: center; min-width: 80px; }

.cd-number {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.cd-unit-label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.cd-sep {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold);
  opacity: 0.35;
  padding-bottom: 1.5rem;
}

/* ─── TERRAVIAN SIGNAL ─── */
.terravian-signal {
  background: #050505;
  padding: 3.5rem 0;
  border-top: 1px solid var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  overflow: hidden;
}

.signal-header {
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 2rem;
}

.brands-wrapper {
  overflow: hidden;
  position: relative;
}

.brands-wrapper::before,
.brands-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.brands-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #050505, transparent);
}

.brands-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #050505, transparent);
}

.brands-track {
  display: flex;
  gap: 2rem;
  animation: scrollLeft 260s linear infinite;
  width: max-content;
}

.brands-track:hover { animation-play-state: paused; }

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s;
  min-width: 130px;
  user-select: none;
}

.brand-tile:hover {
  border-color: rgba(201, 162, 39, 0.3);
  background: rgba(201, 162, 39, 0.04);
}

.brand-tile:hover .brand-tile-name { color: var(--gold); }

.brand-icon-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}

.brand-tile-name {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s;
}

/* ─── FEATURES ─── */
.features {
  padding: 7rem 2rem;
  background: var(--black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--gold-dim);
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.03) 0%, transparent 100%);
  transition: border-color 0.3s;
}

.feature-card:hover { border-color: rgba(201, 162, 39, 0.4); }

.feature-icon { font-size: 2rem; margin-bottom: 1.25rem; }

.feature-title {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ─── ABOUT ─── */
.about {
  padding: 7rem 2rem;
  background: var(--gray);
}

.about-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-quote {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--gold);
  line-height: 1.55;
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 39, 0.04);
  text-align: left;
}

.about-body {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  text-align: left;
}

/* ─── PRICING ─── */
.pricing {
  padding: 7rem 2rem;
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  padding: 3rem 2rem;
  border: 1px solid var(--gold-dim);
  text-align: center;
  position: relative;
  transition: border-color 0.3s;
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.06) 0%, transparent 100%);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.pricing-price sup {
  font-size: 1.5rem;
  color: var(--gold);
  vertical-align: super;
  line-height: 0;
}

.pricing-cycle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2.25rem;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.875rem;
  color: var(--text-muted);
}

.pricing-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 7rem 2rem;
  background: var(--gray);
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  padding: 2.25rem;
  border: 1px solid var(--gold-dim);
  background: rgba(0, 0, 0, 0.4);
  text-align: left;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.testimonial-role {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 0.25rem;
}

/* ─── CTA ─── */
.cta-section {
  padding: 9rem 2rem;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-text {
  position: absolute;
  font-family: 'Cinzel', serif;
  font-size: 35vw;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  margin-bottom: 1.5rem;
  position: relative;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  position: relative;
}

.cta-section .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─── CONTACT ─── */
.contact {
  padding: 7rem 2rem;
  background: var(--gray);
}

.contact-inner {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-form {
  max-width: 580px;
  margin: 0 auto;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gold-dim);
  color: var(--white);
  padding: 0.9rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: rgba(201, 162, 39, 0.6); }

.form-group textarea { height: 160px; resize: vertical; }

/* ─── FOOTER ─── */
footer {
  background: #050505;
  border-top: 1px solid var(--gold-dim);
  padding: 4rem 2rem 2rem;
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  font-family: 'Cinzel', serif;
  font-size: 1.625rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 240px;
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--gold-dim);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.28);
}

.footer-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  opacity: 0.55;
  text-transform: uppercase;
}

/* ─── BRAND MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #111111;
  border: 1px solid var(--gold-dim);
  max-width: 580px;
  width: 100%;
  padding: 3rem;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s;
}

.modal-close:hover { color: var(--white); }

.modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  margin-bottom: 1.5rem;
}

.modal-name {
  font-size: 1.625rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.modal-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.75rem;
}

.modal-desc {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  font-size: 0.925rem;
  margin-bottom: 1.75rem;
}

.modal-founder {
  background: rgba(201, 162, 39, 0.05);
  border-left: 3px solid var(--gold);
  padding: 1.25rem;
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.modal-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cd-unit { min-width: 60px; }
}
