:root {
  --bg: #ffffff;
  --bg-soft: #f6f6f6;
  --bg-pink: #fff1f3;
  --pink-2: #ffe4e8;
  --pink-3: #ffccd5;
  --text: #232323;
  --muted: #777777;
  --line: #d1d1d1;
  --line-soft: rgba(35, 35, 35, 0.1);
  --flare: #e62058;
  --flare-dark: #c10f45;
  --xaman: #0030cf;
  --gold: #fbb03c;
  --green: #1c9b5d;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 24px 70px rgba(35, 35, 35, 0.12);
  --max: 1440px;
  --page-shell: calc(100% - 156px);
  --section-radius: 30px;
  --section-purple-outset: 56px;
  --pad: 24px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Narrow", "Roboto Condensed", Impact, var(--font);
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(230, 32, 88, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(230, 32, 88, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 70%);
}

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

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

button {
  font: inherit;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 126px 0;
  position: relative;
}

section[id] {
  scroll-margin-top: 96px;
}

.product-section,
.flow-section,
.vault-section,
.smart-section,
.flr-section,
.download-section {
  width: var(--page-shell);
  margin: clamp(24px, 4vw, 46px) auto 0;
  overflow: visible;
  border: 1px solid rgba(35, 35, 35, 0.14);
  border-radius: var(--section-radius);
  background:
    radial-gradient(ellipse at left 24%, rgba(230, 32, 88, 0.08), transparent 34%),
    radial-gradient(ellipse at right 86%, rgba(0, 48, 207, 0.06), transparent 36%),
    #fff;
  box-shadow: 0 32px 90px rgba(35, 35, 35, 0.12);
}

.product-section::before,
.flow-section::before,
.vault-section::before,
.smart-section::before,
.flr-section::before,
.download-section::before,
.product-section::after,
.flow-section::after,
.vault-section::after,
.smart-section::after,
.flr-section::after,
.download-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: var(--section-radius);
  pointer-events: none;
}

.product-section::before,
.flow-section::before,
.vault-section::before,
.smart-section::before,
.flr-section::before,
.download-section::before {
  inset: -18px 18px 34px -18px;
  background: var(--bg-pink);
  border: 1px solid rgba(230, 32, 88, 0.18);
}

.product-section::after,
.flow-section::after,
.vault-section::after,
.smart-section::after,
.flr-section::after,
.download-section::after {
  width: 44%;
  aspect-ratio: 1;
  right: calc(var(--section-purple-outset) * -1);
  bottom: calc(var(--section-purple-outset) * -1);
  background: rgba(0, 48, 207, 0.08);
  border: 1px solid rgba(0, 48, 207, 0.12);
}

.product-section > .container,
.flow-section > .container,
.vault-section > .container,
.smart-section > .container,
.flr-section > .container,
.download-section > .container {
  position: relative;
  z-index: 1;
}

.wallet-section,
.fxrp-section,
.data-section,
.security-section,
.faq-section {
  background: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 76px;
  padding: 14px max(16px, calc((100% - var(--page-shell)) / 2));
  display: grid;
  grid-template-columns: minmax(164px, auto) minmax(0, 1fr) minmax(128px, auto);
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(209, 209, 209, 0.38);
  box-shadow: 0 18px 58px rgba(35, 35, 35, 0.07);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  transition: transform 0.28s ease, opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled,
.site-header.compact {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(35, 35, 35, 0.12);
  box-shadow: 0 22px 70px rgba(35, 35, 35, 0.11);
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 12px));
}

.brand {
  width: 164px;
  flex: 0 0 auto;
  justify-self: start;
}

.site-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
}

.site-nav a,
.site-nav button {
  padding: 10px 13px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav button:hover,
.site-nav button:focus-visible {
  color: var(--text);
  background: rgba(255, 241, 243, 0.82);
  box-shadow: 0 10px 26px rgba(230, 32, 88, 0.08);
  outline: none;
  transform: translateY(-2px);
}

.site-nav .nav-support {
  color: var(--flare-dark);
  background: rgba(255, 241, 243, 0.72);
}

.header-download {
  grid-column: 3;
  justify-self: end;
  color: #fff;
  background: var(--flare-dark);
  padding-inline: 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding: 13px 18px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-download:hover,
.header-download:focus-visible {
  color: #fff;
  background: var(--text);
  outline: none;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-soft);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  min-height: calc(100vh - 76px);
  padding-top: 86px;
  overflow: hidden;
}

.flare-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.flare-field span {
  position: absolute;
  width: 90px;
  height: 14px;
  border-radius: 3px;
  background: var(--pink-3);
  opacity: 0.52;
  transform: rotate(-18deg);
  animation: drift 12s ease-in-out infinite;
}

.flare-field span:nth-child(1) { top: 12%; left: 8%; background: var(--flare); width: 120px; opacity: 0.16; }
.flare-field span:nth-child(2) { top: 22%; right: 12%; animation-delay: -2s; }
.flare-field span:nth-child(3) { top: 72%; left: 14%; background: var(--xaman); opacity: 0.08; animation-delay: -4s; }
.flare-field span:nth-child(4) { top: 58%; right: 6%; width: 150px; opacity: 0.22; animation-delay: -6s; }
.flare-field span:nth-child(5) { top: 40%; left: 45%; width: 70px; background: var(--flare); opacity: 0.1; animation-delay: -8s; }
.flare-field span:nth-child(6) { bottom: 12%; right: 28%; width: 110px; opacity: 0.18; animation-delay: -10s; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.76fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

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

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 72px;
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: 52px;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.motto {
  margin-bottom: 16px;
  color: var(--flare);
  font-size: 21px;
  font-weight: 800;
}

.hero-text,
.section-header p,
.section-copy p,
.footer-brand p,
.legal-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-text {
  max-width: 690px;
  margin-bottom: 30px;
}

.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.download-button,
.download-card {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.download-button {
  min-width: 172px;
  min-height: 62px;
  gap: 12px;
  padding: 12px 16px;
}

.download-button.primary {
  color: #fff;
  border-color: var(--flare-dark);
  background: var(--flare-dark);
}

.download-button:hover,
.download-button:focus-visible,
.download-card:hover,
.download-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--flare);
  box-shadow: var(--shadow);
  outline: none;
}

.download-button img {
  width: 26px;
  height: 26px;
}

.download-button small {
  display: block;
  color: currentColor;
  opacity: 0.66;
  font-size: 12px;
}

.download-button span {
  font-weight: 800;
  line-height: 1.1;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats span {
  padding: 8px 10px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-stats strong {
  color: var(--text);
}

.hero-brand-lockup {
  width: min(360px, 100%);
  margin-top: 18px;
}

.hero-brand-lockup img {
  width: 100%;
}

.hero-media {
  position: relative;
  min-width: 0;
  justify-self: end;
  width: min(100%, 560px);
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-media::before {
  inset: -18px 18px 34px -18px;
  background: var(--bg-pink);
  border: 1px solid rgba(230, 32, 88, 0.18);
}

.hero-media::after {
  width: 44%;
  aspect-ratio: 1;
  right: -8%;
  bottom: -7%;
  background: rgba(0, 48, 207, 0.08);
  border: 1px solid rgba(0, 48, 207, 0.12);
}

.hero-video-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(35, 35, 35, 0.14);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 32px 90px rgba(35, 35, 35, 0.18);
}

.hero-video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 20% 18%, rgba(230, 32, 88, 0.16), transparent 32%),
    radial-gradient(circle at 86% 82%, rgba(0, 48, 207, 0.12), transparent 34%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-soft);
}

.wallet-dashboard-image,
.vault-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bg-soft);
}

