:root {
  --color-background: #0c111f;
  --color-surface: #11182a;
  --color-light: #f5f6fa;
  --color-muted: #d1d5e1;
  --color-text: #1f2433;
  --color-accent: #38d9c5;
  --color-accent-dark: #16a18f;
  --color-border: #e2e6f0;
  --container-width: min(1100px, 90vw);
}

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

body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  margin: 0 0 0.75rem;
  color: inherit;
}

p {
  margin: 0 0 1.25rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color-accent);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  background: var(--color-accent);
  color: #0b0d17;
  border-radius: 999px;
  z-index: 1000;
}

.container {
  width: var(--container-width);
  margin: 0 auto;
}

.top-bar {
  background: #050814;
  color: var(--color-light);
  font-size: 0.85rem;
  padding: 0.65rem 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.top-bar__cta {
  color: var(--color-accent);
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

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

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  border: 1.5px solid currentColor;
  padding: 0.4rem 0.6rem;
  border-radius: 0.75rem;
}

.logo--footer {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.tagline {
  font-size: 0.9rem;
  color: #4c5165;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  padding-bottom: 0.25rem;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.2s ease-in-out;
}

.site-nav a:focus::after,
.site-nav a:hover::after {
  width: 100%;
}

.site-nav a[aria-current="page"] {
  color: var(--color-accent-dark);
}

.site-nav a[aria-current="page"]::after {
  width: 100%;
}
.pill-button,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.65rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pill-button {
  background: var(--color-accent);
  color: #05121a;
  border: none;
}

.pill-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(56, 217, 197, 0.25);
}

.primary-button {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #041218;
  border: none;
  font-weight: 600;
  padding: 0.8rem 1.9rem;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(22, 161, 143, 0.25);
}

.primary-button--full {
  width: 100%;
}

.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.ghost-button--dark {
  border-color: rgba(4, 18, 24, 0.3);
  color: #041218;
  background: transparent;
  padding: 0.7rem 1.4rem;
}

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

.hero {
  background: radial-gradient(circle at top left, #1b2b45, var(--color-background));
  color: var(--color-light);
  padding: 5rem 0;
}

.page-hero {
  background: radial-gradient(circle at top left, #16213b, #0b1020 70%);
  color: var(--color-light);
  padding: 5rem 0 3.5rem;
}

.page-hero--light {
  background: #f7f8fc;
  color: var(--color-text);
}

.page-hero__inner {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
}

.page-hero__lede {
  font-size: 1.05rem;
  color: rgba(245, 246, 250, 0.78);
}

.page-hero--light .page-hero__lede {
  color: rgba(31, 36, 51, 0.75);
}

.breadcrumbs {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 246, 250, 0.6);
}

.page-hero--light .breadcrumbs {
  color: #7a829b;
}

.breadcrumbs a {
  color: inherit;
}

.breadcrumbs__separator {
  opacity: 0.5;
}

.hero .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4rem;
  align-items: center;
}

.hero__body h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero__copy {
  font-size: 1.05rem;
  color: rgba(245, 246, 250, 0.8);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__as-seen {
  font-size: 0.9rem;
  color: rgba(245, 246, 250, 0.75);
}

.hero__as-seen ul {
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0.75rem 0 0;
  list-style: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: rgba(245, 246, 250, 0.55);
}

.hero__card .card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.card__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.card h2 {
  color: #ffffff;
  font-size: 1.65rem;
}

.card p {
  color: rgba(255, 255, 255, 0.75);
}

.card__list {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
}

.card__link {
  color: var(--color-accent);
  font-weight: 500;
}

.section {
  padding: 4.5rem 0;
}

.page-section {
  padding: 4rem 0;
}

.page-section--light {
  background: #ffffff;
}

.page-section--muted {
  background: #f3f4f9;
}

.page-section--dark {
  background: #0f172a;
  color: var(--color-light);
}

.section--light {
  background: #f7f8fc;
}

.section--accent {
  background: #0f172a;
  color: var(--color-light);
}

.section__header {
  max-width: 50rem;
  margin-bottom: 3rem;
}

.section__lede {
  color: rgba(31, 36, 51, 0.75);
}

.section__lede--light {
  color: rgba(245, 246, 250, 0.75);
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #55607a;
}

.eyebrow--light {
  color: rgba(245, 246, 250, 0.65);
}

.grid {
  display: grid;
  gap: 2rem;
}

.content-grid {
  display: grid;
  gap: 2.5rem;
}

.content-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-panel {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(12, 17, 31, 0.08);
  padding: 2rem;
  box-shadow: 0 20px 30px rgba(15, 22, 35, 0.06);
  display: grid;
  gap: 1rem;
}

.page-section--dark .content-panel {
  background: rgba(12, 17, 31, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 246, 250, 0.9);
  box-shadow: none;
}

.content-panel__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.bullet-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #4d546c;
}

.page-section--dark .bullet-list {
  color: rgba(245, 246, 250, 0.75);
}

.callout {
  border-left: 3px solid var(--color-accent);
  padding-left: 1.25rem;
  color: #3b4258;
  font-size: 1.05rem;
}

.page-section--dark .callout {
  color: rgba(245, 246, 250, 0.85);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.stat-card {
  display: grid;
  gap: 0.35rem;
}

.stat-card__value {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #0c111f;
}

.page-section--dark .stat-card__value {
  color: #ffffff;
}

.stat-card__label {
  color: #555d75;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-section--dark .stat-card__label {
  color: rgba(245, 246, 250, 0.65);
}

.cta-banner {
  background: linear-gradient(135deg, #12203b, #0b131f);
  color: var(--color-light);
  border-radius: 1.5rem;
  padding: 2.75rem;
  display: grid;
  gap: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.quote-card {
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid rgba(12, 17, 31, 0.08);
  padding: 2rem;
  display: grid;
  gap: 1.25rem;
  box-shadow: 0 16px 32px rgba(15, 22, 35, 0.08);
}

.quote-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #101526;
}

.quote-card__attribution {
  font-size: 0.9rem;
  color: #535a71;
  letter-spacing: 0.04em;
}

.tab-group {
  display: grid;
  gap: 1.5rem;
}

.tab-group__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-group__nav a {
  border: 1px solid rgba(12, 17, 31, 0.1);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  color: #3e455c;
  transition: background 0.2s ease, border 0.2s ease;
}

.tab-group__nav a:hover,
.tab-group__nav a:focus {
  background: rgba(56, 217, 197, 0.1);
  border-color: rgba(56, 217, 197, 0.45);
  color: #0c4035;
}

.tab-group__panel {
  border-radius: 1.25rem;
  border: 1px solid rgba(12, 17, 31, 0.08);
  padding: 2rem;
  background: #ffffff;
  box-shadow: 0 20px 30px rgba(15, 22, 35, 0.06);
}

.tab-group__panel p {
  margin-bottom: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid rgba(12, 17, 31, 0.08);
  padding: 1.75rem;
  display: grid;
  gap: 0.8rem;
  text-align: left;
  box-shadow: 0 18px 32px rgba(15, 22, 35, 0.08);
}

.team-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
}

.team-card__role {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6a728b;
}

.team-card__bio {
  font-size: 0.92rem;
  color: #4d546c;
}

.faq {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  border-radius: 1.15rem;
  border: 1px solid rgba(12, 17, 31, 0.08);
  padding: 1.75rem;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 22, 35, 0.05);
}

.faq-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.resource-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.5rem;
}

