:root {
  --navy-950: #081c2c;
  --navy-900: #0d2638;
  --navy-800: #153a50;
  --teal-700: #147b79;
  --teal-600: #1b918d;
  --teal-100: #dff3f1;
  --gold-500: #c89d54;
  --cream-50: #fbfaf7;
  --cream-100: #f5f1e8;
  --slate-900: #17242d;
  --slate-700: #435560;
  --slate-500: #71808a;
  --white: #ffffff;
  --border: #dce4e7;
  --shadow: 0 16px 50px rgba(8, 28, 44, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

a {
  color: var(--teal-700);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover { color: var(--navy-900); }

h1, h2, h3, h4 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.14;
  margin: 0 0 0.7em;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.6rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
p { margin: 0 0 1rem; }

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--white);
  color: var(--navy-950);
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 228, 231, 0.8);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-950);
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--navy-900), var(--teal-600));
  box-shadow: 0 8px 22px rgba(13, 38, 56, 0.2);
}

.brand-mark svg { width: 24px; height: 24px; }

.brand-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-transform: uppercase;
}

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

.site-nav a {
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 11px;
  border-radius: 9px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--teal-100);
  color: var(--navy-950);
}

.nav-cta {
  background: var(--navy-900) !important;
  color: var(--white) !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--teal-700) !important; }

.menu-toggle {
  display: none;
  border: 0;
  background: var(--cream-100);
  color: var(--navy-950);
  border-radius: 10px;
  padding: 9px 11px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 10vw, 132px) 0 82px;
  background:
    radial-gradient(circle at 86% 13%, rgba(27, 145, 141, 0.18), transparent 27%),
    radial-gradient(circle at 73% 82%, rgba(200, 157, 84, 0.16), transparent 23%),
    linear-gradient(180deg, #fff 0%, var(--cream-50) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -230px;
  top: -170px;
  border: 1px solid rgba(20, 123, 121, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(20, 123, 121, 0.04), 0 0 0 140px rgba(20, 123, 121, 0.025);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--teal-700);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold-500);
}

.hero h1 span { color: var(--teal-700); }

.hero-copy {
  max-width: 790px;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  color: var(--slate-700);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 24px rgba(8, 28, 44, 0.16);
}

.btn-primary { background: var(--navy-900); color: var(--white); }
.btn-primary:hover { background: var(--teal-700); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--navy-900); border-color: var(--border); }
.btn-secondary:hover { color: var(--navy-900); }

.hero-panel {
  position: relative;
  z-index: 1;
  padding: 30px;
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  color: var(--white);
  font-size: 1.65rem;
}

.hero-panel p { color: #d8e4e9; }

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

.signal-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  color: #edf5f6;
}