.smart-preview-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.app-window {
  border: 1px solid rgba(35, 35, 35, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 32px 90px rgba(35, 35, 35, 0.18);
}

.app-topbar {
  height: 46px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
  font-size: 13px;
  font-weight: 700;
}

.app-topbar strong {
  color: var(--xaman);
  font-size: 12px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.window-dots i:nth-child(1) { background: #ff5f57; }
.window-dots i:nth-child(2) { background: #ffbd2e; }
.window-dots i:nth-child(3) { background: #28c840; }

.app-body {
  display: grid;
  grid-template-columns: 148px 1fr;
  min-height: 600px;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 14px;
  border-right: 1px solid var(--line-soft);
  background: #fbfbfb;
}

.app-sidebar img {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
}

.app-tab {
  width: 100%;
  min-height: 38px;
  padding: 9px 10px;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--muted);
  background: transparent;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.app-tab.active,
.app-tab:hover {
  color: var(--flare-dark);
  background: var(--bg-pink);
}

.app-main {
  min-width: 0;
  padding: 22px;
  display: grid;
  gap: 16px;
}

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

.ui-label,
.metric-card span,
.data-widget span,
.vault-top span,
.download-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.portfolio-head strong {
  display: block;
  margin: 4px 0;
  font-size: 34px;
  line-height: 1;
}

.portfolio-head small,
.metric-card small,
.data-widget small,
.download-card small {
  color: var(--muted);
}

.xaman-pill {
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 48, 207, 0.16);
  border-radius: var(--radius);
  background: rgba(0, 48, 207, 0.06);
  color: var(--xaman);
  font-size: 13px;
  font-weight: 800;
}

.xaman-pill img {
  width: 82px;
}

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

.metric-card,
.chart-card,
.data-widget,
.account-card,
.vault-panel,
.feature-card,
.mini-card,
.legal-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
}

.metric-card {
  min-height: 124px;
  padding: 16px;
}

.metric-card strong {
  display: block;
  margin: 14px 0 8px;
  font-size: 24px;
}

.metric-card.blue {
  border-color: rgba(0, 48, 207, 0.18);
  background: rgba(0, 48, 207, 0.05);
}

.chart-card {
  padding: 16px;
  background: linear-gradient(180deg, #fff, var(--bg-pink));
}

.chart-head,
.vault-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.chart-head span {
  font-weight: 800;
}

.chart-head strong,
.vault-top strong {
  color: var(--flare);
}

.chart-card svg {
  width: 100%;
  height: 180px;
}

.proof-feed {
  display: grid;
  gap: 8px;
}

.feed-item {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  font-family: var(--mono);
  font-size: 12px;
}

.feed-item span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.feed-item.done span {
  background: var(--green);
}

.feed-item.active span {
  background: var(--flare);
  box-shadow: 0 0 0 5px rgba(230, 32, 88, 0.14);
}

.feed-item em {
  color: var(--muted);
  font-style: normal;
}

.trust-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #fff;
  overflow: hidden;
}

.trust-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 16px 0;
  animation: marquee 32s linear infinite;
}

.trust-track span {
  min-width: 136px;
  padding: 10px 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.section-header {
  max-width: 880px;
  margin-bottom: 42px;
}

.download-section {
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.92) 34%, rgba(255, 255, 255, 0.58) 62%, rgba(255, 241, 243, 0.2) 100%),
    url("../../flare_asset/fassets_news_subtype_lower_res.webp") center / min(92%, 920px) no-repeat,
    radial-gradient(ellipse at left 24%, rgba(230, 32, 88, 0.08), transparent 34%),
    radial-gradient(ellipse at right 86%, rgba(0, 48, 207, 0.06), transparent 36%),
    #fff;
}

.download-section::after {
  opacity: 0.78;
}

.download-section .section-header {
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}

.download-section .section-header h2 {
  max-width: 1120px;
  margin-inline: auto;
}

.download-section .section-header p {
  max-width: 1040px;
  margin-inline: auto;
}

.product-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 38%, rgba(255, 255, 255, 0.68) 62%, rgba(255, 255, 255, 0.08) 100%),
    url("../../flare_asset/Blogheader_no_text.png") center / cover no-repeat;
}

.product-section > .container {
  position: relative;
}

.product-layout {
  display: block;
}

.product-copy {
  max-width: 760px;
}

.product-copy h2 {
  max-width: 740px;
}

.product-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.product-scope strong,
.product-wallet-card small {
  color: var(--flare);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-scheme {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 860px;
  margin-top: 32px;
  padding: 14px 0;
  border-top: 1px solid rgba(35, 35, 35, 0.12);
  border-bottom: 1px solid rgba(35, 35, 35, 0.12);
}

.product-scheme span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 6px 30px 6px 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

.product-scheme span:not(:last-child)::after {
  content: "->";
  position: absolute;
  right: 12px;
  color: var(--flare);
  font-family: var(--mono);
  font-weight: 900;
}

.product-wallet-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 780px;
  margin-top: 30px;
}

