@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --ink: #16212d;
  --muted: #66707f;
  --line: #dbe2ea;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --card: #ffffff;
  --input: #ffffff;
  --navy: #0a1e3f;
  --teal: #2a6fd6;
  --green: #3d9970;
  --gold: #d89b31;
  --danger: #b42318;
  --header-bg: rgba(255, 255, 255, 0.95);
  --nav-link: #344255;
  --page-hero-bg: linear-gradient(180deg, #f6fbfb, #fff);
  --shadow: 0 20px 60px rgba(16, 42, 67, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body[data-theme="dark"] {
  --ink: #eef4f8;
  --muted: #a8b4c0;
  --line: #2d3b4a;
  --paper: #0b131c;
  --soft: #121d28;
  --card: #111b26;
  --input: #0d1721;
  --navy: #07121d;
  --teal: #28b6b8;
  --green: #6bd39f;
  --gold: #edb95a;
  --danger: #ff8a80;
  --header-bg: rgba(11, 19, 28, 0.94);
  --nav-link: #d4dde7;
  --page-hero-bg: linear-gradient(180deg, #101d29, #0b131c);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 226, 234, 0.86);
  background: var(--header-bg);
  backdrop-filter: blur(12px);
}

.nav-wrap,
.section-inner,
.hero-inner,
.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 238px;
  height: auto;
}

body[data-theme="dark"] .brand-logo {
  filter: brightness(0) invert(1);
}

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

.site-nav a {
  color: var(--nav-link);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button,
button.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 18px;
  color: #fff;
  background: var(--teal);
  font: inherit;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--card);
}

.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(8, 23, 38, 0.9) 0%, rgba(8, 23, 38, 0.68) 42%, rgba(8, 23, 38, 0.18) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-inner {
  position: relative;
  padding: 96px 0 112px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a7e2dc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-strip {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.proof-item {
  min-height: 130px;
  padding: 28px;
  background: var(--soft);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.section-heading p,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
}

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

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

.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 1px 0 rgba(16, 42, 67, 0.04);
}

.card h3 {
  font-size: 21px;
  line-height: 1.2;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul,
.role-list {
  margin: 0;
  padding-left: 20px;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.panel {
  padding: 32px;
  border-left: 5px solid var(--gold);
  background: var(--card);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 76px 0 54px;
  background: var(--page-hero-bg);
}

.page-hero h1 {
  max-width: 760px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--ink);
  background: var(--card);
  font-size: 14px;
  font-weight: 700;
}

.role {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.role:last-child {
  border-bottom: 0;
}

.role-meta {
  color: var(--muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

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

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
  background: var(--input);
}

.theme-toggle {
  position: fixed;
  top: 92px;
  right: 18px;
  z-index: 40;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.theme-icon {
  position: relative;
  display: none;
  width: 24px;
  height: 24px;
}

.theme-icon-moon {
  display: block;
  border-radius: 50%;
  background: transparent;
  box-shadow: inset -8px -3px 0 0 var(--navy);
}

.theme-icon-moon::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 3px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: -8px 9px 0 -1px var(--gold), 4px 13px 0 -1px var(--gold);
}

.theme-icon-sun {
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 -10px 0 -7px var(--gold), 0 10px 0 -7px var(--gold), 10px 0 0 -7px var(--gold), -10px 0 0 -7px var(--gold), 7px 7px 0 -7px var(--gold), -7px -7px 0 -7px var(--gold), 7px -7px 0 -7px var(--gold), -7px 7px 0 -7px var(--gold);
}

body[data-theme="dark"] .theme-icon-moon {
  display: none;
}

body[data-theme="dark"] .theme-icon-sun {
  display: block;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
}

.testimonial-source {
  margin-top: auto;
  color: var(--muted);
  font-weight: 750;
}

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

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  font-weight: 700;
}

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

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

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-box {
  min-height: 65px;
  display: flex;
  align-items: center;
}

button:disabled,
.button:disabled {
  opacity: 0.68;
  cursor: not-allowed;
  transform: none;
}

.cta-band {
  padding: 58px 0;
  color: #fff;
  background: var(--navy);
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 38px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #081726;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner a {
  color: #fff;
}

.fine-print {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--card);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 20px;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 620px;
  }

  .theme-toggle {
    top: 88px;
    right: 14px;
  }

  .proof-grid,
  .grid,
  .grid.two,
  .feature-row,
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .nav-wrap,
  .section-inner,
  .hero-inner,
  .footer-inner,
  .proof-grid {
    width: min(100% - 28px, 1160px);
  }

  .brand-logo {
    width: 198px;
  }

  .hero-inner {
    padding: 72px 0 88px;
  }

  .section {
    padding: 62px 0;
  }

  .card,
  .panel {
    padding: 22px;
  }
}
