/* Homepage-specific styles */

.home-hero {
  background: var(--nx-navy-dark);
  color: var(--nx-white);
  padding: 52px 0 64px;
  position: relative;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("asset/content/images/trading/trader-plus-desktop-view.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(3, 30, 58, 0.92) 0%,
    rgba(3, 30, 58, 0.78) 42%,
    rgba(5, 48, 92, 0.45) 68%,
    rgba(5, 48, 92, 0.12) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  top: -200px;
  right: -100px;
  pointer-events: none;
  z-index: 1;
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  font-size: clamp(2.5rem, 5.25vw, 3.875rem);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.home-hero h1 span {
  display: block;
  margin-top: 0.14em;
  background: linear-gradient(90deg, var(--nx-gold), var(--nx-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
  max-width: 520px;
}

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

.home-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--nx-white);
  text-decoration: none;
  background: var(--nx-orange);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--nx-radius-sm);
  box-shadow: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.home-hero-cta:hover {
  background: #ff9f3a;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--nx-white);
  box-shadow: none;
}

.home-hero-cta:active {
  transform: scale(0.98);
}

.home-hero-cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 146, 39, 0.45);
}

.home-hero-proof-wrap {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
}

.home-hero-proof strong {
  font-weight: 800;
  color: var(--nx-gold);
}

.home-hero-proof-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(250, 188, 46, 0.25));
}

.home-hero-visual {
  display: none;
}

.hero-dashboard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--nx-radius-lg);
  padding: 24px;
  backdrop-filter: blur(8px);
}

.hero-dashboard img {
  border-radius: var(--nx-radius);
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--nx-white);
  color: var(--nx-navy);
  padding: 14px 18px;
  border-radius: var(--nx-radius);
  box-shadow: var(--nx-shadow-lg);
  font-size: 13px;
  font-weight: 600;
}

.hero-float-card strong {
  display: block;
  font-size: 18px;
  color: var(--nx-success);
}

/* ---- Homepage: products ---- */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  box-shadow: var(--nx-shadow-sm);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nx-orange), var(--nx-gold));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.product-card:hover {
  border-color: rgba(5, 48, 92, 0.14);
  box-shadow: var(--nx-shadow);
  transform: translateY(-2px);
}

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

.product-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0 0 24px;
}

.product-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 0;
  padding: 20px 22px;
  background: linear-gradient(
    125deg,
    rgba(5, 48, 92, 0.08) 0%,
    rgba(5, 48, 92, 0.03) 55%,
    rgba(250, 188, 46, 0.07) 100%
  );
  border-bottom: 1px solid var(--nx-border);
  position: relative;
}

.product-card__head::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -1px;
  width: 36px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--nx-orange), var(--nx-gold));
}

.product-card--crypto .product-card__head {
  background: linear-gradient(
    125deg,
    rgba(239, 146, 39, 0.14) 0%,
    rgba(5, 48, 92, 0.05) 100%
  );
}

.product-card--stocks .product-card__head {
  background: linear-gradient(
    125deg,
    rgba(5, 48, 92, 0.1) 0%,
    rgba(5, 48, 92, 0.03) 100%
  );
}

.product-card--plans .product-card__head {
  background: linear-gradient(
    125deg,
    rgba(250, 188, 46, 0.12) 0%,
    rgba(5, 48, 92, 0.04) 100%
  );
}

.product-card--platform .product-card__head {
  background: linear-gradient(
    125deg,
    rgba(10, 74, 138, 0.12) 0%,
    rgba(5, 48, 92, 0.04) 100%
  );
}

.product-card:hover .product-card__head {
  background: linear-gradient(
    125deg,
    rgba(5, 48, 92, 0.11) 0%,
    rgba(5, 48, 92, 0.04) 55%,
    rgba(250, 188, 46, 0.1) 100%
  );
}

.product-card--crypto:hover .product-card__head {
  background: linear-gradient(
    125deg,
    rgba(239, 146, 39, 0.18) 0%,
    rgba(5, 48, 92, 0.06) 100%
  );
}

