:root {
  --bg-surface: #0b1220;
  --bg-alt: #020617;
  --fg: #e5e7eb;
  --muted: #9ca3af;
  --line: rgba(148, 163, 184, 0.35);
  --accent: #38bdf8; /* electric blue */
  --accent-soft: rgba(56, 189, 248, 0.12);
  --chip-bg: rgba(15, 23, 42, 0.9);
}

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

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--fg);
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.18) 0, transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(59, 130, 246, 0.18) 0, transparent 50%),
    radial-gradient(circle at 50% 120%, #020617 0, #020617 60%, #000 100%);
  position: relative;
  overflow-x: hidden;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.25rem;
}

/* HEADER / NAV */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand img {
  height: 48px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.wordmark {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  
  
}

.submark {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.nav a:hover {
  color: #f9fafb;
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
}

.nav a.active {
  color: #f9fafb;
  border-color: var(--accent);
  background: var(--accent-soft);
}

@media (max-width: 820px) {
  .page {
    padding-inline: 1.25rem;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

/* HERO */

.hero {
  position: relative;
  border-radius: 1.6rem;
  padding: 2.8rem 2.4rem 2.4rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.9),
    0 0 0 1px rgba(15, 23, 42, 0.8);
  background:
    linear-gradient(rgba(2, 6, 23, 0.45), rgba(2, 6, 23, 0.45)),
    radial-gradient(circle at center,
      rgba(2, 6, 23, 0) 0 55%,
      rgba(2, 6, 23, 0.96) 100%
    ),
    radial-gradient(circle at 0% 0%,
      rgba(56, 189, 248, 0.22),
      transparent 60%
    ),
    radial-gradient(circle at 100% 0%,
      rgba(59, 130, 246, 0.22),
      transparent 60%
    ),
    url("world-map.jpg") center/cover no-repeat,
    #020617;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #f9fafb;
  margin-bottom: 0.9rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.hero-title {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.1rem, 3.2vw, 2.9rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.7rem;
  color: #ffffff;
  text-shadow: 0 0 12px rgba(0, 0, 0, 0.9);
}

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

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: #e5e7eb;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}

/* LAYOUT & TYPOGRAPHY */

.layout {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(0, 3.6fr) minmax(0, 2fr);
  gap: 2.4rem;
  margin-top: 2.5rem;
}
.layout section img.founder-photo {
  margin-left: auto;
}
.inline-white-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-white-link:hover {
  color: var(--accent);
}
a:visited {
  color: inherit;
}
.inline-white-link:visited {
  color: #ffffff;
}

.inline-white-link:hover {
  color: var(--accent);
}
.founder-photo {
  width: 100%;
  max-width: 260px;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin-top: 1.9rem;  
  display: block;
  background: rgba(15, 23, 42, 0.6);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
@media (max-width: 820px) {
  .hero {
    padding: 2.2rem 1.6rem 2.1rem;
  }

  .layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

section {
  font-size: 0.92rem;
}

h2 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.section-body {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}

.list {
  list-style: none;
  padding-left: 0;
}

.list li + li {
  margin-top: 0.55rem;
}

.list strong {
  color: var(--fg);
  font-weight: 500;
}

.jurisdictions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.78rem;
  margin-top: 0.7rem;
}

.jurisdictions span {
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.9);
  color: var(--muted);
}

.founder-text p + p,
.section-body p + p {
  margin-top: 0.55rem;
}

.contact-block {
  margin-top: 1.4rem;
  font-size: 0.9rem;
}

.contact-block a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid rgba(56, 189, 248, 0.6);
  padding-bottom: 1px;
}

.contact-block a:hover {
  border-bottom-color: var(--accent);
}

/* CARDS / TAGS */

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.75rem;
}

.tag {
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.9);
  color: var(--muted);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.card {
  border-radius: 1rem;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 42, 0.9);
}

.card strong {
  display: block;
  margin-bottom: 0.25rem;
}

/* CONTACT PAGE */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
  gap: 2rem;
  margin-top: 2.2rem;
}

@media (max-width: 700px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  font-size: 0.9rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  padding: 0.55rem 0.75rem;
  background: rgba(15, 23, 42, 0.95);
  color: var(--fg);
  font: inherit;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form button {
  margin-top: 0.2rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: #f9fafb;
  font-size: 0.9rem;
  cursor: pointer;
}

.contact-form button:hover {
  background: rgba(56, 189, 248, 0.18);
}

/* FOOTER */

footer {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(30, 64, 175, 0.6);
  padding-top: 1.15rem;
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

footer span:last-child {
  color: rgba(148, 163, 184, 0.9);
}

/* INLINE LINKS */
.inline-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(56, 189, 248, 0.4);
  padding-bottom: 1px;
  font-size: inherit;
}
.inline-link:hover {
  border-bottom-color: var(--accent);
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-block;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: #f9fafb;
  font-size: 0.88rem;
  text-decoration: none;
  transition: background 0.15s;
}
.cta-btn:hover { background: rgba(56,189,248,0.2); }
.cta-btn--ghost {
  border-color: rgba(148,163,184,0.5);
  background: transparent;
  color: var(--muted);
}
.cta-btn--ghost:hover {
  border-color: var(--fg);
  color: var(--fg);
  background: transparent;
}

/* DISCLAIMER BLOCK */
.disclaimer {
  margin-top: 2.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1rem;
  padding: 1.1rem 1.4rem;
  background: rgba(15, 23, 42, 0.6);
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.65;
}
.disclaimer strong { color: #e5e7eb; font-weight: 500; }
.disclaimer a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(56,189,248,0.4);
  padding-bottom: 1px;
}
.disclaimer a:hover { border-bottom-color: var(--accent); }

/* FOOTER — LEGAL */
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.65;
}
.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
  padding-bottom: 1px;
}
.footer-legal a:hover {
  color: var(--fg);
  border-bottom-color: var(--fg);
}

/* ── MAILCHIMP SIGNUP FORM ── */
.mc-signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.mc-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.mc-label {
  font-size: 0.78rem;
  color: var(--muted);
}
.mc-optional {
  font-size: 0.72rem;
  color: rgba(148, 163, 184, 0.55);
}
.mc-input {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
  padding: 0.5rem 0.75rem;
  background: rgba(15, 23, 42, 0.95);
  color: var(--fg);
  font: inherit;
  font-size: 0.85rem;
  transition: border-color 0.15s;
}
.mc-input:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.6);
}
.mc-input::placeholder {
  color: rgba(148, 163, 184, 0.4);
}
.mc-btn {
  margin-top: 0.2rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent-soft);
  color: #f9fafb;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
}
.mc-btn:hover {
  background: rgba(56, 189, 248, 0.2);
}

/* JURISDICTION PILLS — LINKED */
.jurisdiction-link {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.45);
  background: rgba(15, 23, 42, 0.9);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.78rem;
  transition: background 0.15s, border-color 0.15s;
}
.jurisdiction-link:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
}

.brand-sub {
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 2px;
}