.product-wallet-card {
  min-height: 190px;
  padding: 18px;
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(35, 35, 35, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-wallet-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 32, 88, 0.24);
  background: var(--bg-pink);
  box-shadow: 0 28px 70px rgba(230, 32, 88, 0.14);
}

.wallet-card-head {
  display: flex;
  flex-direction: column;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(35, 35, 35, 0.1);
}

.wallet-card-head strong {
  font-size: 21px;
  line-height: 1.05;
}

.product-wallet-card p {
  min-height: 50px;
  margin: 14px 0 14px;
  color: var(--muted);
  font-size: 15px;
}

.product-wallet-card small {
  display: block;
  margin-bottom: 10px;
}

.wallet-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wallet-card-tags span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(230, 32, 88, 0.18);
  border-radius: var(--radius-sm);
  background: rgba(255, 241, 243, 0.72);
  color: var(--flare-dark);
  font-size: 12px;
  font-weight: 850;
}

.product-scope {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  max-width: 880px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.product-scope span {
  position: relative;
  padding-left: 14px;
  font-weight: 750;
}

.product-scope span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--flare);
}

.feature-grid,
.mini-card-grid,
.data-grid,
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 270px;
  padding: 24px;
  background: var(--bg-pink);
  transition: transform 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  background: var(--pink-2);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 900;
  font-size: 14px;
}

.card-icon.red { background: var(--flare); }
.card-icon.blue { background: var(--xaman); }

.feature-card p,
.mini-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
}

.two-column,
.vault-grid,
.security-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 56px;
}

.two-column,
.vault-grid,
.security-grid {
  align-items: center;
}

.faq-grid {
  align-items: start;
}

.wallet-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.12fr);
}

.wallet-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
  margin-top: 26px;
}

.wallet-feature-list span {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 850;
}

.wallet-feature-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--flare);
}

.wallet-window {
  min-width: 0;
}

.wallet-window .app-body {
  min-height: 560px;
}

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

.wallet-action-card {
  min-height: 122px;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
}

.wallet-action-card span {
  display: block;
  color: var(--flare);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.wallet-action-card strong {
  display: block;
  margin: 12px 0 6px;
  font-size: 17px;
  line-height: 1.15;
}

.wallet-action-card small {
  color: var(--muted);
}

.wallet-activity {
  margin-top: 2px;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.72fr) minmax(0, 0.88fr);
  grid-template-areas: "diagram copy";
  gap: clamp(38px, 5vw, 78px);
  align-items: center;
  padding-inline: clamp(18px, 2.2vw, 34px);
}

.flow-copy {
  grid-area: copy;
  max-width: 650px;
}

.flow-copy h2 {
  max-width: 640px;
}

.flow-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.flow-points {
  margin-top: 36px;
  display: grid;
  gap: 12px;
  max-width: 610px;
}

.flow-points article {
  position: relative;
  min-height: 104px;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(35, 35, 35, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.flow-points article::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--flare);
  box-shadow: 0 0 0 7px rgba(230, 32, 88, 0.1);
  transform: translateY(-50%);
}

.flow-points article:hover,
.vault-points article:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 32, 88, 0.24);
  background: var(--bg-pink);
  box-shadow: 0 28px 70px rgba(230, 32, 88, 0.14);
}

.flow-points strong,
.flow-points span {
  display: block;
}

.flow-points strong {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}

.flow-points span {
  color: var(--muted);
  font-size: 15px;
}

.flow-diagram-wrap {
  grid-area: diagram;
  position: relative;
  justify-self: start;
  width: min(100%, 470px);
  padding: 18px 20px 24px 0;
  isolation: isolate;
}

.flow-diagram-wrap::before,
.flow-diagram-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: var(--radius);
  pointer-events: none;
}

.flow-diagram-wrap::before {
  inset: -16px 46px 56px -22px;
  background: var(--bg-pink);
  border: 1px solid rgba(230, 32, 88, 0.18);
}

.flow-diagram-wrap::after {
  width: 42%;
  aspect-ratio: 1;
  right: -5%;
  bottom: -4%;
  background: rgba(0, 48, 207, 0.08);
  border: 1px solid rgba(0, 48, 207, 0.12);
}

.flow-diagram-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: clamp(7px, 1vw, 12px);
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at left 18%, rgba(230, 32, 88, 0.08), transparent 34%),
    radial-gradient(ellipse at right 82%, rgba(0, 48, 207, 0.06), transparent 34%),
    #fff;
  box-shadow: 0 32px 90px rgba(35, 35, 35, 0.14);
}

.flow-diagram-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  background: #fff;
}

.partners-section {
  margin-top: calc(var(--section-purple-outset) + 22px);
  padding: 108px 0 120px;
  background: #fff;
}

.partners-kicker {
  margin: 0 0 66px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.partner-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 44px);
  width: min(100%, 1280px);
  margin-inline: auto;
}

.partner-logo-row img {
  width: auto;
  max-width: 218px;
  max-height: 55px;
  object-fit: contain;
  filter: saturate(0.98);
}

.partner-logo-row img:nth-child(1) {
  width: 118px;
  max-width: 118px;
  max-height: none;
}

.partner-logo-row img:nth-child(2) {
  max-width: 190px;
  max-height: 44px;
}

.partner-logo-row img:nth-child(3) {
  max-width: 185px;
  max-height: 44px;
}

.partner-logo-row img:nth-child(4) {
  max-width: 125px;
  max-height: 39px;
}

.partner-logo-row img:nth-child(5) {
  max-width: 164px;
  max-height: 42px;
}

.partner-logo-row img:nth-child(6) {
  max-width: 190px;
  max-height: 42px;
}

.partner-logo-row img:nth-child(7) {
  max-width: 218px;
  max-height: 55px;
}

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

.flow-step {
  min-height: 118px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: #fff;
}

.flow-step span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.flow-step strong,
.flow-step small {
  display: block;
}

.flow-step small {
  margin-top: 4px;
  color: var(--muted);
}

.flow-step.blue {
  border-color: rgba(0, 48, 207, 0.18);
  box-shadow: inset 4px 0 0 var(--xaman);
}

.flow-step.red {
  border-color: rgba(230, 32, 88, 0.22);
  box-shadow: inset 4px 0 0 var(--flare);
}

.vault-panel {
  min-height: 480px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(230, 32, 88, 0.08), rgba(0, 48, 207, 0.05)),
    #fff;
}

