:root {
  --ink: #10202a;
  --navy: #18364a;
  --eucalyptus: #1f6f66;
  --eucalyptus-dark: #174f49;
  --mist: #eef5f3;
  --paper: #fbfbf8;
  --line: #d9e2df;
  --muted: #63737a;
  --gold: #b8924b;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(16, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 251, 248, 0.88);
  border-bottom: 1px solid rgba(217, 226, 223, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 150px;
  height: 36px;
}

.brand img {
  width: 100%;
  height: auto;
}

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

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 8px;
  color: #344a54;
  font-size: 0.9rem;
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--mist);
  color: var(--eucalyptus-dark);
  outline: none;
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--ink);
  color: var(--white);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--eucalyptus-dark);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

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

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px) clamp(20px, 5vw, 72px) clamp(24px, 4vw, 42px);
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--eucalyptus-dark);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.6rem, 4.4vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 + p,
h2 + p {
  margin-top: 22px;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.04rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 20px;
  color: #455960;
  font-size: clamp(1.04rem, 1.5vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.button.primary {
  background: var(--eucalyptus-dark);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--navy);
  outline: none;
}

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

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--eucalyptus);
  color: var(--eucalyptus-dark);
  outline: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 640px;
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  padding: 12px 14px 12px 0;
}

.trust-strip div + div {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.trust-strip dt {
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
}

.trust-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-media {
  min-height: 430px;
  align-self: stretch;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.wide {
  max-width: 940px;
}

.section-heading.compact {
  max-width: 760px;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: start;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-copy {
  color: #43565e;
  font-size: 1.04rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.services-section {
  background: var(--paper);
}

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

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

.service-card {
  min-height: 256px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.link-card-grid,
.summary-grid,
.resource-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.link-card,
.summary-grid article,
.resource-card {
  min-height: 236px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.link-card {
  display: flex;
  flex-direction: column;
}

.link-card p,
.summary-grid p,
.resource-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.link-card:hover,
.link-card:focus-visible,
.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(31, 111, 102, 0.5);
  box-shadow: 0 16px 38px rgba(16, 32, 42, 0.08);
  outline: none;
}

.link-card.highlighted {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.link-card.highlighted h3,
.link-card.highlighted .service-number {
  color: var(--white);
}

.link-card.highlighted p {
  color: #d6e0df;
}

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

.service-card.highlighted {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.service-card.highlighted h3,
.service-card.highlighted .service-number {
  color: var(--white);
}

.service-card.highlighted p {
  color: #d6e0df;
}

.service-number {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
}

.sponsor-section {
  background: var(--mist);
}

.page-hero {
  padding: clamp(60px, 9vw, 116px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 86px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: #43565e;
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
}

.split-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
}

.split-page-hero > *,
.feature-split > *,
.process-heading > * {
  min-width: 0;
}

.split-page-hero .section-image {
  aspect-ratio: 16 / 11;
}

.sponsor-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

.sponsor-panel p {
  max-width: 720px;
  margin-top: 22px;
  margin-bottom: 22px;
  color: #40545c;
  font-size: 1.05rem;
}

.section-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 226, 223, 0.86);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(16, 32, 42, 0.08);
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-focus-left {
  object-position: left center;
}

.image-focus-center {
  object-position: center center;
}

.image-focus-right {
  object-position: right center;
}

.visual-band {
  padding-top: clamp(30px, 5vw, 56px);
  padding-bottom: clamp(30px, 5vw, 56px);
  background: var(--white);
}

.wide-image {
  max-width: 1180px;
  height: clamp(280px, 36vw, 470px);
  margin: 0 auto;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
  background: var(--white);
}

.feature-split p:not(.eyebrow) {
  max-width: 680px;
  color: #40545c;
  font-size: 1.05rem;
}

.split-image {
  aspect-ratio: 16 / 10;
}

.sponsor-image {
  max-width: 620px;
  aspect-ratio: 16 / 9;
}

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

.check-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 226, 223, 0.8);
  border-radius: 8px;
  color: #263d46;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 19px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--eucalyptus);
  border-left: 2px solid var(--eucalyptus);
  transform: rotate(-45deg);
}

.process-section {
  background: var(--white);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.process-heading .section-heading {
  margin-bottom: 0;
}

.process-image {
  aspect-ratio: 16 / 10;
}

.process-list {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.process-list.expanded {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-list article {
  min-height: 280px;
  padding: 24px 24px 0;
  border-right: 1px solid var(--line);
}

.process-list article:last-child {
  border-right: 0;
}

.process-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 70px;
  background: var(--mist);
  color: var(--eucalyptus-dark);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.device-section {
  background: var(--paper);
}

.device-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1040px;
}

.device-tags span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #334953;
  font-weight: 600;
}

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

.mini-grid span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #2d444e;
  font-weight: 700;
}

.inline-list {
  align-self: stretch;
}

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

.insights-section .eyebrow,
.insights-section h2 {
  color: var(--white);
}

.insight-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.insight-list a {
  min-height: 172px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background: var(--navy);
  color: #eaf1f0;
  font-size: 1rem;
  font-weight: 700;
}

.insight-list a:hover,
.insight-list a:focus-visible {
  background: #244f63;
  outline: none;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 7vw, 96px);
  background: var(--white);
}

.contact-section h1 {
  max-width: 720px;
}

.contact-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: #43565e;
  font-size: 1.05rem;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  color: var(--muted);
  font-weight: 700;
}

.contact-details a {
  color: var(--eucalyptus-dark);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #2d444e;
  font-size: 0.88rem;
  font-weight: 700;
}

.hidden-field {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #cbd8d5;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--eucalyptus);
  outline: 3px solid rgba(31, 111, 102, 0.14);
}

.form-button {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.site-footer {
  display: grid;
  gap: 14px;
  padding: 38px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #d4dedc;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--mist);
  border-top: 1px solid var(--line);
}

.cta-band h2 {
  max-width: 820px;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

.resource-card {
  min-height: 250px;
}

.footer-brand {
  width: 164px;
  height: 44px;
  padding: 6px 8px;
  background: var(--white);
  border-radius: 8px;
}

.site-footer p {
  max-width: 780px;
  margin-bottom: 0;
}

.footer-email {
  width: max-content;
  color: var(--white);
  font-weight: 700;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: #d9c08a;
  outline: none;
}

.legal {
  color: #9fb0b5;
  font-size: 0.84rem;
}

.article {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 40px);
}

.article h1 {
  max-width: 880px;
}

.article-lede {
  max-width: 780px;
  color: #40545c;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.article-image {
  height: clamp(260px, 38vw, 430px);
  margin: clamp(30px, 5vw, 48px) 0 0;
}

.article section {
  margin-top: clamp(36px, 5vw, 58px);
}

.article h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
}

.article p {
  color: #40545c;
  font-size: 1.03rem;
}

.article-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #40545c;
}

.article-list li {
  padding-left: 4px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--eucalyptus-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--navy);
  outline: none;
}

.article-cta {
  display: grid;
  gap: 18px;
  margin-top: clamp(44px, 6vw, 70px);
  padding: 28px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-cta h2 {
  margin: 0;
}

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

  .hero-media {
    min-height: 430px;
  }

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

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

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

  .process-list article {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

@media (max-width: 820px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div,
  .trust-strip div + div {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip div:first-child {
    border-top: 0;
  }

  .intro-section,
  .sponsor-panel,
  .contact-section,
  .process-heading,
  .feature-split,
  .split-page-hero {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .process-list,
  .insight-list,
  .link-card-grid,
  .summary-grid,
  .resource-grid,
  .process-list.expanded {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .process-list article {
    min-height: auto;
    padding-bottom: 24px;
  }

  .process-list span {
    margin-bottom: 28px;
  }

  .insight-list a {
    min-height: 116px;
  }

  .page-hero {
    padding-top: 46px;
  }

  .cta-band {
    display: grid;
  }
}

@media (max-width: 600px) {
  .page-hero h1,
  .contact-section h1 {
    font-size: clamp(2.2rem, 9vw, 2.7rem);
  }
}

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 330px;
  }

  .contact-form {
    padding: 20px;
  }
}
