:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #eef4f3;
  --ink: #05070a;
  --muted: #5c6872;
  --soft: #dce5e4;
  --line: rgba(5, 7, 10, 0.1);
  --dark: #05070a;
  --dark-2: #0c1216;
  --accent: #42d6cf;
  --accent-2: #07918c;
  --warn: #ff6d4a;
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(10, 20, 24, 0.16);
  --panel-gap: 3.8px;
  --page-shell: calc(100% - (var(--panel-gap) * 2));
  --container: min(1180px, calc(100% - 48px));
  --hero-panel-min-height: 860px;
  --device-photo-panel-min-height: calc(var(--hero-panel-min-height) * 0.9);
  --device-photo-image: url("assets/images/sections/portfolio-desktop.png");
  --device-photo-top-crop: 0px;
  --device-photo-object-x: 140%;
  --device-photo-object-y: -85px;
  --device-photo-object-size: 111%;
  --device-photo-object-mobile-x: 68%;
  --device-photo-object-mobile-y: 24px;
  --device-photo-object-mobile-size: 88%;
  --section-title-size: 3.50rem;
  --section-title-weight: 495;
  --section-title-line-height: 1.04;
  --section-title-tracking: -0.045em;
  --dark-title-color: rgba(255, 255, 255, 0.95);
  --body-copy-size: 1.04rem;
  --body-copy-weight: 400;
  --body-copy-line-height: 1.68;
  --body-copy-color: var(--muted);
  --body-copy-dark-color: rgba(255, 255, 255, 0.9);
  --eyebrow-font-family: inherit;
  --eyebrow-size: 0.64rem;
  --eyebrow-weight: 800;
  --eyebrow-line-height: 1.2;
  --eyebrow-tracking: 0.11em;
  --eyebrow-margin-bottom: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--accent);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.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;
}

.site-header {
  position: fixed;
  top: var(--panel-gap);
  left: 50%;
  right: auto;
  z-index: 100;
  width: var(--page-shell);
  padding: 12px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(8, 12, 16, 0.28);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(5, 7, 10, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(10, 20, 24, 0.08);
}

.site-header:not(.is-scrolled) .brand,
.site-header:not(.is-scrolled) .nav-menu a,
.site-header:not(.is-scrolled) .nav-support,
.site-header:not(.is-scrolled) .text-link {
  color: #fff;
}

.site-header.is-scrolled .nav-menu a,
.site-header.is-scrolled .nav-support,
.site-header.is-scrolled .text-link {
  color: rgba(5, 7, 10, 0.78);
}

.site-header.is-scrolled .nav-menu a:hover,
.site-header.is-scrolled .nav-support:hover,
.site-header.is-scrolled .text-link:hover {
  color: var(--ink);
}

.nav {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 52px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-image {
  display: block;
  width: 148px;
  height: auto;
}

.brand-image-dark {
  display: none;
}

.site-header.is-scrolled .brand-image-light {
  display: none;
}

.site-header.is-scrolled .brand-image-dark {
  display: block;
}

.footer-brand-image {
  width: 152px;
}

.hero .brand,
.section-dark .brand,
.hero .nav-menu,
.hero .nav-actions {
  color: #fff;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 32px);
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-menu a,
.nav-support,
.text-link {
  color: rgba(5, 7, 10, 0.78);
  transition: color 0.2s ease;
}

.nav-support {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

.nav-menu a:hover,
.nav-support:hover,
.text-link:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #05070a;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(5, 7, 10, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 750;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 44px;
  padding-inline: 20px;
  border-radius: 12px;
}

.btn-dark {
  color: #fff;
  background: var(--dark);
}

.btn-dark:hover {
  box-shadow: 0 12px 28px rgba(5, 7, 10, 0.25);
}

.btn-accent {
  color: #051112;
  background: var(--accent);
}

.btn-accent:hover {
  background: #58eee6;
  box-shadow: 0 14px 34px rgba(66, 214, 207, 0.28);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: clamp(84px, 9vw, 132px) 0;
}

.section-dark {
  color: #fff;
  background: transparent;
}

.hero {
  position: relative;
  width: var(--page-shell);
  margin: var(--panel-gap) auto 0;
  min-height: 860px;
  overflow: hidden;
  padding: 132px 0 86px;
  border-radius: 34px;
  box-shadow: 0 0 0 1px rgba(5, 7, 10, 0.08);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.86) 32%, rgba(0, 0, 0, 0.52) 58%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 60%, #05070a 100%),
    url("assets/images/hero/hero-bg.webp") right center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 52% 28%, rgba(66, 214, 207, 0.22), transparent 25%),
    radial-gradient(circle at 20% 85%, rgba(66, 214, 207, 0.12), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: block;
  min-height: 560px;
}

.hero-copy {
  max-width: 900px;
}

.hero-partner-badge {
  position: absolute;
  right: clamp(4px, 1vw, 14px);
  bottom: 42px;
  width: clamp(144px, 13.45vw, 213px);
  height: auto;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.36));
  opacity: 0.96;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 var(--eyebrow-margin-bottom);
  color: var(--accent-2);
  font-family: var(--eyebrow-font-family);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  line-height: var(--eyebrow-line-height);
  letter-spacing: var(--eyebrow-tracking);
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow,
.download .eyebrow {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.6rem, 7.4vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 0;
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line-height);
  letter-spacing: var(--section-title-tracking);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.section-dark :is(h1, h2, h3),
.interface-section :is(h2, h3),
.security :is(h2, h3),
.download-panel :is(h2, h3),
.site-footer :is(h2, h3) {
  color: var(--dark-title-color);
}

p {
  color: var(--body-copy-color);
  font-size: var(--body-copy-size);
  font-weight: var(--body-copy-weight);
  line-height: var(--body-copy-line-height);
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 34px;
  color: var(--body-copy-dark-color);
}

.hero-title {
  max-width: 680px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.87);
  font-size: var(--section-title-size);
  font-weight: var(--section-title-weight);
  line-height: var(--section-title-line-height);
  letter-spacing: var(--section-title-tracking);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  max-width: 720px;
}

