/* Matches main SPA: src/index.css + Hero.css + Navbar.css (institutional / CyberShield) */
:root {
  --inst-navy: #0c2d5c;
  --inst-navy-deep: #081c36;
  --inst-bg: #ffffff;
  --inst-bg-soft: #f4f6f9;
  --inst-text: #1e293b;
  --inst-text-muted: #64748b;
  --inst-border: #e2e8f0;
  --inst-accent: #005a9c;
  --inst-accent-hover: #004080;
  --hero-base: #0f172a;
  --navbar-row-h: 86px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--inst-bg-soft);
  color: var(--inst-text);
  line-height: 1.6;
  padding-top: calc(var(--navbar-row-h) + env(safe-area-inset-top, 0px));
  overflow-x: hidden;
}

body.nav-mobile-open {
  overflow: hidden;
}

/* —— Navbar (Navbar.css) —— */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--inst-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 12px rgba(8, 28, 54, 0.15);
  padding-top: env(safe-area-inset-top, 0px);
}

.navbar-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 calc(20px + env(safe-area-inset-right, 0px)) 0 calc(20px + env(safe-area-inset-left, 0px));
  min-height: var(--navbar-row-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}

.navbar-brand:hover,
.navbar-brand:focus,
.navbar-brand:focus-visible,
.navbar-brand:active {
  text-decoration: none;
}

.navbar-brand .logo-text,
.navbar-brand .logo-title {
  text-decoration: none;
}

.navbar-brand .brand-logo-img {
  height: 48px;
  width: auto;
  max-width: min(180px, 34vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.logo-text {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

.logo-title {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
}

.tm-symbol {
  font-size: 0.55em;
  margin-left: 3px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  text-decoration-line: none;
}

.navbar-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
}

.navbar-menu-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.navbar-menu-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.navbar-menu-bars > span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar.is-menu-open .navbar-menu-bars > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.is-menu-open .navbar-menu-bars > span:nth-child(2) {
  opacity: 0;
}

.navbar.is-menu-open .navbar-menu-bars > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.navbar-panel {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}

.navbar-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: calc(env(safe-area-inset-top, 0px) + var(--navbar-row-h));
  z-index: 998;
  background: rgba(8, 28, 54, 0.48);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

.navbar.is-menu-open .navbar-backdrop {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a,
.nav-links .nav-dropdown-parent {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 500;
  padding: 7px 8px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links .nav-dropdown-parent:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-item-dropdown {
  position: relative;
  list-style: none;
}

.nav-dropdown-note {
  padding: 8px 14px 6px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 240px;
}
.nav-dropdown-note span {
  display: block;
}

.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 901px) {
  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    min-width: 208px;
    background: #0a2342;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    padding: 6px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.2s ease, visibility 0.2s, transform 0.2s ease;
    z-index: 1002;
  }

  .nav-item-dropdown:hover .nav-dropdown-menu,
  .nav-item-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown-menu a {
    display: block;
    padding: 8px 14px;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
  }
}

/* —— Hero (Hero.css) —— */
.hero {
  min-height: calc(92vh - var(--navbar-row-h) - env(safe-area-inset-top, 0px));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--hero-base);
}

.hero-photo-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.7s ease;
}

.hero-bg-photo.is-hidden {
  opacity: 0;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    rgba(248, 250, 252, 0.72) 0%,
    rgba(248, 250, 252, 0.52) 32%,
    rgba(255, 255, 255, 0.28) 55%,
    rgba(255, 255, 255, 0.12) 78%,
    rgba(241, 245, 249, 0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 2rem clamp(16px, 3vw, 28px) 3rem;
  text-align: center;
}

.hero-carousel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.25rem, 2vw, 1.25rem);
  width: 100%;
}

.hero-carousel-arrow {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(12, 45, 92, 0.12);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--inst-navy);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero-carousel-arrow:hover {
  background: #fff;
  border-color: #cbd5e1;
  color: var(--inst-accent);
}

.hero-title {
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 800;
  font-family: "Syne", "DM Sans", sans-serif;
  margin: 0 0 1.1rem;
  line-height: 1.15;
  color: var(--inst-navy);
  letter-spacing: -0.03em;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
  text-shadow:
    0 2px 18px rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(255, 255, 255, 0.92);
}

.gradient-text {
  color: var(--inst-accent);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #000;
  margin: 0;
  line-height: 1.75;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow:
    0 1px 10px rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(255, 255, 255, 0.92);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  text-decoration: none;
}

