@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --background: #0b0f14;
  --foreground: #f8fafc;
  --accent: #10b981;
  --accent-dark: #059669;
  --surface: #111827;
  --surface-light: #1f2937;
  --muted: #94a3b8;
}

html.dark {
  color-scheme: dark;
  scroll-behavior: smooth;
}

/* Scroll reveal — fade in from below */
.scroll-reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

#plans,
#statistics,
#investment-options,
#join-cta,
#investment-products,
#about,
#how-it-works,
#reviews,
#live-markets,
#open-account {
  scroll-margin-top: 5rem;
}

html.dark,
html.dark body {
  background-color: var(--background) !important;
  color: var(--foreground) !important;
  min-height: 100%;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Override Tailwind CDN preflight when it loads after this sheet */
html.dark body {
  background-color: var(--background) !important;
  color: var(--foreground) !important;
}

/* Sticky site navbar */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
}

body:has(#site-nav),
body.has-site-nav {
  padding-top: 4.75rem;
}

#site-nav header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.gradient-hero {
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(16, 185, 129, 0.15), transparent),
    linear-gradient(to bottom, #0b0f14, #111827);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3rem;
  }
}

.hero-content {
  max-width: 36rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 16rem;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 10% 5% -5%;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 32rem;
  object-fit: cover;
  object-position: center top;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

@media (min-width: 1024px) {
  .hero-image {
    max-height: 36rem;
  }
}

@media (max-width: 1023px) {
  .hero-visual {
    order: -1;
    max-width: 28rem;
    margin: 0 auto;
  }
}

/* Platform statistics */
.stats-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.stats-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111827;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.stats-card:hover {
  border-color: rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
}

.stats-icon-wrap {
  display: flex;
  height: 3.5rem;
  width: 3.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}

.stats-value {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

@media (min-width: 1024px) {
  .stats-value {
    font-size: 2.25rem;
  }
}

.stats-label {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #94a3b8;
}

/* Investment options banner */
.investment-options-section {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #0b0f14 url("../../investment-options-bg.png") center center / cover no-repeat;
  min-height: 28rem;
  overflow: hidden;
}

.investment-options-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(11, 15, 20, 0.35) 0%,
    rgba(11, 15, 20, 0.72) 45%,
    rgba(11, 15, 20, 0.92) 100%
  );
  pointer-events: none;
}

.investment-options-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 28rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.investment-options-content {
  width: 100%;
  max-width: 36rem;
  text-align: left;
}

@media (min-width: 1024px) {
  .investment-options-section {
    min-height: 32rem;
  }

  .investment-options-inner {
    min-height: 32rem;
    padding: 5rem 2rem;
  }

  .investment-options-content {
    text-align: right;
    margin-left: auto;
  }
}

.investment-options-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

@media (min-width: 1024px) {
  .investment-options-title {
    font-size: 2.125rem;
  }
}

.investment-options-text {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.75;
  color: #cbd5e1;
}

/* Join CTA — fixed background parallax banner (works on mobile + iOS) */
.join-cta-section {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #0b0f14;
  min-height: 100vh;
  min-height: 100dvh;
  isolation: isolate;
}

.join-cta-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip: rect(0, auto, auto, 0);
  clip-path: inset(0);
  z-index: 0;
}

.join-cta-bg {
  position: fixed;
  inset: 0;
  background: #0b0f14 url("../../invest-cta-bg.png") center center / cover no-repeat;
  pointer-events: none;
}

.join-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(11, 15, 20, 0.82) 0%,
    rgba(11, 15, 20, 0.55) 50%,
    rgba(11, 15, 20, 0.75) 100%
  );
  pointer-events: none;
}

.join-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  max-width: 72rem;
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.join-cta-content {
  width: 100%;
  max-width: 34rem;
}

.join-cta-title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

@media (min-width: 1024px) {
  .join-cta-title {
    font-size: 2.5rem;
  }
}

.join-cta-text {
  margin: 1.25rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #e2e8f0;
}

.join-cta-btn {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

/* Investment products grid */
.investment-products-header {
  margin-bottom: 3rem;
  text-align: center;
}

.investment-products-header h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 1024px) {
  .investment-products-header h2 {
    font-size: 2.25rem;
  }
}

.investment-products-header p {
  margin: 0.75rem auto 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #94a3b8;
}

