/* =========================================================
   Options Beacon — Landing Page Styles
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
  --bg:           #020510;
  --surface-0:    #080c1e;
  --surface-1:    #0d1128;
  --surface-2:    #141830;
  --border:       rgba(255,255,255,.08);
  --accent:       #7c3aed;
  --accent-light: #a78bfa;
  --gold:         #f59e0b;
  --bull:         #63d491;
  --bear:         #f87171;
  --text:         #f1f5f9;
  --text-2:       #94a3b8;
  --text-3:       #475569;
  --radius:       16px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── Buttons ─────────────────────────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  font-family: inherit;
  letter-spacing: .01em;
  white-space: nowrap;
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  font-family: inherit;
  white-space: nowrap;
}
.btn-ghost:hover { border-color: var(--accent-light); color: var(--text); }
.btn-elite {
  background: linear-gradient(135deg, #92400e, var(--gold));
  color: #000;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  font-family: inherit;
}
.btn-elite:hover { opacity: .88; transform: translateY(-1px); }
.btn-lg { padding: 15px 32px; font-size: 15px; border-radius: 14px; }

/* ── Nav ──────────────────────────────────────────────────────────────────────── */
.nav-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(2,5,16,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}
.nav-orb {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-ctas { display: flex; gap: 10px; align-items: center; }
.nav-ctas .btn-primary { padding: 9px 20px; font-size: 13px; }
.nav-ctas .btn-ghost   { padding: 9px 20px; font-size: 13px; }
.nav-mobile-menu {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-2);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav button { margin-top: 10px; width: 100%; }

/* ── Hero ────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
}
.hero-glow.glow-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; left: -100px;
}
.hero-glow.glow-2 {
  width: 400px; height: 400px;
  background: var(--gold);
  bottom: 0; right: 100px;
  opacity: .2;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139,92,246,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139,92,246,.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 580px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(139,92,246,.25);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--accent-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; gap: 2px; }
.hero-stat-num { font-size: 20px; font-weight: 900; color: var(--text); }
.hero-stat-label { font-size: 11px; color: var(--text-3); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--border); }

/* Floating card */
.hero-card-wrap {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  perspective: 1000px;
}
.hero-card {
  background: var(--surface-1);
  border: 1px solid rgba(139,92,246,.3);
  border-radius: 20px;
  padding: 20px;
  width: 320px;
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 60px rgba(139,92,246,.15);
  transform: rotateY(-8deg) rotateX(4deg);
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%,100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50%      { transform: rotateY(-6deg) rotateX(2deg) translateY(-12px); }
}
.hc-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.hc-dot { width: 10px; height: 10px; border-radius: 50%; }
.hc-dot.green  { background: var(--bull); }
.hc-dot.yellow { background: var(--gold); }
.hc-dot.red    { background: var(--bear); }
.hc-title { font-size: 11px; font-weight: 700; color: var(--text-3); margin-left: 6px; letter-spacing: .04em; }
.hc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 8px;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: background .15s;
}
.hc-row:hover { background: var(--surface-2); }
.hc-ticker { font-size: 14px; font-weight: 800; color: var(--text); width: 48px; }
.hc-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  flex: 1;
}
.hc-badge.elite   { background: rgba(245,158,11,.15); color: var(--gold); }
.hc-badge.strong  { background: rgba(139,92,246,.15); color: var(--accent-light); }
.hc-badge.watch   { background: rgba(255,255,255,.06); color: var(--text-3); }
.hc-dir { font-size: 11px; font-weight: 700; width: 46px; text-align: right; }
.hc-dir.call { color: var(--bull); }
.hc-dir.put  { color: var(--bear); }
.hc-score { font-size: 16px; font-weight: 900; color: var(--text); width: 28px; text-align: right; }
.hc-footer { font-size: 10px; color: var(--text-3); text-align: center; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--border); }

