@font-face {
  font-family: "IRIS Inter";
  src: url("./inter-variable.bff0f2e9.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "IRIS Inter";
  src: url("./inter-italic.e020c186.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --volterra-color-teal: #27abae;
  --volterra-color-deep-teal: #167c80;
  --volterra-color-pale-teal: #c3d6d3;
  --volterra-color-deep-green: #002d2d;
  --volterra-color-gold: #c58a1b;
  --volterra-color-coral: #fbc8bc;
  --volterra-color-butter: #ffedb2;
  --volterra-color-lavender: #d3cde6;
  --volterra-color-sage: #c3e4d5;
  --volterra-color-sky: #9fbbe2;
  --volterra-color-peach: #ffdeac;
  --volterra-color-surface: #ffffff;
  --volterra-color-surface-highlighted: #f4f8f8;
  --volterra-color-surface-soft: #f7f8f9;
  --volterra-color-border: #c3d6d3;
  --volterra-color-border-subtle: #e5e7eb;
  /* Artwork reference only; page text uses Deep Green. */
  --volterra-logo-color-dark: #132d32;
  --volterra-gradient-signature: linear-gradient(
    90deg,
    var(--volterra-color-sky) 0%,
    var(--volterra-color-sage) 20%,
    var(--volterra-color-peach) 40%,
    var(--volterra-color-coral) 60%,
    var(--volterra-color-butter) 80%,
    var(--volterra-color-lavender) 100%
  );
  --font-sans: "IRIS Inter", Inter, Arial, sans-serif;
  --content-max: 75rem;
  --radius: 0.25rem;
  --shadow-xs: 0 1px 2px rgb(0 45 45 / 0.06);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background: var(--volterra-color-surface-soft);
}

body {
  min-width: 20rem;
  min-height: 100vh;
  margin: 0;
  background: var(--volterra-color-surface-soft);
  color: var(--volterra-color-deep-green);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-optical-sizing: auto;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

p,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--volterra-color-deep-green);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1.02;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

::selection {
  background: var(--volterra-color-sage);
  color: var(--volterra-color-deep-green);
}

:focus-visible {
  outline: 3px solid var(--volterra-color-deep-teal);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--volterra-color-surface);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  translate: 0 -200%;
  border-radius: var(--radius);
  background: var(--volterra-color-deep-green);
  color: #ffffff;
  padding: 0.65rem 0.9rem;
}

.skip-link:focus {
  translate: 0;
}

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

.signature-rule {
  height: 0.1875rem;
  background: var(--volterra-gradient-signature);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--volterra-color-border);
  background: rgb(255 255 255 / 0.96);
  backdrop-filter: blur(12px);
}

.site-header .signature-rule {
  position: absolute;
  inset: 0 0 auto;
}

.nav {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  gap: 1.5rem;
  padding-top: 0.1875rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--volterra-color-deep-green);
  text-decoration: none;
}

.brand-logo {
  width: 10rem;
  height: auto;
}

.brand-product {
  margin-left: 0.75rem;
  border-left: 1px solid var(--volterra-color-border);
  padding-left: 0.75rem;
  color: var(--volterra-color-deep-green);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  border-radius: 0.5rem;
  padding: 0.5rem 0.65rem;
  color: var(--volterra-color-deep-green);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--volterra-color-surface-highlighted);
}

.nav-links .button {
  color: #ffffff;
}

.button,
.button-secondary,
.text-link {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    translate 160ms ease;
}

.button {
  border: 1px solid var(--volterra-color-deep-green);
  background: var(--volterra-color-deep-green);
  color: #ffffff;
  padding: 0.65rem 0.9rem;
}

.button:hover {
  border-color: #174646;
  background: #174646;
}

.button-secondary {
  border: 1px solid var(--volterra-color-border);
  background: var(--volterra-color-surface);
  box-shadow: var(--shadow-xs);
  color: var(--volterra-color-deep-green);
  padding: 0.65rem 0.9rem;
}

.button-secondary:hover {
  background: var(--volterra-color-surface-highlighted);
}