.vault-balance {
  margin: 70px 0 28px;
}

.vault-balance small,
.vault-balance strong {
  display: block;
}

.vault-balance small {
  color: var(--muted);
}

.vault-balance strong {
  margin-top: 8px;
  font-size: 46px;
  line-height: 1;
}

.allocation {
  display: flex;
  height: 46px;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
}

.allocation span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.allocation span:nth-child(1) { background: var(--flare); }
.allocation span:nth-child(2) { background: var(--flare-dark); }
.allocation span:nth-child(3) { background: var(--xaman); }
.allocation span:nth-child(4) { background: var(--gold); color: var(--text); }

.vault-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.vault-actions button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--text);
  color: #fff;
  font-weight: 800;
}

.vault-actions button + button {
  background: #fff;
  color: var(--text);
}

.vault-copy {
  max-width: 650px;
}

.vault-copy h2 {
  max-width: 620px;
}

.vault-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 0;
}

.vault-points {
  margin-top: 34px;
  display: grid;
  gap: 12px;
  max-width: 620px;
}

.vault-points article {
  position: relative;
  min-height: 96px;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(35, 35, 35, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.vault-points article::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--flare);
  box-shadow: 0 0 0 7px rgba(230, 32, 88, 0.1);
  transform: translateY(-50%);
}

.vault-points strong,
.vault-points span {
  display: block;
}

.vault-points strong {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}

.vault-points span {
  color: var(--muted);
  font-size: 15px;
}

.vault-preview-media {
  width: min(100%, 560px);
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--flare);
}

.fxrp-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 0.9fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.fxrp-graphic {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 44px);
  background: #fff;
}

.fxrp-graphic img {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
}

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

.fxrp-copy h2 {
  max-width: 660px;
}

.fxrp-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.fxrp-lifecycle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 28px;
  max-width: 680px;
}

.fxrp-lifecycle span {
  position: relative;
  min-height: 78px;
  padding: 12px;
  border: 1px solid rgba(230, 32, 88, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 241, 243, 0.56);
}

.fxrp-lifecycle span:not(:last-child)::after {
  content: "->";
  position: absolute;
  top: 50%;
  right: -14px;
  z-index: 1;
  color: var(--flare);
  font-family: var(--mono);
  font-weight: 900;
  transform: translateY(-50%);
}

.fxrp-lifecycle strong,
.fxrp-lifecycle small {
  display: block;
}

.fxrp-lifecycle strong {
  color: var(--flare-dark);
  font-size: 16px;
  line-height: 1.15;
}

.fxrp-lifecycle small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.25;
}

.fxrp-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 24px;
}

.fxrp-card-grid article {
  position: relative;
  min-height: 132px;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(35, 35, 35, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.fxrp-card-grid article::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--flare);
  box-shadow: 0 0 0 7px rgba(230, 32, 88, 0.1);
  transform: translateY(-50%);
}

.fxrp-card-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 32, 88, 0.24);
  background: var(--bg-pink);
  box-shadow: 0 28px 70px rgba(230, 32, 88, 0.14);
}

.fxrp-card-grid strong,
.fxrp-card-grid span {
  display: block;
}

.fxrp-card-grid strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}

.fxrp-card-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.mini-card {
  min-height: 168px;
  padding: 20px;
}

.smart-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

.smart-copy {
  max-width: 640px;
}

.smart-copy h2 {
  max-width: 620px;
}

.smart-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
}

.smart-points {
  display: grid;
  gap: 12px;
  max-width: 590px;
  margin-top: 32px;
}

.smart-points article {
  position: relative;
  min-height: 96px;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(35, 35, 35, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.smart-points article::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--flare);
  box-shadow: 0 0 0 7px rgba(230, 32, 88, 0.1);
  transform: translateY(-50%);
}

.smart-points article:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 32, 88, 0.24);
  background: var(--bg-pink);
  box-shadow: 0 28px 70px rgba(230, 32, 88, 0.14);
}

.smart-points strong,
.smart-points span {
  display: block;
}

.smart-points strong {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}

.smart-points span {
  color: var(--muted);
  font-size: 15px;
}

.smart-preview-media {
  min-width: 0;
  justify-self: end;
  width: min(100%, 500px);
}

.flr-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.74fr);
  gap: clamp(42px, 6vw, 86px);
  align-items: center;
}

.flr-copy {
  max-width: 760px;
}

.flr-copy h2 {
  max-width: 680px;
}

.flr-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
}

.flr-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin-top: 32px;
}

.flr-actions article {
  position: relative;
  min-height: 122px;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(35, 35, 35, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.flr-actions article::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--flare);
  box-shadow: 0 0 0 7px rgba(230, 32, 88, 0.1);
  transform: translateY(-50%);
}

.flr-actions article:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 32, 88, 0.24);
  background: var(--bg-pink);
  box-shadow: 0 28px 70px rgba(230, 32, 88, 0.14);
}

.flr-actions strong,
.flr-actions span {
  display: block;
}

.flr-actions strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}

.flr-actions span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.flr-visual {
  min-width: 0;
  justify-self: end;
  width: min(100%, 520px);
}

.flr-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.security-layout {
  display: grid;
  gap: 42px;
}

.security-intro {
  max-width: 1180px;
  margin-inline: auto;
  text-align: center;
}

.security-intro h2 {
  max-width: 1120px;
  margin-inline: auto;
}

.security-intro p:not(.eyebrow) {
  max-width: 1040px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.security-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.security-flow::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 32, 88, 0.22), rgba(230, 32, 88, 0.28) 40%, rgba(0, 48, 207, 0.22) 72%, rgba(230, 32, 88, 0.2));
}

.security-flow article {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.security-flow img {
  width: min(100%, 176px);
  height: auto;
  margin-bottom: 18px;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.security-flow article:hover img {
  filter: drop-shadow(0 18px 32px rgba(230, 32, 88, 0.12));
  transform: translateY(-8px);
}

.security-flow h3 {
  margin: 8px 0;
  font-family: var(--font);
  font-size: 22px;
  line-height: 1.05;
  text-transform: none;
}

.security-flow p {
  max-width: 210px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.account-card {
  padding: 28px;
  background: #fff;
}

.account-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-soft);
}

.account-row span {
  color: var(--muted);
}

.account-row strong {
  font-family: var(--mono);
  font-size: 14px;
}

.account-log {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
}

.account-log span {
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  font-size: 13px;
  font-weight: 800;
}

.account-log .done {
  color: var(--green);
}

.account-log .active {
  color: var(--flare-dark);
}

.data-widget {
  min-height: 188px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(230, 32, 88, 0.08), rgba(137, 78, 255, 0.05)),
    #fff;
  border-color: rgba(230, 32, 88, 0.12);
}