.product-card__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--nx-white);
  border: 1px solid rgba(5, 48, 92, 0.1);
  border-radius: var(--nx-radius);
  box-shadow: 0 2px 10px rgba(5, 48, 92, 0.08);
}

.product-card__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.product-card__title {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--nx-navy);
  margin: 0;
}

.product-card__desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--nx-muted);
  margin: 0;
  padding: 18px 22px 0;
}

.product-card__features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0 22px;
  flex: 1;
}

.product-card__features li {
  position: relative;
  padding: 5px 0 5px 26px;
  font-size: 13px;
  font-weight: 500;
  color: var(--nx-text);
  line-height: 1.4;
}

.product-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  background: url("asset/content/images/icon-images/green-checkmark.svg") center / contain no-repeat;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nx-navy);
  transition: color 0.2s ease, gap 0.2s ease;
}

.product-card__arrow {
  color: var(--nx-orange);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.product-card:hover .product-card__cta {
  color: var(--nx-orange);
}

.product-card:hover .product-card__arrow {
  transform: translateX(3px);
}

/* ---- Homepage: platform (hero background, copy on left) ---- */
.home-platform {
  padding: 0;
}

.home-platform-panel {
  background-color: var(--nx-white);
  background-image: url("asset/content/images/trading/trader-plus-hero-L.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.home-platform-inner {
  display: flex;
  align-items: center;
  min-height: clamp(420px, 42vw, 520px);
  padding: 56px 0;
}

.home-platform-copy {
  width: 50%;
  max-width: 540px;
  padding-right: 32px;
}

.home-platform-copy .section-eyebrow {
  margin-bottom: 10px;
}

.home-platform-copy h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--nx-navy);
  margin-bottom: 14px;
}

.home-platform-copy > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--nx-muted);
  margin-bottom: 18px;
}

.home-platform-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

/* Rotating border highlight (see home-platform-cta) */
@property --home-platform-cta-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.home-platform-cta {
  --home-platform-cta-angle: 0deg;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 9999px;
  text-decoration: none;
  background: conic-gradient(
    from var(--home-platform-cta-angle),
    transparent 0deg 300deg,
    var(--nx-orange) 300deg 360deg
  );
  animation: home-platform-cta-spin 2.75s linear infinite;
}

.home-platform-cta__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 34px;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--nx-white);
  background: linear-gradient(
    135deg,
    var(--nx-navy-dark) 0%,
    var(--nx-navy) 48%,
    var(--nx-navy-light) 100%
  );
  transition: background 0.25s ease, transform 0.15s ease;
}

.home-platform-cta:hover .home-platform-cta__label {
  background: linear-gradient(
    135deg,
    var(--nx-navy) 0%,
    var(--nx-navy-light) 55%,
    #0d5c9e 100%
  );
}

.home-platform-cta:active .home-platform-cta__label {
  transform: scale(0.98);
}

.home-platform-cta:focus-visible {
  outline: 2px solid var(--nx-orange);
  outline-offset: 3px;
}

.home-platform-tour {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--nx-navy);
  text-decoration: none;
  background: var(--nx-white);
  border: 1.5px solid rgba(5, 48, 92, 0.22);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.home-platform-tour::after {
  content: "→";
  font-size: 16px;
  font-weight: 700;
  color: var(--nx-orange);
  transition: transform 0.2s ease;
}

.home-platform-tour:hover {
  color: var(--nx-navy-dark);
  background: rgba(5, 48, 92, 0.04);
  border-color: var(--nx-navy);
}

.home-platform-tour:hover::after {
  transform: translateX(3px);
}

.home-platform-tour:active {
  transform: scale(0.98);
}

.home-platform-tour:focus-visible {
  outline: 2px solid var(--nx-navy);
  outline-offset: 3px;
}

@keyframes home-platform-cta-spin {
  to {
    --home-platform-cta-angle: 360deg;
  }
}

