:root {
  --brand: #1C9770;
  --brand-2: #22B887;
  --brand-soft: rgba(28, 151, 112, .12);
  --accent-orange: #F97316;
  --accent-orange-2: #FB923C;
  --accent-orange-soft: rgba(249, 115, 22, .13);
  --accent-purple: #7C3AED;
  --accent-purple-2: #A78BFA;
  --accent-purple-soft: rgba(124, 58, 237, .14);
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 22px 55px rgba(15, 23, 42, .09);
  --radius: 22px;
  --radius-sm: 14px;
  --footer-bg: #d9eee6;
}

/* --- World-class pricing and checkout refresh --- */
.home-pricing .plan-original-price:has(.save-badge:empty) {
  min-height: 22px;
  visibility: hidden;
}

.home-pricing .price-amount {
  display: inline-block;
  transition: opacity .18s ease, transform .18s ease;
}

.home-pricing .price-amount.is-updating {
  opacity: .25;
  transform: translateY(-6px);
}

.pm-summary {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px;
  background: #f8fafc;
}

.pm-summary-row strong {
  color: #0f172a;
}

.pm-summary-total-row {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed #cbd5e1;
}

.pm-benefits {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: #157a57;
  font-size: 13px;
  font-weight: 800;
}

.checkout-pro {
  background:
    radial-gradient(circle at 12% 5%, var(--brand-soft), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(37, 99, 235, .08), transparent 28%),
    var(--bg);
}

.checkout-hero {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.checkout-hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.checkout-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.checkout-layout--pro {
  grid-template-columns: minmax(300px, .72fr) minmax(460px, 1.28fr);
  align-items: start;
}

.checkout-layout--pro .checkout-card {
  border-radius: 24px;
  padding: 28px;
}

.checkout-summary {
  position: sticky;
  top: 98px;
}

.summary-ledger {
  display: grid;
  gap: 11px;
  margin: 20px 0;
}

.summary-ledger div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.summary-ledger div:last-child {
  border-bottom: 0
}

.summary-ledger strong {
  color: var(--text);
  text-align: right;
  font-weight: 500;
}

.summary-benefits li {
  font-weight: 500;
}

.payment-dynamic-form {
  margin-top: 18px;
}

.method-panel {
  display: none;
  animation: methodIn .22s ease both;
}

.method-panel.active {
  display: block
}

@keyframes methodIn {
  from {
    opacity: 0;
    transform: translateY(8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.payment-row:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--brand-soft) 70%, transparent);
}

.payment-field input:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}

.external-pay-panel,
.binance-panel {
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
}

.external-pay-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.qr-box {
  width: 160px;
  aspect-ratio: 1;
  border-radius: 18px;
  display: grid;
  place-items: center;
  justify-self: center;
  background:
    linear-gradient(90deg, #111 10px, transparent 10px 20px, #111 20px 30px, transparent 30px),
    linear-gradient(#111 10px, transparent 10px 20px, #111 20px 30px, transparent 30px),
    #fff;
  background-size: 40px 40px;
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 0 0 14px #fff, 0 18px 38px rgba(15, 23, 42, .12);
}

.otp-field {
  display: none;
}

.otp-field.active {
  display: flex;
}

.form-error {
  min-height: 20px;
  margin: 12px 0 0;
  color: #ef4444;
  font-size: 13px;
  font-weight: 800;
}

.checkout-button.is-loading {
  pointer-events: none;
  opacity: .78;
}

.security-block,
.trust-section,
.checkout-faq {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .08);
}

.security-block h2,
.trust-section h2,
.checkout-faq h2 {
  margin: 0 0 18px;
  font-size: 22px;
}

.security-grid,
.exchange-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.security-grid span,
.exchange-logos span {
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.security-grid span {
  color: var(--brand);
}

.trust-section {
  text-align: center;
}

.trust-section p {
  margin: 18px 0 0;
  color: var(--brand);
  font-weight: 900;
}

.checkout-faq {
  display: grid;
  gap: 10px;
}

.checkout-faq h2 {
  text-align: center;
}

.checkout-faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
}

.checkout-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 500;
}

.checkout-faq details p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.6;
}

.success-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 8%, var(--brand-soft), transparent 34%),
    var(--bg);
}

.success-main {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 46px 0;
}

.success-card {
  width: min(680px, 100%);
  padding: 48px;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border));
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 30px 82px rgba(15, 23, 42, .12);
  text-align: center;
}

.success-animation {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  box-shadow: 0 0 0 12px color-mix(in srgb, var(--brand-soft) 45%, transparent);
  animation: successPulse 1.3s ease infinite;
}

.success-animation span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 38px;
  font-weight: 900;
}

@keyframes successPulse {

  0%,
  100% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.035)
  }
}

.success-card h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
}

.success-card p {
  margin: 0 auto 24px;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65;
}

.success-summary {
  display: grid;
  gap: 12px;
  margin: 0 auto 26px;
  max-width: 440px;
  text-align: left;
}

.success-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.success-summary span {
  color: var(--muted);
  font-weight: 800;
}

.success-summary strong {
  color: var(--text);
}

.success-button {
  justify-content: center;
  min-width: 180px;
}

[data-mode="dark"] .pm-summary,
[data-mode="amoled"] .pm-summary,
[data-mode="dark"] .security-block,
[data-mode="dark"] .trust-section,
[data-mode="dark"] .checkout-faq,
[data-mode="dark"] .success-card,
[data-mode="amoled"] .security-block,
[data-mode="amoled"] .trust-section,
[data-mode="amoled"] .checkout-faq,
[data-mode="amoled"] .success-card {
  background: color-mix(in srgb, var(--surface) 92%, transparent);
}

@media(max-width:900px) {
  .checkout-layout--pro {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: relative;
    top: auto;
  }

  .security-grid,
  .exchange-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media(max-width:560px) {
  .checkout-hero h1 {
    font-size: 32px;
  }

  .checkout-layout--pro .checkout-card,
  .security-block,
  .trust-section,
  .checkout-faq,
  .success-card {
    padding: 22px;
    border-radius: 18px;
  }

  .security-grid,
  .exchange-logos,
  .card-form {
    grid-template-columns: 1fr;
  }

  .payment-row {
    flex-wrap: wrap;
  }

  .payment-copy {
    flex-basis: calc(100% - 32px);
  }

  .payment-logos,
  .pay-logo {
    margin-left: 32px;
  }
}

/* Accent selectors – kept for runtime theme switching */
[data-accent="green"] {
  --footer-bg: #d9eee6
}

[data-accent="orange"] {
  --brand: var(--accent-orange);
  --brand-2: var(--accent-orange-2);
  --brand-soft: var(--accent-orange-soft);
  --footer-bg: #ffe4cf
}

[data-accent="purple"] {
  --brand: var(--accent-purple);
  --brand-2: var(--accent-purple-2);
  --brand-soft: var(--accent-purple-soft)
}

[data-accent="blue"] {
  --brand: #2563EB;
  --brand-2: #60A5FA;
  --brand-soft: rgba(37, 99, 235, .13);
  --footer-bg: #e2ecff
}

[data-accent="purple"] {
  --brand: #7C3AED;
  --brand-2: #A78BFA;
  --brand-soft: rgba(124, 58, 237, .14);
  --footer-bg: #efe2ff
}

[data-mode="dark"] {
  --bg: #101722;
  --surface: #151f2b;
  --surface-2: #0f1722;
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: #263244;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35)
}

[data-mode="amoled"] {
  --bg: #000;
  --surface: #070707;
  --surface-2: #0c0c0c;
  --text: #fff;
  --muted: #a3a3a3;
  --border: #1b1b1b;
  --shadow: 0 24px 70px rgba(0, 0, 0, .7)
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  overflow-x: hidden;
  background: #070b14;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: 
    radial-gradient(circle at 12% 5%, var(--brand-soft), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at 18% 70%, rgba(0, 199, 129, 0.06), transparent 30%),
    radial-gradient(circle at 85% 90%, rgba(18, 230, 160, 0.05), transparent 32%),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
  min-height: 100%;
  overscroll-behavior-y: auto;
  overscroll-behavior-x: none;
  touch-action: pan-y;
}

/* Ensure vertical scrollbar is visible and styled across browsers */
html,
body {
  scrollbar-width: auto;
  scrollbar-color: rgba(15, 23, 42, .14) transparent;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, .14);
  border-radius: 10px;
  border: 3px solid transparent;
  background-clip: padding-box;
}

button,
input,
select,
textarea,
label,
small,
strong {
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit
}

.container {
  width: min(1180px, 92%);
  margin: auto
}

.page {
  min-height: 100dvh;
  height: auto;
  overflow: visible
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 30
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 900
}

.logo-mark {
  width: 40px;
  height: 40px;
  border: 3px solid var(--brand);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--brand);
  font-weight: 900
}

.logo small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: .08em
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px
}

.btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  border: 0;
  color: #fff;
  box-shadow: 0 12px 28px var(--brand-soft)
}

.nav {
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease, color .24s ease;
}

.nav.nav-scrolled {
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border-color: var(--border);
  color: inherit;
  box-shadow: none;
}

.nav.nav-scrolled .logo,
.nav.nav-scrolled .nav-links a {
  color: inherit;
}

.nav.nav-scrolled .logo small {
  color: var(--muted);
}

.nav.nav-scrolled .btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border: 0;
  box-shadow: 0 12px 28px var(--brand-soft);
}

.nav.nav-scrolled .nav-links .btn-primary {
  color: #fff;
}

.btn-orange {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  border: 0;
  color: #fff;
  box-shadow: 0 12px 28px var(--accent-orange-soft)
}

.btn-purple {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-2));
  border: 0;
  color: #fff;
  box-shadow: 0 12px 28px var(--accent-purple-soft)
}

.text-orange {
  color: var(--accent-orange)
}

.text-purple {
  color: var(--accent-purple)
}

.btn-dark {
  background: #020617;
  color: #fff;
  border: 0
}

.theme-dock {
  position: fixed;
  right: 18px;
  top: 94px;
  z-index: 50;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px;
  display: flex;
  gap: 8px;
  box-shadow: var(--shadow)
}

.color-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer
}

.color-dot[data-set-accent="green"] {
  background: #1C9770
}

.color-dot[data-set-accent="orange"] {
  background: #F97316
}

.color-dot[data-set-accent="blue"] {
  background: #2563EB
}

.color-dot[data-set-accent="purple"] {
  background: #7C3AED
}

.mode-toggle {
  position: fixed;
  right: 18px;
  top: 145px;
  z-index: 50;
  display: flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
  box-shadow: var(--shadow)
}

.mode-toggle button {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 8px 11px;
  border-radius: 999px;
  cursor: pointer
}

.mode-toggle button.active {
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(20px, 2.2vw, 32px);
  align-items: center;
  padding: 12px 0 8px;
  min-height: calc(100dvh - 84px)
}

.badge {
  display: inline-flex;
  gap: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 900;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px
}

.hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  margin: 14px 0
}

.hero h1 span {
  color: var(--brand)
}

.lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted)
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 0
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 0;
  margin-bottom: 28px;
}

.stat b {
  font-size: 20px
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 12px
}

.laptop {
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 16px;
  box-shadow: var(--shadow);
  position: relative
}

.mock-top {
  height: 14px;
  display: flex;
  gap: 6px
}

.mock-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand)
}

.dashboard-shot {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 18px;
  min-height: 360px
}

.chart {
  height: 150px;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--brand-soft), transparent), repeating-linear-gradient(90deg, transparent 0 49px, var(--border) 50px), repeating-linear-gradient(0deg, transparent 0 49px, var(--border) 50px);
  position: relative;
  overflow: hidden
}

.chart:after {
  content: "";
  position: absolute;
  inset: 35% 4% 12% 4%;
  background: linear-gradient(135deg, transparent 8%, var(--brand) 8% 12%, transparent 12% 25%, var(--brand) 25% 29%, transparent 29% 43%, var(--brand) 43% 47%, transparent 47% 60%, var(--brand) 60% 64%, transparent 64%);
  filter: drop-shadow(0 0 8px var(--brand))
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0
}

.mini-card,
.feature-card,
.plan,
.auth-card,
.checkout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm)
}

.mini-card {
  padding: 16px
}

.mini-card span {
  color: var(--muted);
  font-size: 12px
}

.mini-card b {
  display: block;
  color: var(--brand);
  font-size: 22px;
  margin-top: 6px
}

.table-lines div {
  height: 14px;
  background: var(--surface-2);
  border-radius: 999px;
  margin: 10px
}

.features-wrapper {
  position: relative;
  margin: 25px auto 70px;
  padding: 0 60px;
  width: 100%;
  max-width: 1078px
}

.features-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 15px 0;
  width: 100%
}

.features-container::-webkit-scrollbar {
  display: none
}

/* Ensure theme controls don't overlap browser scrollbar (move slightly left) */
.theme-dock,
.mode-toggle {
  right: 36px !important;
}

.features {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 0 12px
}

.feature-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 6px 16px rgba(15, 23, 42, .06);
  z-index: 10;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text);
  transition: all .2s ease
}

.feature-nav:hover {
  color: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 8px 24px var(--brand-soft)
}

.feature-nav.prev {
  left: 0
}

.feature-nav.next {
  right: 0
}

.feature-card {
  width: 220px;
  flex-shrink: 0;
  text-align: center;
  padding: 24px 12px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .03);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  background: var(--brand-soft);
  border-radius: 50%;
  z-index: 0;
  transition: transform .3s ease
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
}

.feature-card:hover::after {
  transform: scale(1.5)
}

.feature-card>* {
  position: relative;
  z-index: 1
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 14px;
  font-size: 20px;
  margin-bottom: 10px
}

.feature-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  color: var(--text)
}

.card-orange {
  border-top-color: var(--accent-orange)
}

.card-orange::after {
  background: color-mix(in srgb, var(--accent-orange) 12%, transparent)
}

.card-orange .icon-box {
  background: color-mix(in srgb, var(--accent-orange) 12%, transparent);
  color: var(--accent-orange)
}

.card-purple {
  border-top-color: var(--accent-purple)
}

.card-purple::after {
  background: color-mix(in srgb, var(--accent-purple) 12%, transparent)
}

.card-purple .icon-box {
  background: color-mix(in srgb, var(--accent-purple) 12%, transparent);
  color: var(--accent-purple)
}

.section-head {
  text-align: center;
  margin: 40px auto 50px;
  max-width: 680px
}

.section-head .badge {
  margin-bottom: 16px
}

.section-head h2 {
  font-size: 28px;
  margin: 0 0 16px
}

.section-head p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 24px;
  line-height: 1.6
}

.auth-page {
  display: grid;
  grid-template-columns: .9fr 1fr;
  min-height: 100vh
}

.auth-visual {
  padding: 50px;
  background: linear-gradient(145deg, var(--surface-2), var(--brand-soft));
  display: flex;
  align-items: center;
  justify-content: center
}

.visual-card {
  width: min(430px, 100%);
  min-height: 520px;
  border-radius: 30px;
  padding: 36px;
  background: linear-gradient(145deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .22)), url('https://images.unsplash.com/photo-1642790106117-e829e14a795f?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow)
}

.phone-mock {
  height: 190px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 24px;
  background: rgba(0, 0, 0, .38);
  backdrop-filter: blur(8px)
}

.auth-form-wrap {
  display: grid;
  place-items: center;
  padding: 45px
}

.auth-card {
  width: min(460px, 100%);
  padding: 34px;
  box-shadow: var(--shadow)
}

.auth-card h1 {
  margin: 16px 0 8px
}

.form-group {
  margin: 15px 0
}

.form-group label {
  display: block;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 8px
}

.input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  background: var(--surface);
  color: var(--text)
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted)
}

.link {
  color: var(--brand);
  font-weight: 900
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding-bottom: 70px
}

.plan {
  padding: 34px 24px;
  position: relative;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .04);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.plan.popular {
  border: 2px solid var(--accent-orange);
  background: #fff;
  transform: scale(1.04);
  box-shadow: 0 22px 55px rgba(255, 122, 0, .08);
}

.plan-billing {
  font-size: 13px;
  font-weight: 700;
  margin: -10px 0 16px
}

.plan-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border)
}

.pricing-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  background: var(--surface);
  border-radius: 999px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border)
}

.pricing-select {
  appearance: none;
  background: transparent;
  border: none;
  padding: 12px 42px 12px 24px;
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  outline: none;
  width: 100%
}

.dropdown-icon {
  position: absolute;
  right: 20px;
  pointer-events: none;
  font-size: 14px
}

.ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  border-radius: 6px;
  padding: 5px 16px;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase
}

.price {
  font-size: 54px;
  font-weight: 900;
  margin: 15px 0
}

.price small {
  font-size: 16px;
  color: var(--muted);
  font-weight: 600
}

.list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  text-align: left
}

.list li {
  padding: 10px 0;
  color: var(--muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px
}

.list li i {
  font-size: 18px
}

.list li.disabled {
  color: var(--border)
}

.list li.disabled i {
  color: var(--border)
}

.btn-outline {
  border: 1px solid var(--accent-orange);
  color: var(--accent-orange);
  background: transparent
}

.btn-outline:hover {
  background: var(--accent-orange-soft)
}

.checkout {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: 24px;
  padding: 50px 0
}

.checkout-card {
  padding: 28px;
  box-shadow: var(--shadow)
}

.pay-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin: 10px 0
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px
}

.source-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  margin: 30px 0
}

.source-panel code {
  display: block;
  background: var(--surface-2);
  padding: 10px;
  border-radius: 10px;
  margin: 6px 0;
  color: var(--text)
}

body {
  opacity: 1;
  transition: opacity .24s ease, filter .24s ease;
}

body.is-leaving {
  opacity: .72;
  filter: saturate(.92);
}

body.is-scrolling .btn,
body.is-scrolling .nav-links a {
  pointer-events: none;
}

.signin-visual-card {
  background:
    linear-gradient(145deg, rgba(0, 0, 0, .56), rgba(0, 0, 0, .14)),
    url('../images/Signin_.jpg');
  background-size: cover;
  background-position: center;
}

.signin-card-image {
  height: 210px;
  padding: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, .32);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .25);
}

.signin-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: .92;
}

.signup-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 199, 129, .16), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(18, 230, 160, .12), transparent 32%),
    var(--bg);
}

.signup-page .signup-shell {
  margin: auto;
}

.signin-page .signup-shell,
.reset-page .signup-shell,
body:has(.signup-page:not(.signin-page):not(.reset-page)) .signup-shell {
  width: min(500px, 100%);
  min-height: auto;
  grid-template-columns: 1fr;
  padding: 0;
  border-radius: 18px;
}

.signin-page .signup-showcase,
.reset-page .signup-showcase,
body:has(.signup-page:not(.signin-page):not(.reset-page)) .signup-showcase {
  display: none;
}

.signin-page .signup-form-panel,
.reset-page .signup-form-panel,
body:has(.signup-page:not(.signin-page):not(.reset-page)) .signup-form-panel {
  min-height: auto;
  padding: 42px;
}

.signup-shell {
  width: min(940px, 100%);
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(360px, 1fr);
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 30px 80px rgba(15, 23, 42, .13);
  backdrop-filter: blur(18px);
}

.signup-showcase {
  min-height: 612px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 34px;
  padding: 34px;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(6, 13, 22, .18), rgba(6, 13, 22, .82)),
    url('../images/signin_bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.signin-showcase {
  background:
    linear-gradient(180deg, rgba(6, 13, 22, .14), rgba(6, 13, 22, .82)),
    url('../images/Signin_.jpg');
  background-size: cover;
  background-position: center;
}

.signup-showcase:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 199, 129, .28), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .22));
  pointer-events: none;
}

.signup-showcase>* {
  position: relative;
  z-index: 1;
}

.signup-showcase .logo {
  color: #fff;
}

.signup-showcase .logo small {
  color: rgba(255, 255, 255, .7);
}

.signup-showcase h1 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1;
}

.signup-showcase p {
  max-width: 320px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  line-height: 1.55;
  font-weight: 700;
}

.signup-showcase>div:not(.signup-preview) {
  margin-top: auto;
  margin-bottom: auto;
}

.signup-preview {
  height: 210px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, .36);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .34);
}

.signup-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.signup-form-panel {
  min-height: 612px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 48px;
}

.signup-form-panel>.logo {
  justify-content: center;
  margin-bottom: 18px;
}

.signup-form-panel h1 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 32px;
}