.resource-card {
  display: grid;
  gap: 0.6rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(12, 17, 31, 0.08);
}

.resource-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.resource-card__meta {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6d7591;
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-card,
.insight-card,
.feature-card {
  border-radius: 1.25rem;
  background: #ffffff;
  padding: 2rem;
  border: 1px solid rgba(12, 17, 31, 0.06);
  box-shadow: 0 20px 30px rgba(15, 22, 35, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section--light .service-card {
  background: #ffffff;
}

.section--accent .feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 246, 250, 0.9);
}

.service-card:hover,
.insight-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 38px rgba(15, 22, 35, 0.12);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: #535a71;
}

.timeline {
  border-left: 1.5px solid rgba(12, 17, 31, 0.12);
  margin-left: 1.5rem;
  display: grid;
  gap: 2.5rem;
  padding-left: 1.5rem;
}

.timeline__item {
  position: relative;
  padding-left: 2.5rem;
}

.timeline__marker {
  position: absolute;
  left: -3.3rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  color: #03252b;
  display: grid;
  place-items: center;
  font-weight: 600;
}

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

.insight-card__tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7a829b;
}

.insight-card a {
  margin-top: auto;
  font-weight: 500;
  color: var(--color-accent-dark);
}

.about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
}

.about__list {
  margin: 2rem 0 0;
  padding-left: 1.2rem;
  color: #4d546c;
}

