/* ==========================================================
   Extracted style block 1: inline-style-1
   ========================================================== */
/* ==========================================
   1. CORE VARIABLES & SYSTEM TYPOGRAPHY
   ========================================== */
:root {
  /* Palette */
  --color-bg: #FFFFFF;
  --color-text-main: #0F172A;      /* Slate 900 */
  --color-text-muted: #64748B;     /* Slate 500 */
  --color-text-subtle: #52657F;    /* Accessible muted slate */
  
  /* Accents */
  --color-primary-blue: #0369A1;   /* Sky 700 - accessible CTVBridge accent */
  --color-primary-dark: #0369A1;
  --color-verified-green: #047857; /* Emerald 700 - accessible verification text */
  --color-verified-bg: #ECFDF5;
  --color-verified-border: #A7F3D0;

  /* UI Structures */
  --color-border-light: #E2E8F0;
  --color-card-bg: #FFFFFF;
  --color-neutral-fill: #F8FAFC;
  --color-line-inactive: #CBD5E1;   /* Slate 300 */
  --color-line-active: #0284C7;

  /* Pure System Font Stack (No External Dependencies) */
  --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  --max-width: 1280px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ==========================================
   2. HEADER & NAVIGATION
   ========================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-text-main);
}
.brand-logo-asset {
  display: block;
  width: 220px;
  line-height: 0;
}

.brand-logo-asset svg {
  display: block;
  width: 100%;
  height: auto;
}

.ctvbridge-node-asset {
  display: block;
  width: 54px;
  line-height: 0;
  overflow: hidden;
}

.ctvbridge-node-asset svg {
  display: block;
  width: 190px;
  height: auto;
  transform: translateX(-2px);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-text {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.btn-text:hover {
  color: var(--color-text-main);
}

.btn-primary-sm {
  background-color: var(--color-text-main);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.btn-primary-sm:hover {
  background-color: #1E293B;
}

.nav-menu-toggle,
.mobile-nav-panel {
  display: none;
}

@media (max-width: 680px) {
  .navbar > .nav-actions {
    display: none;
  }

  .navbar.mobile-nav-open {
    height: auto;
    min-height: var(--header-height);
    flex-wrap: wrap;
    padding-top: .75rem;
    padding-bottom: .75rem;
  }

  .navbar > .nav-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    background: #fff;
    color: var(--color-text-main);
    cursor: pointer;
  }

  .nav-menu-toggle-line {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .nav-menu-toggle:focus-visible,
  .mobile-nav-panel a:focus-visible {
    outline: 3px solid rgba(3, 105, 161, .3);
    outline-offset: 2px;
  }

  .navbar > .mobile-nav-panel {
    display: grid;
    flex: 0 0 100%;
    gap: .35rem;
    padding: .75rem;
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .14);
  }

  .navbar > .mobile-nav-panel[hidden] {
    display: none;
  }

  .mobile-nav-link {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: .65rem .75rem;
    border-radius: 7px;
    color: var(--color-text-main);
    font-size: .95rem;
    font-weight: 600;
    text-decoration: none;
  }

  .mobile-nav-link:hover {
    background: #f8fafc;
  }

  .mobile-nav-panel .mobile-nav-contact {
    justify-content: center;
    margin-top: .25rem;
    background: var(--color-text-main);
    color: #fff;
  }

  .mobile-nav-panel .mobile-nav-contact:hover {
    background: #1E293B;
  }
}

/* Keyboard accessibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-primary-blue);
  outline-offset: 3px;
}

/* Visually hidden content remains available to assistive technologies. */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