.signup-form-panel .lead {
  margin: 0 0 20px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.signup-form-panel .form-group {
  margin: 11px 0;
}

.signup-form-panel .input {
  height: 46px;
  border-radius: 8px;
}

.signup-form-panel .btn {
  width: 100%;
  justify-content: center;
  min-height: 48px;
  margin-top: 14px;
  border-radius: 8px;
}

.signup-switch {
  margin: 18px 0 0;
  text-align: center;
  color: var(--muted);
}

.page {
  display: flex;
  flex-direction: column;
}

.logo-image {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  animation: logoRotateIn .9s cubic-bezier(.2, .8, .2, 1) both;
  transform-origin: center;
}

.logo:hover .logo-image {
  animation: logoHoverSpin .7s ease both;
}

.auth-logo-image {
  width: 54px;
  height: 54px;
}

.page .nav .container,
.page>main.container,
.page .footer .container {
  width: min(1760px, calc(100% - clamp(32px, 4vw, 72px)));
}

/* FAQ chat widget is now enabled on all pages that include its HTML */
.page .nav .container {
  position: static;
  justify-content: space-between !important;
}

.page .nav .logo {
  position: static;
}

.page>main.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.hero {
  flex: 1;
  min-height: calc(100dvh - 94px);
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(20px, 2.2vw, 32px);
  padding: 12px 0 8px;
  align-items: center;
}

.hero>div:first-child {
  min-width: 0;
}

.laptop {
  min-width: 0;
  width: 100%;
}

.dashboard-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.dashboard-image-frame picture {
  width: 110%;
  max-width: 110%;
  display: block;
}

.dashboard-image-frame img {
  width: 100%;
  max-height: min(72dvh, 820px);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 30px 55px rgba(15, 23, 42, .16));
}

.dashboard-shot {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-shot .chart {
  flex: 1;
  min-height: clamp(170px, 24vw, 300px);
}

.features {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  padding: 18px 0 36px;
  gap: clamp(14px, 1.5vw, 22px);
}

.feature-card {
  min-height: 132px;
  border-radius: 18px;
  padding: 26px 18px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, transparent), var(--surface)),
    radial-gradient(circle at top, var(--brand-soft), transparent 54%);
  border: 1px solid color-mix(in srgb, var(--brand) 26%, var(--border));
  box-shadow: 0 20px 42px rgba(15, 23, 42, .07);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.feature-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  opacity: .9;
}

.feature-card:after {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  right: -28px;
  bottom: -30px;
  border-radius: 50%;
  background: var(--brand-soft);
}

/* Base Stylized Icon Design (Default Green) */
.feature-card .icon-box {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--brand) 12%, transparent);
}

.feature-card i {
  font-size: 28px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 6px color-mix(in srgb, var(--brand) 26%, transparent));
}

/* Stylized Orange Icon */
.feature-card.card-orange .icon-box {
  background: color-mix(in srgb, var(--accent-orange) 12%, transparent);
}

.feature-card.card-orange i {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 6px color-mix(in srgb, var(--accent-orange) 26%, transparent));
}

/* Stylized Purple Icon */
.feature-card.card-purple .icon-box {
  background: color-mix(in srgb, var(--accent-purple) 12%, transparent);
}

.feature-card.card-purple i {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 6px color-mix(in srgb, var(--accent-purple) 26%, transparent));
}

.feature-card h4 {
  margin: 0;
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--brand);
  box-shadow: 0 26px 58px color-mix(in srgb, var(--brand-soft) 56%, rgba(15, 23, 42, .12));
}

.home-pricing {
  --pricing-green: var(--brand);
  --pricing-green-dark: color-mix(in srgb, var(--brand) 82%, #020617);
  --pricing-green-2: var(--brand-2);
  --pricing-green-soft: var(--brand-soft);
  padding: 34px 0 86px;
  text-align: center;
  scroll-margin-top: 96px;
}

.home-pricing .section-head {
  margin-top: 0;
}

.home-pricing .section-head .badge {
  margin-bottom: 18px;
  background: var(--pricing-green-soft);
  color: var(--pricing-green);
  box-shadow: 0 12px 30px rgba(0, 199, 129, .1);
}

.home-pricing .ribbon {
  min-width: 230px;
  top: -18px;
  padding: 10px 18px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  box-shadow: 0 14px 28px rgba(255, 122, 0, .25);
  letter-spacing: .03em;
  text-align: center;
}

.home-pricing .section-head h2 {
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.home-pricing .section-head h2 span,
.home-pricing .plan.popular h3 {
  color: var(--pricing-green);
}

.home-pricing .pricing-grid {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding-bottom: 0;
  align-items: stretch;
  gap: clamp(28px, 3vw, 42px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-auto-rows: 1fr;
}



.home-pricing .pricing-showcase .plan {
  min-height: auto;
  height: 100%;
  padding: 32px 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;


  padding: 32px 34px 28px;
  display: flex;
  flex-direction: column;
  overflow: visible;
  text-align: left;
  border-radius: 22px;
  border: 1px solid color-mix(in srgb, var(--pricing-green) 18%, var(--border));
  background:
    radial-gradient(circle at 16% 14%, rgba(0, 199, 129, .08), transparent 28%),
    linear-gradient(180deg, #fff, color-mix(in srgb, var(--surface) 92%, #f8fffb));
  box-shadow: 0 28px 70px rgba(15, 23, 42, .1);
}

.home-pricing .pricing-showcase .plan.popular {
  border: 2px solid var(--pricing-green);
  transform: translateY(-10px);
  box-shadow: 0 34px 90px rgba(0, 199, 129, .18);
}

.home-pricing .plan-tag {
  display: inline-flex;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  align-self: center;
  margin: -4px auto 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(0, 199, 129, .1);
  border: 1px solid rgba(0, 199, 129, .18);
  color: var(--pricing-green-dark);
  font-weight: 900;
  font-size: 14px;
  text-align: center;
}

.home-pricing .pricing-showcase .plan.popular .plan-tag {
  margin-top: 4px;
}

.home-pricing .plan-title {
  min-height: 66px;
  margin-bottom: 12px;
  text-align: center;
}

.home-pricing .pricing-showcase .plan h3 {
  margin: 0 0 6px;
  text-align: center;
  font-size: 31px;
  line-height: 1.05;
}

.home-pricing .plan-title p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.home-pricing .pricing-showcase .price {
  margin: 14px 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  color: var(--pricing-green-dark);
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
}

.billing-details {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 16px;
  margin: 0 0 20px;
  border: 1px solid var(--border);
}

.bd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text);
}

.bd-row:last-child {
  margin-bottom: 0;
  padding-top: 8px;
  border-top: 1px dashed var(--border);
}

.bd-row span {
  color: var(--muted);
}

.home-pricing .pricing-showcase .price small {
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
  text-transform: capitalize;
}

.home-pricing .plan-billing {
  margin: 0 0 24px;
  color: var(--pricing-green);
  font-weight: 800;
  font-size: 17px;
}

.home-pricing .plan-desc {
  min-height: 62px;
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 15px;
}

.home-pricing .plan .list {
  flex: 1;
  margin: 0 0 24px;
}

.home-pricing .plan .list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: var(--text);
  font-weight: 800;
  line-height: 1.35;
}

.home-pricing .plan .list li:before {
  width: 19px;
  height: 19px;
  margin: 0;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--pricing-green);
  color: #fff;
  content: '✓';
  font-size: 12px;
}

.home-pricing .plan .list li.disabled {
  color: #b6becb;
}

.home-pricing .plan .list li.disabled:before {
  background: #d7dce5;
  content: '×';
  color: #fff;
}

/* --- New Plan Card Styles --- */
.home-pricing .plan-header {
  margin-bottom: 16px
}

.home-pricing .plan-original-price {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.save-badge {
  text-decoration: none;
  background: rgba(28, 151, 112, .14);
  color: #1C9770;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.save-badge--popular {
  background: rgba(255, 122, 0, .12);
  color: var(--accent-orange)
}

.plan-renew-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 6px 0 20px;
}

.btn-plan-select {
  width: auto;
  min-width: 180px;
  align-self: center;
  justify-content: center;
  padding: 11px 22px;
  margin: 0 auto;
  border-radius: 8px;
  border: 1.5px solid #6354e6;
  background: transparent;
  color: #6354e6;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.btn-plan-select:hover {
  background: #6354e6;
  color: #fff
}

.btn-plan-select--popular {
  background: #6354e6;
  color: #fff
}

.btn-plan-select--popular:hover {
  background: #5144cc;
  color: #fff
}

.plan-see-all {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #6354e6;
  font-weight: 700;
  margin-top: auto;
  padding-top: 16px;
  text-decoration: none;
}

.plan-see-all i {
  margin-left: 4px;
  font-size: 11px
}

/* --- Checkout Modal --- */
.plan-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .55);
  backdrop-filter: blur(4px);
  z-index: 900;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.plan-modal-overlay.active {
  display: flex
}

.plan-modal {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(15, 23, 42, .2);
  animation: modalIn .25s ease;
}

@keyframes modalIn {
  from {
    transform: translateY(20px);
    opacity: 0
  }

  to {
    transform: translateY(0);
    opacity: 1
  }
}

.pm-title {
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 6px;
  color: #0f172a
}

.pm-sub {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 22px
}

.pm-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 18px;
}

.pm-qty-label {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a
}

.pm-qty-controls {
  display: flex;
  align-items: center;
  gap: 14px
}

.pm-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.pm-qty-btn:hover {
  background: #e2e8f0
}

.pm-qty-val {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  min-width: 20px;
  text-align: center
}

.pm-durations {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px
}

.pm-dur-option {
  cursor: pointer
}

.pm-dur-option input[type="radio"] {
  display: none
}

.pm-dur-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color .2s, background .2s;
}

.pm-dur-option input:checked+.pm-dur-body {
  border-color: #6354e6;
  background: rgba(99, 84, 230, .05);
}

.pm-dur-left {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.pm-dur-months {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a
}

.pm-dur-save {
  font-size: 11px;
  font-weight: 800;
  color: #6354e6;
  letter-spacing: .05em
}

.pm-dur-save--none {
  color: #94a3b8
}

.pm-dur-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px
}

.pm-dur-orig {
  font-size: 12px;
  color: #94a3b8;
  text-decoration: line-through
}

.pm-dur-price {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a
}

.pm-summary {
  border-top: 1px solid #e2e8f0;
  padding-top: 16px;
  margin-bottom: 14px
}

.pm-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 10px
}

.pm-summary-strikethrough {
  text-decoration: line-through;
  color: #94a3b8
}

.pm-summary-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 900;
  color: #0f172a
}

.pm-terms {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 6px
}

.pm-terms a {
  color: var(--brand);
  text-decoration: none
}

.pm-renews {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 20px
}

.pm-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end
}

.pm-cancel {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 8px;
}

.pm-cancel:hover {
  background: #f1f5f9
}

.pm-checkout {
  background: var(--brand);
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 8px;
  transition: background .2s;
}

.pm-checkout:hover {
  background: color-mix(in srgb, var(--brand) 82%, #020617)
}

[data-mode="dark"] .plan-modal {
  background: #1e293b
}

[data-mode="dark"] .pm-title,
[data-mode="dark"] .pm-qty-label,
[data-mode="dark"] .pm-qty-val,
[data-mode="dark"] .pm-dur-months,
[data-mode="dark"] .pm-summary-total-row {
  color: #f1f5f9
}

[data-mode="dark"] .pm-qty-row,
[data-mode="dark"] .pm-dur-body {
  border-color: #334155;
  background: transparent
}

[data-mode="dark"] .pm-dur-option input:checked+.pm-dur-body {
  background: rgba(99, 84, 230, .15);
  border-color: #6354e6
}

[data-mode="dark"] .pm-summary {
  border-color: #334155
}

[data-mode="dark"] .pm-qty-btn {
  background: #334155;
  border-color: #475569;
  color: #f1f5f9
}

.home-pricing .plan .btn-primary {
  background: linear-gradient(135deg, var(--pricing-green), var(--pricing-green-dark));
  color: #fff;
}

/* --- Billing Toggle --- */
.pricing-billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 24px auto 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, .08);
}

.pbt-btn {
  padding: 9px 18px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, color .2s;
}

.pbt-btn--active {
  background: var(--pricing-green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 199, 129, .25);
}

.pbt-save {
  font-size: 11px;
  font-weight: 800;
  background: rgba(0, 199, 129, .15);
  color: var(--pricing-green-dark);
  padding: 2px 7px;
  border-radius: 999px;
}

.pbt-btn--active .pbt-save {
  background: rgba(255, 255, 255, .25);
  color: #fff
}

/* --- Trust Bar --- */
.pricing-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  flex-wrap: wrap;
}

.pricing-trust-bar i {
  color: var(--pricing-green);
  margin-right: 4px
}

.pbt-dot {
  color: var(--border);
  font-size: 16px
}

/* --- Plan Tagline --- */
.plan-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 4px 0 14px;
  text-align: center;
}

/* --- Plan Header centered --- */
.home-pricing .pricing-showcase .plan h3 {
  text-align: center;
  font-size: 26px;
  margin: 0;
}

/* --- Original price inline --- */
.home-pricing .plan-original-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 6px;
}

.plan-orig-amount {
  text-decoration: line-through
}

/* --- Price display --- */
.home-pricing .pricing-showcase .price {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  margin: 6px 0 20px;
  color: #0f172a;
  border-bottom: none;
  padding-bottom: 0;
}

[data-mode="dark"] .home-pricing .pricing-showcase .price,
[data-mode="amoled"] .home-pricing .pricing-showcase .price {
  color: #f1f5f9
}

.home-pricing .pricing-showcase .price small {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted)
}

/* --- Select Plan button (green outline) --- */
.btn-plan-select {
  width: auto;
  min-width: 180px;
  align-self: center;
  justify-content: center;
  padding: 11px 22px;
  margin: 0 auto;
  border-radius: 10px;
  border: 1.5px solid var(--pricing-green);
  background: transparent;
  color: var(--pricing-green);
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s, color .2s;
  margin-bottom: 0;
}

.btn-plan-select:hover {
  background: var(--pricing-green);
  color: #fff
}

.btn-plan-select--popular {
  background: var(--pricing-green);
  color: #fff
}

.btn-plan-select--popular:hover {
  background: var(--pricing-green-dark);
  color: #fff
}

/* --- Renew note --- */
.plan-renew-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 8px 0 18px;
}

/* --- Feature list --- */
.home-pricing .plan .list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  border-bottom: none;
}

.home-pricing .plan .list li:before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--pricing-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex: 0 0 auto;
}

.home-pricing .plan .list li.disabled {
  color: #b0bec5
}

.home-pricing .plan .list li.disabled:before {
  background: #e2e8f0;
  color: #94a3b8;
  content: '✕';
}

/* --- See all features link --- */
.plan-see-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--pricing-green);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  padding-top: 14px;
  width: 100%;
  border: 0;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.plan-see-all:hover {
  text-decoration: underline
}

/* --- Guarantee bar --- */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 24px auto 0;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--pricing-green-soft);
  font-size: 14px;
  font-weight: 800;
  color: var(--pricing-green-dark);
  width: fit-content;
}

.pricing-guarantee i {
  font-size: 18px;
  color: var(--pricing-green)
}

/* --- Ribbon updated --- */
.home-pricing .ribbon {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  font-size: 12px;
  padding: 8px 20px;
  display: block;
  text-align: center;
}

/* --- Popular card updated border --- */
.home-pricing .pricing-showcase .plan.popular {
  border: 2px solid var(--pricing-green);
  transform: translateY(-12px);
  box-shadow: 0 34px 90px rgba(0, 199, 129, .2);
}

.home-pricing .plan-header {
  text-align: center;
  margin-bottom: 0
}

.pricing-page .home-pricing {
  min-height: calc(100vh - 74px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(28px, 4vw, 58px) 0 74px;
}

.pricing-page .section-head {
  max-width: 1040px;
  margin-bottom: 20px;
}

.pricing-page .section-head h2 {
  font-size: clamp(36px, 4vw, 58px);
}

.pricing-page .section-head p {
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.55;
}

.pricing-toggle {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto 30px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .07);
}

.pricing-toggle span {
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  transition: background .24s ease, color .24s ease, transform .24s ease;
}

.pricing-toggle span.active {
  background: linear-gradient(135deg, var(--pricing-green), var(--pricing-green-dark));
  color: #fff;
  box-shadow: 0 12px 24px rgba(0, 199, 129, .2);
}

.pricing-toggle b {
  color: var(--pricing-green);
}

.pricing-toggle span:hover {
  transform: translateY(-2px);
}

[data-mode="dark"] .home-pricing .pricing-showcase .plan,
[data-mode="amoled"] .home-pricing .pricing-showcase .plan {
  background:
    radial-gradient(circle at 16% 14%, rgba(0, 199, 129, .14), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 98%, #0f172a), var(--surface-2));
}

[data-mode="dark"] .signup-shell,
[data-mode="amoled"] .signup-shell {
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.included-strip {
  width: min(1480px, 100%);
  margin: 30px auto 0;
  padding: 26px 36px 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: 0 20px 46px rgba(15, 23, 42, .08);
}

.included-strip h3 {
  margin: 0 0 22px;
  text-align: center;
  font-size: 18px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 16px;
}

.included-grid .included-feature,
.included-grid>span {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 16px;
  border-right: 1px solid var(--border);
  color: var(--muted);
  text-align: left;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.included-grid .included-feature:last-child,
.included-grid>span:last-child {
  border-right: 0
}

.included-grid .included-feature strong {
  font-size: 13px;
}

.included-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--pricing-green-soft);
  color: var(--pricing-green-dark);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--pricing-green) 18%, transparent);
}

.included-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.included-grid i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: var(--pricing-green-soft);
  color: var(--pricing-green-dark);
  font-size: 16px;
}

.footer {
  margin-top: 40px;
  padding: 54px 0 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  background:
    radial-gradient(circle at 12% 0, var(--brand-soft), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--surface) 88%, transparent), var(--surface-2));
}

.footer-shell {
  display: grid;
  gap: 28px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(260px, .55fr);
  gap: 28px;
  align-items: stretch;
}

.footer-brand,
.footer-contact {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 20px 46px rgba(15, 23, 42, .07);
}

.footer-brand {
  padding: 26px;
}

.footer-brand .logo {
  width: max-content;
}

.footer-brand p {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 26px;
}

.footer-contact h3 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 20px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
}

.footer-contact i {
  width: 22px;
  color: var(--brand);
  text-align: center;
}

.footer-included {
  width: 100%;
  margin: 0;
}