@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .home-platform-cta {
    animation: none;
    padding: 0;
    background: transparent;
  }

  .home-platform-cta__label {
    border: 2px solid var(--nx-orange);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-platform-cta {
    animation: none;
    background: var(--nx-orange);
    padding: 2px;
  }

  .home-platform-cta::before {
    animation: none;
    display: none;
  }
}

/* ---- Homepage: Why Nexus (panel + human photo) ---- */
.home-why-panel {
  display: grid;
  grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  box-shadow: var(--nx-shadow);
}

.home-why-media {
  position: relative;
  margin: 0;
  min-height: 100%;
  background: var(--nx-navy-dark);
}

.home-why-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 20%;
}

.home-why-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 52px) clamp(28px, 4vw, 48px);
}

.home-why-header .section-eyebrow {
  display: block;
  margin-bottom: 10px;
}

.home-why-header h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--nx-navy);
}

.home-why-lead {
  max-width: 48ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--nx-muted);
}

.home-why-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--nx-border);
}

.home-why-benefit__link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.home-why-benefit__link:hover .home-why-benefit__title {
  color: var(--nx-orange);
}

.home-why-benefit__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--nx-bg);
  border: 1px solid var(--nx-border);
  border-radius: 10px;
}

.home-why-benefit__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.home-why-benefit__copy {
  min-width: 0;
}

.home-why-benefit__title {
  margin: 0 0 4px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--nx-navy);
  transition: color 0.2s ease;
}

.home-why-benefit__text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--nx-muted);
}

/* ---- Homepage: live markets (tabbed table) ---- */
.home-markets {
  background: linear-gradient(
    165deg,
    #eef2f7 0%,
    #e4eaf2 48%,
    #eef2f7 100%
  );
}

.home-markets .section-head h2 {
  color: var(--nx-navy);
}

.home-markets .section-head p {
  color: var(--nx-muted);
}

.home-markets-widget {
  max-width: 920px;
  margin: 0 auto;
}

.home-markets-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.home-markets-tab {
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--nx-muted);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.home-markets-tab:hover {
  color: var(--nx-navy);
}

.home-markets-tab.is-active {
  color: var(--nx-navy);
  background: var(--nx-white);
  box-shadow: 0 1px 4px rgba(15, 20, 25, 0.08), 0 0 0 1px var(--nx-border);
}

.home-markets-tab:focus-visible {
  outline: 2px solid var(--nx-orange);
  outline-offset: 2px;
}

.home-markets-card {
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  box-shadow: var(--nx-shadow-sm);
  overflow: hidden;
}

.home-markets-card__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--nx-border);
  background: var(--nx-bg);
}

.home-markets-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--nx-navy);
}

.home-markets-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--nx-success);
  box-shadow: 0 0 0 3px rgba(22, 199, 132, 0.2);
  animation: home-markets-pulse 2s ease-in-out infinite;
}

@keyframes home-markets-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.55;
  }
}

.home-markets-updated {
  font-size: 11px;
  color: var(--nx-muted);
  white-space: nowrap;
}

.home-markets-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 20px 28px 8px;
}

.home-markets-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.home-markets-table thead th {
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  color: var(--nx-muted);
  background: var(--nx-bg);
  border-bottom: 1px solid var(--nx-border);
}

.home-markets-table thead th.home-markets-table__num {
  text-align: right;
}

.home-markets-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--nx-border);
  vertical-align: middle;
}

.home-markets-table tbody tr:last-child td {
  border-bottom: none;
}

.home-markets-table tbody tr:hover td {
  background: rgba(5, 48, 92, 0.02);
}

.home-markets-table-wrap .home-markets-table__num {
  text-align: right;
}

.home-markets-table__num {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.home-markets-table__asset {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.home-markets-table__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}

.home-markets-table__icon--stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--nx-navy) 0%, var(--nx-navy-light) 100%);
  color: var(--nx-white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-markets-viewall {
  padding: 12px 28px 24px;
  text-align: right;
}

.home-markets-viewall__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--nx-orange);
  text-decoration: none;
}