.trust-row div {
  min-height: 60px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  margin-bottom: 2px;
  font-size: 0.9rem;
  letter-spacing: -0.04em;
}

.trust-row span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-support {
  max-width: 640px;
  margin-top: 18px;
  color: var(--body-copy-dark-color);
}

.planner-results,
.app-header,
.mini-row,
.route-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.coin {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
}

.btc { background: #f7931a; }
.eth { background: #637eea; }
.usdc { background: #2775ca; }
.sol { background: #111; }


.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.68fr);
  column-gap: clamp(28px, 6vw, 86px);
  row-gap: var(--eyebrow-margin-bottom);
  align-items: start;
  margin-bottom: clamp(36px, 5vw, 72px);
}

.split-heading > .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.split-heading p {
  margin: 8px 0 0;
}

.split-heading > .eyebrow + h2 {
  margin-top: 0;
}

.product-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-overview-card {
  display: flex;
  flex-direction: column;
  min-height: 244px;
  padding: 24px 22px 22px;
  border: 1px solid rgba(5, 7, 10, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 248, 0.94));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 7, 10, 0.18);
  box-shadow: 0 20px 44px rgba(10, 20, 24, 0.1);
}

.product-overview-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.product-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  color: #0b1013;
}

.product-icon svg {
  width: 100%;
  height: 100%;
}

.product-card-arrow {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(5, 7, 10, 0.14);
  border-radius: 12px;
  color: #0b1013;
  font-size: 1.1rem;
  line-height: 1;
}

