:root {
  --ink: #102b37;
  --ink-muted: #516671;
  --navy: #082938;
  --navy-deep: #061e2a;
  --green: #26c69b;
  --green-dark: #10866b;
  --mint: #dbf7ee;
  --paper: #f5f8f7;
  --white: #ffffff;
  --line: #d7e2df;
  --error: #b42318;
  --success: #067647;
  --shadow: 0 24px 70px rgba(4, 34, 45, 0.14);
  --radius: 1.25rem;
  --container: 76rem;
  --header-height: 4.75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #f6c85f;
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--navy);
  background: var(--white);
  border-radius: 0.5rem;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #77e2c4;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: inherit;
  font-family: "Arial Narrow", "Roboto Condensed", ui-sans-serif, sans-serif;
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.75rem, 13vw, 4.65rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.15rem, 9vw, 3.8rem);
}

h3 {
  font-size: 1.35rem;
}

.section {
  padding-block: clamp(4.5rem, 10vw, 8rem);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 3rem;
}

.section-heading p:last-child,
.faq-intro > p:last-child,
.benefits-intro > p,
.lead-copy > p {
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.button {
  display: inline-flex;
  min-height: 3.3rem;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  color: var(--navy-deep);
  background: var(--green);
  border: 0;
  border-radius: 0.45rem;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: #54dab6;
  box-shadow: 0 10px 28px rgba(6, 39, 47, 0.2);
  transform: translateY(-2px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button-small {
  min-height: 2.7rem;
  padding: 0.65rem 1rem;
  font-size: 0.74rem;
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  background: rgba(6, 30, 42, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  width: 8.7rem;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 3rem;
  object-fit: contain;
}

.menu-toggle {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-content: center;
  gap: 0.3rem;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.4rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  display: none;
  padding: 1.1rem max(1rem, calc((100vw - var(--container)) / 2));
  background: var(--navy-deep);
  box-shadow: var(--shadow);
}

.main-nav[data-open="true"] {
  display: grid;
}

.main-nav > a:not(.button) {
  padding: 0.8rem 0;
  color: #dce9ec;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  text-decoration: none;
}

.main-nav .button {
  margin-top: 1rem;
}

.hero {
  overflow: hidden;
  padding: calc(var(--header-height) + 3.3rem) 0 2rem;
  color: var(--white);
  background: var(--navy-deep);
}

.hero-grid {
  display: grid;
  gap: 2.8rem;
}

.hero-copy {
  align-self: center;
}

.hero-copy .eyebrow {
  color: #75e2c2;
}

.hero-lead {
  max-width: 37rem;
  margin: 0 0 1.8rem;
  color: #cfdee2;
  font-size: 1.09rem;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.2rem;
}

.text-link {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 750;
  text-underline-offset: 0.3rem;
}

.price-note {
  max-width: 34rem;
  margin: 1.7rem 0 0;
  color: #adbec4;
  font-size: 0.84rem;
}

.price-note strong {
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(5, 28, 40, 0.82), rgba(5, 28, 40, 0.02) 58%);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero-visual-label {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-visual-label span {
  padding: 0.4rem 0.65rem;
  color: var(--white);
  background: rgba(6, 30, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-index {
  display: flex;
  margin-top: 2.2rem;
  align-items: center;
  gap: 0.7rem;
  color: #8aa0a8;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-index i {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.14);
}

.resources {
  background: var(--paper);
}

.resource-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.resource-list li {
  display: grid;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  gap: 0.6rem;
}

.resource-list h3,
.resource-list p {
  margin: 0;
}

.resource-list p {
  color: var(--ink-muted);
}

.resource-number {
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

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

.benefits-grid {
  display: grid;
  gap: 3rem;
}

.benefits-intro > p {
  color: #bdcdd1;
}

.benefits-intro .button {
  margin-top: 1rem;
}

.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-list li {
  display: grid;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 2.4rem 1fr;
  gap: 1rem;
  font-size: 1.05rem;
}

.benefit-list span {
  color: #75e2c2;
  font-size: 0.7rem;
  font-weight: 800;
}

.about-grid {
  display: grid;
  gap: 3.5rem;
}

.about-rail {
  position: relative;
  display: grid;
  gap: 2.5rem;
}

.about-rail::before {
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 0.32rem;
  width: 2px;
  content: "";
  background: var(--line);
}

.about-rail div {
  position: relative;
  padding-left: 2rem;
}

.about-rail div::before {
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--green-dark);
}

.about-rail strong,
.about-rail span {
  display: block;
}

.about-rail strong {
  font-size: 2.1rem;
  line-height: 1.1;
}

.about-rail span {
  max-width: 14rem;
  margin-top: 0.45rem;
  color: var(--ink-muted);
}

.about-copy p:not(.eyebrow) {
  color: var(--ink-muted);
}

.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.testimonial {
  display: flex;
  min-height: 100%;
  padding: 1.4rem;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-person img {
  width: 3.6rem;
  height: 3.6rem;
  flex: 0 0 3.6rem;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.testimonial-person h3,
.testimonial-person p {
  margin: 0;
}

.testimonial-person h3 {
  font-size: 1rem;
}

.testimonial-person p {
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.testimonial blockquote {
  margin: 1.4rem 0 0;
  color: #324b55;
  font-size: 0.96rem;
}

.pricing {
  padding-block: 0;
  background: var(--paper);
}

.pricing-panel {
  display: grid;
  padding: clamp(2rem, 6vw, 4rem);
  align-items: center;
  background: var(--mint);
  border: 1px solid #bde9dc;
  border-radius: var(--radius);
  gap: 2rem;
}

.pricing-panel h2 {
  max-width: 46rem;
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 8vw, 3.3rem);
}

.pricing-panel h2 strong {
  color: var(--green-dark);
}

.pricing-panel p:last-child {
  margin: 0;
  color: var(--ink-muted);
}

.faq-grid {
  display: grid;
  gap: 3rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.4rem 2.4rem 1.4rem 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  width: 1.7rem;
  height: 1.7rem;
  content: "+";
  color: var(--navy);
  background: var(--mint);
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1.55rem;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -0.25rem 0 1.5rem;
  padding-right: 1rem;
  color: var(--ink-muted);
}

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

.lead-grid {
  display: grid;
  gap: 3rem;
}

.lead-copy > p {
  color: #bfd0d5;
}

.lead-copy ul {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.8rem;
}

.lead-copy li {
  position: relative;
  padding-left: 1.7rem;
  color: #dce7ea;
}

.lead-copy li::before {
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.lead-form {
  position: relative;
  display: grid;
  padding: clamp(1.2rem, 5vw, 2rem);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  gap: 1rem;
}

.form-heading {
  margin-bottom: 0.35rem;
}

.form-heading span {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
}

.form-heading p {
  margin: 0.2rem 0 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.field {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.field label {
  font-size: 0.8rem;
  font-weight: 750;
}

.field input,
.field select {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.75rem 0.8rem;
  color: var(--ink);
  background: #fbfdfc;
  border: 1px solid #baccc7;
  border-radius: 0.4rem;
}

.field input::placeholder {
  color: #82949c;
}

.field input:focus,
.field select:focus {
  border-color: var(--green-dark);
  outline: 3px solid rgba(38, 198, 155, 0.2);
}

.field [aria-invalid="true"] {
  border-color: var(--error);
}

.form-submit {
  margin-top: 0.35rem;
}

.form-submit .button {
  width: 100%;
}

.privacy-note {
  margin: 0.7rem 0 0;
  color: var(--ink-muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.4rem;
  margin: 0.4rem 0 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-status[data-state="error"] {
  color: var(--error);
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.site-footer {
  padding-block: 3rem;
  color: #bdcbd0;
  background: #041720;
}

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

.footer-grid img {
  width: 8rem;
  height: 3rem;
  object-fit: contain;
}

.footer-grid p {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
}

.footer-grid strong {
  color: var(--white);
}

.copyright {
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.not-found-page {
  display: grid;
  min-height: 100vh;
  margin: 0;
  padding: 2rem;
  place-items: center;
  color: var(--white);
  background: var(--navy-deep);
}

.not-found {
  width: min(100%, 42rem);
}

.not-found img {
  width: 9rem;
  height: auto;
}

.not-found h1 {
  margin: 0.8rem 0 1rem;
}

.not-found p {
  color: #c4d3d7;
}

.not-found .button {
  margin-top: 1rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 42rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
  }

  .section-heading-split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
    gap: 3rem;
  }

  .resource-list li {
    grid-template-columns: 3.2rem minmax(11rem, 0.7fr) minmax(0, 1.3fr);
    gap: 1.3rem;
  }

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

  .pricing-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (min-width: 64rem) {
  :root {
    --header-height: 5.25rem;
  }

  .menu-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    display: flex;
    padding: 0;
    align-items: center;
    background: transparent;
    box-shadow: none;
    gap: 1.25rem;
  }

  .main-nav > a:not(.button) {
    padding: 0.4rem 0;
    border: 0;
    font-size: 0.8rem;
  }

  .main-nav > a:not(.button):hover {
    color: #75e2c2;
  }

  .main-nav .button {
    margin: 0 0 0 0.4rem;
  }

  .hero {
    min-height: 47rem;
    padding-top: calc(var(--header-height) + 4rem);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1.08fr);
    gap: 4rem;
  }

  .hero-visual {
    min-height: 36rem;
  }

  .benefits-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
    gap: 7rem;
  }

  .about-grid {
    grid-template-columns: 0.65fr 1.35fr;
    gap: 7rem;
  }

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

  .faq-grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 7rem;
  }

  .faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    align-self: start;
  }

  .lead-grid {
    grid-template-columns: minmax(0, 0.8fr) minmax(32rem, 1.2fr);
    align-items: start;
    gap: 6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr auto auto;
  }

  .copyright {
    padding: 0 0 0 2rem;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