.signal-list li::before {
  content: "✓";
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: #8de0d8;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.section { padding: clamp(68px, 9vw, 112px) 0; }
.section-tight { padding: 58px 0; }
.section-alt { background: var(--cream-100); }
.section-dark { background: var(--navy-950); color: #e5eef1; }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading p {
  color: var(--slate-700);
  font-size: 1.1rem;
}

.section-dark .section-heading p { color: #cbdadd; }

.kicker {
  margin-bottom: 12px;
  color: var(--teal-700);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.77rem;
}

.section-dark .kicker { color: #8de0d8; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  position: relative;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 35px rgba(8, 28, 44, 0.055);
}

.card-number {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold-500);
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.card p { color: var(--slate-700); }
.card ul { color: var(--slate-700); padding-left: 20px; margin-bottom: 0; }

.link-arrow {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 12px;
  font-weight: 900;
  text-decoration: none;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 9px 35px rgba(8, 28, 44, 0.06);
}

.stat {
  padding: 25px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}
.stat span { color: var(--slate-700); font-size: 0.9rem; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}

.feature-panel {
  padding: clamp(28px, 5vw, 52px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--slate-700);
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -4px;
  color: var(--teal-600);
  font-size: 1.7rem;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  padding: 25px 22px;
  border-top: 4px solid var(--teal-600);
  background: rgba(255,255,255,0.06);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.process-step span {
  display: block;
  margin-bottom: 15px;
  color: #8de0d8;
  font-weight: 900;
}

.process-step p { color: #cbdadd; margin-bottom: 0; }

.cta {
  padding: clamp(38px, 6vw, 68px);
  background:
    radial-gradient(circle at 92% 22%, rgba(141, 224, 216, 0.17), transparent 24%),
    var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cta h2 { color: var(--white); max-width: 780px; }
.cta p { color: #d8e4e9; max-width: 760px; font-size: 1.08rem; }

.page-hero {
  padding: 88px 0 64px;
  background:
    radial-gradient(circle at 90% 20%, rgba(27, 145, 141, 0.16), transparent 28%),
    var(--cream-100);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); max-width: 950px; }
.page-hero p { max-width: 800px; color: var(--slate-700); font-size: 1.15rem; }

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-detail {
  padding: 30px;
  border-left: 5px solid var(--teal-600);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 10px 34px rgba(8, 28, 44, 0.06);
}

.service-detail p, .service-detail li { color: var(--slate-700); }
.service-detail ul { padding-left: 20px; margin-bottom: 0; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 8px 12px;
  background: var(--teal-100);
  color: var(--navy-900);
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 800;
}

.timeline {
  position: relative;
  display: grid;
  gap: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-left: 58px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 4px;
  width: 18px;
  height: 18px;
  background: var(--teal-600);
  border: 5px solid var(--cream-50);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--teal-600);
}

.timeline-item p { color: var(--slate-700); }

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.industry-card {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.industry-card p { color: var(--slate-700); }

.notice {
  padding: 20px 22px;
  background: #fff7e7;
  border: 1px solid #ead6a9;
  border-radius: var(--radius-sm);
  color: #5c4925;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
  gap: 36px;
  align-items: start;
}

.form-card {
  padding: clamp(24px, 5vw, 44px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }

label, legend {
  color: var(--navy-950);
  font-weight: 800;
}

.required { color: #9d2a32; }

input, select, textarea {
  width: 100%;
  border: 1px solid #bdcbd0;
  border-radius: 10px;
  padding: 12px 13px;
  background: var(--white);
  color: var(--slate-900);
  font: inherit;
}

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

input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(27, 145, 141, 0.18);
  border-color: var(--teal-600);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--slate-700);
  font-weight: 500;
}

.checkbox-item input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--teal-700);
}

.form-note {
  margin-top: 22px;
  padding: 17px;
  background: var(--cream-100);
  border-radius: var(--radius-sm);
  color: var(--slate-700);
  font-size: 0.9rem;
}

.form-status {
  display: none;
  margin-top: 17px;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
}

.form-status.show { display: block; }
.form-status.error { background: #fff0f0; color: #8a2028; border: 1px solid #efc5c8; }
.form-status.success { background: #eaf8f4; color: #155e56; border: 1px solid #b9e5dc; }

.side-card {
  padding: 27px;
  background: var(--navy-950);
  color: #dce8eb;
  border-radius: var(--radius-md);
  position: sticky;
  top: 100px;
}

.side-card h2, .side-card h3 { color: var(--white); }
.side-card a { color: #8de0d8; }
.side-card ul { padding-left: 20px; }

.prose {
  max-width: 850px;
}

.prose h2 { margin-top: 1.4em; font-size: 2rem; }
.prose h3 { margin-top: 1.4em; }
.prose p, .prose li { color: var(--slate-700); }
.prose li { margin-bottom: 8px; }

.site-footer {
  padding: 58px 0 24px;
  background: #061722;
  color: #bfd0d5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr;
  gap: 50px;
}

.site-footer h2, .site-footer h3 { color: var(--white); }
.site-footer h3 { font-size: 1.1rem; }
.site-footer a { color: #d7eceb; }
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
}

.small { font-size: 0.9rem; }
.muted { color: var(--slate-500); }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 69px;
    padding: 14px;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .nav-cta { margin-left: 0; text-align: center; }
  .hero-grid, .split, .form-layout { grid-template-columns: 1fr; }
  .hero-panel { max-width: 650px; }
  .card-grid, .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .side-card { position: static; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max-width)); }
  .brand-text { font-size: 0.66rem; }
  .card-grid, .industry-grid, .service-list, .process-grid, .form-grid, .checkbox-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .field-full { grid-column: auto; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat, .stat:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: 0; }
  .footer-bottom { flex-direction: column; }
  .button-row { align-items: stretch; }
  .btn { width: 100%; }
  .hero { padding-top: 64px; }
}

/* Founder profile */
.founder-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 128px) 0 84px;
  background:
    radial-gradient(circle at 88% 22%, rgba(27, 145, 141, 0.19), transparent 29%),
    radial-gradient(circle at 70% 90%, rgba(200, 157, 84, 0.15), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--cream-50) 100%);
}

.founder-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: center;
  gap: clamp(42px, 7vw, 92px);
}

.founder-title {
  margin-bottom: 16px;
  color: var(--teal-700);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 850;
  line-height: 1.4;
}

.founder-intro {
  max-width: 760px;
  color: var(--slate-700);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.portrait-frame {
  position: relative;
  width: min(100%, 455px);
  margin-inline: auto;
  padding: 14px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(27,145,141,.42), rgba(200,157,84,.45));
  box-shadow: 0 25px 65px rgba(8, 28, 44, 0.20);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid rgba(20, 123, 121, 0.20);
  border-radius: 50%;
}

.founder-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: #171b1f;
}

.linkedin-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #eef2f4;
  color: #65747c;
  font-weight: 800;
  cursor: not-allowed;
}

.linkedin-placeholder svg {
  width: 20px;
  height: 20px;
}

.executive-profile {
  max-width: 960px;
}

.executive-profile p {
  color: var(--slate-700);
  font-size: 1.08rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.impact-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 34px rgba(8, 28, 44, 0.055);
}

.impact-card h3 {
  margin-bottom: 12px;
}

.impact-card p {
  color: var(--slate-700);
}

.company-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.company-name {
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  font-weight: 850;
  letter-spacing: .01em;
}

.profile-quote {
  position: relative;
  padding: clamp(30px, 5vw, 52px);
  border-left: 5px solid var(--gold-500);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--navy-950);
  color: var(--white);
  box-shadow: var(--shadow);
}

.profile-quote p {
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.35;
}

.profile-quote cite {
  display: block;
  margin-top: 20px;
  color: #9adfd8;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: .92rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.credential-panel {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
}

.credential-panel p,
.credential-panel li {
  color: var(--slate-700);
}

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

  .founder-hero-copy {
    order: 2;
  }

  .portrait-frame {
    order: 1;
    max-width: 370px;
  }
}

@media (max-width: 680px) {
  .impact-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
  }
}