.btn-primary {
  background: var(--inst-accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(8, 28, 54, 0.12);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--inst-accent-hover);
  box-shadow: 0 6px 20px rgba(8, 28, 54, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  color: var(--inst-accent);
  border: 2px solid rgba(0, 90, 156, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--inst-accent);
  transform: translateY(-2px);
}

.hero-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(12, 45, 92, 0.22);
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.hero-carousel-dot:hover {
  background: rgba(12, 45, 92, 0.38);
}

.hero-carousel-dot.is-active {
  background: var(--inst-accent);
  transform: scale(1.15);
}

.nav-links a.is-active,
.nav-links .nav-dropdown-parent.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

@media (max-width: 900px) {
  :root {
    --navbar-row-h: 72px;
  }

  .navbar-menu-btn {
    display: flex;
  }

  .navbar-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: calc(env(safe-area-inset-top, 0px) + var(--navbar-row-h));
    flex: none;
    justify-content: stretch;
    max-height: 0;
    overflow: hidden;
    background: var(--inst-navy);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: max-height 0.35s ease;
  }

  .navbar.is-menu-open .navbar-panel {
    max-height: min(85vh, 560px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 8px max(16px, env(safe-area-inset-left, 0px)) max(16px, env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-right, 0px));
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a,
  .nav-links .nav-dropdown-parent {
    font-size: 1rem;
    padding: 14px 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown-menu {
    padding: 0 0 6px 8px;
    margin-top: -4px;
  }

  .nav-dropdown-menu a {
    font-size: 0.95rem;
    padding: 10px 12px 10px 20px;
    min-height: 44px;
    border-bottom: none;
  }

  .nav-links li:last-child a {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .hero-carousel {
    grid-template-columns: 1fr;
  }

  .hero-carousel-arrow {
    display: none;
  }
}

/* —— Shared layout (inner pages) —— */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-main {
  min-height: 100vh;
  padding-top: 12px;
  padding-bottom: 56px;
}

.intro-video-section {
  padding: 32px 0 18px;
}

.intro-video-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(8, 28, 54, 0.06);
  padding: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.intro-video-card .section-title {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.intro-video-lead {
  margin: 0 0 10px;
  color: #64748b;
  line-height: 1.65;
}

.intro-video-player {
  width: 100%;
  min-height: clamp(260px, 54vw, 620px);
  max-height: 72vh;
  display: block;
  border-radius: 10px;
  background: #0b1320;
  object-fit: cover;
}

/* —— Footer (matches React Footer.css) —— */
.footer {
  background: #081c36;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px 30px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section h4 {
  font-size: 1rem;
  font-weight: 700;
  font-family: "Syne", "DM Sans", sans-serif;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}

.footer-section p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

.footer-inline-link {
  color: rgba(255, 255, 255, 0.75);
}

.footer-compliance {
  max-width: 1200px;
  margin: 0 auto 28px;
  padding: 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
}

.footer-copyright-line,
.footer-dpiit-line,
.footer-address-line {
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 8px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 14px 0 18px;
  font-size: 12px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal-links a:hover {
  color: #fff;
}

.footer-legal-sep {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.footer-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-badge-tile {
  flex: 1 1 120px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-badge-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 10px;
  text-align: center;
}

@media (min-width: 769px) {
  .footer-badge-row {
    flex-wrap: nowrap;
  }
}

@media (max-width: 768px) {
  .footer-badge-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-badge-tile:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.footer-social-link {
  color: rgba(255, 255, 255, 0.85);
  line-height: 0;
}

.footer-social-link:hover {
  color: #fff;
}

.footer-social-icon {
  display: block;
}

.footer-secondary-links {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.footer-secondary-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* Cookie consent */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 16px;
  background: rgba(8, 28, 54, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
}

.cookie-consent-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 720px) {
  .cookie-consent-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}

.cookie-consent-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  font-family: "Syne", "DM Sans", sans-serif;
}

.cookie-consent-text {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.cookie-consent-text a {
  color: #7dd3fc;
  font-weight: 600;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

.cookie-consent-banner .btn {
  padding: 8px 14px;
  font-size: 0.88rem;
}

/* Contact form Web3 / legal */
.contact-form-status {
  font-size: 0.9rem;
  margin-top: 10px;
  color: #0f766e;
}

.contact-form-status--err {
  color: #b91c1c;
}

.form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.form-checkbox-row input[type="checkbox"] {
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.form-checkbox-row label {
  font-size: 0.88rem;
  line-height: 1.45;
  color: #475569;
}

.h-captcha-mount {
  margin: 12px 0;
}

.optional-label {
  font-weight: 500;
  font-size: 0.82rem;
  color: #94a3b8;
}

.contact-grievance-section {
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  padding: 0 4px;
}

.contact-grievance-section h2 {
  font-family: "Syne", "DM Sans", sans-serif;
  color: #0c2d5c;
  margin-bottom: 0.75rem;
}

.grievance-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem 1.35rem;
  background: #f8fafc;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
}

.grievance-card p {
  margin: 0 0 0.65rem;
}

.grievance-card p:last-child {
  margin-bottom: 0;
}

/* —— Contact page —— */
.contact-us-page {
  min-height: 100vh;
  background: #fff;
  color: #1e293b;
  padding-top: 0;
  padding-bottom: 56px;
}

.contact-us-inner {
  padding: 0 16px;
}

.contact-us-inner > h1 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  color: #0c2d5c;
  margin-bottom: 10px;
}

.contact-us-lead {
  max-width: 720px;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact-us-layout {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 900px) {
  .contact-us-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.contact-us-form-section h2,
.contact-us-office h2,
.contact-us-maps h2 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 1.2rem;
  color: #0c2d5c;
  margin-bottom: 14px;
}

.contact-us-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 22px;
}

.contact-us-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}

.cu-input {
  padding: 11px 12px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 1rem;
  font-family: inherit;
}

.cu-input:focus {
  outline: none;
  border-color: #005a9c;
  box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.12);
}

.cu-textarea {
  resize: vertical;
  min-height: 120px;
}

.cu-submit {
  margin-top: 6px;
  border: none;
  background: #005a9c;
  color: #fff;
  font-weight: 700;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}

.cu-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.cu-status {
  font-size: 0.9rem;
  color: #475569;
  margin: 4px 0 0;
}

.cu-status.cu-status--err {
  color: #b91c1c;
}

.cu-office-lines {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cu-office-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cu-office-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: #0c2d5c;
}

.cu-address {
  font-style: normal;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

.cu-office-line .cu-phone,
.cu-office-line .cu-email {
  margin: 0;
  line-height: 1.5;
}

.cu-phone a,
.cu-email a {
  color: #005a9c;
  font-weight: 600;
  text-decoration: none;
}

.cu-phone a:hover,
.cu-email a:hover {
  text-decoration: underline;
}

.cu-maps-hint {
  color: #64748b;
  font-size: 0.95rem;
  margin: -6px 0 18px;
  max-width: 640px;
}

.cu-maps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .cu-maps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cu-map-card h3 {
  font-size: 1rem;
  color: #0c2d5c;
  margin-bottom: 10px;
}

.cu-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(8, 28, 54, 0.06);
}

.cu-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Leaflet OSM map (replaces fragile OSM iframe embed on static hosting) */
.cu-map-frame--leaflet {
  padding-bottom: 0;
  height: auto ;
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
}

.cu-osm-leaflet {
  width: 100%;
  height: min(420px, 56vw);
  min-height: 250px;
  height: 100%;
  min-height: 0;
  border-radius: 9px;
  z-index: 0;
}

.cu-map-frame--leaflet .leaflet-container {
  font-family: "DM Sans", system-ui, sans-serif;
  border-radius: 9px;
}

.cu-map-osm-caption {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.45;
}

.cu-map-osm-caption a {
  color: #005a9c;
  font-weight: 600;
}

.cu-map-osm-caption a:hover {
  text-decoration: underline;
}

/* —— About page —— */
.about-full-page {
  min-height: 100vh;
  background: #fafafa;
  color: #1e293b;
  /* body already offsets fixed navbar */
  padding-top: 0;
  padding-bottom: 56px;
}

.about-hero {
  padding: 32px 0 40px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border-bottom: 1px solid #e2e8f0;
}

.about-hero h1 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: #0c2d5c;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.about-lead {
  max-width: 720px;
  margin: 0 auto;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.65;
  padding: 0 16px;
}

.about-mission-vision {
  padding: 48px 0;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 900px) {
  .about-mv-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

.about-mv-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 1px 3px rgba(8, 28, 54, 0.06);
}

.about-mv-card h2 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 1.35rem;
  color: #0c2d5c;
  margin-bottom: 12px;
}

.about-mv-card p {
  color: #475569;
  line-height: 1.65;
  margin-bottom: 16px;
}

.about-mv-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #64748b;
  line-height: 1.55;
  font-size: 0.95rem;
}

.about-mv-card li {
  margin-bottom: 8px;
}

/* —— Meet The Team — compact 8px scale, bordered cards —— */
.meet-team-section {
  padding: 24px 0 28px;
  background: #ffffff;
}

.meet-team-inner {
  max-width: 720px;
  margin: 0 auto;
}

.meet-team-heading {
  font-family: "Syne", "DM Sans", sans-serif;
  text-align: center;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.meet-team-subtitle {
  font-family: "Syne", "DM Sans", sans-serif;
  text-align: center;
  font-size: clamp(0.8rem, 1.8vw, 0.9rem);
  font-weight: 700;
  color: #a2d149;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.meet-team-grid {
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  align-items: stretch;
  grid-template-columns: 1fr;
  justify-items: center;
}

@media (min-width: 480px) {
  .meet-team-grid {
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
  }
}

/* First two in one row (480px+); third member always on the row below */
.meet-team-grid--lead > .meet-team-card:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 260px);
}

.meet-team-grid--api {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}

.meet-team-card {
  width: 100%;
  max-width: none;
  text-align: center;
  padding: 12px 10px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.meet-team-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 136px;
  margin: 0 0 8px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #eef2f6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meet-team-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.25s ease;
}

.meet-team-card:hover .meet-team-photo {
  filter: grayscale(0%);
}

.meet-team-photo-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  color: #64748b;
  background: #e2e8f0;
  font-family: "Syne", "DM Sans", sans-serif;
}