.footer-included h3 {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media(max-width:900px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media(max-width:560px) {
  .footer {
    padding: 36px 0 24px;
  }

  .footer-brand,
  .footer-contact,
  .footer-included {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .footer-brand .logo {
    width: 100%;
  }

  .footer-trust {
    display: grid;
  }
}

/* --- Reference-style footer --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-reference {
  position: relative;
  overflow: hidden;
  margin-top: 54px;
  padding: 0;
  border-top: 0;
  background: linear-gradient(135deg, #edf7f3 0%, var(--footer-bg) 100%);
  color: rgba(15, 23, 42, .72);
}

.footer-reference .footer-shell {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  padding: 0;
}

.footer-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.footer-decor .market-token,
.footer-decor .trade-orb {
  opacity: .48;
}

.market-token--footer-sol {
  top: 42px;
  left: clamp(28px, 6vw, 96px);
  animation-delay: .2s;
}

.market-token--footer-xrp {
  top: 46%;
  right: clamp(28px, 5vw, 82px);
  animation-delay: .85s;
}

.market-token--footer-doge {
  bottom: 34px;
  left: clamp(36px, 12vw, 180px);
  animation-delay: 1.35s;
}

.trade-orb--footer-exchange {
  top: 118px;
  right: clamp(90px, 12vw, 210px);
  color: var(--brand);
  animation-delay: .65s;
}

.trade-orb--footer-wallet {
  bottom: 52px;
  right: clamp(34px, 8vw, 128px);
  color: var(--accent-orange);
  border-color: rgba(249, 115, 22, .2);
  animation-delay: 1.6s;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(360px, .88fr);
  gap: 34px;
  align-items: center;
  padding: 64px 0 62px;
}

.footer-newsletter h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
}

.footer-newsletter p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.footer-subscribe {
  display: grid;
  grid-template-columns: 1fr 92px;
  gap: 16px;
  width: min(620px, 100%);
  justify-self: end;
}

.footer-subscribe input {
  width: 100%;
  height: 58px;
  border: 0;
  border-radius: 999px;
  padding: 0 26px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-weight: 700;
  outline: 0;
}

.footer-subscribe button {
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #04120f;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 18px 34px rgba(255, 255, 255, .16);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, .12);
}

.footer-reference .footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.3fr) minmax(160px, .65fr) minmax(230px, .85fr) minmax(250px, .85fr);
  gap: 56px;
  align-items: start;
  padding: 70px 0 68px;
}

.footer-reference .footer-brand,
.footer-reference .footer-contact {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.footer-reference .footer-brand {
  width: min(360px, 100%);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-weight: 900;
}

.footer-logo img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.footer-logo span {
  display: grid;
  gap: 2px;
  font-size: 20px;
  line-height: 1;
}

.footer-logo small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .08em;
}

.footer-reference .footer-brand p {
  max-width: 360px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.85;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  width: max-content;
  max-width: 360px;
  margin-top: 24px;
  margin-left: 0;
  margin-right: auto;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.footer-social a[aria-label="Facebook"] {
  background: #1877f2;
  border-color: #1877f2;
}

.footer-social a[aria-label="X"] {
  background: #000;
  border-color: #000;
}

.footer-social a[aria-label="LinkedIn"] {
  background: #0a66c2;
  border-color: #0a66c2;
}

.footer-social a[aria-label="Instagram"] {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 38%, #8134af 70%, #515bd4 100%);
  border-color: rgba(255, 255, 255, .18);
}

.footer-social a:hover {
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-column h3 {
  position: relative;
  margin: 0 0 28px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
}

.footer-column h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 82px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #1C9770 0 36px, transparent 36px 48px, #1C9770 48px 58px, transparent 58px 70px, #1C9770 70px 82px);
}

.footer-column a,
.footer-column span,
.footer-reference .footer-contact a,
.footer-reference .footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

.footer-column a:hover {
  color: #1C9770;
}

.footer-column i {
  width: 18px;
  margin-top: 4px;
  color: var(--brand);
  text-align: center;
  font-size: 14px;
}

.footer-contact i {
  color: var(--brand);
  font-size: 18px;
}

.footer-reference .footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 30px 0 34px;
  border-top: 1px solid rgba(15, 23, 42, .08);
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.footer-reference .footer-bottom strong {
  color: #1C9770;
}

.footer-reference .footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-reference .footer-bottom a {
  color: #1C9770;
}

.footer-reference .footer-bottom a:hover {
  color: #1C9770;
}

.footer-reference .footer-bottom span:last-child {
  justify-self: end;
  color: rgba(15, 23, 42, .72);
}

@media(max-width:1100px) {

  .footer-newsletter,
  .footer-reference .footer-main,
  .footer-reference .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-reference .footer-bottom span:last-child {
    justify-self: start;
  }

  .footer-decor .market-token,
  .footer-decor .trade-orb {
    opacity: .34;
  }

  .market-token--footer-xrp {
    right: 24px;
  }

  .trade-orb--footer-exchange {
    top: 86px;
    right: 70px;
  }
}

@media(max-width:620px) {
  .footer-newsletter {
    padding: 44px 0;
  }

  .footer-subscribe {
    grid-template-columns: 1fr 66px;
    gap: 10px;
  }

  .footer-subscribe input,
  .footer-subscribe button {
    height: 52px;
  }

  .footer-reference .footer-main {
    gap: 38px;
    padding: 46px 0;
  }

  .footer-logo img {
    width: 56px;
    height: 56px;
  }

  .footer-reference .footer-bottom div {
    justify-content: flex-start;
    gap: 16px;
  }

  .market-token--footer-doge,
  .trade-orb--footer-exchange {
    display: none;
  }

  .market-token--footer-sol {
    top: 24px;
    left: 20px;
  }

  .market-token--footer-xrp {
    top: 34%;
    right: 18px;
  }

  .trade-orb--footer-wallet {
    right: 18px;
    bottom: 22px;
  }
}

.checkout-page-main {
  justify-content: center;
  padding: clamp(34px, 5vw, 78px) 0;
}

.checkout-shell {
  width: min(1060px, 100%);
  margin: auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  font-size: 14px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(420px, 1.22fr);
  gap: 22px;
  align-items: stretch;
}

.checkout-layout .checkout-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 15% 12%, var(--brand-soft), transparent 36%),
    color-mix(in srgb, var(--surface) 96%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border));
  box-shadow: 0 28px 70px rgba(15, 23, 42, .1);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.checkout-layout .checkout-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.checkout-layout .checkout-card:hover {
  transform: translateY(-6px);
  border-color: var(--brand);
  box-shadow: 0 32px 78px color-mix(in srgb, var(--brand-soft) 48%, rgba(15, 23, 42, .12));
}

.checkout-summary p {
  margin: 8px 0 4px;
  color: var(--muted);
  font-weight: 500;
}

.checkout-summary h1 {
  margin: 0 0 18px;
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
}

.checkout-price {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 36px;
  font-weight: 600;
}

.checkout-price small {
  color: var(--muted);
  font-size: 14px;
}

.checkout-summary .list {
  margin-bottom: 0;
}

.payment-panel h2 {
  margin: 8px 0 18px;
  font-size: 20px;
  font-weight: 600;
}

.payment-methods {
  display: grid;
  gap: 10px;
}

.payment-row {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.payment-row:hover {
  transform: translateX(4px);
  border-color: var(--brand);
  background: var(--brand-soft);
}

.payment-row input {
  accent-color: var(--brand);
  flex: 0 0 auto;
}

.payment-methods .payment-row input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.payment-copy strong {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.payment-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pay-logo {
  width: 96px;
  min-width: 96px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow: none;
  white-space: nowrap;
}

.pay-logo img {
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
  display: block;
}

.pay-logo--jazzcash img {
  max-width: 88px;
}

.pay-logo--paypal img,
.pay-logo--binance img,
.pay-logo--easypaisa img {
  max-width: 64px;
}

.pay-logo--visa {
  color: #1a1f71
}

.pay-logo--paypal {
  color: #003087
}

.pay-logo--binance {
  background: #f3ba2f;
  color: #181a20;
  border-color: #f3ba2f
}

.pay-logo--jazzcash {
  background: #fff4f2;
  color: #e21b1b;
  border-color: #ffd0c9
}

.pay-logo--easypaisa {
  background: #f0fff7;
  color: #12a85f;
  border-color: #bcebd3
}

.pay-logo--mastercard {
  width: 96px;
  min-width: 96px;
  position: relative;
}

.pay-logo--mastercard i {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: block;
}

.pay-logo--mastercard i:first-child {
  background: #eb001b;
  margin-right: -5px;
}

.pay-logo--mastercard i:last-child {
  background: #f79e1b
}

.card-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.payment-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.payment-field--full {
  grid-column: 1 / -1
}

.payment-field label {
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
}

.payment-field input {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0 13px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.payment-field input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.checkout-button {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.secure-note {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.secure-note span:before {
  content: "◎";
  color: var(--brand);
  margin-right: 6px;
}

.logo-mark {
  animation: logoRotateIn .9s cubic-bezier(.2, .8, .2, 1) both;
  transform-origin: center;
}

.logo:hover .logo-mark {
  animation: logoHoverSpin .7s ease both;
}

.btn,
.nav-links a,
.color-dot,
.mode-toggle button,
.dashboard-image-frame img,
.home-pricing .pricing-showcase .plan,
.payment-row,
.checkout-layout .checkout-card {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, filter .24s ease, background .24s ease, color .24s ease;
}

.btn:hover,
.nav-links a:hover,
.mode-toggle button:hover {
  transform: translateY(-3px);
}

.btn:active,
.nav-links a:active,
.color-dot:active,
.mode-toggle button:active {
  transform: translateY(0) scale(.96);
}

.color-dot:hover {
  transform: translateY(-3px) scale(1.08);
}

.dashboard-image-frame img:hover {
  transform: translateY(-8px) scale(1.015);
  filter: drop-shadow(0 36px 70px rgba(0, 199, 129, .18));
}

.home-pricing .pricing-showcase .plan:hover {
  transform: translateY(-10px);
  border-color: var(--pricing-green);
  box-shadow: 0 34px 78px rgba(0, 199, 129, .16);
}

.home-pricing .pricing-showcase .plan.popular:hover {
  transform: translateY(-22px);
}

.home-pricing .plan .btn:hover {
  background: linear-gradient(135deg, var(--pricing-green), var(--pricing-green-2));
  color: #fff;
  box-shadow: 0 18px 36px var(--pricing-green-soft);
}

@keyframes logoRotateIn {
  0% {
    opacity: 0;
    transform: rotate(-180deg) scale(.55)
  }

  70% {
    opacity: 1;
    transform: rotate(18deg) scale(1.08)
  }

  100% {
    opacity: 1;
    transform: rotate(0) scale(1)
  }
}

@keyframes logoHoverSpin {
  0% {
    transform: rotate(0) scale(1)
  }

  100% {
    transform: rotate(360deg) scale(1)
  }
}

@media(prefers-reduced-motion:reduce) {

  *,
  *:before,
  *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media(max-width:900px) {
  .nav-links {
    display: none
  }

  .hero,
  .auth-page,
  .checkout {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: 42px
  }

  .features,
  .pricing-grid {
    grid-template-columns: 1fr 1fr
  }

  .theme-dock,
  .mode-toggle {
    right: 10px
  }

  .page>.theme-dock,
  .page>.mode-toggle {
    position: static;
    width: max-content;
    margin: 10px auto 0;
  }

  .page>.mode-toggle {
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .auth-visual {
    display: none
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .card-form {
    grid-template-columns: 1fr;
  }

  .payment-field--full {
    grid-column: auto;
  }

  .payment-row {
    align-items: flex-start;
  }

  .payment-logos {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 116px;
  }

  .stats {
    flex-wrap: wrap
  }

  .feature-section-head h2 {
    font-size: 42px
  }

  .home-pricing .section-head h2 {
    font-size: 42px
  }

  .home-pricing .pricing-showcase .plan {
    min-height: auto;
    padding: 30px 26px 26px;
  }

  .home-pricing .pricing-showcase .plan.popular {
    transform: none;
  }

  .home-pricing .pricing-showcase .plan.popular:hover {
    transform: translateY(-10px);
  }

  .included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .included-grid .included-feature:nth-child(even),
  .included-grid>span:nth-child(even) {
    border-right: 0;
  }

  .pricing-page .home-pricing {
    min-height: auto;
  }

  .signup-page {
    padding: 18px;
  }

  .signup-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .signup-showcase {
    min-height: 360px;
  }

  .signup-form-panel {
    min-height: auto;
    padding: 30px 24px;
  }
}

@media(max-width:560px) {

  .features,
  .pricing-grid,
  .cards {
    grid-template-columns: 1fr
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 34px;
  }

  .lead-control-icon {
    margin: 10px 44px 0 auto;
  }

  .hero h1 {
    font-size: 34px
  }

  .dashboard-image-frame picture {
    width: min(76vw, 320px);
    margin: 0 auto;
  }

  .dashboard-image-frame img {
    max-height: 560px;
  }

  .feature-section-head {
    margin: 14px auto 4px;
  }

  .feature-section-head h2 {
    font-size: 34px;
  }

  .feature-section-head p {
    font-size: 14px;
  }

  .home-pricing {
    padding-top: 20px
  }

  .home-pricing .section-head h2 {
    font-size: 34px;
    white-space: normal;
  }

  .home-pricing .pricing-showcase .plan h3 {
    font-size: 27px
  }

  .home-pricing .pricing-showcase .price {
    font-size: 26px;
    font-weight: 400
  }

  .home-pricing .plan .btn {
    min-height: 58px;
    font-size: 16px
  }

  .included-strip {
    padding: 22px 20px;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .included-grid .included-feature,
  .included-grid>span {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding: 0 0 14px;
  }

  .included-grid .included-feature:last-child,
  .included-grid>span:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .pricing-toggle {
    width: 100%;
    justify-content: center;
  }

  .pricing-toggle span {
    padding: 8px 11px;
    font-size: 12px;
  }

  .checkout-page-main {
    padding: 22px 0 40px;
  }

  .checkout-layout .checkout-card {
    padding: 22px;
  }

  .signup-page {
    padding: 10px;
  }

  .signup-shell {
    padding: 10px;
    border-radius: 12px;
  }

  .signup-showcase {
    min-height: 320px;
    padding: 24px;
  }

  .signup-showcase h1 {
    font-size: 29px;
  }

  .signup-preview {
    height: 150px;
  }

  .signup-form-panel {
    padding: 26px 10px 16px;
  }

  .signup-form-panel h1 {
    font-size: 28px;
  }
}

/* --- Final overrides for SaaS checkout refresh --- */
.checkout-layout--pro {
  grid-template-columns: minmax(300px, .72fr) minmax(460px, 1.28fr);
  align-items: start
}

.checkout-layout--pro .checkout-card {
  border-radius: 24px;
  padding: 28px
}

.checkout-summary {
  position: sticky;
  top: 98px
}

.summary-ledger {
  display: grid;
  gap: 11px;
  margin: 20px 0
}

.summary-ledger div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500
}

.summary-ledger div:last-child {
  border-bottom: 0
}

.summary-ledger strong {
  color: var(--text);
  text-align: right;
  font-weight: 500
}

.payment-dynamic-form {
  margin-top: 18px
}

.method-panel {
  display: none;
  animation: methodIn .22s ease both
}

.method-panel.active {
  display: block
}

.payment-row:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: 0 16px 34px color-mix(in srgb, var(--brand-soft) 70%, transparent)
}

.external-pay-panel,
.binance-panel {
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  background: color-mix(in srgb, var(--surface) 94%, transparent)
}

.external-pay-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55
}

.qr-box {
  width: 160px;
  aspect-ratio: 1;
  border-radius: 18px;
  display: grid;
  place-items: center;
  justify-self: center;
  background: linear-gradient(90deg, #111 10px, transparent 10px 20px, #111 20px 30px, transparent 30px), linear-gradient(#111 10px, transparent 10px 20px, #111 20px 30px, transparent 30px), #fff;
  background-size: 40px 40px;
  color: #fff;
  font-weight: 900;
  box-shadow: inset 0 0 0 14px #fff, 0 18px 38px rgba(15, 23, 42, .12)
}

.otp-field {
  display: none
}

.otp-field.active {
  display: flex
}

.form-error {
  min-height: 20px;
  margin: 12px 0 0;
  color: #ef4444;
  font-size: 13px;
  font-weight: 800
}

.checkout-button.is-loading {
  pointer-events: none;
  opacity: .78
}

.security-block,
.trust-section,
.checkout-faq {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .08)
}

.security-block h2,
.trust-section h2,
.checkout-faq h2 {
  margin: 0 0 18px;
  font-size: 22px
}

.security-grid,
.exchange-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px
}

.security-grid span,
.exchange-logos span {
  min-height: 56px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-align: center
}

.security-grid span {
  color: var(--brand)
}

.trust-section {
  text-align: center
}

.trust-section p {
  margin: 18px 0 0;
  color: var(--brand);
  font-weight: 900
}

.customer-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.google-rating-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
  background: conic-gradient(from -40deg, #4285f4 0 25%, #34a853 0 40%, #fbbc05 0 58%, #ea4335 0 76%, #4285f4 0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.rating-star {
  color: #fbbc05;
  font-size: 30px;
  letter-spacing: 0;
  text-shadow: 0 6px 12px rgba(251, 188, 5, .22);
}

.rating-star--outline {
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 1.6px #fbbc05;
  text-shadow: none;
}

.checkout-faq {
  display: grid;
  gap: 10px
}

.checkout-faq h2 {
  text-align: center
}

.checkout-faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden
}

.checkout-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 500
}

.checkout-faq details p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  line-height: 1.6
}

.checkout-faq .customer-rating {
  margin: 12px 0 0;
  color: var(--brand);
  font-weight: 900
}

.success-page {
  min-height: 100vh;
  background: radial-gradient(circle at 50% 8%, var(--brand-soft), transparent 34%), var(--bg)
}

.success-main {
  min-height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 46px 0
}

.success-card {
  width: min(680px, 100%);
  padding: 48px;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--border));
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 30px 82px rgba(15, 23, 42, .12);
  text-align: center
}

.success-animation {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  box-shadow: 0 0 0 12px color-mix(in srgb, var(--brand-soft) 45%, transparent);
  animation: successPulse 1.3s ease infinite
}

.success-animation span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 38px;
  font-weight: 900
}

.success-card h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px)
}

.success-card p {
  margin: 0 auto 24px;
  max-width: 520px;
  color: var(--muted);
  line-height: 1.65
}

.success-summary {
  display: grid;
  gap: 12px;
  margin: 0 auto 26px;
  max-width: 440px;
  text-align: left
}

.success-summary div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface)
}

.success-summary span {
  color: var(--muted);
  font-weight: 800
}

.success-summary strong {
  color: var(--text)
}

.success-button {
  justify-content: center;
  min-width: 180px
}

@media(max-width:900px) {
  .checkout-layout--pro {
    grid-template-columns: 1fr
  }

  .checkout-summary {
    position: relative;
    top: auto
  }

  .security-grid,
  .exchange-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media(max-width:560px) {

  .checkout-layout--pro .checkout-card,
  .security-block,
  .trust-section,
  .checkout-faq,
  .success-card {
    padding: 22px;
    border-radius: 18px
  }

  .security-grid,
  .exchange-logos,
  .card-form {
    grid-template-columns: 1fr
  }

  .payment-row {
    flex-wrap: wrap
  }

  .payment-copy {
    flex-basis: calc(100% - 32px)
  }

  .payment-logos,
  .pay-logo {
    margin-left: 32px
  }
}

/* --- Checkout alignment tweaks --- */
.checkout-hero h1 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.checkout-layout--pro {
  align-items: start;
}

.checkout-layout--pro .checkout-card {
  align-self: start;
  margin-top: 0;
}

.checkout-summary p,
.payment-panel h2 {
  margin-top: 0;
}

/* --- Checkout payment success and review popup --- */
.payment-flow-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 8, 23, .58);
  backdrop-filter: blur(14px);
}

.payment-flow-modal.is-active {
  display: flex;
}

.payment-flow-card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--border));
  border-radius: 24px;
  background:
    radial-gradient(circle at 14% 0, color-mix(in srgb, var(--brand-soft) 78%, transparent), transparent 34%),
    var(--surface);
  box-shadow: 0 34px 90px rgba(2, 8, 23, .28);
  text-align: center;
}

.payment-flow-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.payment-flow-step {
  display: none;
}

.payment-flow-step.is-active {
  display: block;
  animation: modalIn .24s ease;
}

.payment-flow-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 34px;
}

.payment-flow-icon--search {
  color: var(--accent-orange);
  background: rgba(249, 115, 22, .13);
  box-shadow: 0 0 0 10px rgba(249, 115, 22, .08);
  animation: successPulse 1.25s ease infinite;
}

.payment-flow-icon--success {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 0 0 10px var(--brand-soft);
}

.payment-flow-icon--review {
  color: var(--accent-orange);
  background: #fff7ed;
  box-shadow: 0 0 0 10px rgba(249, 115, 22, .09);
}

.payment-flow-step h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
}

.payment-flow-step p {
  margin: 0 auto 20px;
  max-width: 430px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 500;
}

.payment-search-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  text-align: left;
}

.payment-search-lines span,
.transaction-success-box,
.submitted-review {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 92%, var(--brand-soft));
}

.payment-search-lines span {
  position: relative;
  padding: 13px 16px 13px 42px;
  color: var(--text);
  font-weight: 700;
  overflow: hidden;
}

.payment-search-lines span:before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-orange);
  transform: translateY(-50%);
}

.payment-search-lines span:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .48), transparent);
  transform: translateX(-100%);
  animation: paymentScan 1.35s ease infinite;
}

@keyframes paymentScan {
  to {
    transform: translateX(100%)
  }
}

.transaction-success-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  text-align: left;
}

.transaction-success-box span {
  color: var(--muted);
  font-weight: 700;
}

.transaction-success-box strong {
  color: var(--brand);
  font-size: 20px;
}

.review-form {
  display: grid;
  gap: 14px;
  text-align: left;
}

.review-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  resize: vertical;
}

.review-form input:focus,
.review-form textarea:focus {
  outline: 0;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.review-stars {
  display: inline-flex;
  gap: 4px;
}

.review-star {
  border: 0;
  background: transparent;
  color: #cbd5e1;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.review-star.is-active {
  color: #fbbc05;
}

.review-submit {
  justify-content: center;
}

.submitted-review {
  margin: 8px 0 22px;
  padding: 16px;
  text-align: left;
  color: var(--text);
  line-height: 1.55;
}

.submitted-review strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
}

.payment-flow-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

[data-mode="dark"] .payment-flow-card,
[data-mode="amoled"] .payment-flow-card,
[data-mode="dark"] .payment-flow-close,
[data-mode="amoled"] .payment-flow-close {
  background: var(--surface);
}

[data-mode="dark"] .payment-flow-icon--review,
[data-mode="amoled"] .payment-flow-icon--review {
  background: rgba(249, 115, 22, .13);
}

