/* ---------- Fonts & Theme ---------- */
:root {
  color-scheme: dark;

  --bg-1: #0b0f14;
  --bg-2: #10161f;
  --text: #e8eef5;
  --muted: #9fb0c2;
  --ring: #294157;

  --display: "Orbitron", system-ui, sans-serif;
  /* from your file */
  --body: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1100px;
}

/* ---------- Anti-copy baseline ---------- */
html,
body,
* {
  -webkit-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  -webkit-touch-callout: none !important;
}

.allow-select,
.allow-select * {
  -webkit-user-select: text !important;
  user-select: text !important;
}

img,
svg {
  -webkit-user-drag: none;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

/* ---------- Resets ---------- */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font: 400 16px/1.6 var(--body);
  color: var(--text);
  background:
    radial-gradient(1000px 600px at 10% -10%, rgba(155, 231, 255, .08), transparent),
    radial-gradient(900px 500px at 90% -10%, rgba(138, 164, 255, .07), transparent),
    linear-gradient(180deg, var(--bg-1), var(--bg-2) 60%);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(16px, 2vw, 24px);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--bg-2) 78%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(16px, 2vw, 24px);
}

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

.brand-logo {
  width: min(48px, 14vw);
  height: min(48px, 14vw);
  object-fit: contain;
}

.brand-name {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(16px, 2.3vw, 18px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring) inset;
}

/* ---------- Wordmark ---------- */
.wordmark {
  padding: clamp(28px, 8vw, 72px) 0 clamp(10px, 4vw, 24px);
  text-align: center;
}

.wordmark-text {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.02;
  font-size: clamp(38px, 12vw, 104px);
}

.tagline {
  margin: .5rem 0 0;
  color: var(--muted);
  font-size: clamp(14px, 3.6vw, 18px);
}

/* ---------- Sections ---------- */
.section {
  margin-top: clamp(10px, 3.5vw, 24px);
}

.section-title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .02em;
  font-size: clamp(16px, 4.2vw, 20px);
}

/* ---------- Holdings: logos only ---------- */
.holdings-logos {
  display: flex;
  align-items: center;
  gap: clamp(16px, 6vw, 32px);
  flex-wrap: wrap;
}

.holdings-logo {
  height: clamp(48px, 12vw, 80px);
  width: auto;
  display: block;
  /* pure logos: no borders, no backgrounds */
}

/* ---------- CTA ---------- */
.cta {
  margin: clamp(18px, 6vw, 40px) 0;
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  background: linear-gradient(180deg, #1b2838, #15202c);
}

.button:hover,
.button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 24px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
  color: var(--muted);
}

/* ---------- Small screens ---------- */
@media (max-width: 420px) {
  .site-nav .nav-link {
    padding: 8px 12px;
  }
}

/* Holdings logos: mobile-friendly sizes */
.holdings-logos {
  flex-wrap: wrap;
  align-items: center;
}

/* default desktop stays as-is from earlier:
   .holdings-logo{ height: clamp(48px, 12vw, 80px); }
*/

/* Tablets */
@media (max-width: 900px) {
  .holdings-logos {
    gap: 18px;
  }

  .holdings-logo {
    height: clamp(40px, 8vw, 56px);
  }
}

/* Phones */
@media (max-width: 600px) {
  .holdings-logos {
    gap: 14px;
    justify-content: flex-start;
  }

  .holdings-logo {
    height: clamp(28px, 9vw, 44px);
  }
}

/* Small phones */
@media (max-width: 380px) {
  .holdings-logos {
    gap: 10px;
  }

  .holdings-logo {
    height: 26px;
  }

  /* ~24–26px sweet spot */
}

/* ===== XS phones (≤360px) ===== */
@media (max-width: 360px) {
  .site-header {
    padding: 8px 12px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }

  .brand-name {
    font-size: 14px;
  }
}