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

:root {
  --bg-main: #05060a;
  --accent: #2f7dff;
  --accent-soft: rgba(47, 125, 255, 0.65);
  --text-main: #f5f5f7;
  --text-muted: #9ba0b5;
  --danger: #ff5252;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-strong: 0 28px 80px rgba(0, 0, 0, 0.85);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Sections */

.section {
  position: relative;
  padding: 6.5rem 0;
  overflow: hidden;
}

.section.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section.hero.short {
  min-height: 60vh;
}

/* Overlays & Backgrounds */

.overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.overlay.strong {
  background: radial-gradient(circle at top, rgba(47, 125, 255, 0.5), transparent 55%),
              radial-gradient(circle at bottom, rgba(0, 0, 0, 0.98), #000);
}

.overlay.subtle {
  background: radial-gradient(circle at top left, rgba(47, 125, 255, 0.35), transparent 55%),
              radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.9), #000);
}

/* Alternating background images */

.bg-stars {
  background: url("../assets/starscape.jpg") center/cover no-repeat fixed;
}

.bg-money {
  background: url("../assets/city-lights.jpg") center/cover no-repeat fixed;
}

.bg-leaders {
  background: url("../assets/window-city.jpg") center/cover no-repeat;
}

.dark {
  background-color: #020309;
}

/* Header / Nav */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  background: linear-gradient(to right, rgba(5, 6, 10, 0.98), rgba(5, 6, 10, 0.92));
  border-bottom: 1px solid rgba(47, 125, 255, 0.35);
  backdrop-filter: blur(14px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.25rem;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 82px;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  gap: 1.05rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  align-items: center;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.2rem;
  display: inline-flex;
  align-items: center;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #5ef2ff);
  transition: width 0.2s ease-out;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.login-link {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(144, 160, 200, 0.6);
  background: radial-gradient(circle at top left, rgba(47, 125, 255, 0.35), rgba(8, 12, 24, 0.96));
  box-shadow: 0 10px 26px rgba(0,0,0,0.85);
  color: #ffffff;
}

.main-nav a.login-link::after {
  display: none;
}

.main-nav a.login-link:hover {
  background: radial-gradient(circle at top left, rgba(95, 170, 255, 0.7), rgba(10, 18, 36, 1));
  border-color: rgba(120, 170, 255, 0.95);
}

/* HERO */

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
}

.hero-inner.center {
  text-align: center;
}

.hero-logo {
  width: 320px;
  max-width: 70%;
  margin: 0 auto 1.6rem;
  display: block;
  filter: drop-shadow(0 0 26px rgba(0, 160, 255, 0.7));
}

.hero-kicker {
  color: var(--danger);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  margin-bottom: 1.3rem;
}

h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.accent {
  background: linear-gradient(120deg, #5ef2ff, var(--accent), #b2fffb);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 800;
}

.hero-sub {
  margin-top: 1.1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.one-of-one {
  color: #ffffff;
  font-weight: 800;
}

.hero-body {
  margin-top: 1.1rem;
  max-width: 580px;
  color: var(--text-main);
}

.hero-inner.center .hero-body {
  margin-left: auto;
  margin-right: auto;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease-out;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), #5ef2ff);
  color: #020308;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95);
}

.btn.outline,
.btn.ghost {
  background: rgba(4, 6, 14, 0.7);
  color: var(--text-main);
  border-color: rgba(144, 160, 200, 0.4);
  box-shadow: var(--shadow-soft);
}

.btn.outline:hover,
.btn.ghost:hover {
  background: rgba(15, 24, 44, 0.95);
  border-color: var(--accent-soft);
}

/* Section basics */

.section h2 {
  position: relative;
  z-index: 1;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.5rem;
}

.section-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Layout grids */

.grid-two {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.2rem;
  align-items: center;
}

/* Cards & blocks */

.copy-block {
  background: radial-gradient(circle at top left, rgba(47, 125, 255, 0.08), transparent 55%),
              rgba(5, 7, 15, 0.92);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-strong);
}

.copy-block p {
  color: var(--text-muted);
  margin-bottom: 0.9rem;
}

.copy-block h3 {
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
  font-size: 1.05rem;
}

/* Ecosystem small cards */

.eco-items {
  margin-top: 1.4rem;
  display: grid;
  gap: 1rem;
}

.eco-item {
  padding: 0.8rem 0.9rem 0.7rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(18, 23, 40, 0.95), rgba(3, 6, 14, 0.98));
  border: 1px solid rgba(124, 145, 215, 0.35);
}