.home-markets-viewall__link:hover {
  color: var(--nx-navy);
  text-decoration: underline;
}

.home-markets-table__names {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.home-markets-table__name {
  font-weight: 700;
  color: var(--nx-navy);
  line-height: 1.3;
}

.home-markets-table__symbol {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--nx-muted);
}

.home-markets-table__price,
.home-markets-table__metric {
  font-weight: 600;
  color: var(--nx-navy);
}

.market-change {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  font-size: 13px;
  font-weight: 700;
}

.market-change__arrow {
  font-size: 10px;
  line-height: 1;
}

.market-change--up {
  color: var(--nx-success);
}

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

.market-change--flat {
  color: var(--nx-muted);
}

.home-markets-status {
  padding: 28px 16px !important;
  text-align: center;
  font-size: 14px;
  color: var(--nx-muted);
}

/* ---- Homepage: How it works (background panel + steps) ---- */
.home-process {
  padding: 0;
}

.home-process-panel {
  position: relative;
  background-color: #00070f;
  background-image: url("asset/content/images/home_exchange_global-2.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 118%;
  overflow: hidden;
}

.home-process-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.95) 32%,
    rgba(255, 255, 255, 0.88) 44%,
    rgba(255, 255, 255, 0.68) 56%,
    rgba(255, 255, 255, 0.38) 66%,
    rgba(255, 255, 255, 0.14) 76%,
    rgba(3, 30, 58, 0.08) 88%,
    rgba(3, 30, 58, 0.04) 100%
  );
  pointer-events: none;
}

.home-process-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(460px, 44vw, 560px);
  padding-block: var(--nx-section-y);
}

.home-process-copy {
  width: min(100%, 540px);
  max-width: 46%;
  padding-block: 0;
  padding-right: clamp(28px, 3.5vw, 36px);
}

.home-process-header .section-eyebrow {
  display: block;
  margin-bottom: 10px;
}

.home-process-header h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--nx-navy);
}

.home-process-lead {
  margin: 0;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--nx-muted);
}

.home-process-steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--nx-border);
  counter-reset: process-step;
}

.home-process-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
  counter-increment: process-step;
}

.home-process-step:not(:last-child) {
  padding-bottom: 28px;
}

.home-process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--nx-border), rgba(226, 232, 240, 0.35));
  pointer-events: none;
}

.home-process-step__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: 12px;
  box-shadow: var(--nx-shadow-sm);
}

.home-process-step__icon::before {
  content: counter(process-step);
  position: absolute;
  top: -7px;
  right: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--nx-orange), var(--nx-gold));
  color: var(--nx-white);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(239, 146, 39, 0.35);
}

.home-process-step__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.home-process-step__body {
  min-width: 0;
  padding-top: 2px;
}

.home-process-step__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 4px;
}

.home-process-step__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  color: var(--nx-navy);
}

.home-process-step__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--nx-bg);
  border: 1px solid var(--nx-border);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--nx-muted);
}

.home-process-step__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--nx-muted);
}

/* ---- Homepage: security ---- */
.home-security {
  position: relative;
  overflow: hidden;
  background-color: #0b0e16;
  color: var(--nx-white);
}

.home-security::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("asset/image/asset-protection.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 102%;
  pointer-events: none;
}

.home-security::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      #0b0e16 0%,
      rgba(11, 14, 22, 0.94) 30%,
      rgba(11, 14, 22, 0.45) 44%,
      transparent 54%
    ),
    linear-gradient(180deg, #0b0e16 0%, rgba(11, 14, 22, 0.55) 10%, transparent 22%),
    linear-gradient(0deg, #1f1610 0%, rgba(31, 22, 16, 0.65) 12%, transparent 24%),
    linear-gradient(270deg, #271b12 0%, rgba(39, 27, 18, 0.45) 8%, transparent 16%);
  pointer-events: none;
}

.home-security-layout {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: clamp(400px, 38vw, 540px);
}

.home-security-copy {
  flex: 0 1 520px;
  width: min(100%, 520px);
  max-width: 46%;
}

.home-security-copy .section-eyebrow {
  display: block;
  margin-bottom: 10px;
}

.home-security-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.75rem, 3.2vw, 2.625rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--nx-white);
}