@media(max-width:560px) {
  .payment-flow-card {
    padding: 28px 18px 22px;
  }

  .payment-flow-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* --- Checkout top spacing and card baseline fix --- */
.checkout-page-main {
  padding-top: 28px;
}

.checkout-shell {
  margin-top: 0;
}

.back-link {
  margin-bottom: 14px;
}

.checkout-hero {
  margin-bottom: 22px;
}

.checkout-layout--pro {
  align-items: flex-start;
}

.checkout-summary {
  position: relative;
  top: auto;
}

.checkout-summary p,
.payment-panel h2 {
  min-height: 24px;
  margin-bottom: 18px;
  line-height: 1.2;
}

/* --- Payment provider logo visibility --- */
.pay-logo--paypal {
  width: 96px;
  min-width: 96px;
  height: 42px;
  color: #003087;
  background: transparent;
  border-color: transparent;
}

.pay-logo--binance {
  width: 96px;
  min-width: 96px;
  height: 42px;
  color: #181a20;
  background: transparent;
  border-color: transparent;
}

.pay-logo--jazzcash {
  width: 96px;
  min-width: 96px;
  height: 42px;
  color: #e21b1b;
  background: transparent;
  border-color: transparent;
}

.pay-logo--easypaisa {
  width: 96px;
  min-width: 96px;
  height: 42px;
  color: #12a85f;
  background: transparent;
  border-color: transparent;
  text-transform: lowercase;
}

.pay-logo--paypal img,
.pay-logo--binance img,
.pay-logo--easypaisa img {
  max-width: 64px;
  max-height: 34px;
}

.pay-logo--jazzcash img {
  max-width: 88px;
  max-height: 34px;
}

/* --- Pricing popular badge/button color update --- */
.home-pricing .ribbon {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  box-shadow: 0 14px 28px var(--accent-orange-soft);
}

.btn-plan-select--popular {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
}

.home-pricing .plan .btn-plan-select--popular:hover {
  background: #d85f0f;
  border-color: #d85f0f;
  color: #fff;
}

/* --- Smooth feature-card translate animation --- */
.features-container {
  overflow: hidden;
}

.features {
  will-change: transform;
  animation: featureSlide 8s ease-in-out infinite alternate;
}

.features-wrapper:hover .features {
  animation-play-state: paused;
}

.feature-card {
  will-change: transform;
}

@keyframes featureSlide {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-96px)
  }
}

@media(prefers-reduced-motion:reduce) {
  .features {
    animation: none;
  }
}

/* --- Pricing feature icon colors --- */
.home-pricing .plan .list li:before {
  width: 14px;
  height: 14px;
  border: 1.8px solid var(--pricing-green);
  background: transparent;
  color: var(--pricing-green);
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}

.home-pricing .plan .list li.disabled:before {
  border-color: #c4b5fd;
  background: transparent;
  color: #a78bfa;
}

/* --- Feature carousel: 3 visible cards with wider gaps --- */
.feature-section-head {
  width: min(920px, calc(100% - 32px));
  margin: 4px auto 10px;
  text-align: center;
}

.feature-section-head h2 {
  margin: 0;
  color: var(--text);
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.feature-section-head h2 span {
  color: var(--brand);
}

.feature-section-head p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
}

.features-wrapper {
  position: relative;
  max-width: 1220px;
  padding: 0 76px;
}

.features-container {
  overflow: hidden;
  width: 100%;
}

.features {
  width: 100%;
  gap: 28px;
  padding: 18px 0 36px;
  animation: none;
  transition: none;
}

.features .feature-card {
  width: calc((100% - 56px) / 3);
  min-width: 0;
  flex: 0 0 calc((100% - 56px) / 3);
}

.features-wrapper .feature-nav.prev {
  left: calc((1220px - 100vw) / 2 + clamp(72px, 8vw, 140px));
}

.features-wrapper .feature-nav.next {
  right: calc((1220px - 100vw) / 2 + clamp(72px, 8vw, 140px));
}

/* --- Feature cards: reference image display pattern --- */
.features-wrapper {
  max-width: min(1120px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 24px 76px 30px;
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
  box-shadow: none;
}

.features-wrapper:before {
  content: none;
}

.features-container {
  position: relative;
  z-index: 1;
  padding: 14px 0 20px;
}

.features {
  align-items: center;
  gap: 26px;
  padding: 8px 0 14px;
}

.features .feature-card {
  min-height: 232px;
  padding: 14px 14px 16px;
  border: 1px solid rgba(226, 232, 240, .86);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 100%, rgba(20, 184, 166, .3), transparent 46%),
    linear-gradient(155deg, #fff 0%, #fbfdff 48%, #eefdf8 100%);
  box-shadow: 0 18px 38px rgba(15, 23, 42, .1), inset 0 1px 0 rgba(255, 255, 255, .9);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  transform: scale(.94);
  transform-origin: center;
  transition: transform .3s cubic-bezier(.22, .8, .24, 1), box-shadow .28s ease, background .28s ease;
}

.features .feature-card:before,
.features .feature-card:after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.features .feature-card:before {
  inset: -36% auto auto -34%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 184, 166, .42), rgba(20, 184, 166, .16) 42%, transparent 72%);
  filter: blur(14px);
}

.features .feature-card:after {
  inset: auto 8% -24% auto;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .16), transparent 68%);
  filter: blur(22px);
}

.features .feature-card>* {
  position: relative;
  z-index: 1;
}

