:root {
  color-scheme: light;
  --ink: #1a2b2b;
  --eucalyptus: #1c7061;
  --mint: #e0efea;
  --paper: #f7f5ed;
  --mist: #f0f3ee;
  --outline: rgba(26, 43, 43, 0.14);
  --text-soft: rgba(26, 43, 43, 0.72);
  --text-faint: rgba(26, 43, 43, 0.56);
  --shadow-soft: 0 24px 80px rgba(28, 56, 52, 0.12);
  --shadow-card: 0 18px 40px rgba(26, 43, 43, 0.08);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(28, 112, 97, 0.14), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(224, 239, 234, 0.95), transparent 24%),
    linear-gradient(180deg, #fcfbf6 0%, var(--paper) 48%, #f2f3ee 100%);
}

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

a {
  color: inherit;
}

button,
.button {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(18px);
}

.page-shell::before {
  width: 24rem;
  height: 24rem;
  top: -8rem;
  left: -8rem;
  background: rgba(28, 112, 97, 0.11);
}

.page-shell::after {
  width: 20rem;
  height: 20rem;
  right: -6rem;
  top: 18rem;
  background: rgba(247, 212, 134, 0.18);
}

.container {
  width: var(--content-width);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(247, 245, 237, 0.72);
  border-bottom: 1px solid rgba(26, 43, 43, 0.08);
}

.topbar-inner {
  width: var(--content-width);
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #204442 0%, var(--eucalyptus) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.15), 0 10px 22px rgba(28, 112, 97, 0.16);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
}

.brand-mark::before {
  inset: 8px 10px 8px 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(247, 245, 237, 0.98), rgba(240, 243, 238, 0.94));
  box-shadow: inset 0 0 0 1px rgba(26, 43, 43, 0.08);
}

.brand-mark::after {
  right: 10px;
  top: 8px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, rgba(28, 112, 97, 0.3), rgba(28, 112, 97, 0.65));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  font-size: 0.84rem;
  color: var(--text-faint);
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.95rem;
  padding: 8px 10px;
  border-radius: 999px;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: rgba(28, 112, 97, 0.08);
  outline: none;
  transform: translateY(-1px);
}

.nav .nav-cta {
  color: var(--paper);
  background: var(--ink);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
  background: var(--eucalyptus);
  color: #fff;
}

.hero {
  padding: 42px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100svh - 120px);
}

.hero-copy,
.hero-visual,
.section-intro,
.feature-row,
.detail-grid,
.cta-band,
.policy,
.support-layout {
  opacity: 0;
  transform: translateY(24px);
  animation: rise-in 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-visual {
  animation-delay: 120ms;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(26, 43, 43, 0.08);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  font-size: clamp(3.1rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  max-width: 10ch;
}

.hero-lead,
.page-hero p {
  margin: 18px 0 0;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--eucalyptus));
  box-shadow: 0 18px 32px rgba(28, 112, 97, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 36px rgba(28, 112, 97, 0.24);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(26, 43, 43, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.78);
}

.hero-notes {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  color: var(--text-faint);
  font-size: 0.95rem;
}

.hero-notes span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: rgba(28, 112, 97, 0.44);
  vertical-align: middle;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.receipt-stage {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 0.92;
}

.receipt-shadow,
.receipt-sheet,
.phone-shell,
.hero-token {
  position: absolute;
}

.receipt-shadow {
  inset: 12% 8% 8% 12%;
  border-radius: 40px;
  background: rgba(26, 43, 43, 0.08);
  filter: blur(30px);
  transform: translateY(34px);
}

.receipt-sheet {
  width: 72%;
  height: 84%;
  right: 0;
  top: 4%;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 243, 0.92)),
    repeating-linear-gradient(180deg, transparent 0 44px, rgba(26, 43, 43, 0.05) 44px 45px);
  border: 1px solid rgba(26, 43, 43, 0.08);
  box-shadow: var(--shadow-soft);
  transform: rotate(9deg);
}

.receipt-sheet::before,
.receipt-sheet::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  border-radius: 999px;
}

