:root {
  color-scheme: light;
  --bg: #ffffff;
  --white-rgb: 255, 255, 255;
  --surface: #f4f6f9;
  --ink: #111827;
  --muted: #6b7280;
  --brand-navy: #0f2a44;
  --brand-navy-rgb: 15, 42, 68;
  --content-column: 720px;
  --heading-font: "Manrope", "DM Sans", "Source Sans 3", system-ui, sans-serif;
  --accent: #0f2a44;
  --accent-rgb: 15, 42, 68;
  --accent-dark: #0b2137;
  --accent-soft: #c8d7e6;
  --accent-soft-rgb: 200, 215, 230;
  --accent-hover: #163a5d;
  --teal: #0f766e;
  --teal-rgb: 15, 118, 110;
  --teal-soft: #66d3c7;
  --teal-soft-rgb: 102, 211, 199;
  --primary-cta: var(--brand-navy);
  --primary-cta-hover: #0b2137;
  --border: #e5e7eb;
  --shadow: 0 20px 50px rgba(var(--brand-navy-rgb), 0.08);
  --error: #f87171;
  --radius: 18px;
  --container: 1100px;
  --gap: 24px;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Inter", "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--ink);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  transition: top 0.2s ease;
  z-index: 999;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  background: linear-gradient(to right, #f0f8ff, #e6f0fa);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 120px;
  height: 32px;
  border-radius: 6px;
  background: transparent;
  font-weight: 700;
  letter-spacing: 1px;
  overflow: visible;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: left center;
  border-radius: inherit;
  transform: scale(0.84375, 0.75);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--brand-navy);
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px 10px;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  align-items: center;
  justify-items: start;
  padding: 120px 0 96px;
  color: white;
  background: var(--brand-navy);
}

.hero-center {
  text-align: left;
  max-width: var(--content-column);
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0 0 16px;
  font-family: var(--heading-font);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 600;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 20px;
}

.hero-subhead {
  font-size: 1.2rem;
  margin: 0 0 24px;
  color: rgba(var(--white-rgb), 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin: 20px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid var(--brand-navy);
  background: #f8f9fa;
  color: var(--brand-navy);
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(var(--brand-navy-rgb), 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease, border-color 0.2s ease;
}

.button.primary {
  background: #f8f9fa;
  color: var(--brand-navy);
}

.button.filled {
  background: var(--brand-navy);
  color: white;
  border-color: var(--brand-navy);
}

.button.primary:hover {
  background: var(--brand-navy);
  color: white;
  transform: translateY(-1px);
}

.button.filled:hover {
  background: var(--primary-cta-hover);
  color: white;
  transform: translateY(-1px);
}

.button.secondary {
  background: #f8f9fa;
  color: var(--brand-navy);
  border-color: var(--brand-navy);
}

.button.secondary:hover {
  background: var(--brand-navy);
  color: white;
}

.button.ghost {
  background: #f8f9fa;
  border-color: var(--brand-navy);
  color: var(--brand-navy);
}

.section {
  padding: 90px 0;
}

.section.muted {
  background: var(--surface);
}

.section-header {
  max-width: var(--content-column);
  margin: 0 0 44px;
}

.card-grid,
.insight-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.insight-card {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(var(--accent-rgb), 0.2);
}

.card h3,
.insight-card h3 {
  margin-top: 0;
}

.card h3 {
  font-family: var(--heading-font);
  color: var(--accent);
  margin-bottom: 0;
  position: relative;
}

.card h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: rgba(var(--accent-rgb), 0.5);
  margin-top: 8px;
  border-radius: 999px;
}

.card-image {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.card .text-link {
  font-size: 0.9rem;
}

.insight-card {
  gap: 14px;
}

.insight-image {
  width: 100%;
  height: 150px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.approach {
  background: white;
}

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

.approach-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.approach-card h3 {
  margin: 12px 0 8px;
  font-family: var(--heading-font);
}

.approach-card p {
  margin: 0;
  color: var(--muted);
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.text-link:hover {
  color: var(--accent-dark);
}

.insight-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.section-actions {
  margin-top: 24px;
}

.insight-share {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}

.insight-share-label {
  font-weight: 600;
  color: var(--muted);
}

.about-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.about-copy .lead {
  margin-bottom: 12px;
}

.accent-divider {
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-hover);
  margin: 16px 0 20px;
}

.founder-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--border);
}

.founder-photo {
  width: 120px;
  height: 160px;
  border-radius: 24px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  background: linear-gradient(
    135deg,
    rgba(var(--accent-rgb), 0.2),
    rgba(var(--accent-rgb), 0.05)
  );
  isolation: isolate;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.founder-name {
  font-weight: 700;
  margin: 0;
  font-size: 1.1rem;
}

.founder-title {
  margin: 4px 0 8px;
  color: var(--muted);
}

.founder-bio {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.contact-section {
  background: var(--brand-navy);
  color: white;
}

.contact-section .lead {
  color: rgba(var(--white-rgb), 0.7);
}

.contact-section .eyebrow {
  color: rgba(var(--teal-soft-rgb), 0.85);
}

.contact-details p {
  margin: 6px 0;
}

.contact-form {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  display: grid;
  gap: 16px;
  color: var(--ink);
}

.contact-details {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.contact-item p {
  margin: 0;
  color: rgba(var(--white-rgb), 0.8);
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(var(--teal-soft-rgb), 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-soft);
}

.contact-icon svg {
  width: 18px;
  height: 18px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
}

select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  background: white;
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--accent);
}

.form-status.is-error {
  color: var(--error);
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: grid;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-plus {
  color: var(--teal-soft);
  font-size: 1.6rem;
  font-weight: 700;
}

.footer-text {
  color: var(--muted);
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.social-link:hover {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.5);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-meta {
  display: grid;
  gap: 6px;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-designed {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Assessment Details Section */
.assessment-content {
  max-width: 900px;
  margin: 0 auto;
}

.assessment-section {
  margin-bottom: 48px;
}

.assessment-section h2,
.assessment-section h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 16px;
}

.assessment-section h4 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  margin: 0 0 8px;
}

.phase-card h3 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent);
  margin: 0 0 12px;
}

.assessment-cta h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 12px;
}

.assessment-section p {
  margin: 0 0 16px;
  line-height: 1.7;
}

.assessment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}

.assessment-list li {
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}

.assessment-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: 700;
}

.assessment-list.numbered {
  counter-reset: assessment-counter;
}

.assessment-list.numbered li {
  counter-increment: assessment-counter;
  padding-left: 32px;
}

.assessment-list.numbered li::before {
  content: counter(assessment-counter);
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--heading-font);
  width: 24px;
  text-align: right;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.phase-card {
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  border-top: 3px solid var(--accent);
}

.phase-card h4 {
  margin: 0 0 12px;
  font-size: 1.1rem;
}

.phase-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.assessment-cta {
  margin-top: 48px;
  padding: 32px;
  background: white;
  border-radius: 16px;
  border: 2px solid var(--accent);
  text-align: center;
}

.assessment-cta h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
}

.assessment-cta p {
  margin: 0 0 24px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    right: 16px;
    top: 70px;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
    min-width: 200px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease;
  }

  .site-nav.is-open {
    max-height: 260px;
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 60px;
  }

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

  .assessment-cta {
    padding: 24px;
  }
}