.meet-team-name {
  font-family: "DM Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meet-team-role {
  margin: 0 0 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #a2d149;
  line-height: 1.35;
  white-space: pre-line;
}

.meet-team-bio {
  margin: 0 0 8px;
  font-size: 0.6875rem;
  color: #64748b;
  line-height: 1.45;
  text-align: center;
  white-space: pre-line;
  flex-grow: 1;
}

.meet-team-bio:empty {
  display: none;
  margin: 0;
}

.meet-team-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.meet-team-social-link {
  display: flex;
  color: #0f172a;
  opacity: 0.75;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.meet-team-social-link:hover {
  opacity: 1;
  color: #a2d149;
}

.meet-team-social-svg {
  width: 14px;
  height: 14px;
  display: block;
}

.meet-team-api-mount:empty {
  display: none;
}

.meet-team-api-status,
.meet-team-api-error {
  text-align: center;
  color: #64748b;
  font-size: 0.75rem;
  margin-top: 8px;
}

.meet-team-api-error {
  color: #b45309;
}

.about-team-section {
  padding: 40px 0 48px;
  background: #f8fafc;
}

.about-team-heading {
  font-family: "Syne", "DM Sans", sans-serif;
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #15803d;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.about-team-error--info {
  color: #166534;
  background: rgba(22, 101, 52, 0.08);
  border: 1px solid rgba(22, 101, 52, 0.25);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.about-team-error,
.about-team-empty {
  text-align: center;
  color: #64748b;
  max-width: 640px;
  margin: 0 auto 24px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px 40px;
  max-width: 920px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .about-team-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-team-grid--static {
  margin-bottom: 28px;
}

.about-team-mount-api:empty {
  display: none;
}

.about-team-row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 88px;
}

.about-team-photo-ring {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid #15803d;
  overflow: hidden;
  background: #ecfdf5;
  position: relative;
}

.about-team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.25s ease;
}

.about-team-row:hover .about-team-photo {
  filter: grayscale(0%);
}

.about-team-photo-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.35rem;
  color: #15803d;
  background: #ecfdf5;
  font-family: "Syne", "DM Sans", sans-serif;
}

.about-team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
  line-height: 1.25;
}

.about-team-title {
  margin: 0;
  font-size: 0.9rem;
  font-style: italic;
  color: #64748b;
  line-height: 1.4;
  white-space: pre-line;
}

/* —— Biz / legal / pricing pages —— */
.biz-page {
  min-height: 100vh;
  background: #fff;
  color: #1e293b;
  /* ~96px below navbar: body padding-top + this ≈ React biz-page */
  padding: 10px 0 56px;
}

.biz-hero h1 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 12px;
  color: #0c2d5c;
  letter-spacing: -0.02em;
}

.biz-sub {
  max-width: 900px;
  color: #64748b;
  margin-bottom: 14px;
  line-height: 1.65;
}

/* Legal / policy hero — left-aligned, muted slate (Privacy, Terms, Disclosure, Grievance, Cookies, Data protection) */
.biz-hero--legal {
  text-align: left;
  padding-top: 4px;
  padding-bottom: 12px;
}

.biz-page .biz-hero--legal h1 {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2rem);
  font-weight: 700;
  color: #334155;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.biz-page .biz-hero--legal .legal-hero-org {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #5c6778;
  margin: 0 0 0.4rem;
  line-height: 1.45;
  max-width: 100%;
}

