:root {
  /* Light Dose palette */
  --base: #6100ff;
  --trim1: #3f00d9;
  --trim2: #1d00b3;
  --accent: #a600ff;
  --hot: #ff008a;

  --bg: #07060a;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.70);
  --panel: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
  --radius: 18px;
}

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

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 650px at 18% 12%, rgba(97, 0, 255, 0.24), transparent 62%),
    radial-gradient(900px 520px at 78% 20%, rgba(166, 0, 255, 0.18), transparent 60%),
    radial-gradient(950px 650px at 52% 92%, rgba(255, 0, 138, 0.10), transparent 62%),
    var(--bg);
}

.bg-blur {
  position: fixed;
  inset: -200px;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(620px 440px at 15% 15%, rgba(97, 0, 255, 0.22), transparent 60%),
    radial-gradient(520px 380px at 85% 25%, rgba(166, 0, 255, 0.16), transparent 60%),
    radial-gradient(520px 380px at 55% 85%, rgba(255, 0, 138, 0.10), transparent 60%);
  filter: blur(45px);
  opacity: 0.9;
}

.container {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 6, 10, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  gap: 18px;
}
.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  padding: 8px 10px;
  border-radius: 12px;
}
.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* Hero */
.hero { padding: 70px 0 20px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.accent {
  background: linear-gradient(90deg, var(--base), var(--accent), var(--hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subhead {
  margin: 0 0 22px;
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform 0.08s ease, background 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
}

.btn:active { transform: translateY(1px); }

.btn.primary {
  background: linear-gradient(90deg, var(--base), var(--accent));
  color: #fff;
  box-shadow: 0 16px 50px rgba(97, 0, 255, 0.22);
}
.btn.primary:hover { filter: brightness(1.06); }

.btn.ghost {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.btn.ghost:hover { background: rgba(255, 255, 255, 0.08); }

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--muted);
  font-weight: 800;
  font-size: 12px;
}

/* Panel */
.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.10);
}

.panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.20);
}

.panel-body { padding: 16px; }

.panel-title {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.panel-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

/* Sections */
.section { padding: 56px 0; }

.section h2 {
  margin: 0 0 12px;
  font-size: 26px;
  letter-spacing: -0.3px;
}

.mission {
  margin: 0;
  max-width: 84ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px;
}

/* Contact */
.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.muted { color: var(--muted); margin: 6px 0 0; }

/* Footer */
.footer {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}

.muted-link {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
}

.muted-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 52px; }
}


/* NEW CSS */
/* =========================
   Responsive contact wordmark
   ========================= */

.contact-logo {
  display: block;
  margin: 32px auto;
  width: 80%;
  max-width: 720px;
  height: auto;
}

/* Tablets / small laptops */
@media (max-width: 1024px) {
  .contact-logo {
    width: 85%;
    max-width: 600px;
  }
}

/* Mobile phones */
@media (max-width: 768px) {
  .contact-logo {
    width: 95%;
    max-width: 420px;
    margin: 28px auto;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .contact-logo {
    width: 100%;
    max-width: 360px;
    margin: 24px auto;
  }
}