.product-overview-card h3 {
  max-width: 280px;
  margin-bottom: 12px;
  color: #0a1013;
  font-size: clamp(1.08rem, 1.4vw, 1.42rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.product-overview-card p {
  max-width: 320px;
  margin-bottom: 18px;
  color: #56626d;
  font-size: 0.94rem;
  line-height: 1.48;
}

.product-overview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent-2);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-overview-link::after {
  content: "↗";
  font-size: 0.92rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.matrix-card,
.security-card,
.planner-card,
.download-panel,
.faq-list details {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.feature-card {
  padding: 16px 16px 28px;
  border-radius: 28px;
}

.feature-card h3,
.feature-card p {
  padding-inline: 12px;
}

.feature-card p {
  margin-bottom: 0;
}

.feature-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 22px;
}

.gradient-media {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.92), transparent 17%),
    radial-gradient(circle at 72% 18%, rgba(66, 214, 207, 0.34), transparent 36%),
    linear-gradient(140deg, #071016, #213a3e 48%, #e6eeee);
}

.gradient-media.alt {
  background:
    radial-gradient(circle at 70% 40%, rgba(66, 214, 207, 0.48), transparent 32%),
    linear-gradient(140deg, #091014, #263135, #f2f6f6);
}

.gradient-media.third {
  background:
    radial-gradient(circle at 74% 36%, rgba(255, 255, 255, 0.82), transparent 25%),
    linear-gradient(135deg, #0b1115 0%, #112d30 52%, #b8d7d4 100%);
}

.mini-window,
.interest-widget,
.route-widget {
  width: min(76%, 260px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  color: #fff;
  background: rgba(5, 10, 12, 0.36);
  backdrop-filter: blur(20px);
}

.mini-window {
  display: grid;
  gap: 10px;
}

.mini-row {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.mini-row:last-child {
  border-bottom: 0;
}

.mini-row em {
  color: var(--accent);
  font-size: 0.76rem;
  font-style: normal;
}

.interest-widget span,
.interest-widget small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.interest-widget strong {
  display: block;
  margin: 8px 0;
  color: var(--accent);
  font-size: 2rem;
}

.route-widget b {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #051112;
  background: var(--accent);
}

/* Reusable standard for sections with a laptop photo anchored to the right. */
.device-photo-section {
  min-height: calc(var(--device-photo-panel-min-height) - (var(--device-photo-top-crop) * 2));
}

.device-photo-bg {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.88) 28%, rgba(0, 0, 0, 0.58) 52%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 60%, #05070a 100%),
    var(--device-photo-image) var(--device-photo-object-x) calc(var(--device-photo-object-y) - var(--device-photo-top-crop)) / auto var(--device-photo-object-size) no-repeat;
  background-position: var(--device-photo-object-x) calc(var(--device-photo-object-y) - var(--device-photo-top-crop));
  background-size: auto var(--device-photo-object-size);
}

.device-photo-grid {
  display: block;
  position: relative;
  z-index: 1;
  min-height: calc(580px - (var(--device-photo-top-crop) * 2));
}

.device-photo-copy {
  max-width: 610px;
}

.device-photo-copy .eyebrow {
  margin-bottom: 28px;
}

.device-photo-copy h2 {
  max-width: 560px;
}

.device-photo-lead {
  max-width: 560px;
  margin: 24px 0 0;
}

.interface-section {
  --device-photo-image: url("assets/images/sections/portfolio-desktop.png");
  position: relative;
  width: var(--page-shell);
  margin: var(--panel-gap) auto 0;
  overflow: hidden;
  padding: calc(126px - var(--device-photo-top-crop)) 0 calc(68px - var(--device-photo-top-crop));
  color: #fff;
  border-radius: 34px;
  box-shadow: 0 0 0 1px rgba(5, 7, 10, 0.08);
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 16%, rgba(66, 214, 207, 0.11), transparent 28%),
    linear-gradient(180deg, #05070a, #0c1518 48%, #05070a);
}

.interface-bg,
.bridge-bg,
.earn-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.interface-section::before,
.bridge-section::before,
.earn-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 60% 24%, rgba(66, 214, 207, 0.2), transparent 26%),
    radial-gradient(circle at 18% 82%, rgba(66, 214, 207, 0.12), transparent 24%);
  pointer-events: none;
}

.interface-section p,
.bridge-section p,
.earn-section p {
  color: var(--body-copy-dark-color);
}

.bridge-section {
  --device-photo-image: url("assets/images/sections/multichain-desktop.png");
  --device-photo-object-x: 140%;
  --device-photo-object-y: -85px;
  --device-photo-object-size: 111%;
  --device-photo-object-mobile-x: 68%;
  --device-photo-object-mobile-y: 24px;
  --device-photo-object-mobile-size: 88%;
  position: relative;
  width: var(--page-shell);
  margin: var(--panel-gap) auto 0;
  overflow: hidden;
  padding: calc(126px - var(--device-photo-top-crop)) 0 calc(68px - var(--device-photo-top-crop));
  color: #fff;
  border-radius: 34px;
  box-shadow: 0 0 0 1px rgba(5, 7, 10, 0.08);
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 16%, rgba(66, 214, 207, 0.11), transparent 28%),
    linear-gradient(180deg, #05070a, #0c1518 48%, #05070a);
}

.earn-section {
  --device-photo-image: url("assets/images/sections/earn-desktop.png");
  --device-photo-object-x: 140%;
  --device-photo-object-y: -85px;
  --device-photo-object-size: 111%;
  --device-photo-object-mobile-x: 68%;
  --device-photo-object-mobile-y: 24px;
  --device-photo-object-mobile-size: 88%;
  position: relative;
  width: var(--page-shell);
  margin: var(--panel-gap) auto 0;
  overflow: hidden;
  padding: calc(126px - var(--device-photo-top-crop)) 0 calc(68px - var(--device-photo-top-crop));
  color: #fff;
  border-radius: 34px;
  box-shadow: 0 0 0 1px rgba(5, 7, 10, 0.08);
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 16%, rgba(66, 214, 207, 0.11), transparent 28%),
    linear-gradient(180deg, #05070a, #0c1518 48%, #05070a);
}

.laptop-wrap {
  perspective: 1800px;
}

.laptop {
  max-width: 1120px;
  margin-inline: auto;
}

.laptop-screen {
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px 34px 20px 20px;
  background: linear-gradient(145deg, #202b30, #05070a);
  box-shadow: 0 70px 120px rgba(0, 0, 0, 0.42);
}

.laptop-base {
  width: 88%;
  height: 28px;
  margin-inline: auto;
  border-radius: 0 0 52px 52px;
  background: linear-gradient(180deg, #d8dddd, #7a8286);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.app-shell {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 300px;
  gap: 16px;
  min-height: 560px;
  padding: 16px;
  border-radius: 24px;
  background: #071012;
}

.app-sidebar,
.app-main,
.app-action-panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.app-logo {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.app-logo-image {
  width: 30px;
  height: auto;
}

.app-sidebar span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.app-main {
  padding: 24px;
}

.app-header {
  margin-bottom: 24px;
}

.app-header small,
.app-card small,
.app-action-panel span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.58);
}

.app-header strong {
  display: block;
  font-size: 2.2rem;
  letter-spacing: -0.05em;
}

.app-header button,
.app-action-panel button {
  border: 0;
  border-radius: 999px;
  color: #04100f;
  font-weight: 800;
  background: var(--accent);
}

.app-header button {
  padding: 10px 16px;
}

.app-chart {
  min-height: 220px;
  margin-bottom: 18px;
  padding: 28px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 42px 42px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.app-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.app-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.app-card span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.4;
}

.app-action-panel {
  padding: 24px;
}

.app-action-panel h3 {
  margin-bottom: 24px;
}

.app-action-panel label {
  display: block;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}

.app-action-panel strong {
  font-size: 1.18rem;
}

.swap-arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 12px auto;
  border-radius: 50%;
  color: #04100f;
  background: var(--accent);
}

.app-action-panel button {
  width: 100%;
  min-height: 50px;
  margin-top: 22px;
}

.feature-matrix,
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.matrix-card,
.security-card {
  min-height: 260px;
  padding: 28px;
  border-radius: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.matrix-card:hover,
.security-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon,
.security-icon,
.os-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  border-radius: 16px;
  color: #04100f;
  font-size: 1.4rem;
  font-weight: 900;
  background: var(--accent);
}

.security-icon-image {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.matrix-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent-2);
  font-weight: 800;
}

.planner-section {
  background: transparent;
}

.fiat-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(66, 214, 207, 0.18), transparent 28%),
    radial-gradient(circle at 10% 82%, rgba(66, 214, 207, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f5fbfa 100%);
}