/* ── Sections ────────────────────────────────────────────────────────────────── */
.section { padding: 100px 24px; position: relative; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text);
}
.section-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 60px;
}

/* ── Features grid ───────────────────────────────────────────────────────────── */
.features { background: var(--surface-0); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
/* 7th card: center it in the last row */
.features-grid .feature-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}
.feature-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: rgba(139,92,246,.4); transform: translateY(-3px); }
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.feature-card p { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.feature-badge {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(245,158,11,.15);
  color: var(--gold);
}

/* ── How It Works ────────────────────────────────────────────────────────────── */
.howitworks { background: var(--bg); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 20px;
}
.step {
  flex: 1;
  padding: 32px;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-arrow {
  font-size: 24px;
  color: var(--accent-light);
  padding: 0 16px;
  margin-top: 40px;
  flex-shrink: 0;
}
.step-num {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
}
.step h3 { font-size: 16px; font-weight: 800; margin-bottom: 10px; }
.step p  { font-size: 13px; color: var(--text-2); line-height: 1.7; }

/* ── Pricing ─────────────────────────────────────────────────────────────────── */
.pricing { background: var(--surface-0); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(139,92,246,.5);
  background: rgba(139,92,246,.06);
  transform: scale(1.02);
  box-shadow: 0 0 60px rgba(139,92,246,.15);
}
.pricing-card.elite-card {
  border-color: rgba(245,158,11,.3);
  background: rgba(245,158,11,.03);
}
.pricing-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.pricing-tier.pro   { color: var(--accent-light); }
.pricing-tier.elite { color: var(--gold); }
.pricing-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 12px;
}
.pricing-price span { font-size: 16px; color: var(--text-3); font-weight: 500; }
.pricing-desc {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}
.pricing-btn { width: 100%; text-align: center; }
.pricing-disclaimer {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 40px;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FAQ ─────────────────────────────────────────────────────────────────────── */
.faq-section { background: var(--bg); }
.faq-inner { max-width: 720px; }
.faq-list { display: flex; flex-direction: column; gap: 4px; margin-top: 16px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  background: var(--surface-1);
  border: none;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  transition: background .15s;
}
.faq-q:hover { background: var(--surface-2); }
.faq-caret { font-size: 16px; color: var(--text-3); transition: transform .2s; flex-shrink: 0; }
.faq-q.open .faq-caret { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 16px 20px 20px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.75;
  background: var(--surface-0);
  border-top: 1px solid var(--border);
}
.faq-a.open { display: block; }

/* ── Footer CTA ──────────────────────────────────────────────────────────────── */
.footer-cta {
  background: linear-gradient(135deg, rgba(124,58,237,.2), rgba(245,158,11,.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 24px;
  text-align: center;
}
.footer-cta-inner { max-width: 600px; margin: 0 auto; }
.footer-cta h2 { font-size: 36px; font-weight: 900; letter-spacing: -.03em; margin-bottom: 12px; }
.footer-cta p  { font-size: 15px; color: var(--text-2); margin-bottom: 28px; }

/* ── Footer ──────────────────────────────────────────────────────────────────── */
.footer { padding: 40px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-disclaimer {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 12px;
}
.footer-copy { font-size: 12px; color: var(--text-3); }

/* ── Auth Modal ──────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2,5,16,.85);
  backdrop-filter: blur(8px);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--surface-1);
  border: 1px solid rgba(139,92,246,.3);
  border-radius: 24px;
  padding: 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 40px 100px rgba(0,0,0,.6);
  position: relative;
  animation: modalIn .2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background .15s;
}
.modal-close:hover { background: var(--surface-2); color: var(--text); }
.modal-title { font-size: 22px; font-weight: 900; margin-bottom: 6px; }
.modal-sub   { font-size: 13px; color: var(--text-2); margin-bottom: 24px; }
.modal-input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  margin-bottom: 12px;
  transition: border-color .15s;
  outline: none;
}
.modal-input:focus { border-color: var(--accent-light); }
.modal-input::placeholder { color: var(--text-3); }
.modal-label { font-size: 12px; font-weight: 700; color: var(--text-2); margin-bottom: 5px; display: block; }
.modal-submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .2s;
}
.modal-submit:hover { opacity: .88; }
.modal-submit:disabled { opacity: .5; cursor: not-allowed; }
.modal-switch { font-size: 13px; color: var(--text-2); text-align: center; margin-top: 16px; }
.modal-switch a { color: var(--accent-light); cursor: pointer; font-weight: 700; }
.modal-switch a:hover { text-decoration: underline; }
.modal-error {
  display: none;
  font-size: 12px;
  color: var(--bear);
  background: rgba(248,113,113,.08);
  border: 1px solid rgba(248,113,113,.2);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 12px;
}
.modal-promo {
  background: rgba(99,212,145,.07);
  border: 1px solid rgba(99,212,145,.2);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--text-2);
}
.modal-promo strong { color: var(--bull); }

/* ── Toast ───────────────────────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  z-index: 9999;
  transition: transform .3s ease, opacity .3s;
  opacity: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; align-items: flex-start; padding-top: 100px; }
  .hero-card-wrap { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-mobile-menu { display: block; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .section { padding: 60px 20px; }
  .hero { padding: 100px 20px 60px; }
}

/* ── Futuristic Steps ──────────────────────────────────────────────────────── */
.steps-futuristic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step-futuristic {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 28px 36px;
  background: var(--surface-1);
  border: 1px solid rgba(139,92,246,.25);
  border-radius: 0;
  transition: border-color .2s, background .2s;
  /* equal height via grid */
}
.step-futuristic:first-child  { border-radius: 20px 0 0 20px; }
.step-futuristic:last-child   { border-radius: 0 20px 20px 0; }
.step-futuristic:not(:first-child) { border-left: none; }
.step-futuristic:hover {
  background: rgba(139,92,246,.06);
  border-color: rgba(139,92,246,.5);
  z-index: 1;
}
/* connector lines */
.step-f-connector {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, rgba(139,92,246,.6), rgba(167,139,250,.2));
}
.step-f-connector.left  { left: -1px; transform: translateY(-50%); }
.step-f-connector.right { right: -1px; transform: translateY(-50%); }
.step-f-connector.left-hidden,
.step-f-connector.right-hidden { display: none; }

.step-f-num {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .2em;
  color: var(--accent-light);
  opacity: .5;
  margin-bottom: 16px;
  font-family: 'Courier New', monospace;
}
.step-f-icon {
  font-size: 32px;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px rgba(139,92,246,.4));
}
.step-futuristic h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.step-futuristic p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
}

/* top accent line per card */
.step-futuristic::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,.6), transparent);
  border-radius: 999px;
}

@media (max-width: 900px) {
  .steps-futuristic { grid-template-columns: repeat(2, 1fr); }
  .step-futuristic:first-child  { border-radius: 20px 0 0 0; }
  .step-futuristic:nth-child(2) { border-radius: 0 20px 0 0; }
  .step-futuristic:nth-child(3) { border-radius: 0 0 0 20px; border-top: none; }
  .step-futuristic:last-child   { border-radius: 0 0 20px 0; border-top: none; }
  .step-futuristic:nth-child(even) { border-left: none; }
  .step-f-connector { display: none; }
}
@media (max-width: 600px) {
  .steps-futuristic { grid-template-columns: 1fr; }
  .step-futuristic:first-child  { border-radius: 20px 20px 0 0; }
  .step-futuristic:nth-child(2),
  .step-futuristic:nth-child(3) { border-radius: 0; border-top: none; }
  .step-futuristic:last-child   { border-radius: 0 0 20px 20px; border-top: none; }
  .step-futuristic:nth-child(even) { border-left: 1px solid rgba(139,92,246,.25); }
  .step-f-connector { display: none; }
}