.eco-item h3 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

/* Command Center video */

.command-visual video,
.command-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(100, 150, 255, 0.45);
  width: 100%;
  object-fit: cover;
}

.command-visual img.fallback {
  display: none;
}

/* Pillars */

.pillars {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1rem;
}

.pillar {
  background: rgba(5, 8, 18, 0.95);
  border-radius: var(--radius-md);
  border: 1px solid rgba(75, 100, 180, 0.5);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.pillar h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

/* Industries grid */

.industries-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}

.industry-card {
  background: rgba(4, 8, 18, 0.96);
  border-radius: var(--radius-md);
  border: 1px solid rgba(115, 136, 210, 0.55);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.industry-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.industry-card p {
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.inline-link {
  color: var(--accent-soft);
  text-decoration: none;
  font-size: 0.9rem;
}

.inline-link:hover {
  color: #5ef2ff;
}

/* Founder */

.founder-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 2.2rem;
  align-items: center;
}

.founder-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(90, 140, 240, 0.65);
}

.founder-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.founder-name {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
  color: var(--accent-soft);
}

.founder-line {
  margin-top: 0.8rem;
  font-weight: 600;
}

/* Footer */

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-logo img {
  width: 46px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.85);
}

.site-footer {
  background: #020207;
  border-top: 1px solid rgba(80, 100, 160, 0.55);
  padding: 1.8rem 0;
}

.footer-content {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */

@media (max-width: 900px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.75rem;
  }

  .section {
    padding: 5.5rem 0;
  }

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

  .hero-inner {
    padding-top: 6.2rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .logo-img {
    width: 64px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .copy-block,
  .pillar,
  .industry-card {
    padding: 1.3rem 1.2rem;
  }

  .hero-cta-row {
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}


.leader-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.leader-photo {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.9);
  border: 1px solid rgba(130, 160, 240, 0.7);
}

.leader-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}



/* --- ATLAS V11 LEADERSHIP POLISH --- */

.industry-card.leader-card {
  border-radius: 18px;
  border: 1px solid rgba(120,150,255,0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.85);
}

.leader-photo {
  border-radius: 18px;
  box-shadow: 0 0 22px rgba(80,150,255,0.45), 0 14px 32px rgba(0,0,0,0.85);
  overflow: hidden;
}

.leader-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.leader-title {
  margin-top: -0.3rem;
  margin-bottom: 0.6rem;
  font-size: 0.85rem;
  color: rgba(150,170,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}



/* --- ATLAS V12 FOUNDER POLISH --- */

.founder-image-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0,0,0,0.9);
  border: 1px solid rgba(120, 150, 255, 0.85);
}

.founder-image-wrap::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at top, rgba(94, 242, 255, 0.16), transparent 55%),
    radial-gradient(circle at bottom, rgba(47, 125, 255, 0.18), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.founder-img {
  position: relative;
  z-index: 1;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(120,150,255,0.7);
  background: radial-gradient(circle at top left, rgba(94,242,255,0.14), rgba(8,10,20,0.95));
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(190,205,255,0.96);
  margin-bottom: 0.9rem;
}

.founder-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #5ef2ff;
  box-shadow: 0 0 12px rgba(94,242,255,0.9);
}

.founder-name {
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
}

.founder-title {
  font-size: 0.9rem;
  color: rgba(160,180,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.1rem;
}

.founder-quote {
  margin-top: 1.1rem;
  font-style: italic;
  color: rgba(220,225,255,0.95);
}

/* CTA Flex Partner Section */

.cta-flex-logo {
  max-width: 220px;
  height: auto;
  margin: 0 auto 1.5rem auto;
  display: block;
  filter: drop-shadow(0 0 24px rgba(56, 189, 248, 0.25));
}

.flex-partner-form {
  margin-top: 2.4rem;
  padding: 1.8rem 1.6rem;
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  backdrop-filter: blur(8px);
}

.flex-partner-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.flex-partner-form .form-row.single {
  flex-direction: column;
}

.flex-partner-form .form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
}