.biz-page .biz-hero--legal .legal-hero-meta,
.biz-page .biz-hero--legal .legal-hero-dates {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
  max-width: 100%;
}

.biz-page .biz-hero--legal .legal-dates-sep {
  color: #94a3b8;
}

.biz-page .biz-hero--legal .legal-hero-note {
  font-size: 0.9rem;
  color: #64748b;
  margin: 1rem 0 0;
  line-height: 1.6;
  max-width: 46rem;
}

.biz-body {
  color: #334155;
  max-width: 960px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.biz-body a {
  color: #005a9c;
  font-weight: 600;
}

.biz-body a:hover {
  text-decoration: underline;
}

.biz-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 1px 3px rgba(8, 28, 54, 0.06);
  margin-bottom: 16px;
}

.biz-card h3 {
  margin-bottom: 8px;
  color: #0c2d5c;
  font-size: 1.05rem;
  font-weight: 700;
}

.biz-home-btn,
.biz-secondary-btn {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0c2d5c;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
}

.biz-home-btn:hover {
  border-color: #005a9c;
  color: #005a9c;
}

.biz-secondary-btn {
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #334155;
}

.biz-secondary-btn:hover {
  border-color: #005a9c;
  color: #005a9c;
  background: #fff;
}

.biz-page-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cs-page {
  min-height: 100vh;
  padding: 10px 16px 56px;
  background: #fff;
  color: #1e293b;
}

.cs-page-dark {
  background: #fff;
  color: #1e293b;
}

.cs-sub {
  font-size: 0.95rem !important;
  color: #475569 !important;
  line-height: 1.65;
}

.cs-error {
  color: #b91c1c;
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 10px 12px;
  border-radius: 8px;
  margin: 12px 0;
  font-size: 0.95rem;
}

.careers-coming-soon {
  max-width: 640px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 1rem;
  margin-bottom: 20px;
}

.careers-coming-soon a {
  color: #005a9c;
  font-weight: 600;
}

.careers-coming-soon a:hover {
  text-decoration: underline;
}

.cs-small {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
}

.cs-hero {
  max-width: 920px;
  margin: 0 auto;
}

.cs-hero h1 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0c2d5c;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cs-hero p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.cs-page-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cs-primary-btn {
  border: none;
  background: #005a9c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}

.cs-primary-btn:hover {
  background: #004080;
}

.cs-primary-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cs-page-btn {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0c2d5c;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-block;
}

.cs-page-btn:hover {
  border-color: #005a9c;
  color: #005a9c;
}

.cs-form-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 22px;
  margin-top: 24px;
  max-width: 720px;
  box-shadow: 0 1px 3px rgba(8, 28, 54, 0.06);
}

.cs-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .cs-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cs-form-group {
  margin-bottom: 14px;
}

.cs-form-group label {
  display: block;
  font-size: 13px;
  color: #475569;
  font-weight: 600;
  margin-bottom: 8px;
}

.cs-input,
.cs-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  font-size: 1rem;
  outline: none;
  box-sizing: border-box;
  font-family: inherit;
}

.cs-textarea {
  min-height: 120px;
  resize: vertical;
}

.cs-input:focus,
.cs-textarea:focus {
  border-color: #005a9c;
  box-shadow: 0 0 0 3px rgba(0, 90, 156, 0.12);
}

/* —— BusinessPages.css parity (forms, grids, lists) —— */
.biz-cards,
.biz-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

section.container.biz-cards {
  margin-bottom: 0;
}

.biz-form {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.biz-form h2 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 1.25rem;
  color: #0c2d5c;
  margin: 0 0 4px;
}

.biz-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 768px) {
  .biz-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.biz-bottom-actions {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.biz-meta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #64748b;
}

.biz-primary-btn {
  border: 1px solid #005a9c;
  background: #005a9c;
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-family: inherit;
  font-size: 0.95rem;
}

.biz-primary-btn:hover {
  background: #0c2d5c;
  border-color: #0c2d5c;
  color: #fff;
}

.static-api-loading {
  color: #64748b;
  margin-bottom: 12px;
}

.cs-hero h2 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #0c2d5c;
  margin: 28px 0 12px;
}

.cert-badges-title {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 1.35rem;
  color: #0c2d5c;
  margin: 0 0 12px;
}
.news-page-shell {
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 50%);
}

.news-hero-panel {
  border-radius: 16px;
  border: 1px solid #d8e6f2;
  padding: clamp(1.35rem, 3vw, 2rem);
  margin-bottom: 1rem;
  background:
    radial-gradient(700px 240px at 100% -30%, rgba(0, 90, 156, 0.12), transparent 50%),
    #ffffff;
}

.news-hero-panel h1 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 2rem;
  margin: 0 0 12px;
  color: #0c2d5c;
  letter-spacing: -0.02em;
}

.news-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.news-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-filter-btn {
  border: 1px solid #d0dce8;
  background: #ffffff;
  color: #0c2d5c;
  font-weight: 600;
  border-radius: 10px;
  padding: 0.72rem 0.9rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease, color 0.2s ease;
}

.news-filter-btn:hover {
  border-color: #8bb7d9;
  transform: translateY(-1px);
}

.news-filter-btn.active {
  background: #005a9c;
  color: #ffffff;
  border-color: #005a9c;
  box-shadow: 0 8px 20px rgba(0, 90, 156, 0.25);
}

.news-feed {
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.news-card {
  position: relative;
  border-radius: 14px;
  padding: 1.35rem 1.2rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 12px 36px rgba(12, 45, 92, 0.07);
}

.news-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  bottom: 0.8rem;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #005a9c, #0ea5e9);
}

.news-card h3 {
  margin: 0 0 0.6rem;
  padding-left: 0.6rem;
  color: #0c2d5c;
  font-size: 1.08rem;
}

.news-card-body {
  margin: 0;
  padding-left: 0.6rem;
  color: #475569;
  line-height: 1.7;
  white-space: pre-line;
  font-size: 0.98rem;
}

.news-card-outlink {
  display: inline-flex;
  margin: 0.95rem 0 0 0.6rem;
  color: #005a9c;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 90, 156, 0.25);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.news-card-outlink:hover {
  color: #004080;
  border-bottom-color: rgba(0, 90, 156, 0.55);
}