.fiat-shell {
  padding: 0;
}

.fiat-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.fiat-copy h2 {
  max-width: 760px;
  color: #071015;
}

.fiat-intro {
  padding-top: 22px;
}

.fiat-lead {
  margin: 8px 0 0;
  color: #56636d;
}

.fiat-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.fiat-payment-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(7, 16, 21, 0.08);
  border-radius: 16px;
  color: #071015;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(8, 20, 24, 0.06);
  overflow: hidden;
}

.fiat-payment-chip b,
.fiat-payment-chip small {
  display: block;
}

.fiat-payment-chip b {
  font-size: 0.8rem;
  font-weight: 800;
}

.fiat-payment-chip small {
  color: #6d7880;
  font-size: 0.68rem;
  font-weight: 700;
}

.fiat-payment-badge {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
}

.fiat-payment-badge-currency {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.38), transparent 28%),
    linear-gradient(180deg, #56ddd9 0%, #32c9c6 100%);
  box-shadow: 0 10px 18px rgba(66, 214, 207, 0.26);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.fiat-payment-chip-brand {
  min-width: 124px;
  justify-content: center;
  padding: 0 14px;
  background:
    linear-gradient(180deg, rgba(255, 248, 249, 0.96), rgba(255, 243, 246, 0.92));
}

.fiat-payment-chip-mastercard {
  min-width: 156px;
}

.fiat-brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
  transform-origin: center;
}

.fiat-brand-logo-visa {
  height: 18px;
  transform: scale(1.72);
}

.fiat-brand-logo-mastercard {
  height: 18px;
  transform: scale(2.38);
}

.fiat-flow-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
  margin-bottom: 22px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(7, 16, 21, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 76% 16%, rgba(66, 214, 207, 0.18), transparent 28%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(13, 32, 38, 0.08);
}

.fiat-flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.fiat-flow-icon {
  display: grid;
  flex: 0 0 48px;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #061213;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(180deg, #57ded9 0%, #39cbc6 100%);
  box-shadow: 0 16px 30px rgba(66, 214, 207, 0.22);
  border: 1px solid rgba(66, 214, 207, 0.42);
}

.fiat-flow-icon svg {
  width: 26px;
  height: 26px;
  stroke: #0c161a;
}

.fiat-flow-step small,
.fiat-flow-step strong {
  display: block;
}

.fiat-flow-step small {
  color: #6d7880;
  font-size: 0.76rem;
  font-weight: 750;
}

.fiat-flow-step strong {
  color: #071015;
  font-size: 1.03rem;
  font-weight: 800;
}

.fiat-flow-arrow {
  color: #07979e;
  font-size: 1.4rem;
  font-weight: 800;
  animation: fiat-arrow-pulse 2.2s ease-in-out infinite;
}

.fiat-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.fiat-method-card {
  position: relative;
  min-height: 260px;
  padding: 30px 28px 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 12%, rgba(66, 214, 207, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 246, 0.88));
  box-shadow: 0 18px 44px rgba(10, 20, 24, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.fiat-method-card:hover {
  transform: translateY(-6px);
  background:
    radial-gradient(circle at 86% 12%, rgba(66, 214, 207, 0.24), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 247, 246, 0.94));
  box-shadow: 0 26px 60px rgba(10, 20, 24, 0.1);
}