.features .feature-card:nth-child(even) {
  background:
    radial-gradient(circle at 100% 100%, rgba(249, 115, 22, .32), transparent 46%),
    linear-gradient(155deg, #fff 0%, #fffaf5 48%, #fff2e4 100%);
}

.features .feature-card:nth-child(3n) {
  background:
    radial-gradient(circle at 100% 100%, rgba(124, 58, 237, .3), transparent 46%),
    linear-gradient(155deg, #fff 0%, #fbf8ff 48%, #f3eaff 100%);
}

.features .feature-card:nth-child(4n) {
  background:
    radial-gradient(circle at 100% 100%, rgba(34, 184, 135, .32), transparent 46%),
    linear-gradient(155deg, #fff 0%, #f7fffb 48%, #e9fff5 100%);
}

.features .feature-card:nth-child(5n) {
  background:
    radial-gradient(circle at 100% 100%, rgba(37, 99, 235, .28), transparent 46%),
    linear-gradient(155deg, #fff 0%, #f8fbff 48%, #edf4ff 100%);
}

.features .feature-card:nth-child(even):before {
  inset: -36% auto auto -34%;
  background: radial-gradient(circle, rgba(249, 115, 22, .46), rgba(249, 115, 22, .16) 42%, transparent 72%);
}

.features .feature-card:nth-child(3n):before {
  background: radial-gradient(circle, rgba(124, 58, 237, .44), rgba(124, 58, 237, .16) 42%, transparent 72%);
}

.features .feature-card:nth-child(4n):before {
  inset: -36% auto auto -34%;
  background: radial-gradient(circle, rgba(34, 184, 135, .46), rgba(34, 184, 135, .16) 42%, transparent 72%);
}

.features .feature-card:nth-child(5n):before {
  background: radial-gradient(circle, rgba(37, 99, 235, .4), rgba(37, 99, 235, .14) 42%, transparent 72%);
}

.features .feature-card.is-featured {
  z-index: 2;
  min-height: 264px;
  transform: scale(1.02);
  border-color: rgba(20, 184, 166, .34);
  box-shadow: 0 24px 58px rgba(15, 23, 42, .14), 0 0 32px rgba(20, 184, 166, .14), inset 0 1px 0 rgba(255, 255, 255, .95);
}

.features .feature-card:hover {
  transform: scale(.97) translateY(-4px);
  border-color: rgba(20, 184, 166, .42);
  box-shadow: 0 24px 54px rgba(15, 23, 42, .14), 0 0 30px rgba(20, 184, 166, .16), inset 0 1px 0 rgba(255, 255, 255, .95);
}

[data-mode="dark"] .features .feature-card,
[data-mode="amoled"] .features .feature-card {
  border-color: rgba(148, 163, 184, .24);
  background:
    radial-gradient(circle at 0 0, rgba(20, 184, 166, .42), transparent 42%),
    linear-gradient(155deg, #132333 0%, #0d1724 48%, #0a111d 100%);
  box-shadow: 0 20px 46px rgba(2, 8, 23, .26), inset 0 1px 0 rgba(255, 255, 255, .06);
}

[data-mode="dark"] .features .feature-card:before,
[data-mode="amoled"] .features .feature-card:before {
  inset: -36% auto auto -34%;
  background: radial-gradient(circle, rgba(20, 184, 166, .56), rgba(20, 184, 166, .18) 42%, transparent 70%);
  filter: blur(10px);
}

[data-mode="dark"] .features .feature-card:after,
[data-mode="amoled"] .features .feature-card:after {
  inset: auto -28% -38% auto;
  background: radial-gradient(circle, rgba(124, 58, 237, .34), transparent 68%);
  filter: blur(18px);
}

[data-mode="dark"] .features .feature-card:nth-child(even),
[data-mode="amoled"] .features .feature-card:nth-child(even) {
  background:
    radial-gradient(circle at 100% 0, rgba(249, 115, 22, .5), transparent 42%),
    linear-gradient(155deg, #1f1b15 0%, #111827 48%, #0a111d 100%);
}

[data-mode="dark"] .features .feature-card:nth-child(3n),
[data-mode="amoled"] .features .feature-card:nth-child(3n) {
  background:
    radial-gradient(circle at 0 0, rgba(124, 58, 237, .52), transparent 42%),
    linear-gradient(155deg, #1a1630 0%, #111827 48%, #0a111d 100%);
}

[data-mode="dark"] .features .feature-card:nth-child(4n),
[data-mode="amoled"] .features .feature-card:nth-child(4n) {
  background:
    radial-gradient(circle at 100% 0, rgba(34, 184, 135, .52), transparent 42%),
    linear-gradient(155deg, #10281f 0%, #111827 48%, #0a111d 100%);
}

[data-mode="dark"] .features .feature-card:nth-child(5n),
[data-mode="amoled"] .features .feature-card:nth-child(5n) {
  background:
    radial-gradient(circle at 0 0, rgba(37, 99, 235, .5), transparent 42%),
    linear-gradient(155deg, #121f3c 0%, #111827 48%, #0a111d 100%);
}

[data-mode="dark"] .features .feature-card:nth-child(even):before,
[data-mode="amoled"] .features .feature-card:nth-child(even):before {
  inset: -36% -34% auto auto;
  background: radial-gradient(circle, rgba(249, 115, 22, .62), rgba(249, 115, 22, .18) 42%, transparent 70%);
}

[data-mode="dark"] .features .feature-card:nth-child(3n):before,
[data-mode="amoled"] .features .feature-card:nth-child(3n):before {
  background: radial-gradient(circle, rgba(124, 58, 237, .64), rgba(124, 58, 237, .2) 42%, transparent 70%);
}

[data-mode="dark"] .features .feature-card:nth-child(4n):before,
[data-mode="amoled"] .features .feature-card:nth-child(4n):before {
  inset: -36% -34% auto auto;
  background: radial-gradient(circle, rgba(34, 184, 135, .64), rgba(34, 184, 135, .2) 42%, transparent 70%);
}

[data-mode="dark"] .features .feature-card:nth-child(5n):before,
[data-mode="amoled"] .features .feature-card:nth-child(5n):before {
  background: radial-gradient(circle, rgba(37, 99, 235, .58), rgba(37, 99, 235, .18) 42%, transparent 70%);
}

[data-mode="dark"] .features .feature-card.is-featured,
[data-mode="amoled"] .features .feature-card.is-featured {
  border-color: rgba(45, 212, 191, .34);
  box-shadow: 0 24px 58px rgba(2, 8, 23, .38), 0 0 32px rgba(20, 184, 166, .13), inset 0 1px 0 rgba(255, 255, 255, .08);
}

[data-mode="dark"] .features .feature-card:hover,
[data-mode="amoled"] .features .feature-card:hover {
  border-color: rgba(45, 212, 191, .42);
  box-shadow: 0 24px 54px rgba(2, 8, 23, .34), 0 0 30px rgba(20, 184, 166, .15), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.features .feature-card.is-featured:hover {
  transform: scale(1.035) translateY(-4px);
}

.feature-media {
  height: 146px;
  border-radius: 14px;
  background: transparent;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
}

.features .feature-card.is-featured .feature-media {
  height: 170px;
}

.features .feature-card.card-orange .feature-media {
  background: transparent;
}

.features .feature-card.card-purple .feature-media {
  background: transparent;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.feature-media .feature-img--dark {
  display: none;
}

[data-mode="dark"] .feature-media .feature-img--light,
[data-mode="amoled"] .feature-media .feature-img--light {
  display: none;
}

[data-mode="dark"] .feature-media .feature-img--dark,
[data-mode="amoled"] .feature-media .feature-img--dark {
  display: block;
}

[data-mode="dark"] .feature-media,
[data-mode="amoled"] .feature-media,
[data-mode="dark"] .features .feature-card.card-orange .feature-media,
[data-mode="amoled"] .features .feature-card.card-orange .feature-media,
[data-mode="dark"] .features .feature-card.card-purple .feature-media,
[data-mode="amoled"] .features .feature-card.card-purple .feature-media {
  background: #050914;
  padding: 8px;
}

.features .feature-card .icon-box {
  width: 76px;
  height: 76px;
  margin: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #d358e9, #c548dc);
  box-shadow: 0 14px 26px rgba(149, 37, 164, .2);
}

.features .feature-card.card-orange .icon-box {
  background: linear-gradient(135deg, #f277b0, #dd4e8c);
}

.features .feature-card.card-purple .icon-box {
  background: linear-gradient(135deg, #c45bf3, #9f45e5);
}

.features .feature-card i,
.features .feature-card.card-orange i,
.features .feature-card.card-purple i {
  color: #f8d5ff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
  filter: none;
  font-size: 34px;
}

.feature-copy {
  display: grid;
  gap: 7px;
  padding: 14px 10px 0;
}

.features .feature-card h4 {
  margin: 0;
  color: #172033;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.feature-copy span {
  color: #667085;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

[data-mode="dark"] .features .feature-card h4,
[data-mode="amoled"] .features .feature-card h4 {
  color: #f8fafc;
}

[data-mode="dark"] .feature-copy span,
[data-mode="amoled"] .feature-copy span {
  color: #a8b3c7;
}

.feature-copy:after {
  content: "";
  width: 38%;
  height: 7px;
  margin-top: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.feature-card.card-orange .feature-copy:after {
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-2));
}

.feature-card.card-purple .feature-copy:after {
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-purple-2));
}

.features-wrapper .feature-nav {
  z-index: 3;
  background: rgba(255, 255, 255, .94);
  border-color: rgba(255, 255, 255, .66);
  color: #8b2aae;
}

.features-wrapper .feature-nav.prev {
  left: 24px;
}

.features-wrapper .feature-nav.next {
  right: 24px;
}

@media(max-width:900px) {
  .features-wrapper {
    padding: 24px 62px 28px;
  }

  .features {
    gap: 22px;
  }

  .features .feature-card {
    width: calc((100% - 24px) / 2);
    flex-basis: calc((100% - 24px) / 2);
  }

  .features .feature-card.is-featured {
    transform: scale(1);
  }

  .features .feature-card.is-featured:hover {
    transform: translateY(-6px);
  }
}

@media(max-width:620px) {
  .features-wrapper {
    max-width: calc(100% - 18px);
    padding: 20px 44px 24px;
    border-radius: 0;
  }

  .features {
    gap: 16px;
  }

  .features .feature-card {
    width: 100%;
    flex-basis: 100%;
    min-height: 236px;
    transform: none;
  }

  .features .feature-card.is-featured,
  .features .feature-card:hover,
  .features .feature-card.is-featured:hover {
    min-height: 236px;
    transform: none;
  }

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 146px;
  }

  .features-wrapper .feature-nav.prev {
    left: 12px;
  }

  .features-wrapper .feature-nav.next {
    right: 12px;
  }
}

/* --- Checkout summary modal green accents --- */
.plan-modal,
.pm-summary,
.pm-dur-body {
  border-color: var(--brand);
}

.pm-dur-save:not(.pm-dur-save--none) {
  color: var(--brand);
}

.pm-dur-option input:checked+.pm-dur-body {
  border-color: var(--brand);
  background: var(--brand-soft);
}

/* --- Pricing feature reveal --- */
.home-pricing:not(.features-expanded) .plan .list li:nth-child(n+6) {
  display: none;
}

.home-pricing.features-expanded .plan .list li {
  animation: pricingFeatureReveal .24s ease both;
}

.home-pricing.features-expanded .pricing-showcase .plan {
  background:
    radial-gradient(circle at 16% 14%, color-mix(in srgb, var(--pricing-green) 8%, transparent), transparent 28%),
    linear-gradient(180deg, var(--surface), color-mix(in srgb, var(--surface) 92%, var(--bg)));
  border-color: color-mix(in srgb, var(--pricing-green) 34%, var(--border));
  box-shadow: 0 30px 72px rgba(15, 23, 42, .12);
}

.home-pricing.features-expanded .section-head h2,
.home-pricing.features-expanded .pricing-showcase .plan h3,
.home-pricing.features-expanded .pricing-showcase .price {
  color: var(--text);
}

.home-pricing.features-expanded .section-head p,
.home-pricing.features-expanded .pricing-trust-bar,
.home-pricing.features-expanded .plan-tagline,
.home-pricing.features-expanded .plan-renew-note {
  color: var(--muted);
}

.home-pricing.features-expanded .plan .list li {
  color: var(--text);
}

.home-pricing.features-expanded .plan .list li.disabled {
  color: var(--muted);
}

.home-pricing.features-expanded .plan-see-all {
  color: var(--pricing-green-dark);
}

.home-pricing .pricing-showcase .plan.popular,
.home-pricing .pricing-showcase .plan.popular:hover,
.home-pricing.features-expanded .pricing-showcase .plan.popular {
  border-color: var(--accent-orange);
}

.home-pricing .pricing-showcase .plan.popular h3 {
  color: var(--text);
}

@keyframes pricingFeatureReveal {
  from {
    opacity: 0;
    transform: translateY(-4px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* --- Feature-to-pricing spacing cleanup --- */
.features-wrapper {
  margin-bottom: 26px;
}

.features {
  padding-bottom: 18px;
}

.home-pricing {
  padding-top: 12px;
}

.home-pricing .section-head {
  margin-top: 0;
  margin-bottom: 28px;
}

.home-pricing .section-head p {
  margin-bottom: 10px;
}

.home-pricing .pricing-billing-toggle {
  margin-top: 12px;
}

.home-pricing .pricing-showcase {
  margin-top: clamp(42px, 5vw, 64px);
  overflow-anchor: none;
}

#features,
#pricing-cards {
  scroll-margin-top: 80px;
}

[data-reveal] {
  --reveal-delay: 0ms;
  --reveal-duration: 1000ms;
  opacity: 0;
  translate: 0 34px;
  scale: .985;
  filter: blur(6px);
  transition:
    opacity var(--reveal-duration) cubic-bezier(.16, 1, .3, 1),
    translate var(--reveal-duration) cubic-bezier(.16, 1, .3, 1),
    scale var(--reveal-duration) cubic-bezier(.16, 1, .3, 1),
    filter var(--reveal-duration) cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay);
  will-change: opacity, translate, scale, filter;
}

[data-reveal="slide-left"] {
  translate: -24px 0;
  scale: 1;
  filter: none;
}

[data-reveal="zoom-in"] {
  translate: 0 0;
  scale: 1.12;
  filter: blur(7px);
}

[data-reveal].is-revealed {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: blur(0);
}

[data-reveal-child] {
  opacity: 0;
  translate: 0 10px;
  transition:
    opacity .7s cubic-bezier(.16, 1, .3, 1),
    translate .7s cubic-bezier(.16, 1, .3, 1);
}

.is-revealed>[data-reveal-child] {
  opacity: 1;
  translate: 0 0;
}

.is-revealed>[data-reveal-child]:nth-child(2) {
  transition-delay: .08s
}

.is-revealed>[data-reveal-child]:nth-child(3) {
  transition-delay: .16s
}

.is-revealed>[data-reveal-child]:nth-child(4) {
  transition-delay: .24s
}

.home-pricing .plan[data-reveal] {
  transform-origin: center bottom;
}

.home-pricing .plan[data-reveal] .plan-header,
.home-pricing .plan[data-reveal] .btn,
.home-pricing .plan[data-reveal] .plan-renew-note,
.home-pricing .plan[data-reveal] .list,
.home-pricing .plan[data-reveal] .plan-see-all {
  opacity: 0;
  translate: 0 16px;
  transition:
    opacity .72s cubic-bezier(.16, 1, .3, 1),
    translate .72s cubic-bezier(.16, 1, .3, 1);
}

.home-pricing .plan[data-reveal].is-revealed .plan-header {
  transition-delay: .12s
}

.home-pricing .plan[data-reveal].is-revealed .btn {
  transition-delay: .22s
}

.home-pricing .plan[data-reveal].is-revealed .plan-renew-note {
  transition-delay: .3s
}

.home-pricing .plan[data-reveal].is-revealed .list {
  transition-delay: .38s
}

.home-pricing .plan[data-reveal].is-revealed .plan-see-all {
  transition-delay: .46s
}

.home-pricing .plan[data-reveal].is-revealed .plan-header,
.home-pricing .plan[data-reveal].is-revealed .btn,
.home-pricing .plan[data-reveal].is-revealed .plan-renew-note,
.home-pricing .plan[data-reveal].is-revealed .list,
.home-pricing .plan[data-reveal].is-revealed .plan-see-all {
  opacity: 1;
  translate: 0 0;
}

@media (prefers-reduced-motion:reduce) {

  [data-reveal],
  [data-reveal-child],
  .home-pricing .plan[data-reveal] .plan-header,
  .home-pricing .plan[data-reveal] .btn,
  .home-pricing .plan[data-reveal] .plan-renew-note,
  .home-pricing .plan[data-reveal] .list,
  .home-pricing .plan[data-reveal] .plan-see-all {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    filter: none;
    transition: none;
  }
}

/* --- Final typography softening for checkout and feature cards --- */
.checkout-page .checkout-summary p,
.checkout-page .summary-ledger div,
.checkout-page .summary-ledger strong,
.checkout-page .summary-benefits li,
.checkout-page .payment-copy strong,
.checkout-page .payment-field label {
  font-weight: 500;
}

.checkout-page .payment-copy small,
.checkout-page .payment-field input {
  font-weight: 400;
}

.checkout-page .checkout-summary h1,
.checkout-page .checkout-price,
.checkout-page .payment-panel h2 {
  font-weight: 600;
}

.features .feature-card h4 {
  font-weight: 600;
}

.feature-copy span {
  font-weight: 500;
}

/* --- Full-width centered homepage section titles --- */
.feature-section-head,
.home-pricing .section-head {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  text-align: center;
}

.feature-section-head h2,
.home-pricing .section-head h2 {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media(max-width:720px) {

  .feature-section-head h2,
  .home-pricing .section-head h2 {
    white-space: normal;
  }
}

@media(max-width:560px) {
  .home-pricing .pricing-billing-toggle {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
  }

  .home-pricing .pbt-btn {
    min-width: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 9px 6px;
    font-size: 12px;
    line-height: 1.15;
  }

  .home-pricing .pbt-save {
    padding: 2px 5px;
    font-size: 10px;
  }

  .home-pricing .pricing-trust-bar {
    flex-wrap: wrap;
  }
}

.hero h1,
.feature-section-head h2,
.home-pricing .section-head h2,
.footer-newsletter h2 {
  font-size: 35px;
}

.hero {
  position: relative;
  overflow: visible;
  isolation: isolate;
  align-items: center;
  margin-top: 0;
  padding: 0 0 60px;
}

.hero:before,
.hero:after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero:before {
  width: min(520px, 44vw);
  aspect-ratio: 1;
  left: 4%;
  top: 12%;
  border: 1px solid rgba(28, 151, 112, .08);
  border-radius: 50%;
  box-shadow:
    72px 42px 0 -70px rgba(28, 151, 112, .34),
    190px -26px 0 -184px rgba(28, 151, 112, .22),
    310px 190px 0 -304px rgba(28, 151, 112, .2);
}

.hero:after {
  width: 330px;
  height: 220px;
  right: 24%;
  top: 8%;
  opacity: .34;
  background-image: radial-gradient(rgba(28, 151, 112, .22) 1px, transparent 1px);
  background-size: 12px 12px;
}

.hero>* {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(44px, 4.2vw, 58px);
  line-height: 1.08;
}

.hero .lead {
  max-width: 620px;
  margin: 0;
}

.lead-control-icon {
  width: 46px;
  height: 46px;
  margin: 0 78px 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(249, 115, 22, .2);
  border-radius: 14px;
  background: rgba(255, 255, 255, .84);
  color: var(--accent-orange);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .12);
  backdrop-filter: blur(12px);
}

.lead-control-icon i {
  font-size: 18px;
}

.hero-actions {
  margin-top: 2px;
  margin-bottom: 0;
  max-width: 620px;
}

.hero-actions .btn {
  min-height: 46px;
}

.hero-actions .btn i {
  margin-left: 8px;
  font-size: 14px;
}

.stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 6px;
  max-width: 330px;
  width: 100%;
  align-items: start;
}

.stat {
  display: grid;
  justify-items: start;
  gap: 1px;
  text-align: left;
}

.stat .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 2px;
  background: rgba(255, 255, 255, .78);
  color: var(--brand);
  font-size: 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .08);
}

.stat .stat-icon i {
  color: inherit;
  font-size: inherit;
}

.dashboard-image-frame {
  position: relative;
}

.hero-crypto-wrap {
  position: relative;
  display: inline-block;
}

.dashboard-image-frame picture {
  position: relative;
  z-index: 1;
}

.live-market-icons {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.live-coin {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 29px;
  border: 4px solid rgba(255, 255, 255, .48);
  box-shadow: 0 22px 38px rgba(15, 23, 42, .18), inset 0 -10px 18px rgba(15, 23, 42, .18), inset 0 8px 14px rgba(255, 255, 255, .35);
  animation: liveCoinFloat 4.2s ease-in-out infinite;
}

.live-coin--btc {
  top: 5%;
  left: -98px;
  width: 82px;
  height: 82px;
  font-size: 46px;
  border-width: 5px;
  background: linear-gradient(145deg, #ffcf75, #f7931a 72%, #d56b00);
}

.live-coin--crypto {
  left: -68px;
  bottom: 8%;
  top: auto;
  width: 54px;
  height: 54px;
  font-size: 23px;
  background: linear-gradient(145deg, #27d98a, #0da064 72%, #08754a);
  animation-delay: .45s;
}

.live-coin--eth-blue {
  top: 13%;
  right: -82px;
  background: linear-gradient(145deg, #9caeff, #627eea 68%, #4058c7);
  animation-delay: .7s;
}

.trade-orb {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(28, 151, 112, .16);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .12);
  backdrop-filter: blur(12px);
  pointer-events: none;
  animation: tradeOrbFloat 4.8s ease-in-out infinite;
}

.trade-orb i {
  font-size: 20px;
}

.trade-orb--bot {
  right: -64px;
  bottom: 7%;
  color: var(--accent-purple);
  border-color: rgba(124, 58, 237, .18);
  animation-delay: .8s;
}

.trade-orb--trend {
  right: 13%;
  top: -66px;
  color: var(--accent-orange);
  border-color: rgba(249, 115, 22, .2);
  animation-delay: 1.2s;
}

.trade-orb--heading-trend {
  left: 50%;
  top: -58px;
  right: auto;
  bottom: auto;
  margin-left: -24px;
  color: var(--accent-orange);
  border-color: rgba(249, 115, 22, .2);
  z-index: 3;
}

.section-trade-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 12;
}

.features-wrapper,
.home-pricing {
  position: relative;
}

.features-wrapper {
  overflow: visible;
}

.trade-orb--feature-left {
  left: clamp(8px, 3vw, 42px);
  top: 32%;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  font-size: 28px;
}

.trade-orb--feature-right {
  right: clamp(8px, 3vw, 42px);
  top: 34%;
  color: var(--accent-orange);
  border-color: rgba(249, 115, 22, .2);
  animation-delay: .65s;
}

.trade-orb--pricing-left {
  left: clamp(8px, 3vw, 42px);
  top: 32%;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  font-size: 28px;
  color: var(--accent-purple);
  border-color: rgba(124, 58, 237, .18);
}

.trade-orb--pricing-right {
  right: clamp(8px, 3vw, 42px);
  top: 34%;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  font-size: 28px;
  color: var(--accent-orange);
  border-color: rgba(249, 115, 22, .2);
  animation-delay: .75s;
}

@keyframes liveCoinFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0)
  }

  50% {
    transform: translate3d(0, -14px, 0)
  }
}

@keyframes liveCoinSpin {
  0% {
    rotate: 0deg
  }

  100% {
    rotate: 360deg
  }
}

@keyframes tradeOrbFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0)
  }

  50% {
    transform: translate3d(0, -10px, 0)
  }
}

@media(max-width:900px) {
  .dashboard-image-frame {
    position: relative;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero:before,
  .hero:after {
    display: none;
  }

  .live-coin--btc {
    top: 3%;
    left: -78px;
    right: auto;
    width: 68px;
    height: 68px;
    font-size: 38px;
  }

  .live-coin--crypto {
    left: -58px;
    bottom: 6%;
    top: auto;
    width: 50px;
    height: 50px;
    font-size: 23px;
  }

  .live-coin--eth-blue {
    top: 8%;
    right: -72px;
    bottom: auto;
    left: auto;
  }

  .trade-orb {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .trade-orb i {
    font-size: 17px;
  }

  .trade-orb--heading-trend {
    left: 50%;
    top: -50px;
    right: auto;
    margin-left: -21px;
  }

  .trade-orb--bot,
  .trade-orb--trend {
    display: none;
  }

  .trade-orb--feature-left {
    left: 8px;
    top: 18%;
    width: 50px;
    height: 50px;
  }

  .trade-orb--feature-right {
    right: 8px;
    top: 18%;
  }

  .trade-orb--pricing-left {
    left: 8px;
    top: 18%;
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .trade-orb--pricing-right {
    right: 8px;
    top: 18%;
    width: 50px;
    height: 50px;
    font-size: 17px;
  }
}

@media(max-width:560px) {
  .dashboard-image-frame {
    position: relative;
  }

  .live-coin {
    width: 44px;
    height: 44px;
    border-width: 3px;
    font-size: 20px;
  }

  .live-coin--btc {
    top: 2%;
    left: -60px;
    right: auto;
    width: 54px;
    height: 54px;
    font-size: 31px;
  }

  .live-coin--crypto {
    left: -46px;
    bottom: 6%;
    top: auto;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .live-coin--eth-blue {
    top: 5%;
    right: -50px;
    bottom: auto;
    left: auto;
  }

  .trade-orb--heading-trend {
    top: -42px;
    margin-left: -20px;
  }

  .section-trade-icons--features,
  .section-trade-icons--pricing {
    display: none;
  }
}

/* --- Reference-style features showcase --- */
.feature-section-head {
  width: min(980px, calc(100% - 32px));
  margin: 0px auto 22px;
  text-align: center;
}

.feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(28, 151, 112, .09);
  color: #0f9f72;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-kicker i {
  font-size: 16px;
}

.feature-section-head h2 {
  margin: 0;
  color: #101828;
  font-family: inherit;
  font-size: clamp(44px, 4.2vw, 58px);
  line-height: 1.04;
  font-weight: 700;
}

.feature-section-head h2 span {
  color: #1C9770;
}

.feature-section-head p {
  max-width: 720px;
  margin: 20px auto 0;
  color: #667085;
  font-size: 18px;
  font-weight: 700;
}

.feature-title-accent {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.feature-title-accent:before,
.feature-title-accent:after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #20c79a;
}

.feature-title-accent span {
  width: 40px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #20c79a, #1C9770);
}

.features-wrapper {
  max-width: min(1240px, calc(100% - 56px));
  margin: 22px auto 36px;
  padding: 24px 94px 26px;
  overflow: visible;
}

.features-container {
  overflow: hidden;
  padding: 14px 0 22px;
}

.features {
  counter-reset: feature-card;
  align-items: stretch;
  gap: 36px;
  padding: 0;
}

.features .feature-card {
  counter-increment: feature-card;
  flex: 0 0 calc((100% - 72px) / 3);
  width: calc((100% - 72px) / 3);
  min-height: 446px;
  padding: 28px 30px 30px;
  border: 1px solid rgba(226, 232, 240, .92);
  border-radius: 26px;
  background: linear-gradient(145deg, #ffffff 0%, #fbfffd 52%, #eefdf6 100%);
  box-shadow: 0 28px 70px rgba(15, 23, 42, .1), inset 0 1px 0 rgba(255, 255, 255, .95);
  text-align: left;
  transform: none;
}

.features .feature-card:nth-child(even) {
  background: linear-gradient(145deg, #ffffff 0%, #fffaf6 52%, #fff0e5 100%);
}

.features .feature-card:nth-child(3n) {
  background: linear-gradient(145deg, #ffffff 0%, #fbf8ff 52%, #f2eaff 100%);
}

.features .feature-card:before {
  content: counter(feature-card, decimal-leading-zero);
  inset: 26px 26px auto auto;
  width: auto;
  min-width: 46px;
  height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(28, 151, 112, .1);
  color: #1C9770;
  font-size: 14px;
  font-weight: 900;
  filter: none;
  aspect-ratio: auto;
  z-index: 3;
}

.features .feature-card:nth-child(even):before {
  background: rgba(249, 115, 22, .1);
  color: #f97316;
}

.features .feature-card:nth-child(3n):before {
  background: rgba(124, 58, 237, .1);
  color: #7c3aed;
}

.features .feature-card:after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  inset: auto 26px 28px auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #1C9770;
  background: rgba(28, 151, 112, .12);
  filter: none;
  aspect-ratio: auto;
  font-size: 18px;
}

.features .feature-card:nth-child(even):after {
  color: #f97316;
  background: rgba(249, 115, 22, .13);
}

.features .feature-card:nth-child(3n):after {
  color: #7c3aed;
  background: rgba(124, 58, 237, .13);
}

.features .feature-card.is-featured,
.features .feature-card:hover,
.features .feature-card.is-featured:hover {
  min-height: 446px;
  transform: translateY(-6px);
  box-shadow: 0 34px 82px rgba(15, 23, 42, .14), inset 0 1px 0 rgba(255, 255, 255, .98);
}

.feature-media,
.features .feature-card.is-featured .feature-media {
  height: 230px;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-copy {
  gap: 10px;
  padding: 22px 0 0;
}

.features .feature-card h4 {
  color: #111827;
  font-family: inherit;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.15;
}

.feature-copy span {
  max-width: 230px;
  color: #667085;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
}

.feature-copy:after {
  width: 46%;
  height: 7px;
  margin-top: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1C9770, #39d6a8);
  box-shadow: 90px 0 0 rgba(28, 151, 112, .12);
}

.feature-card:nth-child(even) .feature-copy:after {
  background: linear-gradient(90deg, #f97316, #fb923c);
  box-shadow: 90px 0 0 rgba(249, 115, 22, .12);
}

.feature-card:nth-child(3n) .feature-copy:after {
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  box-shadow: 90px 0 0 rgba(124, 58, 237, .12);
}

.features-wrapper .feature-nav {
  width: 58px;
  height: 58px;
  border: 0;
  background: rgba(255, 255, 255, .92);
  color: #8b5cf6;
  box-shadow: 0 18px 38px rgba(15, 23, 42, .1);
}

.features-wrapper .feature-nav.prev {
  left: 18px;
}

.features-wrapper .feature-nav.next {
  right: 18px;
}

.section-trade-icons--features .trade-orb {
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
}

.section-trade-icons--features .trade-orb i {
  font-size: 28px;
}

.trade-orb--feature-left {
  left: clamp(8px, 3vw, 42px);
  top: 32%;
  width: 76px;
  height: 76px;
  color: #1C9770;
}

.trade-orb--feature-right {
  right: clamp(8px, 3vw, 42px);
  top: 34%;
  width: 76px;
  height: 76px;
}

.feature-benefits {
  width: min(1180px, calc(100% - 72px));
  margin: 6px auto 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(226, 232, 240, .72);
  box-shadow: 0 24px 64px rgba(15, 23, 42, .1);
  backdrop-filter: blur(16px);
}

.feature-benefit {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid rgba(226, 232, 240, .9);
}

.feature-benefit:last-child {
  border-right: 0;
}

.feature-benefit>span {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #1C9770;
  background: rgba(28, 151, 112, .1);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
}

.feature-benefit:nth-child(2)>span {
  color: #f97316;
  background: rgba(249, 115, 22, .1);
}

.feature-benefit:nth-child(3)>span {
  color: #7c3aed;
  background: rgba(124, 58, 237, .1);
}

.feature-benefit:nth-child(4)>span {
  color: #2563eb;
  background: rgba(37, 99, 235, .1);
}

.feature-benefit i {
  font-size: 24px;
}

.feature-benefit b,
.feature-benefit small {
  display: block;
}

.feature-benefit b {
  color: #101828;
  font-size: 14px;
  font-weight: 900;
}

.feature-benefit small {
  margin-top: 8px;
  color: #667085;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

@media(max-width:1100px) {
  .feature-benefits {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }

  .feature-benefit:nth-child(2) {
    border-right: 0;
  }
}

@media(max-width:900px) {
  .features-wrapper {
    padding: 22px 76px 26px;
  }

  .features {
    gap: 28px;
  }

  .features .feature-card {
    flex-basis: calc((100% - 28px) / 2);
    width: calc((100% - 28px) / 2);
  }
}

@media(max-width:620px) {
  .feature-section-head h2 {
    font-size: 36px;
  }

  .features-wrapper {
    max-width: calc(100% - 18px);
    padding: 18px 52px 24px;
  }

  .features .feature-card,
  .features .feature-card.is-featured,
  .features .feature-card:hover,
  .features .feature-card.is-featured:hover {
    flex-basis: 100%;
    width: 100%;
    min-height: 390px;
    transform: none;
  }

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 190px;
  }

  .features .feature-card:before {
    inset: 22px 22px auto auto;
  }

  .features .feature-card h4 {
    font-size: 20px;
  }

  .feature-copy span {
    font-size: 15px;
  }

  .feature-benefits {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .feature-benefit {
    border-right: 0;
    border-bottom: 1px solid rgba(226, 232, 240, .9);
    padding: 16px 0;
  }

  .feature-benefit:last-child {
    border-bottom: 0;
  }
}

.feature-section-head h2,
.home-pricing .section-head h2 {
  font-size: 35px;
}

.section-trade-icons--features {
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

.section-trade-icons--features .trade-orb--feature-left {
  left: clamp(8px, 3vw, 42px);
  top: 32%;
}

.section-trade-icons--features .trade-orb--feature-right {
  right: clamp(8px, 3vw, 42px);
  top: 34%;
}

.trade-orb--feature-left,
.trade-orb--pricing-left {
  left: clamp(8px, 3vw, 42px);
  width: 76px;
  height: 76px;
  border-radius: 22px;
  font-size: 28px;
}

.trade-orb--feature-left {
  top: -86px;
}

.trade-orb--pricing-left {
  top: 32%;
}

.trade-orb--feature-right,
.trade-orb--pricing-right {
  right: clamp(8px, 3vw, 42px);
  width: 76px;
  height: 76px;
  border-radius: 22px;
  font-size: 28px;
}

.trade-orb--feature-right {
  top: -62px;
}

.trade-orb--pricing-right {
  top: 34%;
}

@media(max-width:900px) {

  .trade-orb--feature-left,
  .trade-orb--pricing-left {
    left: 8px;
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .trade-orb--feature-left {
    top: -58px;
  }

  .trade-orb--pricing-left {
    top: 18%;
  }

  .trade-orb--feature-right,
  .trade-orb--pricing-right {
    right: 8px;
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .trade-orb--feature-right {
    top: -42px;
  }

  .trade-orb--pricing-right {
    top: 18%;
  }
}

.feature-section-head {
  position: relative;
  overflow: visible;
}

.feature-section-head .section-trade-icons--features {
  position: absolute;
  inset: 0;
  left: 0;
  width: 100%;
  transform: none;
  z-index: 2;
}

.feature-section-head .trade-orb--feature-left {
  left: clamp(-170px, -10vw, -86px);
  top: 58px;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  font-size: 28px;
}

.feature-section-head .trade-orb--feature-right {
  right: clamp(-170px, -10vw, -86px);
  top: 84px;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  font-size: 28px;
}

@media(max-width:900px) {
  .feature-section-head .trade-orb--feature-left {
    left: -52px;
    top: 56px;
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .feature-section-head .trade-orb--feature-right {
    right: -52px;
    top: 74px;
    width: 50px;
    height: 50px;
    font-size: 17px;
  }
}

.home-pricing .section-trade-icons--pricing {
  position: absolute;
  inset: 0;
  left: 50%;
  width: min(680px, calc(100% - 160px));
  transform: translateX(-50%);
  z-index: 2;
}

.home-pricing .trade-orb--pricing-left {
  left: clamp(-170px, -10vw, -86px);
  top: 58px;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  font-size: 28px;
}

.home-pricing .trade-orb--pricing-right {
  right: clamp(-170px, -10vw, -86px);
  top: 84px;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  font-size: 28px;
}

@media(max-width:900px) {
  .home-pricing .section-trade-icons--pricing {
    width: min(520px, calc(100% - 96px));
  }

  .home-pricing .trade-orb--pricing-left {
    left: -52px;
    top: 56px;
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .home-pricing .trade-orb--pricing-right {
    right: -52px;
    top: 74px;
    width: 50px;
    height: 50px;
    font-size: 17px;
  }
}

.home-pricing .section-trade-icons--pricing {
  width: min(980px, calc(100% - 32px));
}

.home-pricing .pricing-showcase {
  margin-top: clamp(62px, 7vw, 92px);
  gap: clamp(34px, 4vw, 56px);
}

@media(max-width:900px) {
  .home-pricing .section-trade-icons--pricing {
    width: min(520px, calc(100% - 96px));
  }

  .home-pricing .pricing-showcase {
    margin-top: 56px;
    gap: 30px;
  }
}

.home-pricing {
  padding-bottom: clamp(34px, 5vw, 58px);
}

.section-trade-icons--pricing-bottom {
  position: relative;
  inset: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: min(980px, calc(100% - 32px));
  height: 0;
  margin: 0 auto;
  transform: none;
  z-index: 2;
}

.trade-orb--pricing-bottom-left,
.trade-orb--pricing-bottom-right {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  font-size: 28px;
}

.trade-orb--pricing-bottom-left {
  left: clamp(-170px, -10vw, -86px);
  top: -76px;
  color: var(--brand);
}

.trade-orb--pricing-bottom-right {
  right: clamp(-170px, -10vw, -86px);
  top: -54px;
  color: var(--accent-orange);
  border-color: rgba(249, 115, 22, .2);
}

@media(max-width:900px) {
  .home-pricing {
    padding-bottom: 42px;
  }

  .section-trade-icons--pricing-bottom {
    bottom: auto;
    width: min(520px, calc(100% - 96px));
    height: 0;
    margin-bottom: 0;
  }

  .trade-orb--pricing-bottom-left,
  .trade-orb--pricing-bottom-right {
    width: 50px;
    height: 50px;
    font-size: 17px;
  }

  .trade-orb--pricing-bottom-left {
    left: -52px;
    top: -50px;
  }

  .trade-orb--pricing-bottom-right {
    right: -52px;
    top: -36px;
  }
}

.features-wrapper {
  max-width: min(1180px, calc(100% - 56px));
  padding-left: 112px;
  padding-right: 112px;
}

.features {
  gap: 44px;
}

.features .feature-card,
.features .feature-card.is-featured,
.features .feature-card:hover,
.features .feature-card.is-featured:hover {
  flex-basis: calc((100% - 88px) / 3);
  width: calc((100% - 88px) / 3);
  min-height: 378px;
}

.features .feature-card {
  padding: 20px 22px 22px;
}

.feature-media,
.features .feature-card.is-featured .feature-media {
  height: 180px;
}

.features .feature-card h4 {
  font-size: 20px;
  line-height: 1.18;
}

.feature-copy span {
  font-size: 14px;
  line-height: 1.4;
}

.feature-copy {
  gap: 5px;
  padding-top: 8px;
}

.feature-copy:after {
  margin-top: 12px;
}

.features-wrapper .feature-nav.prev {
  left: calc((100vw - min(1180px, calc(100vw - 56px))) / -2 + 48px);
}

.features-wrapper .feature-nav.next {
  right: calc((100vw - min(1180px, calc(100vw - 56px))) / -2 + 48px);
}

@media(max-width:900px) {
  .features-wrapper {
    padding-left: 84px;
    padding-right: 84px;
  }

  .features {
    gap: 34px;
  }

  .features .feature-card,
  .features .feature-card.is-featured,
  .features .feature-card:hover,
  .features .feature-card.is-featured:hover {
    flex-basis: calc((100% - 34px) / 2);
    width: calc((100% - 34px) / 2);
    min-height: 360px;
  }

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 170px;
  }

  .features-wrapper .feature-nav.prev {
    left: calc((100vw - min(1180px, calc(100vw - 56px))) / -2 + 36px);
  }

  .features-wrapper .feature-nav.next {
    right: calc((100vw - min(1180px, calc(100vw - 56px))) / -2 + 36px);
  }
}

@media(max-width:620px) {
  .features-wrapper {
    padding-left: 54px;
    padding-right: 54px;
  }

  .features {
    gap: 18px;
  }

  .features .feature-card,
  .features .feature-card.is-featured,
  .features .feature-card:hover,
  .features .feature-card.is-featured:hover {
    flex-basis: 100%;
    width: 100%;
    min-height: 340px;
  }

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 158px;
  }

  .features-wrapper .feature-nav.prev {
    left: 16px;
  }

  .features-wrapper .feature-nav.next {
    right: 16px;
  }
}

/* --- Compact feature cards, flatter reference style --- */
.features-wrapper {
  max-width: min(1080px, calc(100% - 56px));
  margin-bottom: 24px;
}

.features-container {
  overflow: visible;
  padding-top: 18px;
  padding-bottom: 10px;
}

.features {
  gap: 36px;
}

.features .feature-card,
.features .feature-card.is-featured,
.features .feature-card:hover,
.features .feature-card.is-featured:hover {
  flex-basis: calc((100% - 72px) / 3);
  width: calc((100% - 72px) / 3);
  min-height: 330px;
  transform: none;
  box-shadow: none !important;
}

.features .feature-card {
  padding: 18px 20px 20px;
}

.feature-media,
.features .feature-card.is-featured .feature-media {
  height: 148px;
  margin-bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 0;
}

.feature-media img {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0 auto;
}

.feature-copy {
  gap: 3px;
  padding-top: 0;
}

.features .feature-card h4 {
  font-size: 19px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feature-copy span {
  max-width: none;
  width: 100%;
  font-size: 11px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.feature-copy:after {
  margin-top: 10px;
  box-shadow: none;
}

.feature-card:nth-child(even) .feature-copy:after,
.feature-card:nth-child(3n) .feature-copy:after {
  box-shadow: none;
}

.features .feature-card:after {
  transition: none;
  transform: none;
}

.features .feature-card:hover:after,
.features .feature-card.is-featured:hover:after {
  transform: none;
}

.features .feature-card:hover {
  border-color: color-mix(in srgb, var(--brand) 36%, var(--border));
  background: linear-gradient(145deg, #ffffff 0%, #fbfffd 48%, #e9fbf4 100%);
  transform: translateY(-5px);
}

.features .feature-card.is-featured {
  position: relative;
  z-index: 2;
  border: 2px solid color-mix(in srgb, var(--brand) 72%, var(--border));
  outline: 4px solid rgba(28, 151, 112, .12);
  outline-offset: 5px;
  background: linear-gradient(145deg, #ffffff 0%, #fffdf9 46%, #fff0e4 100%);
  transform: translateY(-8px) scale(1.055);
}

.features .feature-card.is-featured:hover {
  transform: translateY(-10px) scale(1.065);
  border-color: color-mix(in srgb, var(--accent-orange) 68%, var(--border));
}

@media(max-width:900px) {
  .features-wrapper {
    max-width: min(760px, calc(100% - 40px));
  }

  .features {
    gap: 28px;
  }

  .features .feature-card,
  .features .feature-card.is-featured,
  .features .feature-card:hover,
  .features .feature-card.is-featured:hover {
    flex-basis: calc((100% - 28px) / 2);
    width: calc((100% - 28px) / 2);
    min-height: 320px;
  }

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 142px;
  }
}

/* --- Final five-card stacked feature carousel override --- */
@media(min-width:901px) {
  .features-wrapper {
    max-width: min(1240px, calc(100% - 56px));
    min-height: 410px;
    padding-left: clamp(66px, 6vw, 96px);
    padding-right: clamp(66px, 6vw, 96px);
  }

  .features-container {
    overflow: hidden;
    padding: 54px 18px 50px;
  }

  .features {
    gap: 0;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex: 0 0 20%;
    width: 20%;
    min-height: 302px;
  }

  .features .feature-card.is-feature-prev-2,
  .features .feature-card.is-feature-prev-2:hover {
    z-index: 1;
    opacity: .28;
    filter: grayscale(1) saturate(.5) brightness(.92);
    transform: translateX(118px) scale(.74) !important;
    box-shadow: 0 14px 26px rgba(15, 23, 42, .1);
  }

  .features .feature-card.is-feature-prev,
  .features .feature-card.is-feature-prev:hover {
    z-index: 3;
    opacity: .5;
    filter: grayscale(1) saturate(.6) brightness(.94);
    transform: translateX(76px) scale(.86) !important;
  }

  .features .feature-card.is-feature-next,
  .features .feature-card.is-feature-next:hover {
    z-index: 3;
    opacity: .5;
    filter: grayscale(1) saturate(.6) brightness(.94);
    transform: translateX(-76px) scale(.86) !important;
  }

  .features .feature-card.is-feature-next-2,
  .features .feature-card.is-feature-next-2:hover {
    z-index: 1;
    opacity: .28;
    filter: grayscale(1) saturate(.5) brightness(.92);
    transform: translateX(-118px) scale(.74) !important;
    box-shadow: 0 14px 26px rgba(15, 23, 42, .1);
  }

  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    z-index: 6;
    opacity: 1;
    filter: none;
    transform: translateY(-8px) scale(1.18) !important;
    box-shadow: 0 30px 62px rgba(15, 23, 42, .2);
  }

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 148px;
  }
}

@media(min-width:621px) and (max-width:900px) {

  .features .feature-card.is-feature-prev-2,
  .features .feature-card.is-feature-next-2 {
    display: none;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex: 0 0 calc(100% / 3);
    width: calc(100% / 3);
  }
}

/* --- Final feature card text, arrow, and active-border polish --- */
.features .feature-card .feature-copy {
  justify-items: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.features .feature-card h4,
.features .feature-card .feature-copy span {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.features .feature-card .feature-copy span {
  max-width: min(230px, 100%);
}

.features .feature-card .feature-copy:after {
  width: 54px;
  height: 5px;
  margin: 16px auto 0;
  box-shadow: none;
}

.features .feature-card:after,
.features .feature-card:hover:after,
.features .feature-card.is-featured:hover:after {
  inset: auto 14px 14px auto;
  width: 30px;
  height: 30px;
  font-size: 11px;
  border-radius: 50%;
  transform: none;
}

.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  border: 2px solid color-mix(in srgb, var(--accent-orange) 78%, var(--border));
  outline: 4px solid rgba(249, 115, 22, .12);
  outline-offset: 4px;
}

/* --- Final readable centered feature labels --- */
.features .feature-card .feature-copy {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

.features .feature-card h4 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  color: #111827;
  font-size: clamp(10px, .78vw, 13px);
  line-height: 1.15;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: normal;
}

.features .feature-card .feature-copy span {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  font-size: clamp(8px, .62vw, 10px);
  line-height: 1.25;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: normal;
}

.features .feature-card.is-featured h4 {
  font-size: clamp(11px, .86vw, 14px);
}

@media(max-width:620px) {
  .features .feature-card h4 {
    font-size: 13px;
  }

  .features .feature-card .feature-copy span {
    font-size: 10px;
  }
}

/* --- Final card footer text centering and smoother flow --- */
.features {
  will-change: transform;
}

.features .feature-card,
.features .feature-card:hover,
.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform .72s cubic-bezier(.22, .61, .36, 1),
    opacity .52s ease,
    filter .52s ease,
    box-shadow .52s ease,
    border-color .32s ease;
  will-change: transform, opacity, filter;
}

.features .feature-card .feature-copy {
  display: grid;
  justify-items: center;
  align-content: end;
  align-self: stretch;
  width: 100%;
  margin-top: auto;
  padding: 10px 8px 6px;
  text-align: center;
}

.features .feature-card h4,
.features .feature-card .feature-copy span {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.features .feature-card .feature-copy:after {
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- Center feature card label/subtitle inside each card --- */
.features .feature-card,
.features .feature-card:hover,
.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  position: relative;
}

.features .feature-card .feature-copy {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  width: calc(100% - 46px);
  max-width: calc(100% - 46px);
  margin: 0;
  padding: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  z-index: 3;
}

.features .feature-card h4,
.features .feature-card .feature-copy span {
  justify-self: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.features .feature-card .feature-copy:after {
  margin: 14px auto 0;
}

@media(min-width:901px) {
  .features .feature-card:not(.is-featured) .feature-copy {
    bottom: 36px;
  }

  .features .feature-card.is-featured .feature-copy {
    bottom: 48px;
  }
}

@media(max-width:620px) {
  .features .feature-card .feature-copy {
    bottom: 38px;
    width: calc(100% - 38px);
    max-width: calc(100% - 38px);
  }
}

/* --- Ensure feature labels/descriptions stay full-width single-line --- */
.features .feature-card .feature-copy {
  width: calc(100% - 14px);
  max-width: calc(100% - 14px);
  left: 50%;
  transform: translateX(-50%);
  justify-items: center;
  text-align: center;
  row-gap: 5px;
}

.features .feature-card h4 {
  font-size: clamp(9px, .68vw, 12px);
  line-height: 1.1;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.features .feature-card .feature-copy span {
  font-size: clamp(7px, .52vw, 9px);
  line-height: 1.18;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.features .feature-card.is-featured h4 {
  font-size: clamp(10px, .78vw, 13px);
}

.features .feature-card.is-featured .feature-copy span {
  font-size: clamp(8px, .58vw, 10px);
}

@media(max-width:620px) {
  .features .feature-card .feature-copy {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }

  .features .feature-card h4 {
    font-size: 12px;
  }

  .features .feature-card .feature-copy span {
    font-size: 9px;
  }
}

/* --- Final feature card text, arrow, and active-border polish --- */
.features .feature-card .feature-copy {
  justify-items: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.features .feature-card h4,
.features .feature-card .feature-copy span {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.features .feature-card .feature-copy span {
  max-width: min(230px, 100%);
}

.features .feature-card .feature-copy:after {
  width: 54px;
  height: 5px;
  margin: 16px auto 0;
  box-shadow: none;
}

.features .feature-card:after,
.features .feature-card:hover:after,
.features .feature-card.is-featured:hover:after {
  inset: auto 14px 14px auto;
  width: 30px;
  height: 30px;
  font-size: 11px;
  border-radius: 50%;
  transform: none;
}

.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  border: 2px solid color-mix(in srgb, var(--accent-orange) 78%, var(--border));
  outline: 4px solid rgba(249, 115, 22, .12);
  outline-offset: 4px;
}

/* --- Five-card stacked feature carousel --- */
@media(min-width:901px) {
  .features-wrapper {
    max-width: min(1240px, calc(100% - 56px));
    min-height: 410px;
    padding-left: clamp(66px, 6vw, 96px);
    padding-right: clamp(66px, 6vw, 96px);
  }

  .features-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex-basis: 20%;
    width: 20%;
    min-height: 302px;
  }

  .features .feature-card.is-feature-prev-2,
  .features .feature-card.is-feature-prev-2:hover {
    z-index: 1;
    opacity: .28;
    filter: grayscale(1) saturate(.5) brightness(.92);
    transform: translateX(118px) scale(.74) !important;
    box-shadow: 0 14px 26px rgba(15, 23, 42, .1);
  }

  .features .feature-card.is-feature-prev,
  .features .feature-card.is-feature-prev:hover {
    z-index: 3;
    opacity: .5;
    transform: translateX(76px) scale(.86) !important;
  }

  .features .feature-card.is-feature-next,
  .features .feature-card.is-feature-next:hover {
    z-index: 3;
    opacity: .5;
    transform: translateX(-76px) scale(.86) !important;
  }

  .features .feature-card.is-feature-next-2,
  .features .feature-card.is-feature-next-2:hover {
    z-index: 1;
    opacity: .28;
    filter: grayscale(1) saturate(.5) brightness(.92);
    transform: translateX(-118px) scale(.74) !important;
    box-shadow: 0 14px 26px rgba(15, 23, 42, .1);
  }

  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    z-index: 6;
    transform: translateY(-8px) scale(1.18) !important;
  }

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 148px;
  }
}

@media(min-width:621px) and (max-width:900px) {

  .features .feature-card.is-feature-prev-2,
  .features .feature-card.is-feature-next-2 {
    display: none;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex-basis: calc(100% / 3);
    width: calc(100% / 3);
  }
}

@media(max-width:620px) {
  .features-wrapper {
    max-width: calc(100% - 18px);
  }

  .features .feature-card,
  .features .feature-card.is-featured,
  .features .feature-card:hover,
  .features .feature-card.is-featured:hover {
    flex-basis: 100%;
    width: 100%;
    min-height: 316px;
  }

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 136px;
  }

  .feature-copy span {
    font-size: 12px;
  }
}

/* --- Feature slider positioning like reference, keeping original card style --- */
.features-wrapper {
  max-width: min(1180px, calc(100% - 56px));
  margin: 30px auto 44px;
  padding: 54px clamp(72px, 8vw, 128px);
  min-height: 430px;
  overflow: hidden;
  position: relative;
  perspective: 1200px;
  background: transparent;
  border-radius: 0;
}

.features-wrapper:before,
.features-wrapper:after {
  content: none;
}

.features-container {
  overflow: visible;
  padding: 44px 0 38px;
}

.features {
  gap: 24px;
  align-items: center;
  transform-style: preserve-3d;
}

.features .feature-card,
.features .feature-card:hover,
.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  flex: 0 0 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
  min-height: 330px;
  transform: scale(.86) translateZ(-90px);
  opacity: .58;
  filter: blur(1px) saturate(.86);
  z-index: 1;
}

.features .feature-card:not(.is-featured):nth-child(odd) {
  transform: rotateY(12deg) scale(.86) translateZ(-100px);
}

.features .feature-card:not(.is-featured):nth-child(even) {
  transform: rotateY(-12deg) scale(.86) translateZ(-100px);
}

.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translateY(-8px) scale(1.18) translateZ(110px);
}

.features .feature-card:hover {
  opacity: .78;
  filter: none;
}

.features .feature-card:after,
.features .feature-card:hover:after,
.features .feature-card.is-featured:hover:after {
  transform: none;
}

@media(max-width:900px) {
  .features-wrapper {
    max-width: min(780px, calc(100% - 38px));
    min-height: 380px;
    padding: 42px 76px;
  }

  .features {
    gap: 20px;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex-basis: calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
    min-height: 315px;
  }

  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    transform: translateY(-6px) scale(1.1) translateZ(70px);
  }
}

@media(max-width:620px) {
  .features-wrapper {
    max-width: calc(100% - 18px);
    min-height: 350px;
    padding: 34px 54px;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex-basis: 100%;
    width: 100%;
    min-height: 306px;
    opacity: 1;
    filter: none;
  }

  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    transform: scale(1) translateZ(0);
  }
}

/* --- Visible feature slider controls --- */
.features-wrapper .feature-nav,
.features-wrapper .feature-nav:hover {
  display: grid !important;
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 50%;
  place-items: center;
  background: rgba(255, 255, 255, .94);
  color: #8b5cf6;
  box-shadow: 0 18px 36px rgba(15, 23, 42, .12);
  transform: translateY(-50%);
  z-index: 20;
  cursor: pointer;
  pointer-events: auto;
}

.features-wrapper .feature-nav.prev {
  left: 18px;
}

.features-wrapper .feature-nav.next {
  right: 18px;
}

.features-wrapper .feature-nav i {
  font-size: 16px;
}

@media(max-width:620px) {

  .features-wrapper .feature-nav,
  .features-wrapper .feature-nav:hover {
    width: 44px;
    height: 44px;
  }

  .features-wrapper .feature-nav.prev {
    left: 8px;
  }

  .features-wrapper .feature-nav.next {
    right: 8px;
  }
}

/* --- Controlled feature card viewport --- */
.features-container {
  overflow: hidden;
  padding: 44px 22px 38px;
}

.features {
  width: 100%;
  gap: 24px;
  flex-wrap: nowrap;
}

.features .feature-card,
.features .feature-card:hover,
.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  flex: 0 0 calc((100% - 48px) / 3);
  width: calc((100% - 48px) / 3);
}

.features .feature-card.is-feature-prev,
.features .feature-card.is-feature-prev:hover {
  transform: rotateY(12deg) scale(.86) translateZ(-100px) !important;
  transform-origin: center right;
}

.features .feature-card.is-feature-next,
.features .feature-card.is-feature-next:hover {
  transform: rotateY(-12deg) scale(.86) translateZ(-100px) !important;
  transform-origin: center left;
}

@media(max-width:900px) {
  .features-container {
    padding: 38px 18px 34px;
  }

  .features {
    gap: 20px;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex-basis: calc((100% - 20px) / 2);
    width: calc((100% - 20px) / 2);
  }
}

@media(max-width:620px) {
  .features-container {
    padding: 32px 12px;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex-basis: 100%;
    width: 100%;
  }
}

/* --- Icon polish pass --- */
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-links a i,
.badge i,
.btn i,
.link i {
  font-size: .92em;
}

.plan-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--pricing-green-soft, var(--brand-soft));
  color: var(--pricing-green, var(--brand));
  font-size: 20px;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand) 16%, transparent);
}

.plan.popular .plan-icon,
.plan-title .plan-icon {
  background: rgba(249, 115, 22, .12);
  color: var(--accent-orange);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, .16);
}

.plan-title .plan-icon {
  margin: 0 0 10px;
}

.pm-dur-months,
.pm-summary-row span,
.pm-benefits span,
.summary-ledger span,
.summary-benefits li,
.success-summary span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pm-benefits i,
.summary-benefits i,
.success-summary i {
  color: var(--brand);
}

.checkout-hero h1 i,
.payment-panel h2 i,
.security-block h2 i,
.trust-section h2 i,
.success-card h1 i,
.signup-showcase h1 i,
.signup-form-panel h1 i {
  color: var(--brand);
  margin-right: 10px;
  font-size: .86em;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-group label i {
  width: 16px;
  color: var(--brand);
  text-align: center;
}

.payment-logos>.fa-credit-card {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
}

.qr-box {
  gap: 6px;
}

.qr-box i,
.qr-box span {
  grid-area: 1/1;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  color: #111;
}

.qr-box i {
  width: 42px;
  height: 42px;
  transform: translateY(-18px);
  font-size: 22px;
}

.qr-box span {
  padding: 4px 8px;
  transform: translateY(24px);
  font-size: 12px;
  letter-spacing: .08em;
}

.security-grid span,
.exchange-logos span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.security-grid i,
.exchange-logos i {
  color: var(--brand);
  font-size: 16px;
}

.mini-binance-mark {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 50%;
  background: #f3ba2f;
  box-shadow: inset 0 0 0 1px rgba(24, 26, 32, .08);
}

.mini-binance-mark:before,
.mini-binance-mark:after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: #181a20;
  transform: rotate(45deg);
}

.mini-binance-mark:before {
  top: 4px;
  left: 9px;
  box-shadow: 7px 7px 0 #181a20, 0 14px 0 #181a20, -7px 7px 0 #181a20;
}

.mini-binance-mark:after {
  top: 11px;
  left: 9px;
}

.home-pricing .pricing-showcase .plan .plan-icon {
  background: var(--pricing-green-soft, var(--brand-soft));
  color: var(--pricing-green, var(--brand));
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand) 16%, transparent);
}

.home-pricing .pricing-showcase .plan.popular .plan-icon {
  background: rgba(249, 115, 22, .12);
  color: var(--accent-orange);
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, .16);
}

.home-pricing .pricing-showcase .plan:nth-child(3) .plan-icon,
#plan-premium .plan-icon {
  background: rgba(124, 58, 237, .12);
  color: var(--accent-purple);
  box-shadow: inset 0 0 0 1px rgba(124, 58, 237, .16);
}

.pay-logo--binance {
  gap: 7px;
  min-width: 104px;
  border-radius: 12px;
  background: #fff7d6;
  border: 1px solid rgba(243, 186, 47, .45);
}

.pay-binance-mark {
  width: 28px;
  height: 28px;
}

.pay-binance-mark:before {
  top: 5px;
  left: 11px;
}

.pay-binance-mark:after {
  top: 12px;
  left: 11px;
}

.pay-logo-text {
  color: #181a20;
  font-size: 12px;
  font-weight: 900;
}

@media(max-width:560px) {

  .checkout-hero h1 i,
  .success-card h1 i,
  .signup-showcase h1 i,
  .signup-form-panel h1 i {
    display: block;
    margin: 0 auto 10px;
  }

  .security-grid span,
  .exchange-logos span {
    justify-content: flex-start;
    text-align: left;
  }
}

/* --- Smaller feature card images without changing card size --- */
.features .feature-card {
  padding-top: 18px;
}

.feature-media,
.features .feature-card.is-featured .feature-media {
  height: 140px;
}

.feature-media img {
  width: 96%;
  max-width: 96%;
  height: 96%;
  max-height: 96%;
}

@media(max-width:900px) {

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 132px;
  }
}

@media(max-width:620px) {

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 126px;
  }

  .feature-media img {
    width: 94%;
    max-width: 94%;
    height: 94%;
    max-height: 94%;
  }
}

/* --- Light grid accents for feature cards and hero image --- */
.features .feature-card,
.features .feature-card:hover,
.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .54), rgba(255, 255, 255, 0) 72%),
    repeating-linear-gradient(0deg, rgba(28, 151, 112, .12) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(90deg, rgba(28, 151, 112, .1) 0 1px, transparent 1px 20px),
    linear-gradient(145deg, #ffffff 0%, #fbfffd 52%, #eefdf6 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-position: top left, top left, top left, center;
  background-repeat: no-repeat;
}

.features .feature-card:nth-child(even),
.features .feature-card:nth-child(even):hover {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .54), rgba(255, 255, 255, 0) 72%),
    repeating-linear-gradient(0deg, rgba(249, 115, 22, .12) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(90deg, rgba(249, 115, 22, .1) 0 1px, transparent 1px 20px),
    linear-gradient(145deg, #ffffff 0%, #fffaf6 52%, #fff0e5 100%);
}

.features .feature-card:nth-child(3n),
.features .feature-card:nth-child(3n):hover {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, .54), rgba(255, 255, 255, 0) 72%),
    repeating-linear-gradient(0deg, rgba(124, 58, 237, .12) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(90deg, rgba(124, 58, 237, .1) 0 1px, transparent 1px 20px),
    linear-gradient(145deg, #ffffff 0%, #fbf8ff 52%, #f2eaff 100%);
}

.dashboard-image-frame:before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  width: min(520px, 62%);
  height: 170px;
  z-index: 0;
  pointer-events: none;
  opacity: .34;
  transform: translateX(-50%);
  background-image:
    radial-gradient(ellipse at center, rgba(28, 151, 112, .18), transparent 62%),
    repeating-linear-gradient(0deg, rgba(28, 151, 112, .22) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(90deg, rgba(28, 151, 112, .2) 0 1px, transparent 1px 18px);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
  mask-composite: intersect;
}

/* --- Remove feature card corner count badges --- */
.features .feature-card:before {
  content: none;
  display: none;
}

/* --- Decorative crypto/trading icon fields --- */
.market-token,
.market-mini-icon {
  position: absolute;
  display: grid;
  place-items: center;
  pointer-events: none;
  user-select: none;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, rgba(255, 255, 255, .72));
  background: color-mix(in srgb, var(--surface) 82%, rgba(255, 255, 255, .72));
  color: var(--brand);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .1), inset 0 1px 0 rgba(255, 255, 255, .72);
  backdrop-filter: blur(12px);
  animation: marketFloat 5.4s ease-in-out infinite;
}