.investment-products-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .investment-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .investment-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.investment-product-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0b0f14;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.investment-product-card:hover {
  border-color: rgba(16, 185, 129, 0.35);
  transform: translateY(-2px);
}

.investment-product-icon {
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  font-size: 1.25rem;
  margin-bottom: 1.125rem;
}

.investment-product-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}

.investment-product-card p {
  margin: 0.625rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #94a3b8;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--surface);
  border-radius: 1rem;
  color: var(--foreground);
}

.input {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #000;
  padding: 0.75rem 1rem;
  color: #fff;
  outline: none;
}

.input::placeholder {
  color: #64748b;
}

.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

select.input option {
  background: #111827;
  color: #fff;
}

.btn-primary {
  display: inline-block;
  border: none;
  cursor: pointer;
  border-radius: 9999px;
  background: var(--accent);
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  transition: background-color 0.15s ease;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  transition: background-color 0.15s ease;
}

.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  border-radius: 9999px;
  background: transparent;
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  transition: background-color 0.15s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

.error-box {
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(239, 68, 68, 0.2);
  background: rgba(239, 68, 68, 0.1);
  padding: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: #f87171;
}

.badge-emerald {
  display: inline-flex;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.badge-amber {
  display: inline-flex;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.badge-slate {
  display: inline-flex;
  background: rgba(100, 116, 139, 0.15);
  color: #cbd5e1;
}

.page-main {
  min-height: 100vh;
  background-color: #0b0f14;
  color: #f8fafc;
}

.page-loading {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: #0b0f14;
  color: #f8fafc;
}

/* Stat cards — JS-rendered; Tailwind CDN does not scan innerHTML */
.stat-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #94a3b8;
}

.stat-value {
  margin-top: 0.75rem;
  font-weight: 700;
}

.stat-value-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.stat-value-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.stat-value-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

html.dark .stat-emerald,
.stat-emerald {
  color: #34d399 !important;
}

html.dark .stat-white,
.stat-white {
  color: #ffffff !important;
}

html.dark .stat-amber,
.stat-amber {
  color: #fbbf24 !important;
}

html.dark .stat-red {
  color: #f87171 !important;
}

html.dark .stat-yellow {
  color: #facc15 !important;
}

html.dark .stat-slate {
  color: #cbd5e1 !important;
}

/* Customer reviews — JS-rendered */
.reviews-header {
  margin-bottom: 3rem;
  text-align: center;
}

.reviews-header h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 1024px) {
  .reviews-header h2 {
    font-size: 2.25rem;
  }
}

.reviews-header p {
  margin: 0.75rem auto 0;
  max-width: 42rem;
  color: #94a3b8;
}

.reviews-carousel {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.reviews-carousel-viewport {
  overflow: hidden;
  padding: 0.25rem 0;
}

.reviews-carousel-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.review-slide {
  flex: 0 0 50%;
  min-width: 50%;
  box-sizing: border-box;
  opacity: 0.45;
  transform: scale(0.94);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.review-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 767px) {
  .review-slide {
    flex: 0 0 78%;
    min-width: 78%;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 16rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111827;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-slide.is-active .review-card {
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.08);
}

@media (min-width: 768px) {
  .review-card {
    padding: 2rem;
    min-height: 15rem;
  }
}

.review-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.review-card-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  border-radius: 9999px;
  border: 2px solid rgba(16, 185, 129, 0.3);
  object-fit: cover;
  background: #1f2937;
}

.review-name {
  margin: 0;
  font-weight: 600;
  color: #fff;
}

.review-meta {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}

.review-stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
  color: #fbbf24;
  font-size: 0.875rem;
}

.review-quote {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.625;
  color: #94a3b8;
}

.review-plan {
  margin-top: 1rem;
  display: inline-flex;
  align-self: flex-start;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #34d399;
}

.reviews-loading,
.reviews-error {
  flex: 0 0 100%;
  padding: 3rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

.reviews-loading {
  color: #34d399;
  animation: review-pulse 1.5s ease-in-out infinite;
}

.reviews-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reviews-dot {
  height: 0.5rem;
  width: 0.5rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}

.reviews-dot:hover {
  background: rgba(16, 185, 129, 0.5);
}

.reviews-dot.active {
  width: 1.5rem;
  background: #10b981;
}

@keyframes review-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* About Us */
.about-header {
  width: 100%;
  margin-bottom: 3rem;
  text-align: center;
}

.about-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 4rem;
  }
}

