:root {
  color-scheme: light;
  --ink: #152123;
  --muted: #5c696b;
  --line: #dce6e4;
  --paper: #ffffff;
  --soft: #f3f8f6;
  --deep: #0b3b3d;
  --deep-2: #082829;
  --teal: #0f8e87;
  --green: #18a558;
  --amber: #f1a31b;
  --rose: #b64b62;
  --shadow: 0 18px 45px rgba(12, 39, 40, 0.14);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img,
svg {
  display: block;
}

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: 8px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--paper);
  color: var(--deep);
  padding: 10px 14px;
  font-weight: 700;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 40, 41, 0.9);
  backdrop-filter: blur(18px);
  color: #ffffff;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 32px rgba(8, 40, 41, 0.22);
}

.nav {
  width: min(100% - 32px, var(--container));
  min-height: 72px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  color: var(--deep);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.84);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #ffffff;
}

.nav-cta {
  border-radius: 8px;
  background: var(--amber);
  color: #281b02;
  padding: 10px 16px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  color: #ffffff;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 27, 28, 0.9), rgba(8, 40, 41, 0.66) 42%, rgba(8, 40, 41, 0.2) 76%),
    linear-gradient(180deg, rgba(5, 27, 28, 0.14), rgba(5, 27, 28, 0.36));
}

.hero-content {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding: 72px 0 64px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: 4.9rem;
  line-height: 1.02;
  font-weight: 900;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.15rem;
}

.hero-actions,
.final-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--amber);
  color: #281b02;
  box-shadow: 0 14px 32px rgba(241, 163, 27, 0.28);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 760px);
  margin: 38px 0 0;
}

.hero-stats div {
  min-height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  margin-bottom: 4px;
  color: #ffffff;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.trust-strip {
  background: var(--deep-2);
  color: #ffffff;
}

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

.trust-grid span {
  min-height: 68px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 92px 0;
}

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

.section-contrast {
  background: var(--deep);
  color: #ffffff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 14px;
  font-size: 3.2rem;
  line-height: 1.08;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.section-contrast .section-heading p,
.section-contrast .process-list p {
  color: rgba(255, 255, 255, 0.72);
}

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

.feature-card,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 26px;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #e6f7f3;
  color: var(--teal);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.feature-card h3,
.use-list h3,
.pricing-card h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.feature-card p,
.use-list p,
.pricing-card p,
.pricing-card li,
.faq-list p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  align-items: start;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--deep);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(15, 142, 135, 0.4);
  text-underline-offset: 6px;
}

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

.use-list article {
  min-height: 180px;
  border-left: 4px solid var(--teal);
  background: #ffffff;
  padding: 24px;
}

.use-list article:nth-child(2) {
  border-left-color: var(--green);
}

.use-list article:nth-child(3) {
  border-left-color: var(--amber);
}

.use-list article:nth-child(4) {
  border-left-color: var(--rose);
}

.pricing-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.featured-plan {
  border-color: rgba(15, 142, 135, 0.42);
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(12, 75, 75, 0.2);
}

.plan-tag {
  width: max-content;
  border-radius: 999px;
  background: #e6f7f3;
  color: var(--deep);
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 900;
}

.featured-plan .plan-tag {
  background: var(--amber);
  color: #281b02;
}

.plan-fit {
  min-height: 76px;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 8px 0 28px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 26px;
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.button-plan {
  width: 100%;
  margin-top: auto;
  border: 1px solid var(--deep);
  color: var(--deep);
  background: #ffffff;
}

.button-plan-primary {
  border-color: var(--deep);
  background: var(--deep);
  color: #ffffff;
}

.process {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 44px;
  align-items: start;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 18px;
  min-height: 118px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 20px 0;
}

.process-list span {
  grid-row: span 2;
  color: var(--amber);
  font-size: 1.25rem;
  font-weight: 900;
}

.process-list strong {
  font-size: 1.25rem;
}

.process-list p {
  margin-bottom: 0;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 4px 18px;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 900;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
  color: var(--deep);
}

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

.faq-list p {
  margin-bottom: 18px;
}

.final-cta {
  padding: 70px 0;
  background: #102f30;
  color: #ffffff;
}

.final-cta-inner {
  justify-content: space-between;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.site-footer {
  background: #061a1b;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-inner a {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(8, 40, 41, 0.98);
    padding: 8px;
  }

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

  .nav-links a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    padding: 10px 12px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 76px 0 48px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-stats,
  .trust-grid,
  .feature-grid,
  .pricing-grid,
  .split,
  .use-list,
  .process {
    grid-template-columns: 1fr;
  }

  .featured-plan {
    transform: none;
  }

  .trust-grid span {
    min-height: 58px;
  }
}

@media (max-width: 620px) {
  .container,
  .nav,
  .hero-content {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 66px 0;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .final-cta-inner {
    align-items: stretch;
  }

  .button,
  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .feature-card,
  .pricing-card {
    padding: 22px;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .process-list span {
    grid-row: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }

}