.text-link {
  min-height: auto;
  justify-content: flex-start;
  color: var(--volterra-color-deep-green);
  padding-block: 0.35rem;
}

.text-link:hover {
  text-decoration: underline;
}

.arrow-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.eyebrow {
  margin-bottom: 0;
  color: var(--volterra-color-deep-teal);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.status-badge {
  display: inline-flex;
  min-height: 1.25rem;
  align-items: center;
  border: 1px solid var(--volterra-color-border);
  border-radius: 999px;
  background: var(--volterra-color-surface);
  color: var(--volterra-color-deep-green);
  padding: 0.15rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}

.hero {
  border-bottom: 1px solid var(--volterra-color-border);
  background: var(--volterra-color-surface);
}

.hero-grid {
  display: grid;
  align-items: end;
  gap: 3rem;
  padding-block: 6rem;
  grid-template-columns: minmax(0, 1fr) 22rem;
}

.hero-labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  max-width: 56rem;
}

.hero-lede {
  max-width: 43rem;
  margin-bottom: 2rem;
  color: var(--volterra-color-deep-teal);
  font-size: 1.125rem;
  line-height: 1.75;
}

.trust-panel {
  border-left: 2px solid var(--volterra-color-deep-teal);
  background: var(--volterra-color-surface-highlighted);
  padding: 1.5rem;
}

.trust-icon,
.card-icon,
.step-number {
  display: inline-flex;
  width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--volterra-color-deep-green);
}

.trust-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--volterra-color-deep-teal);
}

.trust-icon svg,
.card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.trust-panel h2 {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
}

.trust-panel p {
  margin-bottom: 0;
  color: var(--volterra-color-deep-teal);
  font-size: 0.875rem;
  line-height: 1.65;
}

.section {
  padding-block: 5rem;
}

.section-white {
  background: var(--volterra-color-surface);
}

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

.section-highlighted {
  border-block: 1px solid var(--volterra-color-border);
  background: var(--volterra-color-surface-highlighted);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.65fr);
}

.section-heading.compact {
  display: block;
  max-width: 43rem;
}

.section-heading h2 {
  max-width: 43rem;
  margin: 0.75rem 0 0;
}

.section-heading > p {
  margin-bottom: 0;
  color: var(--volterra-color-deep-teal);
  line-height: 1.7;
}

.feature-grid,
.pricing-grid,
.process-grid,
.fact-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

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

.feature-card,
.price-card,
.process-step,
.fact-card {
  border: 1px solid var(--volterra-color-border-subtle);
  border-radius: var(--radius);
  background: var(--volterra-color-surface);
  box-shadow: var(--shadow-xs);
}

.feature-card {
  min-height: 17rem;
  padding: 1.5rem;
  transition: background-color 160ms ease;
}

.feature-card:hover {
  background: var(--volterra-color-surface-highlighted);
}

.feature-card h3 {
  margin: 1.25rem 0 1rem;
  font-size: 1.5rem;
}

.feature-card p {
  max-width: 36rem;
  margin-bottom: 1rem;
  color: var(--volterra-color-deep-teal);
  line-height: 1.65;
}

.icon-sky {
  background: var(--volterra-color-sky);
}

.icon-sage {
  background: var(--volterra-color-sage);
}

.icon-peach {
  background: var(--volterra-color-peach);
}

.icon-lavender {
  background: var(--volterra-color-lavender);
}

.section-dark {
  border-block: 1px solid var(--volterra-color-border);
  background: var(--volterra-color-deep-green);
  color: #ffffff;
}