.fiat-method-card h3 {
  max-width: 280px;
  margin: 38px 0 12px;
  color: #0a1013;
  font-size: clamp(1.24rem, 1.6vw, 1.55rem);
  font-weight: 520;
  line-height: 1.08;
}

.fiat-method-card p {
  margin-bottom: 0;
  color: #5a6670;
  font-size: 0.98rem;
  line-height: 1.58;
}

.fiat-method-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #061213;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(180deg, #57ded9 0%, #39cbc6 100%);
  box-shadow: 0 16px 30px rgba(66, 214, 207, 0.2);
  border: 1px solid rgba(66, 214, 207, 0.42);
}

.fiat-method-icon svg {
  width: 26px;
  height: 26px;
  stroke: #0c161a;
}

@keyframes fiat-arrow-pulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.55;
  }

  50% {
    transform: translateX(4px);
    opacity: 1;
  }
}

.proof-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(66, 214, 207, 0.12), transparent 24%),
    linear-gradient(180deg, #fff 0%, #f3faf9 100%);
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  column-gap: clamp(28px, 6vw, 86px);
  row-gap: var(--eyebrow-margin-bottom);
  align-items: start;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.proof-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.proof-heading h2 {
  max-width: 760px;
  color: #071015;
}

.proof-heading p:not(.eyebrow) {
  margin: 8px 0 0;
  color: #56636d;
}

.proof-marquee-wrap {
  display: grid;
  gap: 16px;
}

.proof-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 18%, #000 82%, transparent 100%);
}

.proof-marquee::before,
.proof-marquee::after {
  content: "";
  position: absolute;
  top: -18px;
  bottom: -18px;
  z-index: 2;
  width: clamp(120px, 18vw, 300px);
  pointer-events: none;
}

.proof-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.92) 36%, rgba(255, 255, 255, 0) 100%);
}

.proof-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.92) 36%, rgba(255, 255, 255, 0) 100%);
}

.proof-track {
  display: flex;
  width: max-content;
  gap: 8.4px;
  will-change: transform;
}

.proof-track span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(132px, 12vw, 184px);
  min-height: 72px;
  padding: 0 24px;
  border-radius: 20px;
  color: #071015;
  background:
    radial-gradient(circle at 78% 18%, rgba(66, 214, 207, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 246, 0.94));
  box-shadow: 0 18px 38px rgba(10, 20, 24, 0.06);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.proof-marquee-right .proof-track {
  animation: marquee-right 57.6s linear infinite;
}

.proof-marquee-left .proof-track {
  animation: marquee-left 57.6s linear infinite;
}

.proof-marquee:hover .proof-track {
  animation-play-state: paused;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(calc(-50% - 7px));
  }

  to {
    transform: translateX(0);
  }
}

.planner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
}

#planner-title + p {
  margin-top: 16px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  display: grid;
  flex: 0 0 24px;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #04100f;
  font-size: 0.8rem;
  font-weight: 900;
  background: var(--accent);
}

.planner-card {
  padding: clamp(22px, 4vw, 36px);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.planner-results {
  align-items: end;
  margin-bottom: 28px;
}

.planner-results span,
.planner-results strong {
  display: block;
}

.planner-results span {
  color: var(--muted);
  font-size: 0.92rem;
}

.planner-results strong {
  color: var(--accent-2);
  font-size: clamp(1.7rem, 4vw, 3rem);
  letter-spacing: -0.06em;
}

.planner-bars {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: end;
  gap: 8px;
  height: 250px;
  margin-bottom: 30px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(rgba(5,7,10,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,7,10,0.05) 1px, transparent 1px),
    #fbfcfc;
  background-size: 42px 42px;
}

.planner-bars span {
  min-height: 5%;
  border-radius: 999px 999px 3px 3px;
  background: linear-gradient(180deg, #54e6df, #047873);
  transition: height 0.25s ease;
}

.planner-controls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.planner-controls label {
  display: grid;
  gap: 9px;
}

.planner-controls label span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.planner-controls output {
  color: var(--ink);
  font-weight: 800;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--accent-2);
}

.private-section {
  padding-top: 0;
}

.private-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
}

.private-image {
  min-height: 520px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(5, 7, 10, 0.08), rgba(66, 214, 207, 0.14)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(239, 243, 245, 0.98));
  box-shadow: var(--shadow);
}

.stacked-list {
  display: grid;
  gap: 0;
  margin-top: 36px;
}

