:root {
  color-scheme: light;
  --background: #f4f6f8;
  --surface: #ffffff;
  --surface-soft: #f8fafb;
  --text: #111827;
  --muted: #5d6878;
  --line: #d8e0e7;
  --line-strong: #c2ccd6;
  --accent: #256f68;
  --accent-dark: #164b47;
  --accent-soft: #e5f2ef;
  --gold: #b7791f;
  --ink: #0f172a;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
}

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

a:hover {
  text-decoration: underline;
}

.site-header,
.site-footer,
.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand,
nav,
.site-footer span:last-child,
.hero-actions,
.assurance-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  color: var(--ink);
  font-weight: 760;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #ffffff;
  background: var(--accent-dark);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(22, 75, 71, 0.16);
  font-size: 13px;
  font-weight: 800;
}

nav,
.site-footer span:last-child {
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.section-band {
  position: relative;
  padding: 78px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.section-band.light {
  background: var(--surface-soft);
}

.section-band.dark {
  background: var(--ink);
  color: #ffffff;
}

.hero {
  overflow: hidden;
  padding: 86px 0 78px;
  background: #edf3f3;
  border-top: 1px solid var(--line);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 111, 104, 0.38), transparent);
  content: "";
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.86;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dark .eyebrow {
  color: #9fd8cf;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  font-size: 64px;
  font-weight: 820;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  font-weight: 760;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 760;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button.primary {
  color: #ffffff;
  background: var(--accent-dark);
  box-shadow: 0 12px 26px rgba(22, 75, 71, 0.18);
}

.button.secondary {
  color: var(--accent-dark);
  background: #ffffff;
  border: 1px solid var(--line-strong);
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.assurance-row {
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.assurance-row li {
  padding: 7px 11px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 720;
}

.checkout-preview {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glare-x: 50%;
  --glare-y: 50%;
  --reveal-y: 0px;
  --reveal-scale: 1;
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(194, 204, 214, 0.78);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.13);
  transform:
    perspective(1100px)
    translateY(var(--reveal-y))
    scale(var(--reveal-scale))
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
  will-change: transform;
}

.checkout-preview::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.48) 42%,
      transparent 64%
    ),
    radial-gradient(
      circle at var(--glare-x) var(--glare-y),
      rgba(255, 255, 255, 0.74),
      transparent 34%
    );
  border-radius: inherit;
  content: "";
  opacity: 0.32;
  pointer-events: none;
}

.checkout-preview:hover {
  box-shadow: 0 36px 88px rgba(15, 23, 42, 0.18);
}

.preview-header,
.preview-total,
.preview-steps li,
.preview-footer {
  display: flex;
  align-items: center;
}

.preview-header {
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.status-dot {
  width: 9px;
  height: 9px;
  background: #2f9e44;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(47, 158, 68, 0.38);
  animation: statusPulse 2.2s ease-out infinite;
}

.preview-total {
  position: relative;
  overflow: hidden;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding: 22px;
  background: var(--ink);
  color: #ffffff;
  border-radius: 8px;
}

.preview-total::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.11) 42%,
    transparent 66%
  );
  content: "";
  transform: translateX(-100%);
  animation: scanSweep 4.8s ease-in-out infinite;
}

.preview-total span {
  color: #cbd5e1;
  font-size: 14px;
}

.preview-total strong {
  font-size: 20px;
}

