/* ========================================
   AXIOSKY COMPONENTS - COMPONENTS.CSS
   Buttons, cards, navbar, diagram, flow, footer
   ======================================== */

/* ===== NAVBAR ===== */
:root {
    --bg-primary: #0a0a0a;
    --bg-elevated: #141414;
    --text-primary: #ffffff;
    --text-secondary: #a8a8a8;
    --text-tertiary: #6b6b6b;
    --border: #1f1f1f;
    --border-light: #2a2a2a;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  backdrop-filter: blur(18px);
}

.navbar-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 8px 16px;
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | nav | CTA */
  align-items: center;
  column-gap: 24px;
}

.logo-img {
  height: 93px;
  width: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: var(--space-24);
  align-items: center;
  justify-content: center; /* center in middle column */
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-subheading);
  font-size: var(--size-base);
  font-weight: var(--weight-medium);
  color: var(--text-secondary);
  text-decoration: none;
  padding: var(--space-8) 0;
  transition: color var(--duration-fast) var(--ease-out);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link-cta {
  text-decoration:  none;
  width: 140px;
  height: 40px;
  color: #343a40 !important; /* black text */
  padding: 5px 10px;
  font-weight: bold;
  font-size: 16px; /* mdaller text */
  line-height: 1.2; /* vertically center */
  text-transform: none; /* not uppercase */
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center; /* horizontally center */
  outline: none;
  overflow: hidden;
  border-radius: 5px;
  border: none;
  background-color: #F8FAFC;
  font-family: var(--font-subheading);
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-link-cta:hover {
    border-radius: 5px;
    padding-right: 28px;
    padding-left: 4px;
  background-color: #FFFFFF;
  color: #343a40 !important; /* stays black */
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.nav-link-cta::after {
  content: "→";
  position: absolute;
  opacity: 0;
  font-size: 16px; /* mdaller, shorter arrow */
  font-weight: 600; /* bolder stroke */
  color: #343a40 !important;
  line-height: 40px;
  top: 0;
  right: -20px;
  transition: 0.4s ease;
}

.nav-link-cta:hover::after {
  opacity: 1;
  right: 10px;
}

/* Hamburger (mobile) */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 999px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 16px 40px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
    vertical-align: middle;
    line-height: 1;
}

.btn-primary {
    background-color: #0a0a0a;
    color: #ffffff;
    border-color: #404040;
  }

.btn-primary:hover {
    background-color: #fff;
    color: #000000;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
}

.btn-large {
    padding: 20px 56px;
    font-size: 15px;
}
/* ===== HERO ===== */

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-64) var(--space-32);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-40);
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.hero-headline {
  font-size: clamp(32px, 4vw, 44px);
}

.hero-subheadline {
  font-family: var(--font-subheading);
  font-size: var(--size-lg);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

.hero-paragraph {
  color: var(--text-secondary);
  max-width: 640px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
}


/* ===== ENFORCEMENT FLOW ===== */

.enforcement-flow {
  padding: var(--space-64) var(--space-32);
}

.enforcement-flow .section-title {
  margin-bottom: var(--space-40);
}



/* Grids that stay original */
.difference-points,
.proof-list {
  display: grid;
  gap: var(--space-24);
}

/* Cards that stay original */
.difference-item,
.proof-item {
  padding: var(--space-20);
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--shadow-md);
}

/* Who Section: Split-Panel Layout */
.who-grid {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: 1fr; /* Stacked on mobile */
  gap: 0;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr 1fr; /* Side by side on desktop */
  }
}

.who-card {
  padding: 3rem 2.5rem;      /* Generous breathing room */
  background: transparent;   /* Removes the box/card look */
  border: none;
  box-shadow: none;
  border-radius: 0;
}

/* THE MIDDLE LINE (|) EFFECT */
@media (min-width: 768px) {
  .who-card:first-child {
    border-right: 1px solid #94a3b8; /* slate-400 middle line */
  }
}

/* Who Text Styling */
.who-title {
  font-family: 'IBM Plex Sans', sans-serif;
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 28px;
}

.who-description {
  color: #cbd5e1; /* slate-300 */
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.who-tagline {
  text-align: center;
  margin-top: 4rem;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 0.5rem;
  font-size: var(--size-md);
  color: var(--text-secondary);
}

.who-link {
  padding: 9px 37px;
    border: 1px solid;
    display: inline-flex;
    margin-top: var(--space-12);
    font-size: var(--size-md);
    color: #5e5e5e;
    text-decoration: none;
}

.who-link:hover {
  color: #fff;
}
/* Features Grid: 2x2 Plus Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; /* Gap must be 0 for the plus borders to touch */
  border-radius: 0.75rem;
  overflow: hidden; /* Keeps the outer corners rounded */
}

.feature-card {
  padding: 2.5rem;           /* p-10 for more space in the quadrant */
  border: none; 
  flex-direction: column;
}

/* THE PLUS (+) EFFECT: Adding Slate-400 borders */

/* 1. Vertical Line: Right border on the left-side cards (1 and 3) */
.feature-card:nth-child(odd) {
  border-right: 1px solid #979797; /* slate-400 */
}