.stacked-list div {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.stacked-list div:last-child {
  border-bottom: 1px solid var(--line);
}

.stacked-list p {
  margin-bottom: 0;
}

.security {
  width: var(--page-shell);
  margin: var(--panel-gap) auto 0;
  color: #fff;
  border-radius: 34px;
  box-shadow: 0 0 0 1px rgba(5, 7, 10, 0.08);
  background:
    radial-gradient(circle at 16% 18%, rgba(66, 214, 207, 0.2), transparent 30%),
    linear-gradient(180deg, #05070a, #0a1012);
}

.security p {
  color: var(--body-copy-dark-color);
}

.security .eyebrow {
  color: var(--accent);
}

.security-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.collaboration {
  width: var(--page-shell);
  margin: var(--panel-gap) auto 0;
  border-radius: 34px;
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.78) inset;
  background:
    radial-gradient(circle at 84% 22%, rgba(66, 214, 207, 0.14), transparent 26%),
    radial-gradient(circle at 12% 88%, rgba(66, 214, 207, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfb 100%);
}

.collaboration-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 0.98fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.collaboration-copy {
  max-width: 520px;
}

.collaboration-copy h2 + p {
  margin-top: 26px;
}

.collaboration-copy p:not(.eyebrow) + p {
  margin-top: 18px;
}

.collaboration-board {
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid rgba(11, 16, 19, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 251, 0.94));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 44px rgba(10, 20, 24, 0.06);
}

.collaboration-board-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.download {
  width: var(--page-shell);
  margin: var(--panel-gap) auto 0;
  padding: 0;
  color: #fff;
  border-radius: 34px;
  box-shadow: 0 0 0 1px rgba(5, 7, 10, 0.08);
  background: transparent;
  overflow: hidden;
}

.download-panel {
  width: 100%;
  padding: clamp(64px, 7vw, 96px) 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 84% 12%, rgba(66, 214, 207, 0.28), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(66, 214, 207, 0.11), transparent 32%),
    linear-gradient(135deg, #0c1216, #05070a 72%);
}

.download-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 4vw, 52px);
  align-items: stretch;
}

.download-panel-inner p {
  color: var(--body-copy-dark-color);
}

.download-panel-inner > div:first-child {
  max-width: 980px;
}

.download-panel-inner h2 {
  max-width: none;
}

.download-panel-inner h2 + p {
  max-width: 920px;
  margin-top: 22px;
  line-height: 1.72;
}

.download-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.download-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 172px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.download-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(66, 214, 207, 0.22), transparent 46%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.download-card > * {
  position: relative;
  z-index: 1;
}

.download-card:hover {
  transform: translateY(-5px);
  border-color: rgba(66, 214, 207, 0.56);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.download-card:hover::after {
  opacity: 1;
}

.download-card:focus-visible {
  outline: 3px solid rgba(66, 214, 207, 0.46);
  outline-offset: 4px;
}

.download-card strong,
.download-card small {
  display: block;
}

.download-card strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.26rem;
  font-weight: 750;
  letter-spacing: 0;
}

.download-card small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
  line-height: 1.42;
}

.download-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  color: #071015;
  background: var(--accent);
  box-shadow: 0 18px 34px rgba(66, 214, 207, 0.18);
}

.download-icon svg {
  width: 28px;
  height: 28px;
}

.download-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 4px;
}

.download-meta span {
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.82rem;
  font-weight: 750;
}

.download-meta strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.1;
}

.download-meta small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.76rem;
  line-height: 1.25;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 0.88fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.faq-grid .reveal > p:not(.eyebrow) {
  margin-top: 48px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #04100f;
  background: var(--accent);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0;
  padding: 0 24px 24px;
}

.site-footer {
  width: var(--page-shell);
  margin: var(--panel-gap) auto var(--panel-gap);
  padding: 72px 0 32px;
  color: #fff;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 0 0 1px rgba(5, 7, 10, 0.08);
  background: #05070a;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta h2 {
  flex: 1;
  max-width: 980px;
  margin-bottom: 0;
}

.footer-cta .btn {
  flex: 0 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) repeat(3, minmax(150px, 0.42fr));
  gap: clamp(30px, 6vw, 70px);
  padding: 50px 0;
}

.footer-grid p,
.footer-bottom {
  color: var(--body-copy-dark-color);
}

.footer-grid h3 {
  margin-bottom: 18px;
  font-size: 1rem;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.64);
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand {
  margin-bottom: 18px;
}

.subscribe {
  display: flex;
  gap: 8px;
  max-width: 440px;
  margin-top: 24px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.subscribe input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 14px;
  color: #fff;
  background: transparent;
  outline: 0;
}

.subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.subscribe button {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  color: #04100f;
  font-weight: 800;
  background: var(--accent);
  cursor: pointer;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  margin-bottom: 0;
}

.footer-social {
  position: relative;
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
}

.footer-social-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 18px;
  height: 18px;
  transform-origin: center;
  transform: translate(-50%, -50%);
}

.footer-social-icon-x {
  transform: translate(-50%, -50%) scale(0.92);
}

.footer-social-icon-youtube {
  transform: translate(-50%, -50%) scale(1.04);
}

.footer-social-icon-instagram {
  transform: translate(-50%, -50%) scale(1.02);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.legal-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(23, 201, 201, 0.12), transparent 30%),
    #eff3f5;
}