.news-card-meta {
  display: block;
  margin-top: 0.9rem;
  padding-left: 0.6rem;
  font-size: 0.82rem;
  color: #94a3b8;
}

a.news-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

a.news-card--link:hover {
  border-color: #c5d9e8;
  box-shadow: 0 16px 40px rgba(12, 45, 92, 0.1);
  transform: translateY(-2px);
}

.news-card-readmore {
  display: block;
  margin: 0.65rem 0 0 0.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #005a9c;
}

@media (max-width: 900px) {
  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .news-filter-btn {
    flex: 1;
    min-width: 140px;
    text-align: center;
  }
}


/* —— Product catalog shell (ProductPages.css) —— */
.product-shell {
  background: linear-gradient(180deg, #f4f9ff 0%, #ffffff 55%);
}

.product-hero {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #d8e6f2;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  margin-bottom: 1.5rem;
  background:
    radial-gradient(900px 320px at 90% -20%, rgba(0, 90, 156, 0.14), transparent 55%),
    linear-gradient(135deg, #ffffff 0%, #f0f7fc 100%);
}

.product-hero h1 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: #0c2d5c;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.product-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.product-card-modern {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(12, 45, 92, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card-modern:hover {
  transform: translateY(-3px);
  border-color: #c5d9e8;
  box-shadow: 0 16px 40px rgba(12, 45, 92, 0.1);
}

.product-card-modern h3 {
  margin: 0 0 0.5rem;
  color: #0c2d5c;
  font-size: 1.15rem;
}

.product-card-modern p {
  margin: 0 0 0.75rem;
  color: #64748b;
  line-height: 1.55;
  font-size: 0.95rem;
}

.product-card-meta {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #005a9c;
  background: #eef6fc;
  border-radius: 8px;
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.75rem;
}

.product-card-meta--accent {
  background: linear-gradient(135deg, #e0f2fe 0%, #eef6fc 100%);
  color: #0369a1;
  border: 1px solid rgba(0, 90, 156, 0.2);
}

.product-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #005a9c;
  margin: 0 0 10px;
}

.product-hero-lead {
  margin-bottom: 0 !important;
  max-width: 52rem;
}

.product-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 1.5rem;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 18px rgba(12, 45, 92, 0.05);
}

.product-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.45;
  max-width: 320px;
}

.product-trust-item a {
  color: #005a9c;
  font-weight: 700;
  text-decoration: none;
}

.product-trust-item a:hover {
  text-decoration: underline;
}

.product-trust-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #005a9c);
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.product-suite-section {
  padding-bottom: 2rem;
}

.product-suite-head {
  margin-bottom: 1.25rem;
}

.product-suite-title {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: #0c2d5c;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}

.product-suite-sub {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  max-width: 42rem;
  font-size: 0.95rem;
}

.product-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  font-family: "Syne", "DM Sans", sans-serif;
}

.product-card-icon--muted {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.product-card-icon--accent {
  background: linear-gradient(145deg, #0c4a8a 0%, #0c2d5c 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(12, 45, 92, 0.25);
}

.product-card-modern--featured {
  border-color: rgba(0, 90, 156, 0.35);
  background: linear-gradient(165deg, #ffffff 0%, #f0f9ff 55%, #ffffff 100%);
  box-shadow: 0 14px 42px rgba(12, 45, 92, 0.12);
}

.product-card-modern--featured:hover {
  border-color: #005a9c;
}

.product-card-status {
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 10px;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
  width: fit-content;
}

.product-card-status--soon {
  background: #f1f5f9;
  color: #64748b;
}

.product-card-status--live {
  background: #ecfdf5;
  color: #047857;
}

.product-card-bullets {
  margin: 0 0 12px;
  padding-left: 1.15rem;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.55;
}

.product-card-bullets li {
  margin-bottom: 4px;
}

.product-card-foot {
  margin-top: auto;
  padding-top: 8px;
}

.product-card-desc {
  flex-grow: 1;
}

.product-card-modern--featured .product-card-desc {
  flex-grow: 0;
}

.product-card-modern--featured .product-card-bullets {
  flex-grow: 1;
}

.product-card-modern--featured .biz-page-actions.product-card-actions {
  margin-top: auto !important;
  width: 100%;
}

.product-card-modern--featured .biz-page-actions {
  margin-top: 0;
}

.product-card-actions {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.product-text-link {
  font-weight: 700;
  color: #005a9c;
  text-decoration: none;
  font-size: 0.9rem;
}

.product-text-link:hover {
  text-decoration: underline;
}

.product-card-cta-single {
  margin-top: 4px;
}

.product-cta-panel {
  margin: 2rem 0 1.5rem;
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(120deg, #0c2d5c 0%, #134e7a 50%, #0c2d5c 100%);
  color: #f8fafc;
  box-shadow: 0 16px 40px rgba(12, 45, 92, 0.25);
}

.product-cta-panel-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-cta-panel-title {
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-family: "Syne", "DM Sans", sans-serif;
}

.product-cta-panel-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(248, 250, 252, 0.92);
  max-width: 36rem;
}

.product-cta-panel-text a {
  color: #7dd3fc;
  font-weight: 700;
  text-decoration: none;
}

.product-cta-panel-text a:hover {
  text-decoration: underline;
}

.product-cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-cta-panel .biz-primary-btn {
  background: #fff;
  color: #0c2d5c;
  border: none;
}

.product-cta-panel .biz-primary-btn:hover {
  background: #e0f2fe;
  color: #0c2d5c;
}

.product-cta-panel .biz-secondary-btn {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.product-cta-panel .biz-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}

.product-page-back {
  margin-top: 8px;
}

@media (max-width: 700px) {
  .product-trust-strip {
    flex-direction: column;
  }
}

/* —— Pricing page —— */
.pricing-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 35%, #f1f5f9 100%);
  color: #1e293b;
  padding-bottom: 48px;
}

.pricing-hero {
  padding: clamp(1.25rem, 4vw, 2.5rem) 16px 2rem;
  background:
    radial-gradient(800px 280px at 85% -30%, rgba(0, 90, 156, 0.18), transparent 55%),
    linear-gradient(180deg, #0c2d5c 0%, #134e7a 45%, #0f172a 100%);
  color: #f8fafc;
}

.pricing-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.pricing-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin: 0 0 12px;
}

.pricing-hero h1 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(1.75rem, 4.5vw, 2.45rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}

.pricing-lead {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.88);
}

.pricing-hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  font-family: inherit;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.pricing-btn--primary {
  background: #fff;
  color: #0c2d5c;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pricing-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.pricing-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.35);
}

.pricing-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
}

.pricing-trust-strip {
  padding: 16px;
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

.pricing-trust-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  align-items: center;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #475569;
  font-weight: 600;
}

.pricing-trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eef6fc;
  color: #005a9c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pricing-tiers-section {
  padding: 2.5rem 16px 1rem;
}

