/* Overwatch Technologies — parent brand (theoverwatch.tech)
   Distinct from Portal product skins (mint / champagne chamber).
   Tokens follow Master Control Overwatch / Midnight Gold cockpit. */
:root {
  --bg-deepest:    #030304;
  --bg-base:       #08080c;
  --bg-raised:     #0f0f14;
  --bg-surface:    #14141c;
  --bg-glass:      rgba(15, 15, 20, 0.92);
  --text-primary:  #eceef2;
  --text-secondary:#7d8494;
  --text-muted:    #4a5060;
  --gold-100:      #f3ead8;
  --gold-300:      #c9a86c;
  --gold-500:      #a8874a;
  --gold-700:      #7a6235;
  --gold-subtle:   rgba(201, 168, 108, 0.07);
  --gold-glow:     rgba(201, 168, 108, 0.18);
  --silver-300:    #b4b9c4;
  --border:        rgba(180, 185, 196, 0.1);
  --border-gold:   rgba(201, 168, 108, 0.32);
  --radius:        3px;
  --max-w:         1100px;
  --font-display:  "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --font-body:     "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  --font-mono:     "JetBrains Mono", ui-monospace, monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-deepest);
  background-image:
    radial-gradient(ellipse 50% 35% at 12% 0%, var(--gold-subtle), transparent 55%),
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-deepest) 100%);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold-300); text-decoration: none; }
a:hover { color: var(--gold-100); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

/* —— Nav —— */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-glass);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 1rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; color: inherit; }
.nav-logo:hover { color: var(--text-primary); }
.nav-logo img { height: 28px; width: auto; }
.nav-wordmark {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.nav-links { display: flex; gap: 1.5rem; list-style: none; margin-left: auto; margin-right: 1rem; }
.nav-links a {
  color: var(--text-secondary);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border);
  cursor: pointer; color: var(--text-primary); font-size: 1.1rem;
  width: 2.4rem; height: 2.4rem;
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(3, 3, 4, 0.98); border-bottom: 1px solid var(--border); padding: 1.25rem 1.5rem; gap: 1rem;
    margin: 0;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.75rem 1.35rem; border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  border: none; transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.btn-primary {
  background: var(--gold-300);
  color: var(--bg-deepest);
  border: 1px solid var(--gold-300);
}
.btn-primary:hover {
  background: var(--gold-100);
  border-color: var(--gold-100);
  color: var(--bg-deepest);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(236, 238, 242, 0.28);
}
.btn-outline:hover {
  border-color: var(--gold-300);
  color: var(--gold-100);
}
.btn-disabled,
.btn[aria-disabled="true"] {
  opacity: 0.5; cursor: not-allowed; pointer-events: none;
  background: var(--bg-surface); color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 6.5rem 0 4.5rem;
  text-align: left;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }
.hero-brand {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.15rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  font-weight: 500; line-height: 1.12;
  margin-bottom: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--gold-100);
  max-width: 16ch;
}
.hero > .container > p {
  font-size: 1.02rem; color: var(--text-secondary);
  max-width: 36rem; margin: 0 0 1.75rem;
  line-height: 1.65;
}
.hero-btns {
  display: flex; gap: 0.65rem; flex-wrap: wrap;
}

.trust-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--border);
  overflow: hidden; margin-top: 3.5rem;
  background: var(--bg-raised);
}
.trust-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1.25rem 1.4rem; border-right: 1px solid var(--border);
  text-align: left;
}
.trust-item:last-child { border-right: none; }
.trust-mark {
  width: 8px; height: 8px; margin-top: 0.4rem; flex-shrink: 0;
  border-radius: 0;
  background: var(--gold-300);
}
.trust-item strong { display: block; font-size: 0.88rem; color: var(--text-primary); font-weight: 600; }
.trust-item span { font-size: 0.8rem; color: var(--text-secondary); }
@media (max-width: 640px) {
  .trust-strip { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}

/* —— Sections —— */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-300); margin-bottom: 0.55rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 500; margin-bottom: 0.75rem; letter-spacing: -0.01em;
  color: var(--gold-100);
}
.section-sub { color: var(--text-secondary); max-width: 36rem; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--border); }
.card {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 1.75rem 1.5rem 1.75rem 0;
  display: flex; flex-direction: column; gap: 0.65rem;
  transition: background 0.2s;
}
.card:hover {
  background: var(--gold-subtle);
}
.card-mark {
  width: 1.5rem; height: 1px; background: var(--gold-300);
  margin-bottom: 0.35rem;
}
.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
  color: var(--text-primary);
}
.card p { font-size: 0.9rem; color: var(--text-secondary); flex: 1; }