.dark-band {
  display: grid;
  align-items: start;
  gap: 4rem;
  padding-block: 4rem;
  grid-template-columns: 0.8fr 1.2fr;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-dark .eyebrow {
  color: var(--volterra-color-pale-teal);
}

.dark-band-copy {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dark-band-copy h3 {
  font-size: 1.125rem;
}

.dark-band-copy p {
  margin-bottom: 0;
  color: rgb(255 255 255 / 0.75);
  font-size: 0.875rem;
  line-height: 1.7;
}

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

.price-card {
  position: relative;
  display: flex;
  min-height: 26rem;
  flex-direction: column;
  padding: 1.75rem;
}

.price-card.featured {
  border-top: 3px solid var(--volterra-color-gold);
  padding-top: calc(1.75rem - 2px);
}

.decision-label {
  width: fit-content;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--volterra-color-butter);
  color: var(--volterra-color-deep-green);
  padding: 0.2rem 0.55rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: 1.5rem;
}

.price {
  margin: 0.5rem 0 0;
  color: var(--volterra-color-deep-green);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
}

.price small {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0;
}

.muted {
  color: var(--volterra-color-deep-teal);
}

.price-list {
  margin: 1.5rem 0 2rem;
  padding-left: 1.2rem;
  color: var(--volterra-color-deep-green);
}

.price-list li + li {
  margin-top: 0.55rem;
}

.price-card .text-link {
  margin-top: auto;
}

.fine-print {
  max-width: 64rem;
  margin: 1.5rem 0 0;
  color: var(--volterra-color-deep-teal);
  font-size: 0.8125rem;
  line-height: 1.7;
}

.fine-print a,
.legal-copy a,
.support-copy a {
  color: var(--volterra-color-deep-teal);
  font-weight: 500;
}

.support-copy .button {
  color: #ffffff;
}

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

.process-step {
  padding: 1.5rem;
}

.step-number {
  background: var(--volterra-color-sage);
  font-size: 0.875rem;
  font-weight: 600;
}

.process-step h3 {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.process-step p {
  margin-bottom: 0;
  color: var(--volterra-color-deep-teal);
  font-size: 0.875rem;
  line-height: 1.65;
}

.billing-note,
.notice {
  border-left: 2px solid var(--volterra-color-deep-teal);
  background: var(--volterra-color-surface-highlighted);
  padding: 1.25rem 1.5rem;
}

.billing-note {
  margin-top: 1.25rem;
}

.billing-note p,
.notice p {
  margin-bottom: 0;
}

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

.fact-card {
  padding: 1.25rem;
}

.fact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--volterra-color-deep-teal);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fact-card p {
  margin-bottom: 0;
}

.support-panel {
  display: grid;
  gap: 3rem;
  border-left: 2px solid var(--volterra-color-deep-teal);
  background: var(--volterra-color-surface-highlighted);
  padding: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.7fr);
}

.support-panel h2 {
  margin-top: 0.75rem;
}