.market-token {
  width: 44px;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  overflow: hidden;
}

.market-token:after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  border: 1px solid color-mix(in srgb, currentColor 26%, transparent);
  background: radial-gradient(circle at 32% 24%, rgba(255, 255, 255, .84), transparent 28%);
  opacity: .72;
}

.market-token i {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1;
}

.market-mini-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  font-size: 18px;
}

.market-token:nth-child(2n),
.market-mini-icon:nth-child(2n) {
  color: var(--accent-orange);
  border-color: rgba(249, 115, 22, .2);
}

.market-token:nth-child(3n),
.market-mini-icon:nth-child(3n) {
  color: var(--accent-purple);
  border-color: rgba(124, 58, 237, .2);
}

.market-token--feature-bnb i,
.market-token--pricing-trx i {
  font-size: 20px
}

.market-token--feature-ada i,
.market-token--feature-dot i,
.market-token--pricing-atom i {
  font-size: 19px
}

.market-token--pre-sui i,
.market-token--feature-link i {
  font-size: 17px
}

.market-token--feature-avax i {
  font-size: 16px
}

.market-token--pricing-etc i {
  font-size: 22px
}

.market-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.market-decor--hero-left {
  z-index: 0;
}

.market-decor--hero-left .market-token,
.market-decor--hero-left .market-mini-icon {
  opacity: .58;
}