/* 2. Horizontal Line: Bottom border on the top-row cards (1 and 2) */
.feature-card:nth-child(-n+2) {
  border-bottom: 1px solid #979797; /* slate-400 */
}

/* Feature Text Styling */
.feature-card .feature-title {
  font-family: 'IBM Plex Sans', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 28px;
}

.feature-card .feature-description {
  color: #cbd5e1; /* slate-300 */
  margin-bottom: 1.5rem;
}


.feature-title,
.who-title, {
  font-size: var(--size-lg);
  margin-bottom: var(--space-8);
}


.feature-description,
.who-description,{
  font-size: var(--size-md);
  color: var(--text-secondary);
}

.feature-link {
  display: inline-flex;
  margin-top: var(--space-12);
  font-size: var(--size-md);
  color: #5e5e5e;
  text-decoration: none;
}

.feature-link:hover {
  color: #fff;
}

/* Who tagline */

.who-tagline p {
  margin-top: var(--space-20);
  font-size: var(--size-md);
  color: var(--text-secondary);
}




/* ===== CONVERSION SECTION ===== */

.section-conversion .conversion-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  justify-content: center;
  margin-top: var(--space-24);
}


/* ===== FOOTER ===== */

.footer {
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  background: #0a0a0a;
  padding: var(--space-40) var(--space-32) var(--space-24);
}

.footer-container {
  max-width: 1248px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 120px;
  padding: 0 var(--space-32);
}

.footer-column {
  flex: 0 1 auto;
}


/* Social icons */
.footer-social {
  margin: var(--space-32) 0;
  display: flex;
  justify-content: center;
  gap: var(--space-20);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease-out);
}

.social-link:hover {
  color: white;
  transform: translateY(-2px);
}


/* Privacy & Legal */
.footer-legal {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  font-size: var(--size-base);
}

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--accent-white);
}

@media (max-width:380px) {
  .footer-legal a {
    font-size: 14px;
  }
}

.footer-legal span {
  color: var(--text-muted);
}


.footer-title {
  font-size: var(--size-md);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: var(--space-12);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer-links a {
  font-size: var(--size-md);
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-text {
  font-size: var(--size-md);
  color: var(--text-secondary);
}

.footer-bottom {
  text-align: center;
}


.footer-bottom p {
  text-align: center !important;
  margin-top: 13px;
  font-size: var(--size-sm);
  color: var(--text-secondary);
}

/* ===== DROPDOWN NAVIGATION ===== */

.dropdown {
  position: relative;
}

.dropdown-toggle {
  pointer-events: none; /* main items not clickable */
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: radial-gradient(circle at top, rgba(0, 0, 0), rgba(0, 0, 0));
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: var(--radius-md);
  list-style: none;
  min-width: 220px;
  margin: 0;
  padding: var(--space-4) 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}


.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-link {
  display: block;
  padding: var(--space-12) var(--space-20);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--size-md);
  font-weight: var(--weight-medium);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
  transition: all var(--duration-fast) var(--ease-out);
}

.dropdown-link:last-child {
  border-bottom: none;
}

.dropdown-link:hover {
  color: var(--text-primary);
  padding-left: var(--space-24);
}

/* === GOVERNOR PAGE STYLES === */
/* Add this to components.css */

.governor-hero {
  margin: 0 auto;
  padding: var(--space-64) var(--space-32);
  align-items: center;
}
}

.governor-hero .eyebrow {
    font-size: 16px;
    font-weight: 600;
    color: #21898d;
    text-transform: uppercase;
    letter-spacing
}

    .hero-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 48px;
}



/* ═══════════════════════════════════════════════════════════
   AXIOSKY — Global CTA Component
   cta.css — import on every page
   ═══════════════════════════════════════════════════════════ */

.bl-cta {
    padding: 160px 40px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}
.bl-cta-inner {
    padding: 2pc 0;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bl-cta-label {
    font-family: "Berkeley Mono", ui-monospace, monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #3f3f46;
    margin-bottom: 32px;
}
.bl-cta-heading {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 56px;
}
.bl-cta-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}


@media (max-width: 768px) {
    .bl-cta { padding: 100px 24px; }
    .bl-cta-heading { margin-bottom: 40px; }
    .bl-cta-actions { flex-direction: column; width: 100%; }
    .bl-cta-btn-primary,
    .bl-cta-btn-secondary { width: 100%; justify-content: center; }
}


/* --- New Mobile Menu Header --- */

.snav-mobile {
    padding-top: 0; /* Reset previous padding for the new header */
}

.snav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0px;
    background-color: #0A0A0B;
}

.logo-img-diamond {
    height: 32px; /* Set height for the stylized logo */
    width: auto;
}

.btn-request-pilot {
    background-color: #FFFFFF; /* White button */
    color: #0A0A0B !important; /* Dark text */
    padding: 10px 24px;
    border-radius: 999px; /* Fully rounded corners */
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    font-size: 15px;
}

.btn-request-pilot:hover {
    background-color: #e0e0e0;
}

.snav-mobile-close {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

/* Ensure the X close button works */
.hamburger.is-open,
#closeMobile {
    pointer-events: auto;
}