.preview-lines {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.line {
  display: block;
  height: 10px;
  background: #d9e2e8;
  border-radius: 6px;
  transform-origin: left center;
  animation: lineBreathe 3.8s ease-in-out infinite;
}

.line.long {
  width: 96%;
}

.line.medium {
  width: 76%;
  animation-delay: 180ms;
}

.line.short {
  width: 56%;
  animation-delay: 360ms;
}

.preview-steps {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-steps li {
  align-items: flex-start;
  gap: 12px;
}

.preview-steps span {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.preview-steps p {
  color: var(--muted);
  font-size: 14px;
}

.preview-footer {
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
}

.preview-lock {
  padding: 5px 9px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 8px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p,
.split > div:first-child p,
.panel p,
.process-list p,
.policy-links span,
.document p,
.document li {
  color: var(--muted);
}

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

.panel {
  position: relative;
  overflow: hidden;
  min-height: 258px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease;
}

.panel::after,
.policy-links a::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  pointer-events: none;
  transition: border-color 180ms ease;
}

.panel:hover,
.policy-links a:hover,
.process-list article:hover,
.policy-grid article:hover {
  transform: translateY(-2px);
}

.panel:hover::after,
.policy-links a:hover::after {
  border-color: rgba(37, 111, 104, 0.34);
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 840;
}

.panel p {
  margin-top: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.split > div:first-child p {
  margin-top: 18px;
  font-size: 18px;
}

.process-list {
  display: grid;
  gap: 13px;
}

.process-list article {
  padding: 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.process-list article:hover {
  border-color: var(--line-strong);
}

.process-list span {
  display: block;
  margin-bottom: 9px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.process-list p {
  margin-top: 8px;
}

.compliance .section-heading {
  max-width: 860px;
}

.dark h2 {
  color: #ffffff;
}

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

.policy-grid article {
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.policy-grid article:hover {
  background: rgba(255, 255, 255, 0.1);
}

.policy-grid ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: #d9e4ea;
}

.policy-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.policy-links {
  display: grid;
  gap: 12px;
}

.policy-links a {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.policy-links a:hover {
  border-color: var(--line-strong);
  text-decoration: none;
}

.policy-links strong {
  color: var(--ink);
}

.policy-links span {
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 34px;
  color: var(--muted);
  font-size: 14px;
}

.document {
  max-width: 860px;
  margin: 0 auto;
  padding: 68px 20px 92px;
}

.document h1 {
  font-size: 52px;
  font-weight: 820;
}

.document h2 {
  margin-top: 38px;
  font-size: 25px;
}

.document p,
.document ul {
  margin-top: 14px;
}

.document ul {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.motion-ready [data-reveal]:not(.checkout-preview) {
  animation: revealUp 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .checkout-preview[data-reveal] {
  animation: fadeOnly 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .feature-grid [data-reveal]:nth-child(2),
.motion-ready .policy-grid [data-reveal]:nth-child(2) {
  animation-delay: 90ms;
}

.motion-ready .feature-grid [data-reveal]:nth-child(3) {
  animation-delay: 180ms;
}

@keyframes revealUp {
  from {
    transform: translateY(28px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes fadeOnly {
  from {
    filter: blur(1px);
  }

  to {
    filter: blur(0);
  }
}

@keyframes statusPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 158, 68, 0.38);
  }

  70% {
    box-shadow: 0 0 0 11px rgba(47, 158, 68, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(47, 158, 68, 0);
  }
}

@keyframes scanSweep {
  0%,
  42% {
    transform: translateX(-100%);
  }

  64%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes lineBreathe {
  0%,
  100% {
    transform: scaleX(0.92);
  }

  50% {
    transform: scaleX(1);
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-inner,
  .split,
  .policy-strip {
    grid-template-columns: 1fr;
  }

  .checkout-preview {
    max-width: 560px;
  }

  .feature-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header,
  .site-footer,
  .section-inner {
    width: min(100% - 28px, 1120px);
  }

  .section-band {
    padding: 56px 0;
  }

  .hero {
    padding: 58px 0 56px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 20px;
  }

  .lead {
    font-size: 18px;
  }

  .checkout-preview,
  .panel,
  .process-list article,
  .policy-grid article,
  .policy-links a {
    padding: 20px;
  }

  .preview-total {
    align-items: flex-start;
    flex-direction: column;
  }

  .preview-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .document {
    padding-top: 54px;
  }

  .document h1 {
    font-size: 36px;
  }
}

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

  [data-reveal],
  [data-reveal]:not(.checkout-preview),
  .checkout-preview[data-reveal] {
    --reveal-y: 0px;
    --reveal-scale: 1;
    opacity: 1;
    transform: none;
  }

  .checkout-preview {
    transform: none !important;
  }

  .hero-canvas {
    display: none;
  }
}