.about__panel {
  background: #ffffff;
  border-radius: 1.75rem;
  border: 1px solid rgba(12, 17, 31, 0.08);
  padding: 2.5rem;
  box-shadow: 0 24px 48px rgba(11, 17, 28, 0.12);
  display: grid;
  gap: 2rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat__value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #0c111f;
}

.stat__label {
  color: #555d75;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.panel-cta p {
  margin-bottom: 1rem;
  color: #3e455c;
}

.logos {
  background: #ffffff;
  text-align: center;
  padding: 3.5rem 0;
}

.logos ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 3.5rem);
  padding: 0;
  margin: 2rem 0 0;
  font-weight: 500;
  color: #4f566d;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.75rem;
}

.contact {
  background: radial-gradient(circle at 20% 20%, #1f2d4a, #0b1326 65%);
}

.contact .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
}

.contact__details {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
}

.contact__details dt {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(245, 246, 250, 0.8);
}

.contact__details dd {
  margin: 0.1rem 0 0;
  color: rgba(245, 246, 250, 0.95);
}

.contact__form {
  background: rgba(12, 17, 31, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: grid;
  gap: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.contact__form label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(245, 246, 250, 0.65);
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 17, 31, 0.5);
  color: #ffffff;
  font-size: 0.95rem;
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(245, 246, 250, 0.45);
}

.contact__form--light {
  background: rgba(12, 17, 31, 0.05);
  border: 1px solid rgba(12, 17, 31, 0.1);
  box-shadow: none;
  color: var(--color-text);
}

.contact__form--light label {
  color: #4c5165;
}

.contact__form--light input,
.contact__form--light textarea {
  background: #ffffff;
  color: var(--color-text);
  border: 1px solid rgba(12, 17, 31, 0.15);
}

.contact__form--light input::placeholder,
.contact__form--light textarea::placeholder {
  color: rgba(31, 36, 51, 0.45);
}

.contact__privacy {
  font-size: 0.75rem;
  color: rgba(245, 246, 250, 0.55);
  margin: 0;
}

.site-footer {
  background: #050814;
  color: rgba(245, 246, 250, 0.85);
  padding-top: 3.5rem;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}

.footer__brand {
  max-width: 18rem;
  display: grid;
  gap: 1rem;
}

.footer__brand p {
  color: rgba(245, 246, 250, 0.65);
}

.footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.footer__column h4 {
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: rgba(245, 246, 250, 0.6);
}

.footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.footer__column a {
  color: rgba(245, 246, 250, 0.75);
  font-size: 0.95rem;
}

.footer__column a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(245, 246, 250, 0.55);
}

.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .site-nav ul {
    gap: 1rem;
  }

  .hero .container {
    gap: 3rem;
  }

  .grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    gap: 2.5rem;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header .container {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    order: 3;
  }

  .site-nav ul {
    justify-content: space-between;
    font-size: 0.85rem;
  }

  .pill-button {
    margin-left: auto;
    order: 2;
  }

  .hero .container,
  .contact .container,
  .about {
    grid-template-columns: 1fr;
  }

  .hero__card {
    order: -1;
  }

  .grid--two,
  .grid--three {
    grid-template-columns: 1fr;
  }

  .content-grid--two,
  .content-grid--three {
    grid-template-columns: 1fr;
  }

  .timeline {
    margin-left: 0.5rem;
  }

  .logos ul {
    flex-wrap: wrap;
  }

  .site-footer .container {
    flex-direction: column;
  }

  .footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .top-bar {
    flex-direction: column;
    padding: 0.75rem 1rem;
    text-align: center;
  }

  .site-header .container {
    padding: 0.85rem 0;
  }

  .site-nav ul {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__as-seen ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .timeline {
    border: none;
    padding-left: 0;
  }

  .timeline__item {
    padding-left: 0;
  }

  .timeline__marker {
    position: static;
    margin-bottom: 1rem;
  }

  .contact__form {
    padding: 2rem;
  }

  .footer__columns {
    grid-template-columns: 1fr;
  }

  .footer__bottom .container {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
