@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Share+Tech+Mono&display=swap');

/* ============================================================
   BEACON AI — DESIGN SYSTEM
   ============================================================ */
:root {
  --bg:          #0a0b0e;
  --bg-card:     #111318;
  --bg-card2:    #161a22;
  --amber:       #F0A030;
  --amber-dim:   #c07818;
  --amber-glow:  rgba(240, 160, 48, 0.15);
  --cyan:        #00E5FF;
  --cyan-dim:    #00b8cc;
  --cyan-glow:   rgba(0, 229, 255, 0.12);
  --text:        #e8eaf0;
  --text-dim:    #8a909e;
  --text-muted:  #4a5060;
  --border:      rgba(240, 160, 48, 0.18);
  --border-cyan: rgba(0, 229, 255, 0.15);
  --grid-color:  rgba(240, 160, 48, 0.04);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Grid texture — fixed overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 160, 48, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 160, 48, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
  pointer-events: none;
}

/* Logo watermark — injected by JS as #bg-watermark */
#bg-watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85vw;
  max-width: 900px;
  height: 85vw;
  max-height: 900px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}

/* All content sits above bg layers */
nav, .page-wrapper, footer, #nav-placeholder, #footer-placeholder {
  position: relative;
  z-index: 1;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 70px;
  background: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-wordmark {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--text);
}

.nav-wordmark span { color: var(--amber); }

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

.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg) !important;
  background: var(--amber);
  padding: 0.5rem 1.25rem;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  background: #ffb840 !important;
  box-shadow: 0 0 20px rgba(240, 160, 48, 0.4);
  color: var(--bg) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  transition: all 0.3s;
}

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrapper {
  padding-top: 70px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 4rem 2rem;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-glow-amber {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(240, 160, 48, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 30px rgba(240, 160, 48, 0.5)) drop-shadow(0 0 60px rgba(0, 229, 255, 0.2));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.hero-title .accent-amber { color: var(--amber); }
.hero-title .accent-cyan  { color: var(--cyan); }

.hero-tagline {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-tagline strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--amber);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #ffb840;
  box-shadow: 0 0 25px rgba(240, 160, 48, 0.45);
  transform: translateY(-1px);
}

.btn-secondary {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  background: transparent;
  border: 1px solid var(--cyan-dim);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--cyan-glow);
  border-color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.2);
  transform: translateY(-1px);
}

.btn-ghost {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s;
}

.btn-ghost:hover {
  color: var(--amber);
  border-color: var(--amber);
  background: var(--amber-glow);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section {
  padding: 6rem 2rem;
}

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

.section-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.divider {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ============================================================
   APP CARDS — HOME PORTFOLIO GRID
   ============================================================ */
.apps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.app-card:hover {
  border-color: rgba(240, 160, 48, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(240, 160, 48, 0.05);
}

.app-card:hover::before { opacity: 1; }

.app-card.flagship {
  border-color: rgba(240, 160, 48, 0.3);
  background: linear-gradient(135deg, #111318 0%, #13161f 100%);
}

.app-card.flagship::before { opacity: 0.6; }

.app-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  flex-shrink: 0;
  overflow: hidden;
}

.app-card-icon img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 11px;
}

.app-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.app-card-meta { flex: 1; }

.app-card-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.app-card-status {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  display: inline-block;
  margin-top: 0.25rem;
}

.status-launching {
  color: var(--amber);
  background: rgba(240, 160, 48, 0.1);
  border: 1px solid rgba(240, 160, 48, 0.3);
}

.status-dev {
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
}

.status-soon {
  color: var(--text-muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.app-card-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.65;
  font-weight: 300;
}

.app-card-arrow {
  color: var(--amber);
  font-size: 1rem;
  align-self: flex-end;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.app-card:hover .app-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ============================================================
   MISSION SECTION
   ============================================================ */
.mission-section {
  background: linear-gradient(180deg, transparent, rgba(240,160,48,0.03), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-logo {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(240,160,48,0.35)) drop-shadow(0 0 80px rgba(0,229,255,0.15));
}

.mission-text p {
  font-size: 1.0rem;
  color: var(--text-dim);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.mission-text p strong {
  color: var(--text);
  font-weight: 600;
}

.mission-closing {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--amber) !important;
  margin-top: 2rem !important;
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.pillar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40%;
  height: 1px;
  background: var(--amber);
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: block;
}

.pillar-title {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--text);
}

.pillar-body {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   BETA SIGNUP SECTION
   ============================================================ */
.signup-section {
  text-align: center;
}

.signup-card {
  max-width: 680px;
  margin: 3rem auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-cyan);
  border-radius: 8px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.signup-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.signup-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

.signup-apps {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.signup-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 2px;
  border: 1px solid var(--border);
  color: var(--text-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
  background: rgba(0,0,0,0.3);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.footer-brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.footer-brand-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.footer-brand-name span { color: var(--amber); }

.footer-brand-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  font-weight: 300;
}

.footer-col h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'Share Tech Mono', monospace;
  letter-spacing: 0.05em;
}

.footer-contact {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-contact a {
  color: var(--amber-dim);
  text-decoration: none;
}

.footer-contact a:hover { color: var(--amber); }

/* ============================================================
   SUBPAGE HERO
   ============================================================ */
.subpage-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.subpage-hero-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  pointer-events: none;
}

.subpage-hero-icon {
  font-size: 4rem;
  display: block;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 20px currentColor);
}

.subpage-hero-icon img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(240,160,48,0.5));
}

.back-link {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}

.back-link:hover { color: var(--amber); }

/* ============================================================
   TOOLS GRID (tools subpage)
   ============================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.tool-card:hover { border-color: rgba(240,160,48,0.35); }

.tool-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card2);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.tool-name {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.tool-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
  font-weight: 300;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pricing-card.featured {
  border-color: rgba(240,160,48,0.4);
  background: linear-gradient(135deg, #111318, #14181f);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--amber);
  color: var(--bg);
  padding: 0.2rem 0.7rem;
  border-radius: 0 0 3px 3px;
}

.pricing-tier {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.pricing-price {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--text);
  line-height: 1;
}

.pricing-price small {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-price .pricing-alt {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '—';
  color: var(--amber);
  flex-shrink: 0;
  font-weight: 700;
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-section {
  margin-bottom: 3rem;
}

.privacy-section h2 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.privacy-section p,
.privacy-section li {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.privacy-section ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.privacy-section ul li { margin-bottom: 0.4rem; }

.privacy-section a {
  color: var(--amber-dim);
  text-decoration: none;
}

.privacy-section a:hover { color: var(--amber); }

/* ============================================================
   COMING SOON CARD
   ============================================================ */
.coming-soon-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 3rem auto;
}

.coming-soon-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.coming-soon-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(10,11,14,0.97);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
    z-index: 99;
  }

  .nav-toggle { display: flex; }

  .mission-grid { grid-template-columns: 1fr; text-align: center; }
  .mission-visual { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* ============================================================
   SUBPAGE LOGO PATH FIX
   ============================================================ */
.subpage body::before {
  background-image: url('../images/logo_dark.png');
}