.home-security-lead {
  margin: 0 0 28px;
  max-width: 44ch;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.home-security-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}

.home-security-features li {
  position: relative;
  padding-left: 32px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.home-security-features li + li {
  margin-top: 14px;
}

.home-security-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--nx-orange);
  color: var(--nx-white);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

@property --home-security-cta-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.home-security-cta {
  --home-security-cta-angle: 0deg;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 9999px;
  text-decoration: none;
  background: conic-gradient(
    from var(--home-security-cta-angle),
    rgba(239, 146, 39, 0.38) 0deg 250deg,
    rgba(239, 146, 39, 0.72) 275deg,
    var(--nx-orange) 295deg,
    #ffab42 315deg,
    var(--nx-orange) 335deg,
    rgba(239, 146, 39, 0.72) 355deg,
    rgba(239, 146, 39, 0.38) 360deg
  );
  animation: home-security-cta-spin 2.75s linear infinite;
}

.home-security-cta__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 34px;
  border-radius: 9999px;
  border: none;
  background: #0b0e16;
  color: var(--nx-white);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  transition: background 0.2s ease, transform 0.15s ease;
}

.home-security-cta__label span {
  color: var(--nx-orange);
}

.home-security-cta:hover .home-security-cta__label {
  background: #1a2232;
}

.home-security-cta:active .home-security-cta__label {
  transform: scale(0.98);
}

.home-security-cta:focus-visible {
  outline: 2px solid var(--nx-orange);
  outline-offset: 3px;
}

@keyframes home-security-cta-spin {
  to {
    --home-security-cta-angle: 360deg;
  }
}

