:root {
  color-scheme: light;
  --ink: #071817;
  --ink-soft: #38524f;
  --muted: #6b7b78;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(17, 89, 84, 0.14);
  --deep: #06201f;
  --deep-2: #0b3a3a;
  --mint: #24d0a0;
  --teal: #15a7b1;
  --blue: #4f7cff;
  --amber: #f2b94b;
  --violet: #8a7cff;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(7, 24, 23, 0.16);
  --soft-shadow: 0 12px 34px rgba(7, 24, 23, 0.1);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background:
    radial-gradient(circle at 30% 12%, rgba(36, 208, 160, 0.16), transparent 30%),
    linear-gradient(135deg, #f7fbf8 0%, #eaf5f2 42%, #f9fbff 100%);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  opacity: 0.28;
  background-image:
    linear-gradient(30deg, rgba(6, 46, 45, 0.16) 12%, transparent 12.5%, transparent 87%, rgba(6, 46, 45, 0.16) 87.5%, rgba(6, 46, 45, 0.16)),
    linear-gradient(150deg, rgba(6, 46, 45, 0.16) 12%, transparent 12.5%, transparent 87%, rgba(6, 46, 45, 0.16) 87.5%, rgba(6, 46, 45, 0.16)),
    linear-gradient(30deg, rgba(6, 46, 45, 0.16) 12%, transparent 12.5%, transparent 87%, rgba(6, 46, 45, 0.16) 87.5%, rgba(6, 46, 45, 0.16)),
    linear-gradient(150deg, rgba(6, 46, 45, 0.16) 12%, transparent 12.5%, transparent 87%, rgba(6, 46, 45, 0.16) 87.5%, rgba(6, 46, 45, 0.16)),
    linear-gradient(60deg, rgba(21, 167, 177, 0.12) 25%, transparent 25.5%, transparent 75%, rgba(21, 167, 177, 0.12) 75%, rgba(21, 167, 177, 0.12));
  background-position:
    0 0,
    0 0,
    34px 60px,
    34px 60px,
    0 0;
  background-size: 68px 120px;
  animation: honey-drift 34s linear infinite;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.9));
  pointer-events: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--deep);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  width: min(calc(100% - 32px), var(--max-width));
  min-height: 74px;
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 14px 12px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 48px;
  place-items: center;
  color: #063530;
  font-weight: 800;
  background: linear-gradient(145deg, #dbfff2, #ffffff);
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  box-shadow: inset 0 0 0 1px rgba(6, 53, 48, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.04rem;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  width: 100%;
}

.site-nav a {
  padding: 11px 13px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #063530;
  background: rgba(36, 208, 160, 0.14);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, var(--deep), #11635d);
  box-shadow: 0 12px 24px rgba(6, 53, 48, 0.2);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #0b3a3a, #158071);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(6, 32, 31, 0.06);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--deep);
  border-radius: 999px;
}

.section-pad {
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  padding: 98px 0;
}

.hero {
  position: relative;
  width: 100%;
  min-height: min(770px, calc(100svh - 94px));
  padding-top: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -120px max(-12vw, -160px) 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(6, 32, 31, 0.93), rgba(8, 70, 67, 0.82) 48%, rgba(247, 251, 248, 0.18)),
    repeating-linear-gradient(30deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(150deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px);
  border-bottom-left-radius: 46px;
  border-bottom-right-radius: 46px;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 650px;
  align-items: center;
  padding-top: 44px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(640px, 100%);
  padding: 56px 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: #0c6a60;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.donate-panel .eyebrow,
.final-cta .eyebrow {
  color: #8df4cd;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 12vw, 8.8rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 26px 0 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  font-weight: 700;
}

.hero-description {
  width: min(600px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.button-primary {
  color: #05211f;
  background: linear-gradient(135deg, #9af8d3, #ffffff);
  box-shadow: 0 16px 34px rgba(36, 208, 160, 0.28);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.button-ghost {
  color: #c9fff0;
  border-color: rgba(141, 244, 205, 0.38);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-row span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.hero-visual {
  position: absolute;
  right: 0;
  bottom: 52px;
  z-index: 2;
  width: min(560px, 48vw);
  min-width: 460px;
  transform: perspective(1200px) rotateY(-10deg) rotateX(4deg);
  transform-origin: center right;
}

.screenshot-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.hero-shot-frame {
  aspect-ratio: 1440 / 1024;
  border-color: rgba(141, 244, 205, 0.34);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
}

.dashboard-frame {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.52)),
    linear-gradient(30deg, rgba(36, 208, 160, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.dashboard-frame::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  opacity: 0.2;
  background:
    repeating-linear-gradient(30deg, rgba(6, 32, 31, 0.14) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(150deg, rgba(6, 32, 31, 0.1) 0 1px, transparent 1px 34px);
  pointer-events: none;
}

.dashboard-frame > * {
  position: relative;
  z-index: 1;
}

.hero-dashboard {
  padding: 18px;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 4px 16px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.window-bar span {
  width: 10px;
  height: 10px;
  background: #bdd0cc;
  border-radius: 50%;
}

.window-bar span:first-child {
  background: #f08a7f;
}

.window-bar span:nth-child(2) {
  background: #f3c75d;
}

.window-bar span:nth-child(3) {
  margin-right: 8px;
  background: #54d79b;
}

.hero-metrics,
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-metrics article,
.stat-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  box-shadow: 0 12px 22px rgba(7, 24, 23, 0.07);
}

.hero-metrics span,
.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-metrics strong,
.stat-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.8vw, 1.5rem);
}

.hero-metrics small {
  display: block;
  margin-top: 8px;
  color: #16806d;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-chart,
.mini-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 170px;
  margin: 16px 0;
  padding: 18px;
  background: rgba(6, 32, 31, 0.92);
  border-radius: 20px;
}

.hero-chart span,
.mini-chart span {
  flex: 1;
  min-width: 18px;
  background: linear-gradient(180deg, #8df4cd, #15a7b1 55%, #4f7cff);
  border-radius: 999px 999px 8px 8px;
  box-shadow: 0 8px 24px rgba(21, 167, 177, 0.28);
  transform-origin: bottom;
  animation: bar-rise 1.2s ease both;
}

.hero-list,
.account-list {
  display: grid;
  gap: 10px;
}

.hero-list div,
.account-list div,
.currency-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 16px;
}

.dot,
.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.green {
  background: var(--mint);
}

.blue {
  background: var(--blue);
}

.amber {
  background: var(--amber);
}

.violet {
  background: var(--violet);
}

.floating-pill {
  position: absolute;
  z-index: 5;
  padding: 12px 14px;
  color: #063530;
  font-size: 0.85rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  animation: float-soft 4.8s ease-in-out infinite;
}

.pill-one {
  top: 54px;
  right: -10px;
}

.pill-two {
  left: -26px;
  bottom: 96px;
  animation-delay: -1.8s;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.compact {
  width: min(820px, 100%);
}

.section-heading h2,
.final-cta h2,
.donate-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.final-cta p,
.donate-panel p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.75;
}

.benefit-grid,
.feature-grid,
.onboarding-grid {
  display: grid;
  gap: 16px;
}

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

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

.screenshots-section {
  padding-top: 98px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.screenshot-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(6, 32, 31, 0.1);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.screenshot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 208, 160, 0.36);
  box-shadow: var(--shadow);
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid rgba(6, 32, 31, 0.1);
}

.screenshot-card div {
  padding: 16px;
}

.screenshot-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.screenshot-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.glass-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.glass-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, rgba(36, 208, 160, 0.12), rgba(79, 124, 255, 0.1));
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(36, 208, 160, 0.36);
  box-shadow: var(--shadow);
}

.glass-card:hover::before {
  opacity: 1;
}

.benefit-card h3,
.feature-card h3,
.step-card h3,
.asset-card h3 {
  margin: 18px 0 10px;
  font-size: 1.16rem;
}

.benefit-card p,
.feature-card p,
.step-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.icon-pill,
.feature-icon,
.step-card span {
  display: inline-grid;
  place-items: center;
  color: #05322e;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(141, 244, 205, 0.92), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(6, 53, 48, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.icon-pill {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
}

.dashboard-section {
  padding-top: 110px;
}

.showcase-shot {
  aspect-ratio: 1440 / 1024;
}

.compact-shot {
  margin-bottom: 18px;
}

.full-dashboard {
  padding: 22px;
}

.mockup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 6px 20px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.mockup-topbar div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
}

.status-dot {
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(36, 208, 160, 0.14);
}

.tab-list {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  overflow-x: auto;
  background: rgba(6, 32, 31, 0.08);
  border: 1px solid rgba(6, 32, 31, 0.08);
  border-radius: 999px;
}

.tab-button {
  min-width: max-content;
  padding: 11px 15px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.tab-button.active {
  color: #063530;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(7, 24, 23, 0.08);
}

.tab-panel {
  display: none;
  min-height: 310px;
}

.tab-panel.active {
  display: block;
  animation: panel-in 0.28s ease both;
}

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

.stat-card {
  min-height: 112px;
}

.panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.panel-layout h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
}

.panel-layout p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.mini-chart {
  height: 240px;
  margin: 0;
}

.flow-lines {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: rgba(6, 32, 31, 0.9);
  border-radius: 20px;
}

.flow-lines span {
  height: 15px;
  background: linear-gradient(90deg, var(--mint), var(--blue), transparent);
  border-radius: 999px;
}

.flow-lines span:nth-child(2) {
  width: 74%;
}

.flow-lines span:nth-child(3) {
  width: 56%;
  background: linear-gradient(90deg, var(--amber), var(--violet), transparent);
}

.flow-lines span:nth-child(4) {
  width: 88%;
}

.goal-preview {
  display: grid;
  gap: 15px;
  max-width: 620px;
}

.goal-preview div:not(.progress) {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-weight: 800;
}

.progress {
  height: 14px;
  overflow: hidden;
  background: rgba(6, 32, 31, 0.08);
  border-radius: 999px;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--teal));
  border-radius: inherit;
}