.data-widget strong {
  display: block;
  margin: 34px 0 8px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 30px;
}

.data-layer-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(0, 0.96fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}

.data-layer-visual {
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 28px);
  background:
    linear-gradient(90deg, rgba(230, 32, 88, 0.04), transparent 54%),
    #fff;
}

.data-layer-visual img {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
}

.data-layer-copy {
  max-width: 720px;
}

.data-layer-copy h2 {
  max-width: 660px;
}

.data-layer-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.data-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 28px;
}

.data-signal-grid article {
  position: relative;
  min-height: 132px;
  padding: 18px 18px 18px 44px;
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(35, 35, 35, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.data-signal-grid article::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--flare);
  box-shadow: 0 0 0 7px rgba(230, 32, 88, 0.1);
  transform: translateY(-50%);
}

.data-signal-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 32, 88, 0.24);
  background: var(--bg-pink);
  box-shadow: 0 28px 70px rgba(230, 32, 88, 0.14);
}

.data-signal-grid span,
.data-signal-grid strong,
.data-signal-grid small {
  display: block;
}

.data-signal-grid span {
  margin-bottom: 10px;
  color: var(--flare-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-signal-grid strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.15;
}

.data-signal-grid small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

.download-card {
  position: relative;
  min-height: 304px;
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border-color: rgba(230, 32, 88, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 243, 0.86)),
    #fff;
  box-shadow: 0 24px 70px rgba(35, 35, 35, 0.1);
  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;
}

.download-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(230, 32, 88, 0.12), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(0, 48, 207, 0.1), transparent 30%);
  opacity: 0.74;
}

.download-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 144px;
  aspect-ratio: 1;
  border: 1px solid rgba(230, 32, 88, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
}

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

.download-card:hover,
.download-card:focus-visible {
  transform: translate3d(0, -14px, 0) scale(1.025);
  border-color: rgba(230, 32, 88, 0.32);
  box-shadow: 0 38px 92px rgba(35, 35, 35, 0.18), 0 18px 46px rgba(230, 32, 88, 0.12);
}

.download-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.download-icon {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35, 35, 35, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(35, 35, 35, 0.1);
}

.download-icon img {
  width: 44px;
  height: 44px;
}