.pricing-section-title {
  font-family: "Syne", "DM Sans", sans-serif;
  text-align: center;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  color: #0c2d5c;
  margin: 0 0 8px;
}

.pricing-section-sub {
  text-align: center;
  color: #64748b;
  margin: 0 auto 2rem;
  max-width: 36rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.5rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(12, 45, 92, 0.1);
}

.pricing-card--featured {
  border-color: rgba(0, 90, 156, 0.45);
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  box-shadow: 0 16px 48px rgba(0, 90, 156, 0.15);
}

.pricing-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #0ea5e9, #005a9c);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

.pricing-card-label {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #005a9c;
  margin: 0 0 6px;
}

.pricing-card-name {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 1.2rem;
  color: #0c2d5c;
  margin: 0 0 12px;
}

.pricing-card-price {
  margin: 0 0 10px;
  min-height: 3.2rem;
}

.pricing-card-amount {
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.pricing-card-period {
  display: block;
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

.pricing-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 14px;
  flex-grow: 0;
}

.pricing-feature-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex-grow: 1;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.45;
}

.pricing-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 800;
}

.pricing-card-cta {
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
}

.pricing-card-cta--primary {
  background: linear-gradient(180deg, #0c4a8a 0%, #0c2d5c 100%);
  color: #fff;
  border: 1px solid #0a2548;
}

.pricing-card-cta--primary:hover {
  filter: brightness(1.06);
}

.pricing-card-cta--secondary {
  background: #fff;
  color: #0c2d5c;
  border: 1px solid #cbd5e1;
}

.pricing-card-cta--secondary:hover {
  border-color: #005a9c;
  color: #005a9c;
}

.pricing-footnote {
  text-align: center;
  font-size: 0.82rem;
  color: #64748b;
  max-width: 40rem;
  margin: 1.5rem auto 0;
  line-height: 1.5;
}

.pricing-compare-section {
  padding: 2rem 16px;
}

.pricing-compare-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}

.pricing-compare-table th {
  background: #f8fafc;
  color: #0c2d5c;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-compare-table td:first-child {
  text-align: left;
  color: #334155;
  font-weight: 600;
}

.pricing-check {
  color: #059669;
  font-weight: 800;
}

.pricing-faq-section {
  padding: 2rem 16px 2.5rem;
}

.pricing-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 16px;
  margin-bottom: 10px;
  background: #fff;
}

.pricing-faq-item summary {
  cursor: pointer;
  padding: 14px 0;
  font-weight: 700;
  color: #0c2d5c;
  list-style: none;
}

.pricing-faq-item summary::-webkit-details-marker {
  display: none;
}

.pricing-faq-item[open] summary {
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 8px;
}

.pricing-faq-item p {
  margin: 0 0 14px;
  color: #64748b;
  line-height: 1.6;
  font-size: 0.92rem;
}

.pricing-faq-item a {
  color: #005a9c;
  font-weight: 700;
}