.split-heading {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  width: 100%;
  text-align: left;
}

.split-heading p:not(.eyebrow) {
  margin-top: 32px;
}

.asset-layout,
.currency-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.section-shot {
  min-height: 420px;
}

.screen-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.screen-copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.08;
}

.screen-copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.asset-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.asset-head h3 {
  margin-top: 10px;
}

.asset-head strong {
  padding: 9px 12px;
  color: #063530;
  background: rgba(36, 208, 160, 0.16);
  border-radius: 999px;
}

.asset-type {
  display: inline-block;
  padding: 7px 10px;
  color: #063530;
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(36, 208, 160, 0.18);
  border-radius: 999px;
}

.asset-details {
  display: grid;
  gap: 12px;
  margin: 10px 0 0;
}

.asset-details div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(6, 32, 31, 0.08);
}

.asset-details dt {
  color: var(--muted);
  font-weight: 800;
}

.asset-details dd {
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.positive {
  color: #0a846e !important;
}

.allocation-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
}

.allocation-donut {
  width: 190px;
  aspect-ratio: 1;
  margin: auto;
  background: conic-gradient(
    var(--mint) 0 39%,
    var(--blue) 39% 66%,
    var(--amber) 66% 82%,
    var(--violet) 82% 100%
  );
  border: 14px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: inset 0 0 0 24px rgba(255, 255, 255, 0.92), var(--soft-shadow);
}