.how-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0; margin-top: 2.5rem; border-top: 1px solid var(--border); }
.how-step {
  display: flex; flex-direction: column; gap: 0.55rem;
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-top: 1px solid var(--border-gold);
}
.how-num {
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 500; color: var(--gold-300); line-height: 1;
  letter-spacing: 0.14em;
}
.how-step h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.how-step p { font-size: 0.88rem; color: var(--text-secondary); }

.cta-band { text-align: left; padding-bottom: 6rem; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 500; margin-bottom: 1rem; letter-spacing: -0.01em;
  color: var(--gold-100);
}

/* —— Pricing —— */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 960px; margin: 2.5rem auto 0; border: 1px solid var(--border); }
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: transparent;
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 2rem 1.5rem;
  display: flex; flex-direction: column;
}
.pricing-card:last-child { border-right: none; }
.pricing-card.featured {
  background: var(--gold-subtle);
  box-shadow: inset 0 0 0 1px var(--border-gold);
  position: relative;
}
.pricing-tier {
  font-family: var(--font-mono);
  font-size: 0.62rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--gold-300); margin-bottom: 0.5rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2.15rem; font-weight: 500; line-height: 1; margin-bottom: 0.25rem;
  color: var(--gold-100);
}
.pricing-price .tbd { font-size: 1.25rem; color: var(--text-secondary); font-weight: 500; }
.pricing-note { font-size: 0.8rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; flex: 1; }
.pricing-features li { font-size: 0.875rem; display: flex; gap: 0.5rem; color: var(--text-secondary); }
.pricing-features li::before {
  content: ""; width: 6px; height: 1px; margin-top: 0.65rem;
  background: var(--gold-300); flex-shrink: 0;
}

.badge-soon {
  display: inline-block; font-size: 0.6rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 0.2rem 0.45rem; border-radius: 0;
  background: transparent; color: var(--gold-300); border: 1px solid var(--border-gold);
  font-family: var(--font-mono);
}

.faq-list { display: flex; flex-direction: column; gap: 0; margin-top: 1.5rem; border-top: 1px solid var(--border); }
.faq-list > * { padding: 1.25rem 0; border-bottom: 1px solid var(--border); }
.faq-list h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.35rem; }
.faq-list p { font-size: 0.9rem; color: var(--text-secondary); }

/* —— Footer / prose / form —— */
footer { border-top: 1px solid var(--border); padding: 2.5rem 0; margin-top: 2rem; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); }
.footer-links a:hover { color: var(--gold-300); }
.footer-copy { font-size: 0.8rem; color: var(--text-secondary); }

.prose { max-width: 740px; margin: 0 auto; padding: 4rem 1.5rem; }
.prose h1 { font-family: var(--font-display); font-size: 2rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--gold-100); }
.prose .meta { color: var(--text-secondary); font-size: 0.875rem; margin-bottom: 2.5rem; }
.prose h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; margin: 2rem 0 0.6rem; }
.prose p, .prose li { font-size: 0.95rem; color: var(--text-secondary); }
.prose ul { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; max-width: 560px; }
.field-group { display: flex; flex-direction: column; gap: 0.4rem; }
.field-group label { font-size: 0.875rem; font-weight: 600; }
.field-group input, .field-group textarea, .field-group select {
  background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--text-primary); padding: 0.65rem 0.9rem; font-size: 0.9rem; width: 100%;
  font-family: inherit;
}
.field-group input:focus, .field-group textarea:focus, .field-group select:focus {
  outline: none; border-color: var(--gold-300); box-shadow: 0 0 0 2px var(--gold-glow);
}
.field-group textarea { resize: vertical; min-height: 130px; }

.notice-draft {
  background: var(--gold-subtle); border: 1px solid var(--border-gold);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin: 2rem 0;
  font-size: 0.875rem; color: var(--text-secondary);
}
.notice-draft strong { color: var(--text-primary); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
