:root {
  --bg: #08110b;
  --bg-soft: #0d1711;
  --surface: rgba(13, 24, 17, 0.88);
  --surface-strong: #101a14;
  --surface-light: #f5f6f5;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f7f4;
  --text-muted: rgba(244, 247, 244, 0.72);
  --text-dark: #0a0d0a;
  --accent: #34e834;
  --accent-bright: #83ff83;
  --accent-soft: rgba(52, 232, 52, 0.14);
  --gold: #ffbb63;
  --danger: #ff6e6e;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-xl: 0 28px 90px rgba(0, 0, 0, 0.36);
  --shadow-md: 0 16px 40px rgba(0, 0, 0, 0.24);
  --container: min(1200px, calc(100% - 40px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "DM Sans", "Geist", "PingFang SC", "Microsoft YaHei", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(52, 232, 52, 0.12), transparent 24%),
    radial-gradient(circle at 90% 8%, rgba(255, 187, 99, 0.08), transparent 20%),
    linear-gradient(180deg, #07100a 0%, #09110b 26%, #111913 100%);
  min-height: 100vh;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.page-shell {
  overflow-x: clip;
}

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

.section {
  padding: 92px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-bright);
  font-family: "Geist", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

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

h1,
h2,
h3,
h4 {
  font-family: "Geist", sans-serif;
}

h1,
h2 {
  letter-spacing: -0.04em;
}

p {
  color: var(--text-muted);
  line-height: 1.75;
}

.button-row,
.centered-row,
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button-row.center,
.centered-row {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-family: "Geist", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button.is-disabled {
  cursor: default;
  pointer-events: none;
  transform: none;
  opacity: 0.9;
}

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

.button-primary {
  color: #08110b;
  background: linear-gradient(135deg, #34e834 0%, #83ff83 100%);
  box-shadow: 0 14px 30px rgba(52, 232, 52, 0.22);
}

.button-outline {
  border-color: rgba(131, 255, 131, 0.78);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.button-outline:hover,
.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--accent);
  background: rgba(52, 232, 52, 0.12);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-compact {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.9rem;
}

.button.small {
  min-height: 42px;
  padding: 0 18px;
}

.glass {
  backdrop-filter: blur(16px);
}

.topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 7, 4, 0.85);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  font-size: 0.88rem;
}

.topbar-inner p {
  color: rgba(255, 255, 255, 0.72);
}

.topbar-inner a {
  color: var(--accent-bright);
  font-weight: 700;
}

.topbar-bonus-link {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #34e834 0%, #83ff83 100%);
  color: #08110b !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 180ms ease, transform 180ms ease;
}

.topbar-bonus-link:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(7, 16, 10, 0.9), rgba(7, 16, 10, 0.72));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.mobile-lang {
  display: none;
  position: relative;
  z-index: 6;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.brand img:first-child {
  width: 176px;
}

.brand-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.14);
}

.brand-badge {
  width: 112px;
  opacity: 0.94;
}

.utility-pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.utility-pill-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(52, 232, 52, 0.14);
  color: var(--accent-bright);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.lang-item {
  z-index: 5;
}

.lang-dropdown {
  position: relative;
}

.lang-dropdown summary {
  list-style: none;
}

.lang-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link:hover {
  color: var(--text);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-subtoggle {
  display: none;
  width: 36px;
  height: 36px;
  margin-left: auto;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
}

.nav-subtoggle span {
  display: inline-flex;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.nav-item.is-expanded .nav-subtoggle span {
  transform: rotate(-135deg) translateY(-1px);
}

.menu-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(52, 232, 52, 0.14);
  color: var(--accent-bright);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 15;
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 22px;
  width: min(1060px, calc(100vw - 32px));
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 8, 0.97);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mega-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(52, 232, 52, 0.16), transparent 44%),
    linear-gradient(180deg, rgba(13, 24, 17, 0.96), rgba(8, 12, 9, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mega-menu-eyebrow {
  color: var(--accent-bright);
  font-family: "Geist", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mega-menu-cta h3 {
  font-size: 1.7rem;
  line-height: 1.08;
}

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

.mega-menu-title {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.42);
  font-family: "Geist", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.mega-menu-list a {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.45;
  transition: color 180ms ease, transform 180ms ease;
}

.mega-menu-list a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  flex: 0 0 auto;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(131, 255, 131, 0.9));
  box-shadow: 0 0 10px rgba(131, 255, 131, 0.12);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero-section {
  padding: 32px 0 0;
}

.hero-frame {
  position: relative;
  min-height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 34px;
  overflow: hidden;
  background: #050805;
  box-shadow: var(--shadow-xl);
}

.hero-slides {
  position: relative;
  min-height: 640px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity 420ms ease,
    transform 420ms ease,
    visibility 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-backdrop,
.slide-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide-backdrop {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.slide-video {
  object-fit: cover;
}

.mobile-video {
  display: none;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 4, 0.9) 0%, rgba(3, 7, 4, 0.42) 48%, rgba(3, 7, 4, 0.74) 100%);
}

.slide-overlay.soft {
  background:
    linear-gradient(180deg, rgba(2, 4, 2, 0.3), rgba(2, 4, 2, 0.58)),
    linear-gradient(90deg, rgba(3, 7, 4, 0.48) 0%, rgba(3, 7, 4, 0.18) 40%, rgba(3, 7, 4, 0.7) 100%);
}

.slide-content {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 72px));
  height: 100%;
  margin-left: clamp(24px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.slide-content h1,
.slide-content h2 {
  max-width: 12ch;
  font-size: clamp(2.6rem, 4.8vw, 4.5rem);
  line-height: 1.04;
}

.slide-content h1 span,
.slide-content h2 span {
  font-weight: 800;
}

.slide-content h2 .light {
  display: inline;
  font-weight: 300;
}

.slide-content p {
  max-width: 560px;
  font-size: 1.05rem;
}

.slide-content-centered {
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.slide-content-centered h2,
.slide-content-centered p {
  max-width: 880px;
}

.podcast-mark {
  width: min(360px, 76vw);
}

.podcast-copy {
  max-width: 520px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.slide-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-bright);
  font-family: "Geist", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.slide-footnote {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.68);
}

.slide-footnote a {
  color: rgba(255, 255, 255, 0.68);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.social-row img {
  width: 24px;
}

.hero-slide-podcast .slide-overlay {
  background:
    linear-gradient(180deg, rgba(2, 4, 8, 0.3), rgba(2, 4, 8, 0.72)),
    linear-gradient(90deg, rgba(3, 8, 16, 0.62), rgba(3, 8, 16, 0.16), rgba(3, 8, 16, 0.62));
}

.hero-slide-bonus::before,
.hero-slide-bonus::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-slide-bonus::before {
  right: 15%;
  top: 18%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(131, 255, 131, 0.22) 0%, rgba(131, 255, 131, 0) 70%);
}

.hero-slide-bonus::after {
  right: 7%;
  bottom: 10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 195, 95, 0.18) 0%, rgba(255, 195, 95, 0) 68%);
}

.bonus-backdrop {
  background:
    radial-gradient(circle at 76% 30%, rgba(131, 255, 131, 0.2), transparent 13%),
    radial-gradient(circle at 82% 62%, rgba(255, 195, 95, 0.16), transparent 16%),
    radial-gradient(circle at 72% 48%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(135deg, #051209 0%, #0a1d10 52%, #0d2615 100%);
}

.bonus-overlay {
  background:
    linear-gradient(90deg, rgba(3, 7, 4, 0.94) 0%, rgba(3, 7, 4, 0.54) 50%, rgba(3, 7, 4, 0.78) 100%);
}

.hero-slide-green .slide-overlay {
  background:
    linear-gradient(180deg, rgba(1, 10, 2, 0.18), rgba(1, 10, 2, 0.28)),
    linear-gradient(90deg, rgba(1, 7, 2, 0.88), rgba(1, 7, 2, 0.56), rgba(1, 7, 2, 0.82));
}

.hero-slide-partner .slide-overlay {
  background:
    linear-gradient(180deg, rgba(6, 9, 13, 0.22), rgba(6, 9, 13, 0.56)),
    linear-gradient(90deg, rgba(6, 9, 13, 0.92), rgba(6, 9, 13, 0.5), rgba(6, 9, 13, 0.86));
}

.slider-controls {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.slider-dots,
.slider-arrows {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dots button,
.slider-arrows button {
  border-radius: 999px;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.slider-dots button {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.9;
}

.slider-dots button.is-active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.08);
}

.slider-arrows button {
  width: 44px;
  height: 44px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-note {
  position: absolute;
  left: 32px;
  bottom: 82px;
  z-index: 2;
  margin: 0;
  font-size: 0.8rem;
}

.hero-note a {
  color: rgba(255, 255, 255, 0.56);
}

.slider-arrows button:hover {
  background: rgba(52, 232, 52, 0.16);
  border-color: rgba(131, 255, 131, 0.4);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: -44px auto 0;
}

.metric-card {
  padding: 22px 18px;
  border-radius: 22px;
  border: 1px solid rgba(131, 255, 131, 0.12);
  background:
    linear-gradient(180deg, rgba(13, 24, 17, 0.86), rgba(13, 24, 17, 0.96));
  box-shadow: var(--shadow-md);
}

.metric-value {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-family: "Geist", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.metric-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.narrow {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.quote-section {
  padding: 96px 0 40px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.quote-card {
  position: relative;
  padding: 26px 22px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(13, 24, 17, 0.94), rgba(9, 14, 10, 0.96));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -50% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(52, 232, 52, 0.22), transparent 65%);
  opacity: 0.65;
}

.quote-head,
.quote-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quote-head h3 {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.quote-change {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-bright);
}

.quote-change.down {
  color: var(--danger);
}

.quote-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.quote-meta dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.quote-meta dd {
  margin: 0;
  color: var(--text);
  font-family: "Geist", sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.quote-card.flash-up {
  box-shadow: 0 0 0 1px rgba(131, 255, 131, 0.28), 0 16px 42px rgba(52, 232, 52, 0.12);
}

.quote-card.flash-down {
  box-shadow: 0 0 0 1px rgba(255, 110, 110, 0.28), 0 16px 42px rgba(255, 110, 110, 0.08);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.section-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.insight-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(52, 232, 52, 0.08), rgba(255, 187, 99, 0.05));
}

.insight-chip {
  display: flex;
  align-items: center;
  min-height: 82px;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 10, 7, 0.42);
  font-family: "Geist", sans-serif;
  font-weight: 700;
}

.feature-grid,
.platform-grid {
  display: grid;
  gap: 22px;
}

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

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(246, 246, 246, 0.98), rgba(228, 231, 229, 0.98));
  color: var(--text-dark);
  overflow: hidden;
}

.feature-card.wide {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  min-height: 360px;
}

.feature-card .feature-copy {
  position: relative;
  z-index: 1;
  max-width: 320px;
}

.feature-card.wide .feature-copy {
  max-width: 520px;
}

.feature-card .eyebrow {
  color: #0d4d18;
}

.feature-card .eyebrow::before {
  background: currentColor;
}

.feature-card h3 {
  margin: 14px 0 14px;
  font-size: 2rem;
  line-height: 1.02;
}

.feature-card p {
  color: rgba(10, 13, 10, 0.72);
  margin-bottom: 22px;
}

.feature-card img {
  position: absolute;
  right: -6px;
  bottom: 0;
  width: min(76%, 420px);
  object-fit: contain;
}

.feature-card.wide img {
  right: 24px;
  width: min(42%, 420px);
}

.strength-section {
  position: relative;
  padding: 88px 0;
  background:
    radial-gradient(circle at left center, rgba(52, 232, 52, 0.12), transparent 28%),
    linear-gradient(180deg, #030504 0%, #060907 100%);
}

.strength-section::before {
  content: "";
  position: absolute;
  inset: 0 52% 0 0;
  background:
    linear-gradient(135deg, rgba(52, 232, 52, 0.12), rgba(52, 232, 52, 0)),
    radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.06), transparent 34%);
  opacity: 0.85;
}

.strength-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.strength-metrics {
  display: grid;
  gap: 18px;
}

.strength-metrics article,
.strength-copy {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
}

.strength-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Geist", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.strength-metrics span {
  color: var(--accent-bright);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.strength-copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.platform-grid {
  gap: 24px;
}

.platform-card {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 20px;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(246, 246, 246, 0.98), rgba(227, 230, 228, 0.98));
  color: var(--text-dark);
  overflow: hidden;
}

.platform-card.reverse {
  grid-template-columns: 0.95fr 1fr;
}

.platform-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.platform-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 14px;
  max-width: 340px;
}