.receipt-sheet::before {
  top: 14%;
  height: 16px;
  background: rgba(26, 43, 43, 0.08);
}

.receipt-sheet::after {
  top: 22%;
  height: 8px;
  background: rgba(28, 112, 97, 0.14);
  box-shadow:
    0 52px 0 rgba(26, 43, 43, 0.08),
    0 104px 0 rgba(26, 43, 43, 0.08),
    0 156px 0 rgba(28, 112, 97, 0.14),
    0 208px 0 rgba(26, 43, 43, 0.08),
    0 260px 0 rgba(26, 43, 43, 0.08);
}

.phone-shell {
  inset: 9% 18% 12% 2%;
  border-radius: 42px;
  padding: 14px;
  background: linear-gradient(180deg, #243736, #132424);
  box-shadow: 0 32px 55px rgba(26, 43, 43, 0.2);
  transform: rotate(-8deg) translateY(4px);
  overflow: hidden;
}

.phone-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 32%;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: rgba(0, 0, 0, 0.48);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(28, 112, 97, 0.18), transparent 24%),
    linear-gradient(180deg, #faf8f1, #eef2ec);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-header,
.screen-body,
.screen-footer {
  padding: 18px 18px 0;
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 34px;
}

.screen-pill {
  height: 10px;
  border-radius: 999px;
  background: rgba(26, 43, 43, 0.1);
}

.screen-pill.small {
  width: 74px;
}

.screen-pill.medium {
  width: 120px;
  background: rgba(28, 112, 97, 0.22);
}

.screen-title {
  margin-top: 22px;
  font-size: 1.42rem;
  letter-spacing: -0.04em;
}

.screen-subtitle {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.screen-body {
  display: grid;
  gap: 12px;
  padding-top: 20px;
}

.ledger-row,
.feature-chip,
.summary-bar,
.footer-tab {
  border-radius: 18px;
}

.summary-bar {
  padding: 16px;
  background: linear-gradient(135deg, rgba(28, 112, 97, 0.14), rgba(255, 255, 255, 0.82));
  border: 1px solid rgba(28, 112, 97, 0.1);
}

.summary-bar strong {
  display: block;
  font-size: 0.84rem;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

.summary-bar span {
  display: block;
  margin-top: 6px;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

.ledger-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(26, 43, 43, 0.06);
}

.ledger-dot {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(28, 112, 97, 0.12);
  position: relative;
}

.ledger-dot::before,
.ledger-dot::after {
  content: "";
  position: absolute;
  background: rgba(28, 112, 97, 0.54);
  border-radius: 999px;
}

.ledger-dot::before {
  inset: 12px 18px;
}

.ledger-dot::after {
  inset: 18px 12px;
}

.ledger-copy strong,
.ledger-copy span {
  display: block;
}

.ledger-copy strong {
  font-size: 0.95rem;
}

.ledger-copy span {
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.ledger-value {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.screen-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 16px;
  padding-bottom: 18px;
}

.footer-tab {
  flex: 1;
  height: 12px;
  background: rgba(26, 43, 43, 0.08);
}

.footer-tab.active {
  background: rgba(28, 112, 97, 0.36);
}

.hero-token {
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(26, 43, 43, 0.08);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.hero-token strong {
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--text-faint);
}

.hero-token span {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.hero-token.left {
  left: 1%;
  top: 8%;
  animation: float-left 8s ease-in-out infinite;
}

.hero-token.right {
  right: -1%;
  bottom: 10%;
  animation: float-right 9s ease-in-out infinite;
}

.section {
  padding: 88px 0;
}

.section-intro {
  animation-delay: 80ms;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.section h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.section p {
  color: var(--text-soft);
  line-height: 1.7;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  animation-delay: 140ms;
}

.feature-sheet {
  min-height: 270px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.54));
  border: 1px solid rgba(26, 43, 43, 0.08);
  box-shadow: var(--shadow-card);
}

.feature-sheet strong {
  display: block;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.feature-sheet p {
  margin: 14px 0 0;
}

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

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-soft);
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.45em;
  border-radius: 999px;
  background: rgba(28, 112, 97, 0.4);
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: stretch;
  animation-delay: 120ms;
}

.detail-panel,
.detail-aside,
.faq-item,
.policy-card,
.support-panel,
.support-card {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(26, 43, 43, 0.08);
  box-shadow: var(--shadow-card);
}

.detail-panel {
  padding: 34px;
  display: grid;
  gap: 24px;
}

.detail-panel h3,
.detail-aside h3,
.policy-card h2,
.support-panel h2,
.support-card h3 {
  margin: 0;
  font-size: 1.22rem;
  letter-spacing: -0.04em;
}

.detail-aside {
  padding: 30px;
  display: grid;
  gap: 18px;
}

.detail-metric {
  padding-top: 18px;
  border-top: 1px solid rgba(26, 43, 43, 0.08);
}

.detail-metric strong {
  display: block;
  font-size: 2.2rem;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
}

.detail-metric span {
  color: var(--text-faint);
}

.cta-band {
  margin-top: 28px;
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(26, 43, 43, 0.98), rgba(28, 112, 97, 0.98));
  color: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  animation-delay: 140ms;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
  margin: 10px 0 0;
  max-width: 38rem;
}

.cta-band .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: white;
}

.footer {
  padding: 26px 0 48px;
}

.footer-inner {
  width: var(--content-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(26, 43, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-faint);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

.footer-links a::after,
.inline-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-links a:hover::after,
.footer-links a:focus-visible::after,
.inline-link:hover::after,
.inline-link:focus-visible::after {
  transform: scaleX(1);
}

.page-hero {
  padding: 72px 0 34px;
}

.page-hero .eyebrow {
  margin-bottom: 18px;
}

.page-hero h1 {
  max-width: 12ch;
}

.page-hero p {
  max-width: 42rem;
}

.policy,
.support-layout {
  animation-delay: 120ms;
}

.policy {
  padding-bottom: 80px;
}

.policy-grid,
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}

.policy-main,
.support-main {
  display: grid;
  gap: 20px;
}

.policy-card,
.support-panel {
  padding: 30px;
}

.policy-card p,
.policy-card li,
.support-panel p,
.support-panel li,
.support-card p,
.support-card li {
  color: var(--text-soft);
  line-height: 1.68;
}

.policy-card ul,
.support-panel ul,
.support-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.policy-card ul li + li,
.support-panel ul li + li,
.support-card ul li + li {
  margin-top: 10px;
}

.support-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(26, 43, 43, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.field textarea {
  min-height: 164px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(28, 112, 97, 0.48);
  box-shadow: 0 0 0 4px rgba(28, 112, 97, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

.field-hint {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.92rem;
}

.contact-email {
  font-weight: 700;
  color: var(--eucalyptus);
  text-decoration: none;
}

.policy-card + .policy-card,
.support-panel + .support-panel {
  margin-top: 0;
}

.policy-meta,
.support-sidebar {
  display: grid;
  gap: 18px;
  align-self: start;
  position: sticky;
  top: 104px;
}

.support-layout {
  padding-bottom: 80px;
}

.support-card {
  padding: 28px;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.faq-item {
  padding: 22px 24px;
}

.faq-item strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.faq-item p {
  margin: 10px 0 0;
}

.inline-link {
  position: relative;
  text-decoration: none;
  color: var(--eucalyptus);
}

.mono {
  font-variant-numeric: tabular-nums;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-left {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes float-right {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 12px, 0);
  }
}

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

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

@media (max-width: 980px) {
  .hero-grid,
  .feature-row,
  .detail-grid,
  .policy-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .receipt-stage {
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .policy-meta,
  .support-sidebar {
    position: static;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-actions,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .feature-sheet,
  .detail-panel,
  .detail-aside,
  .policy-card,
  .support-panel,
  .support-card,
  .faq-item,
  .cta-band {
    padding: 24px;
  }

  .receipt-sheet {
    width: 68%;
    height: 78%;
  }

  .phone-shell {
    inset: 12% 16% 12% 2%;
  }
}
