@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Share+Tech+Mono&display=swap');

/* ══════════════════════════════════════
   NOVAWERKE AI — SHARED STYLESHEET
   Edit this file to change styles
   across all pages simultaneously.
══════════════════════════════════════ */

:root {
  --navy:        #0B1929;
  --navy-mid:    #122338;
  --navy-light:  #1B3553;
  --steel:       #2E6DA4;
  --steel-light: #4A8FC4;
  --ice:         #A8C8E8;
  --gold:        #C8A84B;
  --gold-light:  #E0C870;
  --white:       #F4F6F8;
  --ghost:       rgba(168,200,232,0.08);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Crimson Pro', Georgia, serif;
  --font-mono:    'Share Tech Mono', monospace;
}

/* ── RESET ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(11,25,41,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168,200,232,0.12);
}
.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-logo img {
  height: 48px; width: auto;
  border-radius: 4px;
  opacity: 0.95;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
  line-height: 1;
}
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ice);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold); }

/* ── LAYOUT ── */
section { padding: 120px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }

/* ── TYPOGRAPHY ── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.95;
  letter-spacing: 4px;
  color: var(--white);
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 24px;
}
h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
}
p { color: var(--ice); margin-bottom: 20px; }
.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 16px;
  display: block;
}
.gold  { color: var(--gold); }
.steel { color: var(--steel-light); }

/* ── DIVIDER ── */
.rule { width: 60px; height: 2px; background: var(--gold); margin: 24px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 36px;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-primary { background: var(--gold); color: var(--navy); border: 2px solid var(--gold); }
.btn-primary:hover { background: transparent; color: var(--gold); }
.btn-ghost { background: transparent; color: var(--ice); border: 1px solid rgba(168,200,232,0.3); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── CARDS ── */
.card {
  background: var(--ghost);
  border: 1px solid rgba(168,200,232,0.1);
  border-left: 3px solid var(--gold);
  padding: 36px;
  margin-bottom: 24px;
  transition: border-color 0.2s, background 0.2s;
}
.card:hover { background: rgba(168,200,232,0.06); border-left-color: var(--steel-light); }

/* ── GRIDS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 160px 0 80px; border-bottom: 1px solid rgba(168,200,232,0.1); }

/* ── FOOTER ── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid rgba(168,200,232,0.1);
  padding: 48px;
  text-align: center;
}
footer p {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(168,200,232,0.4);
  margin: 0;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scanline {
  0%   { top: -10%; }
  100% { top: 110%; }
}
.fade-up { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.15s; opacity: 0; }
.delay-2 { animation-delay: 0.3s;  opacity: 0; }
.delay-3 { animation-delay: 0.45s; opacity: 0; }
.delay-4 { animation-delay: 0.6s;  opacity: 0; }

/* ══════════════════════════════════════
   INDEX PAGE
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(46,109,164,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,168,75,0.06) 0%, transparent 60%),
    var(--navy);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,200,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,200,232,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-scanline {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(168,200,232,0.15), transparent);
  animation: scanline 6s linear infinite;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
}
.hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: var(--gold); }
.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 26px);
  font-style: italic; font-weight: 300;
  color: var(--ice); opacity: 0.85;
  margin: 28px 0 48px; max-width: 620px; line-height: 1.5;
}
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 80px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  max-width: 580px;
  border: 1px solid rgba(168,200,232,0.12);
}
.stat { padding: 24px 32px; border-right: 1px solid rgba(168,200,232,0.12); }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 36px; color: var(--gold); letter-spacing: 2px; line-height: 1; display: block; }
.stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ice); opacity: 0.6; margin-top: 6px; display: block; }

.ddil-banner { background: var(--navy-mid); border-top: 1px solid rgba(168,200,232,0.08); border-bottom: 1px solid rgba(168,200,232,0.08); padding: 80px 0; }
.ddil-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(168,200,232,0.1); }
.ddil-cell { padding: 40px 28px; border-right: 1px solid rgba(168,200,232,0.1); text-align: center; transition: background 0.3s; }
.ddil-cell:hover { background: var(--ghost); }
.ddil-cell:last-child { border-right: none; }
.ddil-letter { font-family: var(--font-display); font-size: 56px; color: var(--gold); letter-spacing: 2px; line-height: 1; display: block; }
.ddil-word { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--steel-light); margin: 8px 0 12px; display: block; }
.ddil-desc { font-size: 14px; color: rgba(168,200,232,0.6); margin: 0; line-height: 1.5; }

.mission-section { padding: 120px 0; }
.mission-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.mission-image { position: relative; }
.mission-image img { width: 100%; filter: grayscale(30%) contrast(1.1); border: 1px solid rgba(168,200,232,0.15); }
.mission-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,168,75,0.1) 0%, transparent 60%); pointer-events: none; }
.mission-caption { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; color: rgba(168,200,232,0.4); text-transform: uppercase; margin-top: 12px; text-align: center; }

.cta-section { background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%); border-top: 1px solid rgba(200,168,75,0.2); border-bottom: 1px solid rgba(200,168,75,0.2); padding: 100px 0; text-align: center; }

/* ══════════════════════════════════════
   TECHNOLOGY PAGE
══════════════════════════════════════ */
.arch-diagram { background: var(--navy-mid); border: 1px solid rgba(168,200,232,0.12); padding: 48px; margin: 48px 0; position: relative; overflow: hidden; }
.arch-diagram::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(168,200,232,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(168,200,232,0.03) 1px, transparent 1px); background-size: 40px 40px; }
.hub-node { position: relative; z-index: 2; background: linear-gradient(135deg, var(--navy-light), var(--navy-mid)); border: 2px solid var(--gold); padding: 28px 40px; text-align: center; max-width: 340px; margin: 0 auto 48px; }
.hub-label { font-family: var(--font-display); font-size: 28px; letter-spacing: 3px; color: var(--gold); }
.hub-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; color: var(--ice); opacity: 0.6; margin-top: 6px; }
.spoke-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; z-index: 2; }
.spoke-node { background: var(--ghost); border: 1px solid rgba(168,200,232,0.15); border-top: 2px solid var(--steel); padding: 20px 16px; text-align: center; }
.spoke-name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: var(--steel-light); text-transform: uppercase; }
.spoke-desc { font-size: 13px; color: rgba(168,200,232,0.55); margin: 6px 0 0; line-height: 1.4; }
.connector-lines { position: relative; z-index: 1; height: 48px; display: flex; justify-content: center; }
.connector-lines::before { content: ''; position: absolute; top: 0; bottom: 0; width: 80%; border-left: 1px dashed rgba(168,200,232,0.2); border-right: 1px dashed rgba(168,200,232,0.2); border-bottom: 1px dashed rgba(168,200,232,0.2); }
.phase-block { display: grid; grid-template-columns: 80px 1fr; gap: 32px; align-items: start; padding: 40px 0; border-bottom: 1px solid rgba(168,200,232,0.08); }
.phase-num { font-family: var(--font-display); font-size: 72px; line-height: 1; color: rgba(200,168,75,0.2); text-align: right; }
.mosa-box { background: linear-gradient(135deg, rgba(200,168,75,0.08), transparent); border: 1px solid rgba(200,168,75,0.25); padding: 40px; margin-top: 48px; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.founder-block { display: grid; grid-template-columns: 280px 1fr; gap: 60px; align-items: start; padding: 60px 0; border-bottom: 1px solid rgba(168,200,232,0.08); }
.founder-card { background: var(--ghost); border: 1px solid rgba(168,200,232,0.12); border-top: 3px solid var(--gold); padding: 32px; text-align: center; }
.founder-initial { width: 80px; height: 80px; background: linear-gradient(135deg, var(--navy-light), var(--steel)); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 36px; color: var(--gold); margin: 0 auto 20px; }
.founder-name { font-family: var(--font-display); font-size: 24px; letter-spacing: 2px; color: var(--white); margin-bottom: 6px; }
.founder-title { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; color: var(--steel-light); text-transform: uppercase; }
.credential-list { list-style: none; margin-top: 20px; text-align: left; }
.credential-list li { font-family: var(--font-mono); font-size: 11px; letter-spacing: 1px; color: rgba(168,200,232,0.6); padding: 6px 0; border-bottom: 1px solid rgba(168,200,232,0.07); }
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold), transparent); }
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before { content: ''; position: absolute; left: -36px; top: 8px; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; }
.timeline-date { font-family: var(--font-mono); font-size: 11px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.partner-type { background: var(--ghost); border: 1px solid rgba(168,200,232,0.1); border-top: 3px solid var(--steel); padding: 40px; transition: border-top-color 0.2s, background 0.2s; }
.partner-type:hover { border-top-color: var(--gold); background: rgba(168,200,232,0.06); }
.contact-block { background: var(--navy-mid); border: 1px solid rgba(168,200,232,0.12); border-left: 4px solid var(--gold); padding: 48px; margin-top: 48px; }
.contact-item { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(168,200,232,0.08); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { font-family: var(--font-mono); font-size: 13px; color: var(--gold); width: 80px; flex-shrink: 0; }
.contact-val { font-family: var(--font-mono); font-size: 14px; color: var(--ice); text-decoration: none; letter-spacing: 1px; }
.contact-val:hover { color: var(--gold); }
.criteria-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3px; margin-top: 32px; background: rgba(168,200,232,0.06); border: 1px solid rgba(168,200,232,0.1); }
.criteria-item { background: var(--navy); padding: 20px 24px; font-size: 16px; color: var(--ice); display: flex; align-items: center; gap: 12px; }
.criteria-item::before { content: '→'; color: var(--gold); font-family: var(--font-mono); flex-shrink: 0; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .container { padding: 0 24px; }
  .grid-2, .grid-3, .mission-layout, .founder-block { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .ddil-grid { grid-template-columns: repeat(2, 1fr); }
  .spoke-row { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(168,200,232,0.12); }
}