.support-panel p {
  color: var(--volterra-color-deep-teal);
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li + li {
  margin-top: 1rem;
}

.contact-list strong {
  display: block;
  color: var(--volterra-color-deep-green);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-hero {
  border-bottom: 1px solid var(--volterra-color-border);
  background: var(--volterra-color-surface);
  padding-block: 4.5rem;
}

.legal-hero .eyebrow {
  margin-bottom: 1rem;
}

.legal-hero h1 {
  max-width: 48rem;
  margin-bottom: 1.25rem;
}

.legal-hero p:not(.eyebrow) {
  max-width: 45rem;
  margin-bottom: 0.75rem;
  color: var(--volterra-color-deep-teal);
  font-size: 1rem;
  line-height: 1.7;
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: 4rem;
  grid-template-columns: 14rem minmax(0, 48rem);
}

.legal-nav {
  position: sticky;
  top: 7rem;
  display: grid;
  gap: 0.25rem;
  border-left: 2px solid var(--volterra-color-pale-teal);
  padding-left: 1rem;
}

.legal-nav strong {
  margin-bottom: 0.5rem;
  color: var(--volterra-color-deep-teal);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-nav a {
  border-radius: var(--radius);
  padding: 0.45rem 0.55rem;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  background: var(--volterra-color-surface-highlighted);
}

.legal-copy {
  min-width: 0;
}

.legal-copy > :first-child {
  margin-top: 0;
}

.legal-copy h2 {
  margin: 3rem 0 1rem;
  padding-top: 0.25rem;
  font-size: 1.65rem;
}

.legal-copy h3 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.legal-copy p,
.legal-copy li {
  color: var(--volterra-color-deep-green);
  line-height: 1.75;
}

.legal-copy ul {
  padding-left: 1.25rem;
}

.legal-copy li + li {
  margin-top: 0.65rem;
}

.legal-copy .notice {
  margin-block: 1.25rem;
}

.site-footer {
  border-top: 1px solid var(--volterra-color-border);
  background: var(--volterra-color-surface);
}

.footer-grid {
  display: grid;
  align-items: end;
  gap: 3rem;
  padding-block: 2.5rem;
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.footer-brand {
  max-width: 37rem;
}

.footer-brand .brand-logo {
  width: 10rem;
}

.footer-note {
  max-width: 37rem;
  margin: 1rem 0 0;
  color: var(--volterra-color-deep-teal);
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 0.35rem;
  align-content: end;
  font-size: 0.875rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-heading {
  margin-bottom: 0.5rem;
  color: var(--volterra-color-deep-teal);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid var(--volterra-color-border-subtle);
  padding-block: 1rem;
  color: var(--volterra-color-deep-teal);
  font-size: 0.75rem;
}

.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  border-top: 0.1875rem solid transparent;
  background:
    linear-gradient(
        var(--volterra-color-surface),
        var(--volterra-color-surface)
      )
      padding-box,
    var(--volterra-gradient-signature) border-box;
  padding-block: 4rem;
}

.error-content {
  max-width: 46rem;
}

.error-content .brand {
  margin-bottom: 4rem;
}

.error-content h1 {
  margin-top: 1rem;
}

.error-content .hero-lede {
  margin-bottom: 2rem;
}

@media (min-width: 48rem) {
  .shell {
    width: min(calc(100% - 4rem), var(--content-max));
  }

  .brand-logo {
    width: 11rem;
  }
}

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

  .hero-copy {
    max-width: 50rem;
  }

  .trust-panel {
    max-width: 42rem;
  }

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

  .pricing-grid,
  .fact-grid {
    grid-template-columns: 1fr;
  }

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

  .price-card .text-link {
    margin-top: 0;
  }
}

@media (max-width: 48rem) {
  .site-header {
    position: static;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-block: 0.75rem 0.5rem;
  }

  .nav-links {
    order: 2;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    border-top: 1px solid var(--volterra-color-border-subtle);
    padding-top: 0.35rem;
  }

  .nav-links a {
    padding: 0.45rem 0.55rem;
    font-size: 0.8125rem;
  }

  .nav-links .button {
    border-color: transparent;
    background: transparent;
    color: var(--volterra-color-deep-green);
  }

  .hero-grid {
    gap: 3rem;
    padding-block: 4rem;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

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

  .actions {
    flex-direction: column;
  }

  .actions .button,
  .actions .button-secondary {
    width: 100%;
  }

  .section {
    padding-block: 4rem;
  }

  .section-heading,
  .feature-grid,
  .dark-band,
  .dark-band-copy,
  .support-panel,
  .legal-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .dark-band,
  .support-panel,
  .legal-layout {
    gap: 2.5rem;
  }

  .feature-card {
    min-height: 0;
  }

  .dark-band {
    padding-block: 4rem;
  }

  .legal-hero {
    padding-block: 3.5rem;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    border-left: 0;
    border-bottom: 1px solid var(--volterra-color-border);
    padding: 0 0 1rem;
  }

  .legal-nav strong {
    width: 100%;
  }

  .footer-grid {
    align-items: start;
    gap: 2rem;
  }
}

@media (max-width: 34rem) {
  .brand-logo,
  .footer-brand .brand-logo {
    width: 8.5rem;
  }

  .brand-product {
    margin-left: 0.55rem;
    padding-left: 0.55rem;
    font-size: 0.75rem;
  }

  .hero-labels {
    align-items: flex-start;
    flex-direction: column;
  }

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

@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;
  }
}