.legal-topbar {
  position: sticky;
  top: 12px;
  z-index: 40;
  width: min(var(--page-shell), calc(100vw - 32px));
  margin: 16px auto 0;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 10, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.legal-topbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
}

.legal-brand {
  color: #fff;
}

.legal-topnav {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-topnav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.legal-topnav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.legal-topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-topbar-actions .btn {
  width: auto;
}

.legal-links {
  padding: 124px 0 16px;
}

.legal-anchor-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.legal-anchor-row a {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #04100f;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.12);
}

.legal-content {
  padding: 18px 0 120px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 38px);
  align-items: start;
}

.legal-sidecard {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 20px 46px rgba(26, 37, 43, 0.08);
}

.legal-side-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #445462;
  line-height: 1.7;
}

.legal-stack {
  display: grid;
  gap: 26px;
}

.legal-card {
  padding: clamp(28px, 5vw, 44px);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 253, 0.98));
  box-shadow: 0 24px 52px rgba(26, 37, 43, 0.08);
}

.legal-card-head {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.legal-card-head h2 {
  margin: 0;
  color: #08131f;
}

.legal-prose {
  display: grid;
  gap: 18px;
  color: #4b5a68;
}

.legal-prose h3 {
  margin: 12px 0 0;
  color: #08131f;
  font-size: 1.05rem;
}

.legal-prose p {
  margin: 0;
  line-height: 1.78;
}

.legal-prose a {
  color: #0aaeb9;
  font-weight: 700;
}

.legal-footer {
  margin-top: 0;
}

.legal-footer .footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}

.legal-footer .footer-cta h2 {
  max-width: none;
  width: 100%;
  margin-right: 0;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 14px;
  color: #04100f;
  font-weight: 800;
  background: var(--accent);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  left: max(156px, calc((100vw - var(--page-shell)) / 2 + 92px));
  right: max(156px, calc((100vw - var(--page-shell)) / 2 + 92px));
  bottom: 22px;
  z-index: 175;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 86% 22%, rgba(66, 214, 207, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(7, 16, 21, 0.98), rgba(10, 21, 27, 0.98));
  box-shadow: 0 26px 72px rgba(5, 7, 10, 0.34);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-copy {
  flex: 0 1 980px;
  max-width: 980px;
  padding-left: 44px;
}

.cookie-banner-eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cookie-banner-text {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  line-height: 1.45;
  white-space: nowrap;
}

.cookie-banner-text a {
  color: rgba(255, 255, 255, 0.96);
}

.cookie-banner-text a:hover {
  color: var(--accent);
}

.cookie-banner-action {
  flex: 0 0 auto;
  min-width: 136px;
  margin-left: auto;
  margin-right: 156px;
}

.support-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(5, 7, 10, 0.34);
  backdrop-filter: blur(3px);
}

.support-chat {
  position: fixed;
  top: calc(var(--panel-gap) + 18px);
  right: calc(var(--panel-gap) + 18px);
  bottom: calc(var(--panel-gap) + 18px);
  z-index: 190;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(430px, calc(100% - 28px));
  overflow: hidden;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(66, 214, 207, 0.16), transparent 26%),
    linear-gradient(180deg, #071015 0%, #0d171c 100%);
  box-shadow: 0 28px 80px rgba(5, 7, 10, 0.36);
}

.support-chat[hidden],
.support-overlay[hidden] {
  display: none;
}

.support-chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.support-chat-header .eyebrow {
  margin-bottom: 10px;
}

.support-chat-header h2 {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.support-close {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.support-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding: 20px 18px;
}

.support-message {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
}

.support-message span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-message p {
  margin-bottom: 0;
  color: inherit;
  font-size: 0.94rem;
  line-height: 1.48;
}

.support-message.is-agent {
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.08);
}

.support-message.is-user {
  align-self: flex-end;
  color: #061213;
  background: var(--accent);
}

.support-message.is-user span {
  color: rgba(6, 18, 19, 0.64);
}

.support-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 10px;
  padding: 16px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.support-composer-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  min-height: 54px;
  padding: 0 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  outline: 0;
}

.support-composer-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.support-composer-input:focus {
  border-color: rgba(66, 214, 207, 0.62);
  box-shadow: 0 0 0 3px rgba(66, 214, 207, 0.12);
}

.support-composer-send {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 14px;
  color: #061213;
  background: var(--accent);
  cursor: pointer;
}

.support-composer-send svg {
  width: 22px;
  height: 22px;
}

.support-launcher {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 170;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(5, 7, 10, 0.08);
  border-radius: 50%;
  color: #061213;
  background: var(--accent);
  box-shadow: 0 18px 42px rgba(6, 18, 19, 0.22);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-launcher:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(6, 18, 19, 0.28);
}

.support-launcher svg {
  width: 28px;
  height: 28px;
}

body.support-open .support-launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