.market-token--left-shib {
  top: 10%;
  left: 2%;
  animation-delay: .25s
}

.market-token--left-uni {
  top: 49%;
  left: 3%;
  animation-delay: .75s
}

.market-token--left-apt {
  bottom: 12%;
  left: 33%;
  animation-delay: 1.1s
}

.market-token--left-arb {
  bottom: 0;
  left: 5%;
  animation-delay: 1.45s
}

.market-mini-icon--left-chain {
  top: 30%;
  left: 36%;
  animation-delay: .55s
}

.market-mini-icon--left-market {
  bottom: 19%;
  left: 48%;
  animation-delay: 1.25s
}

.pre-feature-market-icons {
  position: relative;
  height: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.pre-feature-market-icons .market-token,
.pre-feature-market-icons .market-mini-icon {
  opacity: .62;
}

.market-token--pre-xlm {
  top: -8px;
  left: 9%;
  animation-delay: .2s
}

.market-token--pre-algo {
  top: 16px;
  left: 24%;
  animation-delay: .6s
}

.market-token--pre-sui {
  top: 14px;
  right: 25%;
  animation-delay: 1s
}

.market-token--pre-op {
  top: -10px;
  right: 9%;
  animation-delay: 1.35s
}

.market-mini-icon--pre-analytics {
  top: 8px;
  left: calc(50% - 23px);
  animation-delay: .8s
}

.features-container {
  position: relative;
  z-index: 2;
}

.features-wrapper {
  overflow: visible;
}

.features-wrapper .feature-nav {
  z-index: 3;
}

.market-decor--features .market-token,
.market-decor--features .market-mini-icon {
  opacity: .72;
}

.market-token--feature-link {
  top: 18px;
  left: 5%;
  animation-delay: .2s
}

.market-token--feature-dot {
  top: 18px;
  right: 5%;
  animation-delay: .55s
}

.market-token--feature-avax {
  bottom: 30px;
  left: 5%;
  animation-delay: .9s
}

.market-token--feature-matic {
  top: calc(50% + 58px);
  right: calc((100vw - min(1180px, calc(100vw - 56px))) / -2 + 72px);
  animation-delay: 1.2s;
}

.market-token--feature-bnb {
  top: calc(50% - 108px);
  left: calc((100vw - min(1180px, calc(100vw - 56px))) / -2 + 72px);
  animation-delay: .35s;
}

.market-token--feature-ada {
  top: calc(50% + 58px);
  left: calc((100vw - min(1180px, calc(100vw - 56px))) / -2 + 72px);
  animation-delay: 1.05s;
}

.market-token--feature-ltc {
  top: calc(50% - 108px);
  right: calc((100vw - min(1180px, calc(100vw - 56px))) / -2 + 72px);
  animation-delay: 1.45s;
}

.market-mini-icon--feature-candle {
  top: 46%;
  left: 20px;
  animation-delay: .35s
}

.market-mini-icon--feature-ai {
  top: 46%;
  right: 20px;
  animation-delay: .75s
}

.home-pricing .section-head,
.home-pricing .pricing-showcase {
  position: relative;
  z-index: 2;
}

.market-decor--pricing .market-token,
.market-decor--pricing .market-mini-icon {
  opacity: .68;
}

.market-token--pricing-trx {
  top: 12%;
  left: 8%;
  animation-delay: .25s
}

.market-token--pricing-etc {
  top: 16%;
  right: 8%;
  animation-delay: .6s
}

.market-token--pricing-atom {
  bottom: 24%;
  left: 6%;
  animation-delay: 1s
}

.market-token--pricing-near {
  bottom: 28%;
  right: 6%;
  animation-delay: 1.35s
}

.market-mini-icon--pricing-signal {
  top: 34%;
  left: 3%;
  animation-delay: .45s
}

.market-mini-icon--pricing-portfolio {
  top: 34%;
  right: 3%;
  animation-delay: .85s
}

.market-mini-icon--pricing-down {
  bottom: 12%;
  right: 18%;
  animation-delay: 1.65s
}

@keyframes marketFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0)
  }

  50% {
    transform: translate3d(0, -10px, 0)
  }
}

@media(max-width:900px) {

  .market-token--feature-bnb,
  .market-token--feature-ada,
  .market-token--feature-ltc,
  .market-decor--hero-left,
  .market-mini-icon--feature-candle,
  .market-mini-icon--feature-ai,
  .market-mini-icon--pricing-signal,
  .market-mini-icon--pricing-portfolio,
  .market-mini-icon--pricing-down {
    display: none;
  }

  .market-token {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: 0;
    font-size: 16px;
  }

  .market-token i {
    font-size: 16px;
  }

  .market-token:after {
    inset: 6px;
  }

  .market-token--feature-link {
    left: 14%;
    top: 10px
  }

  .market-token--feature-dot {
    right: 14%;
    top: 14px
  }

  .market-token--feature-avax,
  .market-token--feature-matic {
    display: none;
  }

  .market-token--pricing-trx,
  .market-token--pricing-etc,
  .market-token--pricing-atom,
  .market-token--pricing-near {
    opacity: .42;
  }
}

@media(max-width:620px) {

  .pre-feature-market-icons,
  .market-token--feature-link,
  .market-token--feature-dot,
  .market-decor--pricing {
    display: none;
  }
}

/* --- Icon-only treatment for newly added decorative icons only --- */
.market-token,
.market-mini-icon,
.footer-decor .trade-orb,
.trade-orb--heading-trend {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.market-token:after {
  display: none;
}

.market-token,
.market-mini-icon,
.footer-decor .trade-orb,
.trade-orb--heading-trend {
  text-shadow: 0 10px 22px rgba(15, 23, 42, .14);
}

/* --- Remove remaining white icon panels, keep colored coin badges --- */
.lead-control-icon,
.stat .stat-icon,
.trade-orb {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.lead-control-icon,
.stat .stat-icon,
.trade-orb {
  text-shadow: 0 10px 22px rgba(15, 23, 42, .16);
}

.market-token--footer-sol {
  width: 58px;
  min-width: 58px;
  height: 58px;
}

.market-token--footer-sol i {
  font-size: 30px;
  transform: rotate(-12deg);
}

/* --- Keep newly added decorative icons subtle --- */
.market-token,
.market-mini-icon,
.footer-decor .trade-orb,
.trade-orb--heading-trend {
  opacity: .32 !important;
}

/* --- Feature carousel arrow polish --- */
.features-wrapper .feature-nav,
.features-wrapper .feature-nav:hover {
  border: 1px solid rgba(249, 115, 22, .22);
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 247, 237, .9));
  color: var(--accent-orange);
  box-shadow: 0 14px 28px rgba(249, 115, 22, .12), 0 8px 18px rgba(15, 23, 42, .06);
  transition: background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .18s ease;
}

.features-wrapper .feature-nav:hover,
.features-wrapper .feature-nav:focus-visible {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  color: #fff;
  border-color: rgba(249, 115, 22, .48);
  box-shadow: 0 18px 42px rgba(249, 115, 22, .28), 0 8px 18px rgba(15, 23, 42, .08);
  transform: translateY(-50%) scale(1.08);
}

.features-wrapper .feature-nav:active {
  transform: translateY(-50%) scale(.96);
  box-shadow: 0 10px 24px rgba(249, 115, 22, .2), 0 4px 12px rgba(15, 23, 42, .08);
}

.features-wrapper .feature-nav i {
  transition: transform .22s ease;
}

.features-wrapper .feature-nav.prev:hover i,
.features-wrapper .feature-nav.prev:focus-visible i {
  transform: translateX(-2px);
}

.features-wrapper .feature-nav.next:hover i,
.features-wrapper .feature-nav.next:focus-visible i {
  transform: translateX(2px);
}

/* --- Reference stacked feature cards from card_view.jpeg --- */
.features-wrapper {
  max-width: min(1060px, calc(100% - 56px));
  min-height: 430px;
  padding: 48px clamp(76px, 8vw, 128px);
  perspective: 1400px;
}

.features-container {
  overflow: hidden;
  padding: 54px 28px 50px;
}

.features {
  gap: 0;
  align-items: center;
}

.features .feature-card,
.features .feature-card:hover,
.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  flex: 0 0 calc(100% / 3);
  width: calc(100% / 3);
  min-height: 326px;
  padding: 18px 20px 20px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #fbfffd 58%, #eefdf6 100%);
  box-shadow: 0 22px 42px rgba(15, 23, 42, .14);
  opacity: .34;
  filter: grayscale(1) saturate(.62) brightness(.96);
  transform: scale(.78);
  transform-origin: center;
  transition: transform .72s cubic-bezier(.22, .61, .36, 1), opacity .52s ease, filter .52s ease, box-shadow .52s ease;
}

.features .feature-card.is-feature-prev,
.features .feature-card.is-feature-prev:hover {
  z-index: 2;
  opacity: .46;
  filter: grayscale(1) saturate(.6) brightness(.94);
  transform: translateX(58px) scale(.86) !important;
  box-shadow: 0 18px 34px rgba(15, 23, 42, .12);
}

.features .feature-card.is-feature-next,
.features .feature-card.is-feature-next:hover {
  z-index: 2;
  opacity: .46;
  filter: grayscale(1) saturate(.6) brightness(.94);
  transform: translateX(-58px) scale(.86) !important;
  box-shadow: 0 18px 34px rgba(15, 23, 42, .12);
}

.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  z-index: 5;
  opacity: 1;
  filter: none;
  transform: translateY(-8px) scale(1.14) !important;
  box-shadow: 0 30px 62px rgba(15, 23, 42, .2);
}

.feature-media,
.features .feature-card.is-featured .feature-media {
  height: 160px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .2));
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}

.feature-copy {
  text-align: center;
  align-items: center;
}

.feature-copy:after {
  width: 58px;
  margin-left: auto;
  margin-right: auto;
}

@media(max-width:900px) {
  .features-wrapper {
    max-width: min(780px, calc(100% - 38px));
    min-height: 390px;
    padding: 42px 70px;
  }

  .features-container {
    padding: 44px 20px 42px;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex-basis: calc(100% / 2);
    width: calc(100% / 2);
  }

  .features .feature-card.is-feature-prev,
  .features .feature-card.is-feature-prev:hover {
    transform: translateX(42px) scale(.84) !important;
  }

  .features .feature-card.is-feature-next,
  .features .feature-card.is-feature-next:hover {
    transform: translateX(-42px) scale(.84) !important;
  }

  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    transform: translateY(-6px) scale(1.08) !important;
  }
}

@media(max-width:620px) {
  .features-wrapper {
    max-width: calc(100% - 18px);
    min-height: 350px;
    padding: 34px 54px;
  }

  .features-container {
    padding: 34px 10px;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex-basis: 100%;
    width: 100%;
    opacity: 1;
    filter: none;
    transform: scale(1) !important;
  }

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 142px;
  }
}

/* --- Final five-card stacked feature carousel override --- */
@media(min-width:901px) {
  .features-wrapper {
    max-width: min(1240px, calc(100% - 56px));
    min-height: 410px;
    padding-left: clamp(66px, 6vw, 96px);
    padding-right: clamp(66px, 6vw, 96px);
  }

  .features-container {
    overflow: hidden;
    padding: 54px 18px 50px;
  }

  .features {
    gap: 0;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex: 0 0 20%;
    width: 20%;
    min-height: 302px;
  }

  .features .feature-card.is-feature-prev-2,
  .features .feature-card.is-feature-prev-2:hover {
    z-index: 1;
    opacity: .28;
    filter: grayscale(1) saturate(.5) brightness(.92);
    transform: translateX(118px) scale(.74) !important;
    box-shadow: 0 14px 26px rgba(15, 23, 42, .1);
  }

  .features .feature-card.is-feature-prev,
  .features .feature-card.is-feature-prev:hover {
    z-index: 3;
    opacity: .5;
    filter: grayscale(1) saturate(.6) brightness(.94);
    transform: translateX(76px) scale(.86) !important;
  }

  .features .feature-card.is-feature-next,
  .features .feature-card.is-feature-next:hover {
    z-index: 3;
    opacity: .5;
    filter: grayscale(1) saturate(.6) brightness(.94);
    transform: translateX(-76px) scale(.86) !important;
  }

  .features .feature-card.is-feature-next-2,
  .features .feature-card.is-feature-next-2:hover {
    z-index: 1;
    opacity: .28;
    filter: grayscale(1) saturate(.5) brightness(.92);
    transform: translateX(-118px) scale(.74) !important;
    box-shadow: 0 14px 26px rgba(15, 23, 42, .1);
  }

  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    z-index: 6;
    opacity: 1;
    filter: none;
    transform: translateY(-8px) scale(1.18) !important;
    box-shadow: 0 30px 62px rgba(15, 23, 42, .2);
  }

  .feature-media,
  .features .feature-card.is-featured .feature-media {
    height: 148px;
  }
}

@media(min-width:621px) and (max-width:900px) {

  .features .feature-card.is-feature-prev-2,
  .features .feature-card.is-feature-next-2 {
    display: none;
  }

  .features .feature-card,
  .features .feature-card:hover,
  .features .feature-card.is-featured,
  .features .feature-card.is-featured:hover {
    flex: 0 0 calc(100% / 3);
    width: calc(100% / 3);
  }
}