.download-action {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(35, 35, 35, 0.11);
  border-radius: 14px;
  color: #6f5d63;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(35, 35, 35, 0.06);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.download-action img {
  width: 22px;
  height: 22px;
  opacity: 0.72;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.download-card:hover .download-action,
.download-card:focus-visible .download-action {
  color: #fff;
  border-color: rgba(230, 32, 88, 0.18);
  background: var(--flare-dark);
  box-shadow: 0 16px 34px rgba(230, 32, 88, 0.2);
  transform: translate3d(0, -3px, 0) scale(1.04);
}

.download-card:hover .download-action img,
.download-card:focus-visible .download-action img {
  opacity: 1;
  filter: invert(1);
  transform: translateY(1px);
}

.download-card-body {
  align-self: start;
}

.download-platform {
  display: block;
  margin-bottom: 12px;
  color: var(--flare-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.download-card strong {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
  font-size: 27px;
  line-height: 1.08;
}

.download-card-body small {
  display: block;
  max-width: 260px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.download-version {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid rgba(35, 35, 35, 0.1);
}

.download-version span {
  color: var(--flare-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.download-version small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.35;
}

.faq-intro {
  display: grid;
  align-content: start;
  gap: 34px;
}

.faq-intro-copy {
  max-width: 560px;
}

.faq-intro-copy h2 {
  margin-bottom: 22px;
}

.faq-intro-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.faq-visual {
  width: min(100%, 520px);
  height: auto;
  margin-top: 56px;
  object-fit: contain;
  transform: scaleX(-1);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 64px;
  padding: 18px 56px 18px 20px;
  border: 0;
  background: #fff;
  color: var(--text);
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--flare);
  font-size: 24px;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-item div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-item div > p {
  overflow: hidden;
  margin: 0;
  padding: 0 20px;
  color: var(--muted);
}

.faq-item.is-open div {
  grid-template-rows: 1fr;
}

.faq-item.is-open div > p {
  padding-bottom: 20px;
}

.site-footer {
  padding: 56px 0;
  border-top: 1px solid var(--line-soft);
  background: var(--text);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 36px;
  align-items: start;
}

.footer-brand-logos {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.footer-brand-logos img {
  display: block;
  height: auto;
  margin: 0;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

.footer-brand-logos .footer-logo-main {
  width: 164px;
  margin-left: -30px;
}

.footer-logo-ecosystem {
  width: min(292px, 54vw);
  opacity: 0.74;
}

.footer-brand p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(132px, 1fr));
  gap: 10px 24px;
}

.footer-links a,
.footer-legal-links a,
.footer-social-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-legal-links a:hover,
.footer-legal-links a:focus-visible,
.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px 28px;
  padding-top: 6px;
}

.footer-bottom::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.copyright {
  grid-column: 1;
  grid-row: 3;
  justify-self: start;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
}

.footer-legal-links {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 15px;
}

.footer-social-links {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.footer-social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-social-links a:hover,
.footer-social-links a:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-social-links svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-links .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-social-links .footer-discord-icon {
  width: 24px;
  height: 24px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 34px;
  z-index: 200;
  width: min(1100px, calc(100% - 180px));
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(230, 32, 88, 0.16);
  border-radius: 14px;
  background:
    radial-gradient(ellipse at left center, rgba(230, 32, 88, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 72px rgba(35, 35, 35, 0.16);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  transform: translateX(-50%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--flare-dark);
  font-weight: 800;
}

.cookie-banner button {
  min-height: 48px;
  min-width: 112px;
  padding: 10px 24px;
  border: 0;
  border-radius: 10px;
  background: var(--flare-dark);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(230, 32, 88, 0.24);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cookie-banner button:hover,
.cookie-banner button:focus-visible {
  background: var(--flare);
  box-shadow: 0 18px 44px rgba(230, 32, 88, 0.34);
  outline: none;
  transform: translateY(-2px);
}

.cookie-banner button:active {
  background: var(--text);
  box-shadow: 0 10px 24px rgba(35, 35, 35, 0.2);
  transform: translateY(0);
}

.support-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 210;
  pointer-events: none;
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(410px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 132px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(230, 32, 88, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at left top, rgba(230, 32, 88, 0.12), transparent 34%),
    radial-gradient(ellipse at right bottom, rgba(0, 48, 207, 0.08), transparent 38%),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 86px rgba(35, 35, 35, 0.18);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  pointer-events: auto;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.support-panel:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.support-panel[hidden] {
  display: none;
}

.support-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(35, 35, 35, 0.1);
}

.support-kicker {
  margin: 0 0 8px;
  color: var(--flare-dark);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-panel-header h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-family: var(--font);
  font-size: 24px;
  line-height: 1.08;
  text-transform: none;
}

.support-panel-header span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.support-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(35, 35, 35, 0.1);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.support-close:hover,
.support-close:focus-visible {
  background: var(--bg-pink);
  outline: none;
  transform: translateY(-1px);
}

.support-close svg {
  width: 18px;
  height: 18px;
}

.support-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  overflow-y: auto;
  padding: 18px;
}

.support-message {
  max-width: 90%;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(35, 35, 35, 0.08);
  box-shadow: 0 12px 34px rgba(35, 35, 35, 0.06);
}

.support-message span {
  display: block;
  margin-bottom: 5px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-message p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.support-message.is-agent {
  align-self: flex-start;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
}

.support-message.is-agent span {
  color: var(--flare-dark);
}

.support-message.is-typing {
  min-width: 92px;
}

.support-typing-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 20px;
}

.support-typing-dots i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: rgba(230, 32, 88, 0.5);
  animation: supportTypingPulse 0.9s ease-in-out infinite;
}

.support-typing-dots i:nth-child(2) {
  animation-delay: 0.12s;
}

.support-typing-dots i:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes supportTypingPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

.support-message.is-user {
  align-self: flex-end;
  border-color: rgba(230, 32, 88, 0.2);
  color: #fff;
  background: linear-gradient(135deg, var(--flare), var(--flare-dark));
  box-shadow: 0 16px 42px rgba(230, 32, 88, 0.2);
}

.support-message.is-user span {
  color: rgba(255, 255, 255, 0.78);
}

.support-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 50px;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(35, 35, 35, 0.1);
  background: rgba(255, 255, 255, 0.74);
}

.support-input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: 12px;
  color: var(--text);
  background: #fff;
  font: inherit;
  outline: none;
}

.support-input::placeholder {
  color: rgba(119, 119, 119, 0.72);
}

.support-input:focus {
  border-color: rgba(230, 32, 88, 0.42);
  box-shadow: 0 0 0 4px rgba(230, 32, 88, 0.08);
}

.support-input:disabled {
  color: rgba(119, 119, 119, 0.82);
  background: rgba(255, 255, 255, 0.68);
  cursor: wait;
}

.support-send {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--flare-dark);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.support-send:hover,
.support-send:focus-visible {
  background: var(--text);
  outline: none;
  transform: translateY(-1px);
}

.support-send svg {
  width: 21px;
  height: 21px;
}

.support-send:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.support-launcher {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(230, 32, 88, 0.2);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(135deg, var(--flare), var(--flare-dark));
  box-shadow: 0 18px 52px rgba(230, 32, 88, 0.24);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-launcher:hover,
.support-launcher:focus-visible {
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(230, 32, 88, 0.3);
}

.support-launcher-icon {
  grid-area: 1 / 1;
  width: 29px;
  height: 29px;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.support-launcher-icon-close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.82);
}

.support-launcher.is-open .support-launcher-icon-chat {
  opacity: 0;
  transform: rotate(45deg) scale(0.82);
}

.support-launcher.is-open .support-launcher-icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.cookie-banner:not([hidden]) + .support-widget {
  bottom: 34px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.download-card.reveal {
  transition: opacity 0.45s ease, transform 0.26s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.22s ease, box-shadow 0.26s ease;
}

.download-card.reveal:hover,
.download-card.reveal:focus-visible {
  transform: translate3d(0, -14px, 0) scale(1.025);
  border-color: rgba(230, 32, 88, 0.32);
  box-shadow: 0 38px 92px rgba(35, 35, 35, 0.18), 0 18px 46px rgba(230, 32, 88, 0.12);
}

.legal-page {
  background:
    radial-gradient(ellipse at 8% 10%, rgba(230, 32, 88, 0.08), transparent 30%),
    radial-gradient(ellipse at 92% 28%, rgba(0, 48, 207, 0.06), transparent 32%),
    var(--bg-soft);
}

.legal-main {
  padding: 110px 0 104px;
}

.legal-shell {
  width: var(--page-shell);
  max-width: 1480px;
  margin-inline: auto;
}

.legal-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  overflow: hidden;
  padding: clamp(42px, 5vw, 70px);
  border: 1px solid rgba(35, 35, 35, 0.14);
  border-radius: var(--section-radius);
  background:
    radial-gradient(ellipse at 12% 12%, rgba(230, 32, 88, 0.1), transparent 34%),
    radial-gradient(ellipse at 92% 86%, rgba(0, 48, 207, 0.08), transparent 36%),
    #fff;
  box-shadow: 0 30px 86px rgba(35, 35, 35, 0.11);
}

.legal-hero h1 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: clamp(46px, 5.2vw, 76px);
}

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

.legal-hero-copy p:not(.eyebrow) {
  max-width: 840px;
}

.legal-principles article span {
  color: var(--flare-dark);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.legal-principles article {
  min-height: 168px;
  padding: 20px;
  border: 1px solid rgba(35, 35, 35, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.legal-principles article:hover {
  border-color: rgba(230, 32, 88, 0.28);
  background: rgba(255, 241, 243, 0.82);
  box-shadow: 0 18px 46px rgba(230, 32, 88, 0.11);
  transform: translateY(-3px);
}

.legal-principles h2 {
  margin: 14px 0 10px;
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.2;
  text-transform: none;
}

.legal-principles p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.legal-toc a {
  padding: 11px 13px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--flare-dark);
  border-color: rgba(230, 32, 88, 0.22);
  background: var(--bg-pink);
  outline: none;
  transform: translateY(-1px);
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  align-items: start;
  gap: 22px;
}

.legal-sidecard {
  position: sticky;
  top: 102px;
  padding: 24px;
  border: 1px solid rgba(35, 35, 35, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(ellipse at left top, rgba(230, 32, 88, 0.12), transparent 38%),
    radial-gradient(ellipse at right bottom, rgba(0, 48, 207, 0.07), transparent 34%),
    #fff;
  box-shadow: 0 20px 58px rgba(35, 35, 35, 0.08);
}

.legal-sidecard ul {
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.legal-sidecard li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.legal-sidecard li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--flare);
}

.legal-sidecard a {
  display: inline-flex;
  padding: 11px 13px;
  border: 1px solid rgba(230, 32, 88, 0.18);
  border-radius: var(--radius-sm);
  color: var(--flare-dark);
  background: var(--bg-pink);
  font-size: 14px;
  font-weight: 900;
}

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: clamp(24px, 3vw, 42px);
  box-shadow: 0 16px 48px rgba(35, 35, 35, 0.06);
  scroll-margin-top: 112px;
}

.legal-card-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.legal-card h2 {
  font-family: var(--font);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  text-transform: none;
}

.legal-card h3 {
  margin: 28px 0 10px;
  font-size: 19px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.legal-card p {
  margin-bottom: 16px;
}

.legal-card strong {
  color: var(--text);
}

.legal-card code {
  font-family: var(--mono);
  color: var(--flare-dark);
}

.legal-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  background: var(--bg-pink);
  color: var(--flare-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-18deg); }
  50% { transform: translate3d(24px, -18px, 0) rotate(-12deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-grid,
  .product-layout,
  .flow-layout,
  .fxrp-layout,
  .data-layer-layout,
  .flr-layout,
  .two-column,
  .vault-grid,
  .security-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .flow-layout {
    grid-template-areas:
      "copy"
      "diagram";
    padding-inline: 0;
  }

  .flow-diagram-wrap {
    justify-self: center;
  }

  .security-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .security-intro p:not(.eyebrow) {
    max-width: 720px;
  }

  .feature-grid,
  .product-wallet-cards,
  .fxrp-card-grid,
  .data-signal-grid,
  .flr-actions,
  .data-grid,
  .mini-card-grid,
  .fxrp-lifecycle {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-logo-row {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 34px;
  }

  .legal-hero,
  .legal-content {
    grid-template-columns: 1fr;
  }

  .legal-sidecard {
    position: relative;
    top: auto;
  }

  .legal-principles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  :root {
    --page-shell: calc(100% - 8.5px);
    --section-radius: 22px;
    --section-purple-outset: 34px;
  }

  .container {
    width: min(100% - 32px, var(--max));
  }

  .section {
    padding: 83px 0;
  }

  .site-header {
    min-height: 66px;
    padding: 12px 16px;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .header-download {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

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

  .site-nav a,
  .site-nav button {
    padding: 12px;
  }

  .brand {
    width: 150px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .product-section,
  .flow-section,
  .vault-section,
  .smart-section,
  .flr-section,
  .download-section {
    margin-top: 24px;
  }

  h1 {
    font-size: 42px;
    line-height: 1;
  }

  h2,
  .legal-hero h1 {
    font-size: 34px;
    line-height: 1.05;
  }

  .hero-text,
  .section-header p,
  .section-copy p,
  .footer-brand p,
  .legal-hero p {
    font-size: 16px;
  }

  .download-row,
  .vault-actions {
    flex-direction: column;
  }

  .download-button {
    width: 100%;
  }

  .app-body {
    grid-template-columns: 1fr;
    min-width: 0;
    min-height: auto;
  }

  .app-topbar {
    grid-template-columns: 86px 1fr;
  }

  .app-topbar strong {
    display: none;
  }

  .app-sidebar {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .app-sidebar img {
    flex: 0 0 auto;
    margin: 0 8px 0 0;
  }

  .app-tab {
    flex: 0 0 auto;
    width: auto;
    min-width: 86px;
    text-align: center;
  }

  .app-main {
    padding: 14px;
  }

  .xaman-pill {
    min-width: 0;
    width: 100%;
  }

  .chart-card svg {
    height: 130px;
  }

  .flow-card,
  .flow-layout,
  .fxrp-layout,
  .data-layer-layout,
  .flr-layout,
  .wallet-feature-list,
  .wallet-action-grid,
  .feature-grid,
  .product-wallet-cards,
  .fxrp-card-grid,
  .data-signal-grid,
  .flr-actions,
  .fxrp-lifecycle,
  .data-grid,
  .download-grid,
  .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .flow-layout {
    grid-template-areas:
      "copy"
      "diagram";
    padding-inline: 0;
  }

  .app-panels {
    grid-template-columns: 1fr;
  }

  .wallet-window .app-body {
    min-height: auto;
  }

  .product-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-brand-lockup {
    width: min(310px, 100%);
    margin-top: 16px;
  }

  .product-lead {
    font-size: 17px;
  }

  .product-wallet-card {
    min-height: auto;
  }

  .product-scheme {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-scheme span {
    width: 100%;
    padding-right: 0;
  }

  .product-scheme span:not(:last-child)::after {
    position: static;
    margin-left: 10px;
  }

  .product-scope {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .flow-copy,
  .flow-copy h2,
  .flow-copy > p:not(.eyebrow) {
    max-width: none;
  }

  .flow-copy h2 {
    font-size: 38px;
  }

  .flow-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .flow-points {
    margin-top: 28px;
  }

  .flow-points article {
    min-height: auto;
    padding: 16px 16px 16px 40px;
  }

  .flow-points article::before {
    left: 16px;
  }

  .flow-points strong {
    font-size: 17px;
  }

  .flow-points span {
    font-size: 14px;
  }

  .flow-diagram-wrap {
    justify-self: center;
    width: min(100%, 460px);
    padding: 16px 12px 18px 0;
  }

  .flow-diagram-wrap::before {
    inset: -12px 34px 42px -14px;
  }

  .flow-diagram-card {
    padding: 8px;
    overflow: hidden;
  }

  .flow-diagram-card img {
    width: 100%;
    max-width: 100%;
  }

  .fxrp-graphic {
    min-height: 320px;
    padding: 10px;
  }

  .fxrp-graphic img {
    width: min(100%, 340px);
  }

  .fxrp-copy,
  .fxrp-copy h2,
  .fxrp-copy > p:not(.eyebrow) {
    max-width: none;
  }

  .fxrp-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .fxrp-lifecycle span {
    min-height: auto;
    padding: 10px 12px;
  }

  .fxrp-lifecycle span:not(:last-child)::after {
    display: none;
  }

  .fxrp-card-grid article {
    min-height: auto;
    padding: 16px 16px 16px 40px;
  }

  .fxrp-card-grid article::before {
    left: 16px;
  }

  .fxrp-card-grid strong {
    font-size: 17px;
  }

  .data-layer-visual {
    min-height: 320px;
    padding: 10px;
  }

  .data-layer-visual img {
    width: min(100%, 340px);
  }

  .data-layer-copy,
  .data-layer-copy h2,
  .data-layer-copy > p:not(.eyebrow) {
    max-width: none;
  }

  .data-layer-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .data-signal-grid article {
    min-height: auto;
    padding: 16px 16px 16px 40px;
  }

  .data-signal-grid article::before {
    left: 16px;
  }

  .data-signal-grid strong {
    font-size: 17px;
  }

  .data-signal-grid small {
    font-size: 14px;
  }

  .vault-copy,
  .vault-copy h2,
  .vault-copy > p:not(.eyebrow) {
    max-width: none;
  }

  .vault-points {
    margin-top: 26px;
  }

  .vault-points article {
    min-height: auto;
    padding: 16px 16px 16px 40px;
  }

  .vault-points article::before {
    left: 16px;
  }

  .vault-points strong {
    font-size: 17px;
  }

  .vault-points span {
    font-size: 14px;
  }

  .vault-preview-media {
    justify-self: center;
  }

  .smart-copy,
  .smart-copy h2,
  .smart-copy > p:not(.eyebrow) {
    max-width: none;
  }

  .smart-points {
    margin-top: 26px;
  }

  .smart-points article {
    min-height: auto;
    padding: 16px 16px 16px 40px;
  }

  .smart-points article::before {
    left: 16px;
  }

  .smart-points strong {
    font-size: 17px;
  }

  .smart-points span {
    font-size: 14px;
  }

  .smart-preview-media {
    justify-self: center;
    width: min(100%, 420px);
  }

  .flr-copy,
  .flr-copy h2,
  .flr-copy > p:not(.eyebrow) {
    max-width: none;
  }

  .flr-actions {
    margin-top: 26px;
  }

  .flr-actions article {
    min-height: auto;
    padding: 16px 16px 16px 40px;
  }

  .flr-actions article::before {
    left: 16px;
  }

  .flr-actions strong {
    font-size: 17px;
  }

  .flr-actions span {
    font-size: 14px;
  }

  .flr-visual {
    justify-self: center;
    width: min(100%, 420px);
  }

  .security-layout {
    gap: 32px;
  }

  .security-flow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .security-flow::before {
    display: none;
  }

  .security-flow article {
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon copy";
    column-gap: 16px;
    justify-items: start;
    align-items: center;
    min-height: 108px;
    text-align: left;
  }

  .security-flow img {
    grid-area: icon;
    width: 92px;
    margin: 0;
  }

  .security-flow h3 {
    grid-area: title;
    margin: 0 0 4px;
    font-size: 20px;
  }

  .security-flow p {
    grid-area: copy;
    max-width: none;
    font-size: 14px;
  }

  .partners-section {
    margin-top: calc(var(--section-purple-outset) + 14px);
    padding: 82px 0 88px;
  }

  .partners-kicker {
    margin-bottom: 44px;
    font-size: 14px;
  }

  .partner-logo-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
    justify-items: center;
  }

  .partner-logo-row img {
    max-width: 88%;
    max-height: 50px;
  }

  .partner-logo-row img:nth-child(7) {
    grid-column: 1 / -1;
  }

  .portfolio-head {
    flex-direction: column;
  }

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

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .copyright {
    grid-column: 1;
    grid-row: 3;
    justify-self: center;
  }

  .footer-legal-links {
    grid-column: 1;
    grid-row: 4;
    justify-self: center;
    justify-content: center;
  }

  .footer-social-links {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    justify-content: center;
  }

  .cookie-banner {
    left: 16px;
    right: 92px;
    bottom: 24px;
    width: auto;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    transform: none;
  }

  .cookie-banner p {
    font-size: 15px;
  }

  .cookie-banner button {
    width: 100%;
  }

  .support-widget {
    right: 14px;
    bottom: 14px;
  }

  .support-panel {
    right: -2px;
    bottom: 76px;
    width: calc(100vw - 28px);
    height: min(540px, calc(100vh - 112px));
    border-radius: 16px;
  }

  .support-panel-header {
    padding: 18px 18px 16px;
  }

  .support-panel-header h2 {
    font-size: 22px;
  }

  .support-thread {
    padding: 16px 14px;
  }

  .support-form {
    padding: 12px 14px 14px;
  }

  .support-launcher {
    width: 58px;
    height: 58px;
  }

  .cookie-banner:not([hidden]) + .support-widget {
    right: 16px;
    bottom: 24px;
  }

  .legal-nav {
    display: none;
  }

  .legal-main {
    padding: 90px 0 78px;
  }

  .legal-shell {
    width: min(100% - 32px, var(--max));
  }

  .legal-hero {
    padding: 30px 20px;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-sidecard,
  .legal-card {
    border-radius: 16px;
  }

  .legal-principles article {
    min-height: auto;
  }

  .legal-toc {
    gap: 8px;
  }

  .legal-toc a {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --section-radius: 18px;
  }

  h1 {
    font-size: 34px;
  }

  .motto {
    font-size: 18px;
  }

  .portfolio-head strong,
  .vault-balance strong {
    font-size: 32px;
  }

  .security-flow article {
    grid-template-columns: 78px minmax(0, 1fr);
    column-gap: 12px;
  }

  .security-flow img {
    width: 78px;
  }

  .legal-card,
  .legal-sidecard {
    padding: 20px;
  }

  .legal-card h2 {
    font-size: 26px;
  }

  .legal-card p,
  .legal-card li {
    font-size: 15px;
  }
}