.flex-partner-form label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.flex-partner-form input,
.flex-partner-form select,
.flex-partner-form textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(75, 85, 99, 0.9);
  background-color: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  font-size: 0.9rem;
  outline: none;
}

.flex-partner-form input:focus,
.flex-partner-form select:focus,
.flex-partner-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.4);
}

.flex-partner-form .btn.full {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .cta-flex-logo {
    max-width: 180px;
    margin-bottom: 1.1rem;
  }
  .flex-partner-form {
    padding: 1.4rem 1.1rem;
  }
}

/* Ecosystem logo grid */

.ecosystem-logo-grid {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
}

.ecosystem-logo-item {
  flex: 0 1 180px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.65);
  text-align: center;
}

.ecosystem-logo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
}

.ecosystem-logo-inner img {
  max-height: 44px;
  width: auto;
  display: block;
}

.ecosystem-logo-label {
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .ecosystem-logo-item {
    flex: 1 1 46%;
  }
  .ecosystem-logo-inner {
    height: 72px;
  }
  .ecosystem-logo-inner img {
    max-height: 40px;
  }
}

.eco-logo-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.eco-logo-pill {
  padding: 0.9rem 0.7rem;
  border-radius: 999px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), rgba(15, 23, 42, 0.96));
  border: 1px solid rgba(148, 163, 184, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eco-logo-pill img {
  display: block;
  height: 72px;
  width: auto;
}

@media (max-width: 640px) {
  .eco-logo-grid {
    grid-template-columns: 1fr;
  }
  .eco-logo-pill img {
    height: 46px;
  }
}


/* Flex On-Chain specific components */

.card {
  background: radial-gradient(circle at top left, rgba(47, 125, 255, 0.08), transparent 55%),
              rgba(5, 7, 15, 0.96);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-strong);
}

.card.center {
  text-align: center;
}

.feature-list {
  list-style: none;
  margin-top: 0.8rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.token-logo {
  max-width: 140px;
  margin: 0 auto 1rem;
  display: block;
}

.bg-city {
  background: url("../assets/window-city.jpg") center/cover no-repeat fixed;
}

/* Electric statement bands (Home + Industry pages) */

.electric-band {
  padding: 4.5rem 0;
  background: radial-gradient(circle at 20% 20%, rgba(47, 125, 255, 0.22), transparent 55%),
              radial-gradient(circle at 80% 60%, rgba(94, 242, 255, 0.12), transparent 55%),
              linear-gradient(180deg, #000 0%, #040615 55%, #000 100%);
}

.electric-band .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.electric-band-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 40%, rgba(47, 125, 255, 0.28), transparent 60%),
    radial-gradient(circle at 50% 110%, rgba(0, 0, 0, 0.98), #000 70%);
  filter: blur(0px);
}

.electric-title {
  margin: 0 auto;
  max-width: 980px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  line-height: 1.12;
  font-size: clamp(2.05rem, 4.2vw, 3.7rem);

  background: linear-gradient(90deg, var(--accent), #5ef2ff, #ffffff, var(--accent));
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  text-shadow:
    0 0 18px rgba(47, 125, 255, 0.55),
    0 0 48px rgba(94, 242, 255, 0.22);

  animation: electricSheen 12s ease-in-out infinite;
}

.electric-sub {
  margin-top: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: rgba(245, 245, 247, 0.92);
  text-shadow: 0 0 16px rgba(47, 125, 255, 0.32);
}

.electric-foot {
  margin-top: 0.6rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
}

@keyframes electricSheen {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
  .electric-band {
    padding: 3.6rem 0;
  }

  .electric-title {
    letter-spacing: 0.12em;
  }
}


/* HQ Intake Form Embed */
.ghl-form-embed{width:100%;}
.ghl-form-embed iframe{display:block;width:100%;}


/* Legal inline notice */
.legal-inline {
  margin-top: 2rem;
  padding: 1.25rem 1.25rem;
  border: 1px solid rgba(47, 125, 255, 0.35);
  border-radius: 14px;
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  font-size: 0.98rem;
}

@media (max-width: 768px) {
  .legal-inline {
    font-size: 0.95rem;
    padding: 1rem 1rem;
  }
}