/* --- Final feature card text, arrow, and active-border polish --- */
.features .feature-card .feature-copy {
  justify-items: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.features .feature-card h4,
.features .feature-card .feature-copy span {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.features .feature-card .feature-copy span {
  max-width: min(230px, 100%);
}

.features .feature-card .feature-copy:after {
  width: 54px;
  height: 5px;
  margin: 16px auto 0;
  box-shadow: none;
}

.features .feature-card:after,
.features .feature-card:hover:after,
.features .feature-card.is-featured:hover:after {
  inset: auto 14px 14px auto;
  width: 30px;
  height: 30px;
  font-size: 11px;
  border-radius: 50%;
  transform: none;
}

.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  border: 2px solid color-mix(in srgb, var(--accent-orange) 78%, var(--border));
  outline: 4px solid rgba(249, 115, 22, .12);
  outline-offset: 4px;
}

/* --- Final readable centered feature labels --- */
.features .feature-card .feature-copy {
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

.features .feature-card h4 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  color: #111827;
  font-size: clamp(10px, .78vw, 13px);
  line-height: 1.15;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: normal;
}

.features .feature-card .feature-copy span {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  font-size: clamp(8px, .62vw, 10px);
  line-height: 1.25;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
  overflow-wrap: normal;
}

.features .feature-card.is-featured h4 {
  font-size: clamp(11px, .86vw, 14px);
}

@media(max-width:620px) {
  .features .feature-card h4 {
    font-size: 13px;
  }

  .features .feature-card .feature-copy span {
    font-size: 10px;
  }
}

/* --- Final card footer text centering and smoother flow --- */
.features {
  will-change: transform;
}

.features .feature-card,
.features .feature-card:hover,
.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform .72s cubic-bezier(.22, .61, .36, 1),
    opacity .52s ease,
    filter .52s ease,
    box-shadow .52s ease,
    border-color .32s ease;
  will-change: transform, opacity, filter;
}

.features .feature-card .feature-copy {
  display: grid;
  justify-items: center;
  align-content: end;
  align-self: stretch;
  width: 100%;
  margin-top: auto;
  padding: 10px 8px 6px;
  text-align: center;
}

.features .feature-card h4,
.features .feature-card .feature-copy span {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.features .feature-card .feature-copy:after {
  justify-self: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- Center feature card label/subtitle inside each card --- */
.features .feature-card,
.features .feature-card:hover,
.features .feature-card.is-featured,
.features .feature-card.is-featured:hover {
  position: relative;
}

.features .feature-card .feature-copy {
  position: absolute;
  left: 50%;
  bottom: 44px;
  transform: translateX(-50%);
  width: calc(100% - 46px);
  max-width: calc(100% - 46px);
  margin: 0;
  padding: 0;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  z-index: 3;
}

.features .feature-card h4,
.features .feature-card .feature-copy span {
  justify-self: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
}

.features .feature-card .feature-copy:after {
  margin: 14px auto 0;
}

@media(min-width:901px) {
  .features .feature-card:not(.is-featured) .feature-copy {
    bottom: 36px;
  }

  .features .feature-card.is-featured .feature-copy {
    bottom: 48px;
  }
}

@media(max-width:620px) {
  .features .feature-card .feature-copy {
    bottom: 38px;
    width: calc(100% - 38px);
    max-width: calc(100% - 38px);
  }
}

/* --- Ensure feature labels/descriptions stay full-width single-line --- */
.features .feature-card .feature-copy {
  width: calc(100% - 14px);
  max-width: calc(100% - 14px);
  left: 50%;
  transform: translateX(-50%);
  justify-items: center;
  text-align: center;
}

.features .feature-card h4 {
  font-size: clamp(9px, .68vw, 12px);
  line-height: 1.1;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.features .feature-card .feature-copy span {
  font-size: clamp(7px, .52vw, 9px);
  line-height: 1.18;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}

.features .feature-card.is-featured h4 {
  font-size: clamp(10px, .78vw, 13px);
}

.features .feature-card.is-featured .feature-copy span {
  font-size: clamp(8px, .58vw, 10px);
}

@media(max-width:620px) {
  .features .feature-card .feature-copy {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }

  .features .feature-card h4 {
    font-size: 12px;
  }

  .features .feature-card .feature-copy span {
    font-size: 9px;
  }
}

/* --- Final label/description spacing --- */
.features .feature-card .feature-copy {
  row-gap: 5px;
}

/* --- Final smooth carousel performance polish --- */
.features {
  transform: translate3d(0, 0, 0);
  will-change: transform;
  backface-visibility: hidden;
}

.features .feature-card {
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.features-wrapper .feature-nav {
  touch-action: manipulation;
}

.features.is-sliding .feature-card {
  transition:
    transform .72s cubic-bezier(.22, .61, .36, 1),
    opacity .52s ease,
    filter .52s ease,
    box-shadow .52s ease,
    border-color .32s ease;
}

/* --- Feature carousel dots and slower premium motion --- */
.features-wrapper {
  padding-bottom: 92px;
}

.feature-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  width: min(420px, calc(100% - 150px));
  transform: translateX(-50%);
  pointer-events: auto;
}

.feature-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, .22);
  box-shadow: 0 5px 14px rgba(15, 23, 42, .08);
  cursor: pointer;
  transition:
    width .28s ease,
    background .28s ease,
    opacity .28s ease,
    transform .28s ease,
    box-shadow .28s ease;
}

.feature-dots button:hover,
.feature-dots button:focus-visible {
  background: rgba(249, 115, 22, .62);
  transform: scale(1.25);
  outline: none;
}

.feature-dots button.is-active {
  width: 24px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-2));
  box-shadow: 0 8px 18px rgba(249, 115, 22, .22);
}

.features .feature-card,
.features .feature-card:hover,
.features .feature-card.is-featured,
.features .feature-card.is-featured:hover,
.features.is-sliding .feature-card {
  transition:
    transform .72s cubic-bezier(.22, .61, .36, 1),
    opacity .52s ease,
    filter .52s ease,
    box-shadow .52s ease,
    border-color .32s ease;
}

@media(max-width:620px) {
  .features-wrapper {
    padding-bottom: 78px;
  }

  .feature-dots {
    bottom: 18px;
    width: min(260px, calc(100% - 120px));
    gap: 7px;
  }

  .feature-dots button {
    width: 7px;
    height: 7px;
  }

  .feature-dots button.is-active {
    width: 20px;
  }
}

/* --- Premium compact section labels --- */
.hero-copy>.badge,
.feature-section-head .feature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 7px 13px;
  border: 1px solid rgba(28, 151, 112, .18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .86), rgba(236, 253, 245, .72)),
    rgba(28, 151, 112, .08);
  color: #0f8f69;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06), inset 0 1px 0 rgba(255, 255, 255, .88);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.hero-copy>.badge i,
.feature-section-head .feature-kicker i {
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(28, 151, 112, .16), rgba(249, 115, 22, .12));
  color: #10906a;
  font-size: 9px;
  line-height: 1;
}

.feature-section-head .feature-kicker {
  margin-bottom: 14px;
}

@media(max-width:620px) {

  .hero-copy>.badge,
  .feature-section-head .feature-kicker {
    font-size: 10px;
    padding: 6px 11px;
    letter-spacing: .04em;
  }
}

/* --- Section heading readability polish --- */
.feature-section-head h2,
.home-pricing .section-head h2 {
  font-family: inherit;
  font-size: clamp(38px, 3.8vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.feature-section-head p,
.home-pricing .section-head p {
  font-family: inherit;
  max-width: 720px;
  margin: 18px auto 0;
  color: #667085;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}

@media(max-width:900px) {

  .feature-section-head h2,
  .home-pricing .section-head h2 {
    font-size: clamp(32px, 6vw, 42px);
  }
}

@media(max-width:620px) {

  .feature-section-head h2,
  .home-pricing .section-head h2 {
    font-size: 30px;
    line-height: 1.08;
  }

  .feature-section-head p,
  .home-pricing .section-head p {
    font-size: 15px;
    line-height: 1.55;
  }
}

/* --- Pricing modal title polish --- */
.plan-modal .pm-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 8px;
  color: #111827;
  font-family: inherit;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.25;
  letter-spacing: 0;
}

.plan-modal .pm-title:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent-orange));
  box-shadow: 0 0 0 5px rgba(28, 151, 112, .1);
  flex: 0 0 auto;
}

[data-mode="dark"] .plan-modal .pm-title,
[data-mode="amoled"] .plan-modal .pm-title {
  color: #f8fafc;
}

@media(max-width:620px) {
  .plan-modal .pm-title {
    font-size: 16px;
  }
}

/* --- Pricing modal complete typography softening --- */
.plan-modal {
  border: 1px solid rgba(28, 151, 112, .14);
  background: linear-gradient(180deg, #fff 0%, #fbfefd 100%);
}

.plan-modal .pm-sub {
  color: #64748b;
  font-size: 13px;
  font-weight: 450;
  line-height: 1.55;
}

.plan-modal .pm-qty-row,
.plan-modal .pm-dur-body {
  border-color: rgba(148, 163, 184, .26);
  background: rgba(248, 250, 252, .68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82);
}

.plan-modal .pm-qty-label,
.plan-modal .pm-dur-months,
.plan-modal .pm-summary-row strong,
.plan-modal .pm-summary-total-row,
.plan-modal .pm-summary-total-row strong {
  color: #111827;
  font-weight: 650;
}

.plan-modal .pm-qty-label,
.plan-modal .pm-summary-row {
  font-size: 13px;
}

.plan-modal .pm-qty-val {
  color: #111827;
  font-size: 15px;
  font-weight: 650;
}

.plan-modal .pm-qty-btn {
  color: #334155;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 6px 14px rgba(15, 23, 42, .05);
}

.plan-modal .pm-dur-months {
  font-size: 14px;
  line-height: 1.25;
}

.plan-modal .pm-dur-months i,
.plan-modal .pm-summary-row i,
.plan-modal .pm-benefits i {
  color: var(--brand);
  font-size: .92em;
}

.plan-modal .pm-dur-save {
  color: var(--brand);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .06em;
}

.plan-modal .pm-dur-price {
  color: #334155;
  font-size: 13px;
  font-weight: 600;
}

.plan-modal .pm-dur-orig {
  font-weight: 450;
}

.plan-modal .pm-dur-option input:checked+.pm-dur-body {
  border-color: rgba(28, 151, 112, .52);
  background: linear-gradient(135deg, rgba(28, 151, 112, .08), rgba(249, 115, 22, .04));
  box-shadow: 0 14px 30px rgba(28, 151, 112, .08), inset 0 1px 0 rgba(255, 255, 255, .86);
}

.plan-modal .pm-summary {
  border-top-color: rgba(148, 163, 184, .28);
}

.plan-modal .pm-summary-row {
  color: #64748b;
  font-weight: 450;
}

.plan-modal .pm-summary-row span:last-child,
.plan-modal .pm-summary-row strong {
  color: #334155;
}

.plan-modal .pm-summary-total-row {
  margin-top: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(28, 151, 112, .07);
  font-size: 16px;
  line-height: 1;
}

.plan-modal .pm-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.plan-modal .pm-benefits span {
  padding: 7px 10px;
  border: 1px solid rgba(28, 151, 112, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: #475569;
  font-size: 12px;
  font-weight: 500;
}

.plan-modal .pm-terms,
.plan-modal .pm-renews {
  color: #64748b;
  font-size: 12px;
  font-weight: 450;
  line-height: 1.6;
}

.plan-modal .pm-cancel {
  font-weight: 600;
}

.plan-modal .pm-checkout {
  font-weight: 650;
  box-shadow: 0 14px 28px rgba(28, 151, 112, .18);
}

[data-mode="dark"] .plan-modal,
[data-mode="amoled"] .plan-modal {
  background: linear-gradient(180deg, #1e293b 0%, #162033 100%);
  border-color: rgba(148, 163, 184, .22);
}

[data-mode="dark"] .plan-modal .pm-qty-row,
[data-mode="dark"] .plan-modal .pm-dur-body,
[data-mode="amoled"] .plan-modal .pm-qty-row,
[data-mode="amoled"] .plan-modal .pm-dur-body {
  background: rgba(15, 23, 42, .32);
  border-color: rgba(148, 163, 184, .24);
}

[data-mode="dark"] .plan-modal .pm-qty-label,
[data-mode="dark"] .plan-modal .pm-qty-val,
[data-mode="dark"] .plan-modal .pm-dur-months,
[data-mode="dark"] .plan-modal .pm-summary-row strong,
[data-mode="dark"] .plan-modal .pm-summary-total-row,
[data-mode="dark"] .plan-modal .pm-summary-total-row strong,
[data-mode="amoled"] .plan-modal .pm-qty-label,
[data-mode="amoled"] .plan-modal .pm-qty-val,
[data-mode="amoled"] .plan-modal .pm-dur-months,
[data-mode="amoled"] .plan-modal .pm-summary-row strong,
[data-mode="amoled"] .plan-modal .pm-summary-total-row,
[data-mode="amoled"] .plan-modal .pm-summary-total-row strong {
  color: #f8fafc;
}

[data-mode="dark"] .plan-modal .pm-summary-total-row,
[data-mode="amoled"] .plan-modal .pm-summary-total-row {
  background: rgba(28, 151, 112, .16);
}

[data-mode="dark"] .plan-modal .pm-benefits span,
[data-mode="amoled"] .plan-modal .pm-benefits span {
  background: rgba(15, 23, 42, .3);
  border-color: rgba(148, 163, 184, .2);
  color: #cbd5e1;
}

/* --- Checkout page professional polish --- */
.checkout-page .checkout-hero {
  position: relative;
  max-width: 850px;
  margin: 4px auto 34px;
  padding: 28px 24px 24px;
  border: 1px solid rgba(28, 151, 112, .14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(28, 151, 112, .14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(248, 250, 252, .72));
  box-shadow: 0 24px 58px rgba(15, 23, 42, .08);
  overflow: hidden;
}

.checkout-page .checkout-hero:before {
  content: "";
  position: absolute;
  inset: auto 12% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(28, 151, 112, .44), transparent);
}

.checkout-page .checkout-hero h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 12px;
  color: #0f172a;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 720;
  line-height: 1.1;
  letter-spacing: 0;
}

.checkout-page .checkout-hero h1 i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(28, 151, 112, .16), rgba(249, 115, 22, .12));
  color: var(--brand);
  font-size: 17px;
  box-shadow: inset 0 0 0 1px rgba(28, 151, 112, .16);
  flex: 0 0 auto;
}

.checkout-page .checkout-hero p {
  max-width: 660px;
  margin: 0 auto;
  color: #64748b;
  font-size: 15px;
  font-weight: 450;
  line-height: 1.65;
}

.checkout-page .payment-panel h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #111827;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
}

.checkout-page .payment-panel h2:before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--accent-orange));
  box-shadow: 0 0 0 5px rgba(28, 151, 112, .1);
  flex: 0 0 auto;
}

.checkout-page .payment-logos>.fa-credit-card {
  display: none;
}

.checkout-page .pay-logo--binance {
  min-width: 104px;
  width: 104px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}

.checkout-page .pay-logo--binance img {
  max-width: 86px;
  max-height: 30px;
  object-fit: contain;
}

.checkout-page .exchange-logo--binance img {
  width: 82px;
  max-height: 28px;
  object-fit: contain;
  display: block;
}

.checkout-page .security-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.checkout-page .security-grid span {
  flex: 0 0 auto;
  min-width: max-content;
  padding: 0 16px;
  white-space: nowrap;
  font-weight: 650;
}

.checkout-page .exchange-logos span {
  font-weight: 650;
}

@media(max-width:900px) {
  .checkout-page .checkout-hero h1 {
    flex-direction: column;
    font-size: clamp(26px, 6vw, 36px);
  }

  .checkout-page .security-grid {
    grid-template-columns: none;
  }
}

@media(max-width:560px) {
  .checkout-page .checkout-hero {
    padding: 22px 18px;
  }

  .checkout-page .checkout-hero h1 i {
    margin: 0;
  }
}

[data-mode="dark"] .checkout-page .checkout-hero,
[data-mode="amoled"] .checkout-page .checkout-hero {
  background:
    radial-gradient(circle at 18% 0%, rgba(28, 151, 112, .18), transparent 34%),
    linear-gradient(135deg, rgba(30, 41, 59, .92), rgba(15, 23, 42, .78));
  border-color: rgba(148, 163, 184, .2);
}

[data-mode="dark"] .checkout-page .checkout-hero h1,
[data-mode="amoled"] .checkout-page .checkout-hero h1,
[data-mode="dark"] .checkout-page .payment-panel h2,
[data-mode="amoled"] .checkout-page .payment-panel h2 {
  color: #f8fafc;
}

/* --- Floating checkout FAQ chat --- */
.faq-chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: grid;
  justify-items: end;
  gap: 14px;
}

.faq-chat-toggle {
  position: relative;
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #a855f7;
  font-size: 48px;
  box-shadow: none;
  cursor: pointer;
  padding: 0;
  filter: none;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.22s ease,
    color 0.2s ease;
}

.faq-chat-toggle:hover {
  transform: scale(1.08) translateY(-2px);
  background: transparent;
  color: #c084fc;
  filter: none;
}

.faq-chat-toggle:active {
  transform: scale(1.03);
}

.faq-chat-window {
  width: min(392px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 112px));
  display: none;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
  border-radius: 20px;
  background: #eef6ff;
  box-shadow: 0 28px 76px rgba(15, 23, 42, .24);
  opacity: 0;
  transform: scale(0.3) translateY(20px);
  transition: opacity .3s ease, transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.faq-chat-widget.is-open .faq-chat-window {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  opacity: 1;
  transform: scale(1) translateY(0);
}

.faq-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 8px 12px 8px 16px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 9%, var(--surface)), var(--surface));
}

.faq-chat-header>div {
  flex: 1;
  min-width: 0;
}

.faq-chat-header>div span {
  display: block;
  margin: 0;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.faq-chat-close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.faq-chat-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  overflow-y: auto;
  padding: 0 18px;
  background: #eef6ff;
}

.faq-chat-messages:not(:empty) {
  min-height: 280px;
  padding: 14px 16px;
}

.faq-chat-bubble {
  max-width: 88%;
  padding: 10px 13px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.45;
}

.faq-chat-bubble--system {
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  background: var(--surface);
  color: var(--text);
  border: 1px solid #dbeafe;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .08);
}

.faq-chat-bubble--user {
  align-self: flex-end;
  width: fit-content;
  max-width: 82%;
  margin-left: auto;
  margin-right: 0;
  overflow-wrap: anywhere;
  border-bottom-right-radius: 6px;
  background: #2563eb;
  color: #fff;
}

.faq-chat-questions {
  display: grid;
  justify-items: end;
  gap: 9px;
  max-height: none;
  overflow: visible;
  padding: 8px 16px 8px;
  background: #eef6ff;
}

.faq-chat-questions button {
  width: fit-content;
  max-width: 100%;
  min-height: 40px;
  padding: 10px 36px 10px 14px;
  border: 1px solid #dbeafe;
  border-radius: 13px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(37, 99, 235, .07);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  position: relative;
}

.faq-chat-questions button::after {
  content: '\f1d8';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #2563eb;
}

.faq-chat-questions button:hover {
  border-color: #93c5fd;
  background: #eff6ff;
  color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, .12);
}

.faq-chat-rating {
  margin: 0;
  padding: 10px 16px 16px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  width: 100%;
  text-align: center;
}

.faq-chat-rating .google-rating-mark {
  width: 24px;
  height: 24px;
  font-size: 22px;
}

.faq-chat-rating .rating-star {
  font-size: 18px;
}

[data-mode="dark"] .faq-chat-window,
[data-mode="amoled"] .faq-chat-window {
  background: #eef6ff;
  box-shadow: 0 28px 76px rgba(0, 0, 0, .42);
}

[data-mode="dark"] .faq-chat-header,
[data-mode="amoled"] .faq-chat-header {
  background: linear-gradient(135deg, rgba(37, 99, 235, .14), rgba(15, 23, 42, .94));
}

[data-mode="dark"] .faq-chat-messages,
[data-mode="amoled"] .faq-chat-messages {
  background: rgba(37, 99, 235, .09);
}

[data-mode="dark"] .faq-chat-questions,
[data-mode="amoled"] .faq-chat-questions,
[data-mode="dark"] .faq-chat-rating,
[data-mode="amoled"] .faq-chat-rating {
  background: #eef6ff;
}

@media(max-width:560px) {
  .faq-chat-widget {
    right: 16px;
    bottom: 16px;
  }

  .faq-chat-toggle {
    width: auto;
    height: auto;
    font-size: 38px;
  }

  .faq-chat-window {
    max-height: calc(100vh - 96px);
    border-radius: 18px;
  }
}

@media(min-width:901px) {
  .hero-copy {
    margin-top: -60px;
  }

  .trade-orb--feature-left,
  .trade-orb--pricing-left,
  .trade-orb--feature-right,
  .trade-orb--pricing-right {
    width: 92px !important;
    height: 92px !important;
  }

  .trade-orb--feature-left i,
  .trade-orb--pricing-left i,
  .trade-orb--feature-right i,
  .trade-orb--pricing-right i {
    font-size: 38px !important;
  }
}

/* Professional hero section background gradient and dashed separation line */
.hero {
  background: linear-gradient(180deg, rgba(28, 151, 112, 0.04) 0%, rgba(255, 255, 255, 0) 100%) !important;
  border-bottom: 1px dashed rgba(28, 151, 112, 0.18) !important;
  padding-bottom: 10px !important;
}

.feature-section-head {
  margin-top: 30px !important;
}

@media(min-width:901px) {
  .hero {
    padding-bottom: 12px !important;
  }
  .feature-section-head {
    margin-top: 50px !important;
  }
}