/* ============================================
   APEX GSD SPECIALISTS — Noir Placeholder
   ============================================ */

:root {
  --black:      #080808;
  --deep:       #0e0e0e;
  --surface:    #161616;
  --border:     #2a2a2a;
  --muted:      #3a3a3a;
  --dim:        #888888;
  --silver:     #b8b8b8;
  --white:      #f0ede8;
  --gold:       #c9a84c;
  --gold-dim:   #8a6d2a;
  --red:        #8b1a1a;
}

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

html, body {
  height: 100%;
}

body {
  background-color: var(--black);
  color: var(--silver);
  font-family: 'Cormorant Garamond', Georgia, serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* ── Grain Overlay ── */
.grain {
  pointer-events: none;
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 100;
  opacity: 0.04;
  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");
  animation: grain-shift 0.5s steps(1) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  10%  { transform: translate(-2%, -3%); }
  20%  { transform: translate(4%, 1%); }
  30%  { transform: translate(-1%, 4%); }
  40%  { transform: translate(3%, -2%); }
  50%  { transform: translate(-4%, 2%); }
  60%  { transform: translate(2%, 3%); }
  70%  { transform: translate(-3%, -1%); }
  80%  { transform: translate(1%, -4%); }
  90%  { transform: translate(-2%, 2%); }
  100% { transform: translate(3%, -3%); }
}

/* ── Vignette ── */
.vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.85) 100%);
}

/* ── Scanlines ── */
.scanlines {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.06) 2px,
    rgba(0,0,0,0.06) 4px
  );
}

/* ── Background Texture ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, #1a1208 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, #0a0a0a 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.015) 60px,
      rgba(201,168,76,0.015) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,0.015) 60px,
      rgba(201,168,76,0.015) 61px
    );
}

/* ── Utilities ── */
.mono {
  font-family: 'Share Tech Mono', 'Courier New', monospace;
  letter-spacing: 0.08em;
  font-size: 0.75em;
}

/* ── Header ── */
.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  border-bottom: 1px solid var(--border);
}

.logo-mark {
  font-size: 1.2rem;
  color: var(--gold);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.2em;
  text-shadow: 0 0 20px rgba(201,168,76,0.4);
}

.tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--dim);
  letter-spacing: 0.15em;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.hero-inner {
  text-align: center;
  max-width: 860px;
  width: 100%;
}

/* ── Eyebrow ── */
.eyebrow {
  font-size: 0.7rem;
  color: var(--gold-dim);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.2s;
}

/* ── Headline ── */
.headline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 3.5rem;
  line-height: 0.88;
}

.line {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.12em;
  color: var(--white);
  display: block;
  opacity: 0;
  animation: fade-up 0.7s ease forwards;
}

.line-1 {
  font-size: clamp(5rem, 18vw, 13rem);
  color: var(--white);
  animation-delay: 0.4s;
  text-shadow:
    0 0 80px rgba(201,168,76,0.08),
    0 2px 0 rgba(0,0,0,0.8);
}

.line-2 {
  font-size: clamp(5rem, 18vw, 13rem);
  color: var(--gold);
  animation-delay: 0.55s;
  text-shadow:
    0 0 60px rgba(201,168,76,0.25),
    0 0 120px rgba(201,168,76,0.1),
    0 2px 0 rgba(0,0,0,0.8);
}

.line-3 {
  font-size: clamp(2.2rem, 7vw, 5.5rem);
  color: var(--dim);
  letter-spacing: 0.35em;
  animation-delay: 0.7s;
  font-weight: 400;
}

/* ── Banner ── */
.banner {
  position: relative;
  display: inline-block;
  padding: 2.2rem 3rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border);
  background: rgba(14,14,14,0.8);
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: fade-up 0.8s ease forwards 0.9s;
}

.banner::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(201,168,76,0.08);
  pointer-events: none;
}

.banner p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  color: var(--silver);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.banner p strong {
  color: var(--white);
  font-weight: 600;
}

.banner .sub {
  margin-top: 0.6rem;
  font-style: italic;
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  color: var(--dim);
  letter-spacing: 0.06em;
}

/* Corner Accents */
.banner-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--gold);
  border-style: solid;
}
.banner-corner.tl { top: -1px; left: -1px;  border-width: 2px 0 0 2px; }
.banner-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.banner-corner.bl { bottom: -1px; left: -1px;  border-width: 0 0 2px 2px; }
.banner-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fade-up 0.7s ease forwards 1.1s;
}

.divider span:first-child,
.divider span:last-child {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.divider .mono {
  color: var(--gold-dim);
  font-size: 0.6rem;
}

/* ── Status Row ── */
.status-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  opacity: 0;
  animation: fade-up 0.7s ease forwards 1.3s;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--dim);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}

.status-dot.pulse {
  animation: pulse 2.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(201,168,76,0.6); }
  50%       { opacity: 0.3; box-shadow: 0 0 2px rgba(201,168,76,0.2); }
}

/* ── Footer ── */
.site-footer {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
}

/* ── Animations ── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Card Image Section ── */
.card-section {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem 4rem;
  border-top: 1px solid var(--border);
}

.card-image {
  width: 100%;
  max-width: 720px;
  border-radius: 12px;
  box-shadow:
    0 0 60px rgba(201,168,76,0.08),
    0 20px 60px rgba(0,0,0,0.8),
    0 0 0 1px rgba(201,168,76,0.1);
  opacity: 0;
  animation: fade-up 1s ease forwards 1.5s;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .site-header,
  .site-footer {
    padding: 1.5rem;
  }

  .banner {
    padding: 1.6rem 1.5rem;
    margin: 0 0 2.5rem;
  }

  .status-row {
    flex-direction: column;
    gap: 1rem;
  }
}