.platform-logos img {
  width: 100%;
  max-width: 148px;
}

.inline-list,
.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.inline-list li,
.market-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 13, 10, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.platform-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-visual img {
  max-height: 100%;
  object-fit: contain;
}

.payments-section {
  padding-top: 24px;
}

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

.payment-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
}

.payment-strip img {
  max-width: 84px;
  max-height: 34px;
  object-fit: contain;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(246, 246, 246, 0.96);
  color: var(--text-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34e834, #83ff83);
  color: #08110b;
  font-family: "Geist", sans-serif;
  font-size: 1.32rem;
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.step-card p {
  color: rgba(10, 13, 10, 0.72);
}

.mobile-section {
  padding-top: 34px;
}

.mobile-card {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 430px;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 10% 10%, rgba(52, 232, 52, 0.14), transparent 24%),
    linear-gradient(135deg, #020403 0%, #090c0a 48%, #0d120e 100%);
  overflow: hidden;
}

.mobile-copy {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
}

.mobile-copy h2 {
  margin: 14px 0 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.06;
}

.store-row img {
  height: 48px;
  width: auto;
}

.mobile-visual {
  position: absolute;
  right: 34px;
  bottom: 0;
  width: min(32vw, 360px);
}

.webinar-section {
  padding-top: 18px;
}

.webinar-card,
.final-cta {
  border-radius: var(--radius-lg);
}

.webinar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(9, 12, 10, 0.92)),
    linear-gradient(135deg, rgba(52, 232, 52, 0.1), transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.webinar-card h2 {
  margin-top: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.08;
}

.final-cta-section {
  padding-top: 18px;
}

.final-cta {
  padding: 64px 24px;
  text-align: center;
  border: 1px solid rgba(131, 255, 131, 0.14);
  background:
    radial-gradient(circle at top center, rgba(52, 232, 52, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(13, 24, 17, 0.88), rgba(13, 24, 17, 0.98));
  box-shadow: var(--shadow-xl);
}

.final-cta h2 {
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
}

.final-cta p {
  max-width: 520px;
  margin: 0 auto 24px;
}

.site-footer {
  padding: 34px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 24px;
}

.footer-brand img {
  width: 180px;
  margin-bottom: 18px;
}

.footer-grid h3 {
  margin-bottom: 14px;
  font-size: 1.04rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-grid li a {
  color: rgba(255, 255, 255, 0.72);
}

.risk-copy {
  color: rgba(255, 255, 255, 0.66);
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-trust-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-trust-link.is-disabled {
  cursor: default;
  pointer-events: none;
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .quote-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-card,
  .feature-card.wide {
    min-height: 420px;
  }

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

  .feature-card img {
    width: min(62%, 360px);
  }

  .feature-card.wide img {
    right: -6px;
    width: min(62%, 360px);
  }

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

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

@media (max-width: 960px) {
  .mobile-header-actions {
    display: flex;
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    padding: 14px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 13, 10, 0.985);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-header.is-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav {
    gap: 8px;
  }

  .nav-item {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 52px;
    align-items: start;
    gap: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
  }

  .nav-link {
    min-height: 56px;
    padding: 0 0 0 18px;
    font-size: 1rem;
  }

  .mega-menu {
    display: none;
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
    padding: 0 14px 14px;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
  }

  .nav-item.is-expanded .mega-menu {
    display: grid;
    gap: 14px;
  }

  .nav-subtoggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: 6px 8px 0 0;
    justify-self: end;
    align-self: start;
    border-radius: 14px;
  }

  .mega-menu-cta {
    padding: 18px;
    border-radius: 18px;
  }

  .mega-menu-cta h3 {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .mega-menu-cta .button-row {
    flex-direction: column;
  }

  .mega-menu-cta .button-row .button {
    width: 100%;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mega-menu-title {
    margin-bottom: 10px;
    font-size: 0.72rem;
  }

  .mega-menu .mega-menu-title[style] {
    margin-top: 0 !important;
  }

  .mega-menu-list {
    gap: 10px;
  }

  .mega-menu-list a {
    font-size: 0.98rem;
  }

  .brand-badge {
    display: none;
  }

  .overview-grid,
  .strength-grid,
  .platform-card,
  .platform-card.reverse {
    grid-template-columns: 1fr;
  }

  .hero-frame,
  .hero-slides {
    min-height: 580px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-visual {
    position: relative;
    right: auto;
    width: min(100%, 320px);
    margin: 28px auto 0;
  }

  .mobile-card {
    flex-direction: column;
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .section,
  .quote-section {
    padding: 72px 0;
  }

  .topbar {
    display: none;
  }

  .utility-bar {
    flex-direction: row;
    justify-content: flex-start;
    padding: 8px 0 6px;
  }

  .topbar-inner {
    min-height: 52px;
    flex-direction: row;
    justify-content: center;
    padding: 8px 0 6px;
    text-align: left;
  }

  .utility-left {
    display: none;
  }

  .utility-right {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .utility-right::-webkit-scrollbar {
    display: none;
  }

  .utility-links li {
    flex-shrink: 0;
  }

  .nav-shell {
    min-height: 76px;
    gap: 14px;
  }

  .nav-panel {
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    max-height: calc(100vh - 96px);
    padding: 12px;
  }

  .brand img:first-child {
    width: 156px;
  }

  .brand-divider {
    display: none;
  }

  .mobile-lang {
    display: block;
  }

  .mobile-header-actions {
    gap: 8px;
  }

  .mobile-lang-menu {
    right: 0;
  }

  .nav-item {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 8px;
    border-radius: 16px;
  }

  .nav-link {
    min-height: 52px;
    padding-left: 14px;
    font-size: 0.98rem;
  }

  .nav-subtoggle {
    width: 40px;
    height: 40px;
    margin: 6px 6px 0 0;
  }

  .mega-menu {
    padding: 0 12px 12px;
  }

  .mega-menu-cta {
    padding: 14px;
  }

  .mega-menu-cta h3 {
    font-size: 1.26rem;
  }

  .mega-menu-list a {
    font-size: 0.92rem;
  }

  .hero-frame,
  .hero-slides {
    min-height: 540px;
    border-radius: 26px;
  }

  .slide-content {
    width: calc(100% - 40px);
    margin-left: 20px;
    gap: 18px;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: clamp(2.15rem, 9vw, 3.1rem);
    max-width: 11ch;
  }

  .slide-content p {
    font-size: 0.96rem;
  }

  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .slider-controls {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .hero-note {
    left: 18px;
    bottom: 94px;
    max-width: calc(100% - 36px);
  }

  .slider-controls,
  .webinar-card {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats,
  .quote-grid,
  .steps-grid,
  .payment-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-meta {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .insight-panel {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .step-card,
  .mobile-card,
  .webinar-card,
  .final-cta {
    padding: 24px;
  }

  .inline-list li,
  .market-list li {
    width: 100%;
    border-radius: 14px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
    scroll-behavior: auto !important;
  }
}

.utility-bar {
  min-height: 46px;
}

.utility-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.utility-links li {
  position: relative;
  margin-right: 22px;
}

.utility-links li.topbar-item-hidden {
  display: none;
}

.utility-links li::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.utility-links li:last-child {
  margin-right: 0;
}

.utility-links li:last-child::after {
  display: none;
}

.utility-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 500;
}

.utility-links .link-disabled {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: default;
}

.utility-links a.is-current,
.utility-links a:hover {
  color: var(--accent);
}

.lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 36px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
}

.lang-pill::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.lang-dropdown[open] .lang-pill {
  background: rgba(255, 255, 255, 0.07);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 172px;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 12, 8, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  list-style: none;
  margin: 0;
}

.lang-menu li {
  margin: 0;
}

.lang-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.lang-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.lang-menu a[aria-current="page"] {
  color: #fff;
  background: rgba(52, 232, 52, 0.14);
}

.mobile-lang-pill {
  justify-content: center;
  min-width: 44px;
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mobile-lang-pill::after {
  display: none;
}

.mobile-lang-menu {
  width: 188px;
  top: calc(100% + 10px);
}

.counter-strip {
  position: relative;
  z-index: 3;
  margin-top: -64px;
}

.counter-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 18px 28px;
  list-style: none;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.counter-list li {
  flex: 1;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.counter-list span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-family: "Geist", sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.raw-chart-section {
  padding: 88px 0 48px;
  background:
    url("./assets/media/raw-chart-bg.webp") left bottom / cover no-repeat,
    #000;
}

.raw-chart-grid {
  display: grid;
  grid-template-columns: 550px 1fr;
  gap: 40px;
  align-items: center;
}

.raw-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.quotes-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 2px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-md);
}

.quotes-wrap.is-loading {
  opacity: 0.72;
}

.quotes-wrap.is-remote {
  opacity: 1;
}

.quotes-wrap,
.quote-widget,
.quote-widget a,
.quote-widget button {
  cursor: default;
}

.quote-widget a,
.quote-widget button {
  pointer-events: none;
}

.quote-widget {
  position: relative;
  min-height: 162px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.44);
}

.quote-widget::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.5) 50%, transparent 65%, transparent 100%);
}

.quote-widget.flash-up {
  box-shadow: inset 0 0 0 1px rgba(131, 255, 131, 0.24);
}

.quote-widget.flash-down {
  box-shadow: inset 0 0 0 1px rgba(246, 81, 68, 0.24);
}

.quote-widget__header,
.quote-widget__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.8);
}

.quote-widget__header {
  min-height: 28px;
  padding: 0 10px;
}

.quote-widget__header-symbol {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.875rem;
  font-weight: 900;
}

.quote-widget__header-change {
  position: relative;
  padding-right: 16px;
  font-size: 0.95rem;
  font-weight: 700;
}

.quote-widget__header-change::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.quote-widget.price-up .quote-widget__content,
.quote-widget.price-up .quote-widget__header-change,
.quote-widget.price-up .f-btn.buy a {
  color: var(--accent);
}

.quote-widget.price-up .quote-widget__header-change::after {
  border-bottom: 8px solid var(--accent);
}

.quote-widget.price-down .quote-widget__content,
.quote-widget.price-down .quote-widget__header-change,
.quote-widget.price-down .f-btn.sell a {
  color: #f65144;
}

.quote-widget.price-down .quote-widget__header-change::after {
  border-top: 8px solid #f65144;
}

.quote-widget__content {
  display: flex;
  justify-content: space-between;
  min-height: 96px;
  margin-top: 20px;
  margin-bottom: 14px;
}

.quote-widget__content-bid,
.quote-widget__content-ask {
  width: 50%;
  padding: 0 10px 8px;
}

.quote-widget__content-bid {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.quote-widget__content-title {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.75rem;
  font-weight: 900;
}

.quote-widget__content-price {
  position: relative;
  height: 46px;
  margin-top: 6px;
  font-family: "Geist", sans-serif;
  font-weight: 300;
  text-shadow: 0 0 12px currentColor;
}

.quote-widget__content-price .price-1,
.quote-widget__content-price .price-2,
.quote-widget__content-price .price-3 {
  position: absolute;
}

.quote-widget__content-price .price-1 {
  left: 0;
  bottom: 0;
  font-size: 1.35rem;
}

.quote-widget__content-price .price-2 {
  left: 50px;
  top: -8px;
  font-size: 2.45rem;
}

.quote-widget__content-price .price-3 {
  right: 2px;
  top: 0;
  font-size: 1.3rem;
}

.quote-widget.format-4-2 .quote-widget__content-price .price-2 {
  left: 60px;
}

.quote-widget.format-4-2 .quote-widget__content-price .price-3 {
  display: none;
}

.quote-widget__footer {
  min-height: 34px;
  padding: 6px 10px;
}

.quote-widget__footer-spread,
.f-btn {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.09);
}

.quote-widget__footer-spread {
  position: relative;
  width: 46%;
  min-height: 22px;
  padding: 2px 10px;
}

.spread-label,
.spread-value {
  position: absolute;
  top: 3px;
  font-size: 0.75rem;
  font-weight: 700;
}

.spread-label {
  left: 10px;
  color: rgba(255, 255, 255, 0.42);
}

.spread-value {
  right: 10px;
  color: rgba(255, 255, 255, 0.84);
}

.quote-widget__footer-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  width: 46%;
}

.f-btn {
  min-width: 64px;
  min-height: 22px;
  padding: 4px 10px;
  text-align: center;
}

.f-btn a {
  font-size: 0.75rem;
  font-weight: 700;
}

.f-btn.sell a {
  color: #f65144;
}

.funding-card {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at right bottom, rgba(52, 232, 52, 0.1), transparent 24%),
    url("./assets/media/world-bg.webp") right bottom / 360px auto no-repeat,
    linear-gradient(180deg, rgba(246, 246, 246, 0.98), rgba(228, 231, 229, 0.98));
  color: var(--text-dark);
}

.funding-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
}

.funding-copy .eyebrow {
  color: #0d4d18;
}

.funding-copy .eyebrow::before {
  background: currentColor;
}

.funding-footnote {
  margin-top: 14px;
  color: rgba(10, 13, 10, 0.74);
}

.funding-footnote a {
  color: #0d4d18;
  font-weight: 700;
}

.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered .eyebrow::before {
  display: none;
}

.site-footer {
  padding-bottom: 110px;
}

.disclaimer {
  margin-top: 42px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.disclaimer-content p {
  color: #777;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.disclaimer-content p:last-child {
  margin-bottom: 0;
}

.disclaimer-content a {
  color: var(--accent);
}

.disclaimer-content .link-disabled {
  color: var(--accent);
  cursor: default;
}

.disclaimer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.disclaimer-links a {
  color: rgba(255, 255, 255, 0.62);
}

.disclaimer-links .link-disabled {
  color: rgba(255, 255, 255, 0.62);
  cursor: default;
}

.fixed-bottom-strip {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -120px;
  z-index: 35;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 24px rgba(0, 0, 0, 0.1);
  transition: bottom 260ms ease;
}

.fixed-bottom-strip.scrolled-up {
  bottom: 0;
}

.fixed-bottom-inner,
.fixed-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #111;
}

.trust-chip strong {
  font-family: "Geist", sans-serif;
  font-size: 1rem;
}

.trust-chip span:last-child {
  color: rgba(0, 0, 0, 0.54);
  font-size: 0.88rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #00b67a;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.button-support {
  color: #111;
  border-color: rgba(0, 0, 0, 0.1);
}

.fixed-bottom-actions .button-support {
  display: none;
}

.button-support img {
  width: 14px;
  margin-right: 8px;
}

@media (max-width: 1100px) {
  .raw-chart-grid {
    grid-template-columns: 1fr;
  }

  .quotes-wrap {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 960px) {
  .utility-bar {
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
  }

  .utility-links {
    justify-content: center;
  }

  .lang-menu {
    right: 50%;
    transform: translateX(50%);
  }

  .counter-strip {
    margin-top: -42px;
  }

  .counter-list {
    flex-wrap: wrap;
  }

  .counter-list li {
    flex: 1 1 calc(50% - 18px);
  }

  .site-footer {
    padding-bottom: 24px;
  }

  .fixed-bottom-strip {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(1200px, calc(100% - 28px));
  }

  .counter-strip {
    margin-top: 18px;
  }

  .counter-list {
    padding: 18px;
  }

  .counter-list li {
    flex: 1 1 100%;
  }

  .raw-chart-section {
    padding-top: 56px;
  }

  .raw-chart-grid {
    gap: 24px;
  }

  .raw-chart-grid > *,
  .quotes-wrap,
  .quote-widget {
    min-width: 0;
  }

  .quotes-wrap {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    gap: 1px;
  }

  .quote-widget {
    min-height: 150px;
  }

  .quote-widget__header,
  .quote-widget__footer {
    padding-left: 12px;
    padding-right: 12px;
  }

  .quote-widget__header-symbol {
    font-size: 0.82rem;
  }

  .quote-widget__header-change {
    padding-right: 13px;
    font-size: 0.78rem;
  }

  .quote-widget__header-change::after {
    top: 7px;
  }

  .quote-widget__content {
    min-height: 82px;
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .quote-widget__content-bid,
  .quote-widget__content-ask {
    padding: 0 12px 6px;
  }

  .quote-widget__content-title {
    font-size: 0.72rem;
  }

  .quote-widget__content-price {
    height: 40px;
    margin-top: 4px;
    white-space: nowrap;
  }

  .quote-widget__content-price .price-1,
  .quote-widget__content-price .price-2,
  .quote-widget__content-price .price-3 {
    line-height: 1;
  }

  .quote-widget__content-price .price-1 {
    font-size: 1.05rem;
  }

  .quote-widget__content-price .price-2 {
    left: 36px;
    top: -4px;
    font-size: 1.9rem;
  }

  .quote-widget__content-price .price-3 {
    right: 0;
    font-size: 0.96rem;
  }

  .quote-widget.format-4-2 .quote-widget__content-price .price-2 {
    left: 44px;
    font-size: 1.72rem;
  }

  .quote-widget__footer {
    min-height: 40px;
    gap: 8px;
  }

  .quote-widget__footer-spread,
  .quote-widget__footer-buttons {
    width: calc(50% - 4px);
  }

  .quote-widget__footer-spread {
    min-height: 28px;
    padding: 4px 8px;
  }

  .spread-label,
  .spread-value {
    top: 6px;
    font-size: 0.68rem;
  }

  .spread-label {
    left: 8px;
  }

  .spread-value {
    right: 8px;
  }

  .quote-widget__footer-buttons {
    gap: 6px;
  }

  .f-btn {
    min-width: 0;
    flex: 1 1 0;
    min-height: 28px;
    padding: 4px 8px;
  }

  .f-btn a {
    display: block;
    font-size: 0.72rem;
    line-height: 1.2;
  }

  .funding-card {
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(246, 246, 246, 0.98), rgba(228, 231, 229, 0.98));
  }

  .section-heading h2,
  .raw-copy h2,
  .mobile-copy h2,
  .webinar-card h2 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .button-row,
  .store-row {
    gap: 12px;
  }

  .button-row > .button,
  .store-row > a {
    width: 100%;
  }

  .store-row img {
    height: 44px;
  }

  .mobile-card {
    min-height: auto;
  }

  .mobile-visual {
    width: min(86vw, 280px);
  }

  .step-card h3 {
    font-size: 1.24rem;
  }

  .final-cta {
    padding: 40px 20px;
  }

  .final-cta h2 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .footer-grid {
    gap: 18px;
  }

  .fixed-bottom-inner,
  .fixed-bottom-actions,
  .trust-chip,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-chip {
    gap: 8px;
  }

  .button-support {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  :root {
    --container: min(1200px, calc(100% - 20px));
  }

  .nav-shell {
    min-height: 70px;
    gap: 10px;
  }

  .nav-panel {
    left: 10px;
    right: 10px;
    padding: 10px;
    border-radius: 18px;
  }

  .brand img:first-child {
    width: 140px;
  }

  .mobile-lang-pill,
  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-item {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .nav-link {
    min-height: 48px;
    padding-left: 12px;
    font-size: 0.94rem;
  }

  .nav-subtoggle {
    width: 38px;
    height: 38px;
    margin: 5px 4px 0 0;
    border-radius: 12px;
  }

  .mega-menu {
    padding: 0 10px 10px;
  }

  .mega-menu-cta {
    padding: 12px;
    gap: 10px;
  }

  .mega-menu-cta h3 {
    font-size: 1.12rem;
  }

  .mega-menu-list {
    gap: 8px;
  }

  .mega-menu-list a {
    font-size: 0.88rem;
  }

  .slide-content {
    width: calc(100% - 32px);
    margin-left: 16px;
  }

  .slide-content h1,
  .slide-content h2 {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
  }

  .quotes-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .quote-widget {
    min-height: 142px;
  }

  .quote-widget__content {
    min-height: 76px;
    margin-top: 10px;
  }

  .quote-widget__content-bid,
  .quote-widget__content-ask {
    padding: 0 10px 6px;
  }

  .quote-widget__content-price {
    height: 36px;
  }

  .quote-widget__content-price .price-1 {
    font-size: 0.96rem;
  }

  .quote-widget__content-price .price-2 {
    left: 31px;
    font-size: 1.65rem;
  }

  .quote-widget__content-price .price-3 {
    font-size: 0.88rem;
  }

  .quote-widget.format-4-2 .quote-widget__content-price .price-2 {
    left: 38px;
    font-size: 1.52rem;
  }

  .quote-widget__footer {
    padding-left: 8px;
    padding-right: 8px;
    gap: 6px;
  }

  .quote-widget__footer-spread,
  .quote-widget__footer-buttons {
    width: calc(50% - 3px);
  }

  .quote-widget__footer-buttons {
    gap: 4px;
  }

  .spread-label,
  .spread-value,
  .f-btn a {
    font-size: 0.64rem;
  }

  .platform-card,
  .step-card,
  .mobile-card,
  .webinar-card,
  .final-cta {
    padding: 18px;
    border-radius: 22px;
  }

  .inline-list li,
  .market-list li {
    padding: 9px 12px;
    font-size: 0.84rem;
  }

  .store-row img {
    height: 40px;
  }

  .footer-brand img {
    width: 156px;
  }
}