@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .home-security-cta {
    animation: none;
    padding: 0;
    background: transparent;
  }

  .home-security-cta__label {
    border: 1.5px solid var(--nx-orange);
    background: transparent;
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .home-security-cta:hover .home-security-cta__label {
    background: rgba(255, 255, 255, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-security-cta {
    animation: none;
    padding: 0;
    background: transparent;
  }

  .home-security-cta__label {
    border: 1.5px solid var(--nx-orange);
    background: transparent;
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .home-security-cta:hover .home-security-cta__label {
    background: rgba(255, 255, 255, 0.08);
  }
}

/* ---- Homepage: FAQ ---- */
.home-faq {
  padding-block: calc(var(--nx-section-y) + 8px) calc(var(--nx-section-y) + 4px);
}

.home-faq-header {
  text-align: center;
  margin-bottom: 36px;
}

.home-faq-heading {
  font-size: clamp(1.875rem, 3.2vw, 2.5rem);
  font-weight: 800;
  color: var(--nx-navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.home-faq-panel {
  width: 100%;
  border-block: 1px solid var(--nx-border);
  overflow: hidden;
}

.home-faq-list {
  display: flex;
  flex-direction: column;
  max-width: var(--nx-container);
  margin-inline: auto;
  padding-inline: 45px;
}

.home-faq-item {
  border-bottom: 1px solid var(--nx-border);
}

.home-faq-item:last-child {
  border-bottom: none;
}

.home-faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px 24px;
  padding: 26px 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--nx-navy);
  cursor: pointer;
  list-style: none;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary:hover {
  color: var(--nx-navy-light);
}

.home-faq-item__question {
  min-width: 0;
}

.home-faq-item__icon {
  width: 14px;
  height: 14px;
  justify-self: end;
  border-right: 2px solid var(--nx-orange);
  border-bottom: 2px solid var(--nx-orange);
  transform: rotate(45deg);
  transform-origin: 55% 55%;
  transition: transform 0.25s ease;
}

.home-faq-item[open] .home-faq-item__icon {
  transform: rotate(-135deg);
}

.home-faq-answer {
  padding: 0 0 24px;
}

.home-faq-answer p {
  font-size: 1.0625rem;
  color: var(--nx-muted);
  line-height: 1.75;
}

.home-faq-answer a {
  color: var(--nx-orange);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.home-faq-answer a:hover {
  color: var(--nx-navy);
}

.home-faq-footer {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.home-faq-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--nx-navy);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-faq-more span {
  color: var(--nx-orange);
  transition: transform 0.2s ease;
}

.home-faq-more:hover {
  color: var(--nx-orange);
  border-bottom-color: rgba(239, 146, 39, 0.35);
}

.home-faq-more:hover span {
  transform: translateX(3px);
}

/* ---- Homepage: testimonials ---- */
.home-testimonials {
  background: #f5f2eb;
}

.home-testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}

.home-testimonials-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--nx-navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.home-testimonials-layout {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.home-testimonials-summary {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 12px 36px 12px 0;
  border-right: 1px solid rgba(5, 48, 92, 0.14);
}

.home-testimonials-rating-label {
  font-size: clamp(1.75rem, 2.5vw, 2.125rem);
  font-weight: 800;
  color: var(--nx-navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.home-testimonials-reviews-count {
  font-size: 14px;
  font-weight: 500;
  color: var(--nx-navy-light);
  text-decoration: none;
}

.home-testimonials-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--nx-navy);
}

.home-testimonials-brand__icon {
  width: 22px;
  height: 22px;
  border-radius: 2px;
  background: #00b67a;
  position: relative;
}

.home-testimonials-brand__icon::after {
  content: "★";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.home-testimonials-carousel {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0 8px 28px;
}

.home-testimonials-viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  container-type: inline-size;
  container-name: testimonials;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.home-testimonials-viewport::-webkit-scrollbar {
  display: none;
}

.home-testimonials-nav {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(5, 48, 92, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--nx-navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.home-testimonials-nav span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.home-testimonials-nav--prev span {
  transform: rotate(135deg);
  margin-left: 3px;
}

.home-testimonials-nav--next span {
  margin-right: 3px;
}

.home-testimonials-nav:hover:not(:disabled) {
  background: var(--nx-white);
  border-color: rgba(5, 48, 92, 0.28);
}

.home-testimonials-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.home-testimonials .testimonials-track {
  display: flex;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  padding: 2px 2px 6px;
}

.home-testimonials .testimonial-card {
  flex: 0 0 calc((100cqw - 32px) / 3);
  min-width: 0;
  background: var(--nx-white);
  border: none;
  border-radius: 0;
  padding: 28px 24px 22px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
}

.home-testimonials .testimonial-card--clone {
  pointer-events: none;
}

.testimonial-stars {
  display: inline-flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #00b67a;
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.testimonial-star::before {
  content: "★";
}

.testimonial-stars--summary .testimonial-star {
  width: 30px;
  height: 30px;
  font-size: 16px;
}

.testimonial-stars--summary .testimonial-star--partial {
  background: #dcdce6;
  position: relative;
  isolation: isolate;
}

.testimonial-stars--summary .testimonial-star--partial::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  background: #00b67a;
  z-index: 0;
}

.testimonial-stars--summary .testimonial-star--partial::before {
  position: relative;
  z-index: 1;
  color: #fff;
  background: none;
  clip-path: none;
}

.testimonial-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--nx-black);
  line-height: 1.35;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--nx-text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.testimonial-card.is-expanded .testimonial-card__text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.testimonial-card__more {
  align-self: flex-start;
  margin-bottom: auto;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: #0056b3;
  cursor: pointer;
  text-decoration: none;
}

.testimonial-card__more:hover {
  text-decoration: underline;
}

.testimonial-card.is-expanded .testimonial-card__more {
  margin-bottom: 12px;
}

.testimonial-card__author {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--nx-black);
}

/* Investment plans */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.plan-card:hover {
  box-shadow: var(--nx-shadow-lg);
  transform: translateY(-4px);
}

.plan-card-head {
  background: linear-gradient(135deg, var(--nx-navy) 60%, var(--nx-navy-light));
  color: var(--nx-white);
  padding: 28px 24px;
  text-align: center;
}

.plan-card-head h3 {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.plan-card-return {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--nx-gold);
}

.plan-card-deposit {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 4px;
}

.plan-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.plan-features li {
  font-size: 14px;
  color: var(--nx-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--nx-border);
}

.plan-features li:last-child { border-bottom: none; }

.plan-card-body .btn {
  margin-top: auto;
  width: 100%;
  margin-top: 20px;
}

/* ROI Calculator */
.roi-section { background: var(--nx-bg); }

.roi-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

.roi-input-panel {
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-lg);
  padding: 28px;
}

.roi-input-panel label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--nx-navy);
  margin-bottom: 8px;
}

.roi-input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius-sm);
  overflow: hidden;
  margin-bottom: 8px;
}

.roi-input-wrap span {
  padding: 12px 14px;
  background: var(--nx-bg);
  font-weight: 600;
  color: var(--nx-muted);
  border-right: 1px solid var(--nx-border);
}

.roi-input-wrap input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

.roi-hint { font-size: 12px; color: var(--nx-muted); margin-bottom: 16px; }

.roi-validation {
  font-size: 13px;
  color: var(--nx-danger);
  min-height: 20px;
  margin-bottom: 12px;
}

.roi-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.roi-result-card {
  background: var(--nx-white);
  border: 1px solid var(--nx-border);
  border-radius: var(--nx-radius);
  padding: 20px;
  opacity: 0.45;
  transition: opacity 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.roi-result-card.active {
  opacity: 1;
  border-color: var(--nx-orange);
  box-shadow: 0 0 0 3px rgba(239,146,39,0.15);
}

.roi-result-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nx-orange);
  margin-bottom: 6px;
}