.allocation-donut.large {
  width: 220px;
}

.legend-list {
  display: grid;
  gap: 14px;
}

.legend-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 800;
}

.legend {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.currency-copy {
  display: flex;
  align-items: center;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  content: "";
  background:
    linear-gradient(135deg, var(--mint), var(--teal));
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(36, 208, 160, 0.12);
}

.currency-stack {
  display: grid;
  gap: 12px;
}

.currency-stack div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--soft-shadow);
}

.currency-stack span {
  color: var(--ink-soft);
  font-weight: 800;
}

.currency-stack strong {
  color: #063530;
  font-size: 1.1rem;
}

.step-card {
  min-height: 180px;
}

.step-card span {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  font-size: 0.88rem;
}

.donate-section {
  width: 100%;
  max-width: none;
  padding: 108px max(18px, calc((100vw - var(--max-width)) / 2));
  background:
    linear-gradient(135deg, rgba(6, 32, 31, 0.96), rgba(10, 60, 59, 0.94)),
    repeating-linear-gradient(30deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 38px);
}

.donate-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  align-items: center;
}

.donate-panel h2,
.donate-panel p,
.final-cta h2,
.final-cta p {
  color: var(--white);
}

.donate-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.support-card {
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.support-card h3 {
  margin: 0 0 18px;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.payment-method {
  min-width: 0;
  padding: 14px;
  color: #05211f;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
}

.payment-method span,
.payment-method strong {
  display: block;
}

.payment-method span {
  color: rgba(5, 33, 31, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.payment-method strong {
  margin-top: 6px;
  overflow-wrap: anywhere;
  font-size: 1rem;
  font-weight: 900;
}

.notice {
  margin-top: 18px !important;
  padding: 14px;
  color: #06201f !important;
  font-size: 0.92rem !important;
  font-weight: 800;
  background: rgba(141, 244, 205, 0.86);
  border-radius: 16px;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.roadmap-list article {
  min-height: 152px;
  padding: 18px;
  color: var(--ink-soft);
  font-weight: 800;
  line-height: 1.45;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.roadmap-list span {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 34px;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(36, 208, 160, 0.11);
}

.final-cta {
  width: 100%;
  max-width: none;
  margin-top: 26px;
  padding: 118px max(18px, calc((100vw - 920px) / 2));
  text-align: center;
  background:
    linear-gradient(135deg, rgba(5, 25, 24, 0.94), rgba(20, 71, 75, 0.9)),
    repeating-linear-gradient(150deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 44px);
}

.final-cta p {
  width: min(660px, 100%);
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button {
  margin-top: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  width: min(calc(100% - 36px), var(--max-width));
  margin: 0 auto;
  padding: 42px 0 48px;
  color: var(--ink-soft);
}

.site-footer p {
  max-width: 520px;
  line-height: 1.7;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.site-footer nav a {
  padding: 10px 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

@keyframes honey-drift {
  from {
    background-position:
      0 0,
      0 0,
      34px 60px,
      34px 60px,
      0 0;
  }
  to {
    background-position:
      68px 120px,
      68px 120px,
      102px 180px,
      102px 180px,
      68px 120px;
  }
}

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

@keyframes bar-rise {
  from {
    transform: scaleY(0.2);
  }
  to {
    transform: scaleY(1);
  }
}

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

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 18px;
    box-shadow: var(--soft-shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
  }

  .hero-visual {
    opacity: 0.74;
    right: -120px;
    width: min(620px, 66vw);
    min-width: 440px;
  }

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

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

  .roadmap-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .section-pad {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 36px;
  }

  .hero-copy {
    padding: 48px 0 22px;
  }

  .hero h1 {
    font-size: clamp(4rem, 18vw, 6.2rem);
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
    margin: 18px 0 34px;
    opacity: 1;
    transform: none;
  }

  .floating-pill {
    display: none;
  }

  .benefit-grid,
  .asset-layout,
  .currency-layout,
  .donate-panel,
  .panel-layout,
  .split-heading,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .section-shot {
    min-height: 0;
  }

  .split-heading p:not(.eyebrow) {
    margin-top: 0;
  }

  .allocation-card {
    grid-template-columns: 1fr;
  }

  .donate-section,
  .final-cta {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    width: min(calc(100% - 20px), var(--max-width));
    top: 10px;
    margin-top: 10px;
    border-radius: 18px;
  }

  .section-pad {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero-bg {
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }

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

  .button {
    padding-inline: 14px;
  }

  .trust-row span {
    width: 100%;
  }

  .hero-metrics,
  .stat-grid,
  .feature-grid,
  .screenshot-grid,
  .onboarding-grid,
  .roadmap-list,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .hero-chart {
    height: 128px;
  }

  .mockup-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .full-dashboard {
    padding: 16px;
    border-radius: 20px;
  }

  .tab-list {
    border-radius: 18px;
  }

  .tab-panel {
    min-height: 0;
  }

  .asset-details div,
  .currency-stack div {
    align-items: flex-start;
    flex-direction: column;
  }

  .roadmap-list article {
    min-height: auto;
  }

  .roadmap-list span {
    margin-bottom: 18px;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