.pricing-bottom-cta {
  padding: 2.5rem 16px 3rem;
  background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.pricing-bottom-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.pricing-bottom-inner h2 {
  font-family: "Syne", "DM Sans", sans-serif;
  color: #0c2d5c;
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.pricing-bottom-inner p {
  margin: 0 0 18px;
  color: #64748b;
}

@media (max-width: 600px) {
  .pricing-compare-table th,
  .pricing-compare-table td {
    padding: 10px 8px;
    font-size: 0.8rem;
  }
}

.vault-plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vault-plan-status {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}

.vault-plan-card--owned {
  border-color: #86efac;
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.2);
}

.vault-plan-owned-btn {
  cursor: default;
}

.vault-plan-card {
  position: relative;
  border-radius: 14px;
  padding: 1.35rem 1.25rem;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(12, 45, 92, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.vault-plan-card:hover {
  transform: translateY(-3px);
  border-color: #c5d9e8;
  box-shadow: 0 16px 40px rgba(12, 45, 92, 0.1);
}

.vault-plan-card h3 {
  margin: 0 0 0.5rem;
  color: #0c2d5c;
  font-size: 1.15rem;
}

.vault-plan-card p {
  margin: 0 0 0.75rem;
  color: #64748b;
  line-height: 1.55;
  font-size: 0.95rem;
}

.vault-feature-list {
  margin: 0 0 1rem;
  padding-left: 1rem;
  color: #1f3557;
  display: grid;
  gap: 0.35rem;
}

/* —— Atharv Vault marketing page —— */
.vault-page {
  padding-top: 0;
  background: linear-gradient(180deg, #f0f6ff 0%, #ffffff 38%, #ffffff 100%);
}

.vault-paid-banner {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  font-size: 0.92rem;
  line-height: 1.5;
}

.vault-paid-banner a {
  color: #0c2d5c;
  font-weight: 600;
}

.vault-hero {
  position: relative;
  padding: 28px 0 36px;
  overflow: hidden;
}

.vault-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 12% 20%, rgba(0, 90, 156, 0.16), transparent 55%),
    radial-gradient(ellipse 70% 60% at 88% 10%, rgba(12, 45, 92, 0.12), transparent 50%),
    linear-gradient(165deg, #e8f2fc 0%, #f8fafc 45%, #ffffff 100%);
  pointer-events: none;
}

.vault-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.vault-hero-copy h1 {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  color: #0c2d5c;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  line-height: 1.1;
}

.vault-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #005a9c;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 90, 156, 0.2);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.vault-hero-lead {
  margin: 0 0 16px;
  max-width: 560px;
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.65;
}

.vault-hero-pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vault-hero-pills li {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0c2d5c;
  background: #fff;
  border: 1px solid #dbe7f3;
  border-radius: 999px;
  padding: 6px 12px;
  box-shadow: 0 2px 8px rgba(12, 45, 92, 0.06);
}

.vault-hero-side {
  display: flex;
  justify-content: center;
}

.vault-hero-card {
  width: min(100%, 280px);
  background: linear-gradient(160deg, #0c2d5c 0%, #0a2348 55%, #061a36 100%);
  color: #e2e8f0;
  border-radius: 20px;
  padding: 22px 20px 18px;
  box-shadow: 0 24px 50px rgba(8, 28, 54, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vault-hero-card-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.vault-hero-lock {
  margin: 18px auto 14px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(96, 165, 250, 0.35), rgba(15, 23, 42, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.vault-hero-lock::before,
.vault-hero-lock::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
}

.vault-hero-lock::before {
  width: 34px;
  height: 26px;
  top: 16px;
  border-radius: 6px 6px 4px 4px;
}

.vault-hero-lock::after {
  width: 22px;
  height: 18px;
  bottom: 14px;
  border-radius: 0 0 6px 6px;
}

.vault-hero-card-foot {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.88);
  line-height: 1.45;
  text-align: center;
}

.vault-tiers-section {
  padding-bottom: 40px;
}

.vault-section-head {
  margin-bottom: 22px;
  max-width: 720px;
}

.vault-section-title {
  font-family: "Syne", "DM Sans", sans-serif;
  font-size: 1.35rem;
  color: #0c2d5c;
  margin: 0 0 8px;
}

.vault-section-sub {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-size: 0.98rem;
}

.vault-plan-grid-enhanced {
  align-items: stretch;
}

.vault-plan-card-top {
  margin-bottom: 0.5rem;
}

.vault-plan-card--accent {
  border-color: #b9d4f0;
  box-shadow: 0 18px 44px rgba(0, 90, 156, 0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.vault-os-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.vault-os-block-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  margin-bottom: 10px;
}

.vault-os-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vault-os-slot {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8eef5;
}

.vault-os-slot-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.vault-os-name {
  font-weight: 700;
  color: #0c2d5c;
  font-size: 0.92rem;
}

.vault-os-hint {
  font-size: 0.78rem;
  color: #64748b;
}

.vault-os-slot-body {
  min-height: 2.25rem;
  display: flex;
  align-items: center;
}

.vault-os-soon {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
}

.vault-os-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.vault-os-btn--primary {
  background: linear-gradient(180deg, #0c4a8a 0%, #0c2d5c 100%);
  color: #fff;
  border-color: #0a2548;
  box-shadow: 0 6px 16px rgba(12, 45, 92, 0.2);
}

.vault-os-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(12, 45, 92, 0.28);
}

.vault-os-btn--ghost {
  background: #fff;
  color: #0c2d5c;
  border-color: #cbd5e1;
}

.vault-os-btn--ghost:hover {
  border-color: #005a9c;
  color: #005a9c;
}

.vault-os-btn--pay {
  background: linear-gradient(180deg, #047857 0%, #065f46 100%);
  color: #fff;
  border-color: #064e3b;
  box-shadow: 0 6px 16px rgba(6, 78, 59, 0.25);
  cursor: pointer;
  font-family: inherit;
}

.vault-os-btn--pay:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.vault-os-btn--small {
  padding: 6px 10px;
  font-size: 0.8rem;
  border-radius: 8px;
}

.vault-previous-details {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.vault-previous-details summary {
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0c2d5c;
}

.vault-previous-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vault-previous-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.vault-previous-meta {
  font-size: 0.78rem;
  color: #475569;
  flex: 1;
  min-width: 140px;
}

.vault-previous-actions {
  flex-shrink: 0;
}

.vault-prev-block {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(148, 163, 184, 0.5);
}

.vault-prev-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.vault-prev-meta {
  color: #475569;
  word-break: break-all;
}

.vault-slot-meta {
  font-size: 0.72rem;
  color: #64748b;
  margin: 2px 0 0;
}

.vault-free-login-cta {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(0, 90, 156, 0.06);
  border: 1px dashed rgba(0, 90, 156, 0.25);
}

.vault-free-tier-gate.is-logged-in .vault-free-login-cta {
  display: none;
}

/* Products CTA + vault installer rows: avoid misleading “Log in” flash before /api/auth/me returns */
.vault-product-dl--pending {
  pointer-events: none;
  cursor: wait;
  opacity: 0.88;
}

.vault-os-slot--pending .vault-os-soon {
  font-style: italic;
}

.vault-page-footer-actions {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .vault-hero-inner {
    grid-template-columns: 1fr;
  }

  .vault-hero-side {
    order: -1;
  }
}

/* —— Nav auth + vault account pages —— */
.nav-auth-item {
  display: flex;
  align-items: center;
}

.nav-auth-slot {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-auth-slot a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

.nav-auth-slot a:hover {
  text-decoration: underline;
}

.nav-auth-sep {
  opacity: 0.55;
  user-select: none;
}

.nav-auth-name {
  max-width: 84px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0.9;
}

.nav-auth-logout {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.nav-auth-logout:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-auth-loading {
  opacity: 0.6;
}

.vault-auth-page .vault-auth-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.vault-auth-page .vault-auth-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #334155;
  font-size: 0.9rem;
}

.vault-auth-page .vault-auth-form .form-control,
.vault-auth-page .vault-auth-form select.form-control {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 1rem;
  color: #0f172a;
  background: #fff;
}

.vault-password-wrap {
  position: relative;
}

.vault-auth-page .vault-auth-form .vault-password-wrap .form-control {
  padding-right: 44px;
}

.vault-password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
}

.vault-password-toggle .vault-pw-icon {
  display: block;
  flex-shrink: 0;
}

.vault-password-toggle:hover {
  border-color: #94a3b8;
}

.vault-password-toggle.is-on {
  color: #005a9c;
  border-color: #93c5fd;
  background: #eff6ff;
}

.about-prose p,
.biz-body,
.product-card-desc,
.vault-hero-lead,
.pricing-card-desc,
.news-card-body,
.cs-hero p {
  text-align: justify;
}

.vault-auth-page .vault-auth-form .form-control:focus {
  outline: 2px solid rgba(0, 90, 156, 0.35);
  outline-offset: 1px;
  border-color: #005a9c;
}

.vault-otp-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 4px 0 14px;
}

.vault-otp-row .vault-otp-send {
  flex: 0 0 auto;
}

.vault-otp-hint {
  font-size: 0.8rem;
  color: #64748b;
}

.vault-field-help {
  font-size: 0.85rem;
  color: #64748b;
  margin: -6px 0 12px;
  line-height: 1.45;
}

.vault-password-strength,
.vault-password-match {
  margin-top: -8px;
}

.vault-password-strength[data-level="weak"],
.vault-password-match[data-state="mismatch"] {
  color: #b91c1c;
}

.vault-password-strength[data-level="medium"] {
  color: #b45309;
}

.vault-password-strength[data-level="strong"],
.vault-password-match[data-state="match"] {
  color: #166534;
}

.vault-auth-status {
  margin-top: 12px;
  min-height: 1.25em;
  font-size: 0.9rem;
}

.vault-auth-error {
  color: #b91c1c;
}

.vault-auth-switch {
  margin-top: 16px;
  font-size: 0.95rem;
  color: #64748b;
}

.vault-auth-switch a {
  color: #005a9c;
  font-weight: 700;
}

.vault-auth-page .vault-terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #334155;
}

.vault-auth-page .vault-terms-row input[type="checkbox"] {
  margin-top: 0.2em;
  flex-shrink: 0;
}

.vault-auth-page .vault-terms-row a {
  color: #005a9c;
  font-weight: 700;
}

.vault-forgot-wrap {
  margin: 4px 0 0;
  text-align: right;
  font-size: 0.9rem;
}

.vault-forgot-wrap a {
  color: #005a9c;
  font-weight: 600;
}

.vault-free-login-cta-text {
  margin: 0 0 10px;
  color: #475569;
  font-size: 0.95rem;
}

.vault-free-login-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vault-dashboard-section {
  margin-top: 32px;
}

/* —— Dashboard tabs —— */
.vault-dash-tabs-wrap {
  margin-top: 22px;
}

.vault-dash-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  border-radius: 10px 10px 0 0;
  padding: 0 6px;
}

.vault-dash-tab {
  flex: 1 1 auto;
  min-width: 0;
  appearance: none;
  border: none;
  background: transparent;
  margin: 0;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: color 0.15s ease;
}

.vault-dash-tab:hover {
  color: #1f2937;
}

.vault-dash-tab:focus-visible {
  outline: 2px solid #0c2d5c;
  outline-offset: -2px;
  z-index: 1;
}

.vault-dash-tab.is-active {
  color: #e65539;
}

.vault-dash-tab.is-active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 3px;
  background: #e65539;
  border-radius: 3px 3px 0 0;
}

.vault-dash-panels {
  border: 1px solid #e5e7eb;
  border-top: none;
  background: #fff;
  border-radius: 0 0 10px 10px;
  padding: 8px 16px 24px;
}

.vault-dash-panel[hidden] {
  display: none !important;
}

.vault-dash-panel .vault-dashboard-section:first-child {
  margin-top: 16px;
}

@media (max-width: 640px) {
  .vault-dash-tab {
    padding: 12px 10px;
    font-size: 0.8125rem;
  }
}

.vault-danger-zone {
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 16px;
  background: #fff7f7;
}

.vault-danger-btn {
  background: #b91c1c;
}

.vault-danger-btn:hover {
  background: #991b1b;
}

.vault-dashboard-section h2 {
  font-size: 1.1rem;
  color: #0c2d5c;
  margin-bottom: 12px;
}

.vault-activity-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.vault-activity-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.vault-activity-table th,
.vault-activity-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
}

.vault-activity-table th {
  background: #f8fafc;
  color: #0c2d5c;
  font-weight: 700;
}

.vault-activity-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 900px) {
  .nav-auth-item {
    width: 100%;
    padding-top: 4px;
  }

  .nav-auth-slot {
    padding: 6px 0 4px;
  }
}

/* —— i18n language switcher —— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav-lang-item {
  display: flex;
  align-items: center;
  margin-left: 4px;
}

.lang-select {
  font: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 6px 28px 6px 10px;
  max-width: 104px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.lang-select:hover,
.lang-select:focus {
  background-color: rgba(255, 255, 255, 0.16);
  outline: none;
}

.lang-select option {
  color: #0f172a;
  background: #fff;
}

@media (max-width: 900px) {
  .nav-lang-item {
    width: 100%;
    margin-left: 0;
    padding: 6px 0;
  }

  .lang-select {
    width: 100%;
    max-width: none;
  }
}

/* Leadership & company (home + about) */
.company-trust-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.company-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 1060px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .company-trust-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

.company-info-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  background: #fff;
  box-shadow: 0 6px 20px rgba(12, 45, 92, 0.06);
}

.company-info-heading {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: #0c2d5c;
  font-family: "Syne", "DM Sans", sans-serif;
}

.company-info-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.55;
}

.company-incubation-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #64748b;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .founders-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.founder-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  background: #fff;
  box-shadow: 0 4px 16px rgba(12, 45, 92, 0.05);
}

.founder-card--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-photo {
  display: block;
  width: 128px;
  height: 128px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 0.75rem;
  border: 1px solid #e2e8f0;
}

.founder-name {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  color: #0c2d5c;
  font-family: "Syne", "DM Sans", sans-serif;
}

.founder-role {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #005a9c;
}

.founder-bio {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
}

.founder-bio a {
  color: #005a9c;
  font-weight: 600;
}