.roi-result-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--nx-navy);
  margin-bottom: 4px;
}

.roi-result-range {
  font-size: 12px;
  color: var(--nx-muted);
  margin-bottom: 12px;
}

.roi-result-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-top: 1px solid var(--nx-border);
}

.roi-result-row .val {
  font-weight: 700;
  color: var(--nx-navy);
}

.roi-result-row .val.total { color: var(--nx-orange); }

@media (max-width: 1100px) {
  .home-hero { padding: 44px 0 52px; }
  .home-hero-grid { grid-template-columns: 1fr; max-width: 560px; }
  .home-hero-bg { background-position: 65% center; }
  .product-showcase { grid-template-columns: repeat(2, 1fr); }
  .home-platform-panel {
    background-position: 75% center;
  }

  .home-platform-copy {
    width: 52%;
    max-width: none;
    padding-right: 24px;
  }

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

  .home-why-media img {
    min-height: 280px;
    max-height: 360px;
  }

  .home-process-panel {
    background-position: right center;
    background-size: auto 115%;
  }

  .home-process-panel::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.95) 42%,
      rgba(255, 255, 255, 0.72) 56%,
      rgba(255, 255, 255, 0.32) 70%,
      rgba(3, 30, 58, 0.14) 100%
    );
  }

  .home-process-inner {
    min-height: 0;
  }

  .home-process-copy {
    max-width: 100%;
    padding: 0;
  }

  .plans-grid { grid-template-columns: 1fr 1fr; }
  .roi-layout { grid-template-columns: 1fr; }
  .roi-results-grid { grid-template-columns: 1fr 1fr; }

  .home-testimonials-header {
    margin-bottom: 28px;
  }

  .home-testimonials-layout {
    flex-direction: column;
    gap: 28px;
  }

  .home-testimonials-summary {
    flex: none;
    align-items: center;
    text-align: center;
    padding: 0 0 24px;
    border-right: none;
    border-bottom: 1px solid rgba(5, 48, 92, 0.14);
  }

  .home-testimonials-carousel {
    padding: 0;
  }

  .home-testimonials .testimonial-card {
    flex: 0 0 calc((100cqw - 16px) / 2);
  }
}

