:root {
  --navy: #0F265D;
  --navy-deep: #071539;
  --navy-soft: #183875;
  --sky: #2DB4EE;
  --sky-light: #8DE0FF;
  --white: #FFFFFF;
  --ink: #10213F;
  --muted: #64748B;
  --line: rgba(15, 38, 93, 0.12);
  --shadow: 0 22px 70px rgba(15, 38, 93, 0.18);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  color: var(--navy);
  background: var(--sky-light);
}

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

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

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

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 13vw, 6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 12vw, 5.1rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.06rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  padding: 14px 16px;
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 38px rgba(7, 21, 57, 0.12);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1120px, 100%);
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand-link {
  width: 152px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 35px rgba(7, 21, 57, 0.12);
}

.brand-logo,
.footer-logo {
  width: 100%;
  height: auto;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  will-change: transform;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px) scale(1.02);
}

.btn-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--sky), var(--sky-light));
  box-shadow: 0 16px 36px rgba(45, 180, 238, 0.36);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 50px rgba(45, 180, 238, 0.5);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

.nav-cta {
  min-width: 132px;
  padding-inline: 22px;
}

.section-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-padding {
  padding: 86px 0;
}

main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-dark {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 12%, rgba(45, 180, 238, 0.3), transparent 30%),
    linear-gradient(145deg, var(--navy-deep), var(--navy) 56%, #102F72);
  overflow: hidden;
}

.section-dark p,
.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.section-light {
  background: linear-gradient(180deg, #FFFFFF, #F5FAFF);
}

.hero {
  min-height: 100svh;
  padding: 112px 0 108px;
  display: flex;
  align-items: center;
}

.hero-inner {
  display: grid;
  gap: 28px;
}

.hero-copy {
  padding-top: 20px;
}

.hero-subtitle {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-row .btn {
  flex: 1 1 160px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--navy);
  background: rgba(141, 224, 255, 0.95);
}

.section-kicker {
  color: var(--sky);
  background: rgba(45, 180, 238, 0.1);
}

.section-dark .section-kicker {
  color: var(--navy);
  background: rgba(141, 224, 255, 0.96);
}

.hero-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.panel-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(45, 180, 238, 0.35);
  filter: blur(12px);
}

.panel-label {
  position: relative;
  margin-bottom: 20px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.hero-metric {
  position: relative;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-metric strong {
  display: block;
  font-size: 1.65rem;
  line-height: 1;
}

.hero-metric span {
  color: rgba(255, 255, 255, 0.72);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.78;
  pointer-events: none;
  animation: floatOrb 9s ease-in-out infinite alternate;
}

.orb-one {
  width: 230px;
  height: 230px;
  right: -90px;
  top: 120px;
  background: rgba(45, 180, 238, 0.34);
}

.orb-two {
  width: 170px;
  height: 170px;
  left: -70px;
  bottom: 90px;
  background: rgba(141, 224, 255, 0.22);
  animation-delay: -3s;
}

.orb-three {
  width: 240px;
  height: 240px;
  right: -90px;
  bottom: 20px;
  background: rgba(45, 180, 238, 0.26);
}

.orb-four {
  width: 280px;
  height: 280px;
  left: 50%;
  bottom: -120px;
  background: rgba(45, 180, 238, 0.3);
  transform: translateX(-50%);
}

.mesh-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  animation: driftGrid 18s linear infinite;
}

.section-wave-bottom::after,
.section-wave-top::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 64px;
  z-index: 1;
  background: var(--white);
}

.section-wave-bottom::after {
  bottom: -1px;
  clip-path: polygon(0 42%, 16% 62%, 34% 45%, 52% 70%, 72% 48%, 100% 66%, 100% 100%, 0 100%);
}

.section-wave-top::before {
  top: -1px;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 82% 36%, 62% 58%, 42% 34%, 20% 56%, 0 40%);
}

.diagonal-top {
  position: relative;
  background: #F5FAFF;
}

.diagonal-top::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 20%, 0 100%);
}

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