body.has-cookie-banner .support-launcher {
  bottom: 116px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.22s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .proof-track {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 1060px) {
  .nav {
    display: flex;
    justify-content: space-between;
  }

  .legal-topbar-inner,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-topnav {
    justify-content: flex-start;
  }

  .legal-sidecard {
    position: static;
  }

  .nav-actions {
    display: none;
  }

  .product-overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-heading,
  .planner-grid,
  .fiat-heading,
  .proof-heading,
  .collaboration-grid,
  .private-grid,
  .download-panel-inner,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .feature-matrix,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fiat-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fiat-flow-card {
    grid-template-columns: 1fr;
  }

  .fiat-flow-arrow {
    justify-self: center;
    transform: rotate(90deg);
    animation: none;
  }

  .download-cards {
    grid-template-columns: 1fr;
  }

  .download-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-shell {
    grid-template-columns: 58px 1fr;
  }

  .app-action-panel {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .legal-topbar {
    top: 8px;
    width: min(var(--page-shell), calc(100vw - 20px));
    margin-top: 10px;
    border-radius: 24px;
  }

  .legal-topbar-inner {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .legal-topbar-actions,
  .legal-anchor-row {
    flex-direction: column;
    align-items: stretch;
  }

  .legal-topbar-actions .btn,
  .legal-anchor-row a {
    width: 100%;
  }

  .legal-sidecard,
  .legal-card {
    border-radius: 24px;
  }

  .device-photo-section {
    --device-photo-top-crop: 0px;
  }

  .product-overview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-overview-card {
    min-height: 208px;
    border-radius: 22px;
  }

  .site-header {
    top: var(--panel-gap);
    padding: 8px 0;
    border-radius: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 72px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a,
  .nav-support {
    padding: 16px;
    border-radius: 14px;
    text-align: left;
  }

  .nav-menu a:hover,
  .nav-support:hover {
    background: var(--surface-2);
  }

  .support-chat {
    inset: auto 14px 14px;
    top: 82px;
    width: auto;
    border-radius: 24px;
  }

  .support-launcher {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  body.has-cookie-banner .support-launcher {
    bottom: 162px;
  }

  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border-radius: 20px;
  }

  .cookie-banner-copy {
    max-width: none;
  }

  .cookie-banner-action {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 64px;
    border-radius: 24px;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.86)),
      url("assets/images/hero/hero-bg.webp") 62% center / cover no-repeat;
  }

  .interface-section,
  .bridge-section,
  .earn-section {
    min-height: auto;
    padding: 108px 0 58px;
  }

  .fiat-shell {
    padding: 0;
  }

  .fiat-methods {
    grid-template-columns: 1fr;
  }

  .fiat-method-card {
    min-height: 220px;
    border-radius: 22px;
  }

  .fiat-flow-card {
    border-radius: 22px;
  }

  .proof-marquee-wrap {
    gap: 12px;
  }

  .proof-track {
    gap: 6px;
  }

  .proof-track span {
    min-width: 124px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 16px;
    font-size: 0.76rem;
  }

  .device-photo-bg {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.84)),
      var(--device-photo-image) var(--device-photo-object-mobile-x) var(--device-photo-object-mobile-y) / auto var(--device-photo-object-mobile-size) no-repeat;
    background-position: var(--device-photo-object-mobile-x) var(--device-photo-object-mobile-y);
    background-size: auto var(--device-photo-object-mobile-size);
  }

  .earn-section,
  .bridge-section,
  .interface-section,
  .security,
  .site-footer {
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(3.05rem, 16vw, 4.8rem);
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-partner-badge {
    display: none;
  }

  .hero-actions,
  .footer-cta,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .trust-row,
  .product-grid,
  .feature-matrix,
  .security-grid,
  .planner-controls,
  .app-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .app-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 10px;
  }

  .app-sidebar {
    display: none;
  }

  .app-main,
  .app-action-panel {
    padding: 18px;
  }

  .app-chart {
    min-height: 170px;
    padding: 14px;
  }

  .laptop-screen {
    padding: 8px;
    border-radius: 22px;
  }

  .private-image {
    min-height: 360px;
  }

  .download-card {
    min-height: 0;
    grid-template-rows: none;
    grid-template-columns: 58px 1fr;
    align-items: center;
  }

  .download-meta {
    grid-template-columns: 1fr;
  }

  .subscribe {
    flex-direction: column;
  }

  .subscribe input {
    min-height: 44px;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 440px) {
  .brand {
    font-size: 1.12rem;
  }

  .legal-topbar,
  .legal-sidecard,
  .legal-card {
    border-radius: 20px;
  }

  .site-header,
  .hero,
  .earn-section,
  .bridge-section,
  .interface-section,
  .security,
  .site-footer {
    border-radius: 20px;
  }

  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-overview-card {
    min-height: 196px;
    padding: 20px 18px 18px;
  }

  .planner-bars {
    height: 190px;
    gap: 5px;
  }

  .cookie-banner-text {
    font-size: 0.9rem;
    white-space: normal;
  }
}