@media (max-width: 640px) {
  .home-hero { padding: 36px 0 44px; }
  .home-hero-bg { background-position: 75% center; }
  .home-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(3, 30, 58, 0.94) 0%,
      rgba(5, 48, 92, 0.82) 100%
    );
  }
  .plans-grid { grid-template-columns: 1fr; }
  .roi-results-grid { grid-template-columns: 1fr; }
  .product-showcase { grid-template-columns: 1fr; }
  .product-card__head { padding: 18px 20px; }
  .product-card__head::after { left: 20px; }
  .product-card__desc { padding: 16px 20px 0; }
  .product-card__features { padding: 0 20px; }
  .product-card__cta { padding: 0 20px; }
  .product-card__content { padding-bottom: 22px; }
  .home-platform-panel {
    background-position: center top;
    background-size: cover;
  }

  .home-platform-inner {
    min-height: 0;
    padding: 32px 0 40px;
  }

  .home-platform-copy {
    width: 100%;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--nx-radius-lg);
    box-shadow: var(--nx-shadow);
  }

  .home-why-main {
    padding: 28px 22px 32px;
  }

  .home-why-benefits {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 24px;
    padding-top: 24px;
  }

  .home-security-layout {
    min-height: 0;
    padding-block: 8px;
  }

  .home-security-copy {
    max-width: none;
    width: 100%;
  }

  .home-security::before {
    background-position: 72% center;
    background-size: auto 115%;
    opacity: 0.92;
  }

  .home-security::after {
    background-image:
      linear-gradient(180deg, #0b0e16 0%, rgba(11, 14, 22, 0.94) 42%, rgba(11, 14, 22, 0.72) 100%),
      linear-gradient(0deg, #1f1610 0%, transparent 18%),
      linear-gradient(270deg, #271b12 0%, transparent 14%);
  }

  .home-process-panel {
    background-position: right center;
    background-size: auto 115%;
  }

  .home-process-panel::before {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.96) 48%,
      rgba(255, 255, 255, 0.75) 60%,
      rgba(255, 255, 255, 0.35) 74%,
      rgba(3, 30, 58, 0.22) 100%
    );
  }

  .home-process-copy {
    padding-block: 0;
    padding-inline: 24px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: var(--nx-radius-lg);
    box-shadow: var(--nx-shadow);
  }

  .home-process-steps {
    margin-top: 22px;
    padding-top: 22px;
  }

  .home-process-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px 14px;
  }

  .home-process-step:not(:last-child) {
    padding-bottom: 22px;
  }

  .home-process-step__icon {
    width: 48px;
    height: 48px;
  }

  .home-process-step__icon img {
    width: 28px;
    height: 28px;
  }

  .home-process-step:not(:last-child)::after {
    left: 23px;
    top: 48px;
  }

  .home-markets-table-wrap {
    padding: 16px 18px 6px;
  }

  .home-markets-table thead th,
  .home-markets-table tbody td {
    padding-left: 14px;
    padding-right: 14px;
  }

  .home-markets-viewall {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-faq-header {
    margin-bottom: 28px;
  }

  .home-faq-footer {
    margin-top: 24px;
  }

  .home-faq-list {
    padding-inline: 24px;
  }

  .home-faq-item summary {
    grid-template-columns: minmax(0, 1fr) 24px;
    gap: 12px 16px;
    padding: 20px 0;
    font-size: 1.0625rem;
  }

  .home-faq-answer {
    padding: 0 0 20px;
  }

  .home-faq-answer p {
    font-size: 1rem;
  }

  .home-faq-more {
    font-size: 1rem;
  }
  .home-hero-proof-wrap { margin-top: 32px; padding-top: 24px; }
  .home-hero-proof { font-size: 14px; }

  .home-testimonials .testimonial-card {
    flex: 0 0 100cqw;
  }

  .home-testimonials-nav {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-markets-live__dot {
    animation: none;
  }
}