.about-visual {
  position: relative;
  width: 100%;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 8% -5% -8% 5%;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.14), transparent 70%);
  pointer-events: none;
}

.about-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 28rem;
  object-fit: cover;
  object-position: center;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.about-content {
  max-width: none;
}

.about-text:first-child {
  margin-top: 0;
}

.about-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #34d399;
}

.about-title {
  margin: 0 auto;
  max-width: 48rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

@media (min-width: 1024px) {
  .about-title {
    font-size: 2.25rem;
  }
}

.about-text {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #94a3b8;
}

.about-list {
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9375rem;
  color: #cbd5e1;
}

.about-list li i {
  width: 1.125rem;
  color: #10b981;
  text-align: center;
}

.about-cta {
  display: inline-block;
  margin-top: 2rem;
  text-decoration: none;
}

/* Live crypto ticker */
.crypto-ticker-section {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: #0b0f14;
  padding: 4rem 0;
  overflow: hidden;
}

.crypto-ticker-header {
  margin: 0 auto 2.5rem;
  max-width: 72rem;
  padding: 0 1.25rem;
  text-align: center;
}

.crypto-ticker-header h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
}

@media (min-width: 1024px) {
  .crypto-ticker-header h2 {
    font-size: 2.25rem;
  }
}

.crypto-ticker-header p {
  margin: 0.75rem 0 0;
  color: #94a3b8;
  font-size: 0.9375rem;
}

.crypto-ticker-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.crypto-ticker-viewport:hover .crypto-ticker-track {
  animation-play-state: paused;
}

.crypto-ticker-track {
  display: flex;
  width: max-content;
  animation: crypto-ticker-scroll 45s linear infinite;
}

.crypto-ticker-track.is-loading {
  animation: none;
  width: 100%;
  justify-content: center;
}

.crypto-ticker-set {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
}

.crypto-ticker-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-shrink: 0;
  min-width: 17rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111827;
  border-radius: 1rem;
  padding: 0.875rem 1.125rem;
}

.crypto-ticker-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  flex-shrink: 0;
}

.crypto-ticker-meta {
  display: flex;
  flex-direction: column;
  min-width: 5rem;
}

.crypto-ticker-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.crypto-ticker-symbol {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}

.crypto-ticker-price {
  margin-left: auto;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #f8fafc;
  white-space: nowrap;
}

.crypto-ticker-change {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 4.75rem;
  justify-content: flex-end;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}

.crypto-ticker-change.up {
  color: #34d399;
}

.crypto-ticker-change.down {
  color: #f87171;
}

.crypto-ticker-change.neutral {
  color: #94a3b8;
}

.crypto-ticker-loading,
.crypto-ticker-error {
  width: 100%;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.875rem;
  color: #94a3b8;
}

.crypto-ticker-loading {
  color: #34d399;
  animation: review-pulse 1.5s ease-in-out infinite;
}

@keyframes crypto-ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Open account CTA */
.open-account-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .open-account-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 4rem;
  }
}

.open-account-content {
  max-width: 34rem;
}

.open-account-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #34d399;
}

.open-account-title {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

@media (min-width: 1024px) {
  .open-account-title {
    font-size: 2.25rem;
  }
}

.open-account-intro {
  margin: 1.25rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #94a3b8;
}

.open-account-steps {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.open-account-steps li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.open-account-steps li:last-child {
  margin-bottom: 0;
}

.open-account-step-num {
  display: flex;
  height: 2rem;
  width: 2rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  font-size: 0.875rem;
  font-weight: 700;
  color: #34d399;
}

.open-account-steps strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
}

.open-account-steps p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #94a3b8;
}

.open-account-cta {
  display: inline-block;
  margin-top: 2rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-decoration: none;
}

.open-account-visual {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .open-account-visual {
    margin: 0 0 0 auto;
    max-width: none;
  }
}

.open-account-visual::before {
  content: "";
  position: absolute;
  inset: 5% -8% -5% 8%;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.16), transparent 70%);
  pointer-events: none;
}

.open-account-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  max-height: 36rem;
  object-fit: cover;
  object-position: center top;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

@media (max-width: 1023px) {
  .open-account-visual {
    order: -1;
  }

  .open-account-content {
    max-width: none;
  }
}