.section-heading p {
  font-size: 1.03rem;
}

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

.perk-card,
.trust-card,
.step-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(15, 38, 93, 0.1);
}

.perk-card {
  min-height: 224px;
  padding: 18px;
  border: 1px solid rgba(15, 38, 93, 0.08);
}

.perk-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--navy);
  background: linear-gradient(135deg, rgba(45, 180, 238, 0.18), rgba(141, 224, 255, 0.36));
  font-size: 1.28rem;
  font-weight: 800;
}

.perk-card p,
.trust-card p,
.step-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.center-cta {
  margin-top: 34px;
  text-align: center;
}

.job-card {
  padding: 24px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.job-card-header {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.job-card-header h2 {
  margin-bottom: 6px;
}

.job-card-header p {
  margin-bottom: 0;
  font-weight: 800;
  color: var(--navy);
}

.job-facts {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
}

.job-facts div {
  padding: 16px;
  border-radius: 16px;
  background: #F4F9FE;
}

.job-facts dt {
  margin-bottom: 3px;
  font-size: 0.73rem;
  font-weight: 800;
  color: var(--sky);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.job-facts dd {
  margin: 0;
  font-weight: 700;
}

.job-lists {
  display: grid;
  gap: 24px;
}

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

.clean-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 6px rgba(45, 180, 238, 0.13);
}

.stats-grid {
  display: grid;
  gap: 14px;
}

.stat-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--sky-light);
  font-size: clamp(2.8rem, 14vw, 4.8rem);
  line-height: 0.9;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.growth-note {
  max-width: 780px;
  margin: 28px auto 0;
  text-align: center;
}

.steps {
  display: grid;
  gap: 16px;
}

.step-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(45, 180, 238, 0.12);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--sky);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.carrier-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.carrier-strip span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(15, 38, 93, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(15, 38, 93, 0.07);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-grid {
  margin-bottom: 16px;
}

.trust-card {
  min-height: 164px;
  padding: 20px;
}

.faq-inner {
  max-width: 880px;
}

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

.faq-item {
  border: 1px solid rgba(15, 38, 93, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(15, 38, 93, 0.08);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 0;
  color: var(--navy);
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(45, 180, 238, 0.16);
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 10px;
  height: 2px;
  border-radius: 2px;
  background: var(--sky);
  transition: transform 180ms ease;
}

.faq-question span::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] span::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 20px;
}

.final-cta {
  text-align: center;
}

.final-cta .section-inner {
  max-width: 860px;
}

.final-cta p {
  max-width: 660px;
  margin: 0 auto 28px;
  font-size: 1.06rem;
}

.btn-large {
  min-width: 220px;
}

.site-footer {
  padding: 42px 0;
  background: #071539;
  color: var(--white);
  text-align: center;
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.footer-logo {
  width: 172px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
}

.site-footer p {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.site-footer small {
  color: rgba(255, 255, 255, 0.62);
}

.reveal {
  opacity: 0;
  transform: translateY(26px) scale(0.98);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-1 {
  transition-delay: 120ms;
}

@keyframes floatOrb {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-22px, 24px, 0) scale(1.08);
  }
}

@keyframes driftGrid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 84px 84px, 84px 84px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 390px) {
  .section-inner {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    padding-inline: 12px;
  }

  .brand-link {
    width: 138px;
  }

  .nav-cta {
    min-width: 120px;
    padding-inline: 16px;
    font-size: 0.9rem;
  }

  .perk-card {
    min-height: 242px;
    padding: 16px;
  }
}

@media (min-width: 700px) {
  .section-padding {
    padding: 112px 0;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
    align-items: center;
  }

  .button-row .btn {
    flex: 0 0 auto;
  }

  .perks-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .job-card {
    padding: 36px;
  }

  .job-card-header {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .job-facts {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .job-lists,
  .stats-grid,
  .steps,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (min-width: 1040px) {
  .hero {
    min-height: 760px;
  }

  .hero-panel {
    transform: translateY(22px);
  }
}
