/* ============================================
   SERGIO. LANDING PAGE — STYLES
   ============================================ */

:root {
  --bg-primary:    #0A0A0B;
  --bg-secondary:  #111113;
  --bg-card:       #161619;
  --text-primary:  #F0EEFF;
  --text-secondary:#888899;
  --accent:        #7B7AE8;
  --accent-glow:   #7B7AE830;
  --accent-dim:    #7B7AE818;
  --border:        #222228;
  --border-subtle: #1A1A1E;
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'Manrope', system-ui, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary.btn-large { font-size: 15px; padding: 16px 40px; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  padding: 15px 31px;
  border: 1px solid var(--border);
  border-radius: 0;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--text-secondary); color: var(--text-primary); }
.btn-ghost.btn-large { font-size: 15px; }

/* ---- RECURRING MOTIFS ---- */
.badge-dot, .label-dot, .trust-dot, .card-dot, .tag-dot, .footer-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.trust-dot { width: 4px; height: 4px; }
.footer-dot { width: 4px; height: 4px; }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0A0A0B;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 1px;
}
.logo-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 1px;
  align-self: flex-end;
  margin-bottom: 4px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-primary);
  transition: color 0.2s;
}
.nav a:hover { color: var(--text-primary); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0A0A0B;
  overflow: hidden;
}
.hero-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 80% at 50% 0%, rgba(123,122,232,0.28) 0%, rgba(123,122,232,0.10) 40%, transparent 68%);
  pointer-events: none;
}
.hero-center {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
  padding: 80px 24px;
}
.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero-logo {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 160px;
  font-weight: 400;
  color: #F0EEFF;
  letter-spacing: -3px;
  line-height: 1.1;
}
/* ---- SlideLeft by character (MagicUI TextAnimate equivalent) ---- */
.lc {
  display: inline-block;
  opacity: 0;
  transform: translateX(20px);
  animation: char-slide-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.3s + var(--i) * 0.04s);
  animation-play-state: paused;
}
.fonts-ready .lc { animation-play-state: running; }
@keyframes char-slide-in {
  to { opacity: 1; transform: translateX(0); }
}
.logo-period-dot {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 16px;
  box-shadow: 0 0 32px 14px rgba(123,122,232,0.50);
  opacity: 0;
  transform: translateX(20px);
  animation: char-slide-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.62s;
  animation-play-state: paused;
}
.fonts-ready .logo-period-dot { animation-play-state: running; }
@keyframes hero-fade-up {
  to { opacity: 1; transform: translateY(0); }
}
.hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(10px);
  animation: hero-fade-up 0.7s ease forwards;
  animation-delay: 1.0s;
  animation-play-state: paused;
}
.fonts-ready .hero-tagline { animation-play-state: running; }
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  flex-wrap: wrap;
  justify-content: center;
}
.hero-center .trust-line {
  opacity: 0;
  transform: translateY(8px);
  animation: hero-fade-up 0.7s ease forwards;
  animation-delay: 1.25s;
  animation-play-state: paused;
}
.hero-center.fonts-ready .trust-line { animation-play-state: running; }

/* ---- SECTIONS ---- */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--bg-secondary);
}
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-headline {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  max-width: 760px;
  margin-bottom: 32px;
}
.section-headline.narrow { max-width: 600px; }
.section-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 48px;
}

/* ---- PAIN GRID (3-column) ---- */
.pain-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}
.pain-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 48px 0 0;
}
.pain-col:last-child { padding-right: 0; }
.pain-vdivider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 48px;
}
.pain-big-num {
  font-family: var(--font-serif);
  font-size: 88px;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.65;
  line-height: 1;
}
.pain-col-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.3;
}
.pain-col-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger-children.is-visible > * { opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 130ms; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 260ms; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 390ms; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 520ms; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 650ms; }

/* Steps: directional reveals (left / up / right) */
.steps.stagger-children > *:nth-child(1) { transform: translateX(-36px); }
.steps.stagger-children > *:nth-child(2) { transform: translateY(32px) scale(0.97); }
.steps.stagger-children > *:nth-child(3) { transform: translateX(36px); }

/* Pop-in keyframe for icons and step numbers */
@keyframes pop-in {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.18); }
  100% { transform: scale(1); opacity: 1; }
}

/* Why Sergio — staggered entrance per row */
.why-row {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.why-row.is-visible { opacity: 1; transform: translateY(0); }

.why-big-stat {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16,1,0.3,1);
  transition-delay: 0.18s;
}
.why-row.is-visible .why-big-stat { opacity: 1; transform: translateX(0); }

.why-stat-sub {
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: 0.38s;
}
.why-row.is-visible .why-stat-sub { opacity: 1; }

.why-body-white {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1);
  transition-delay: 0.22s;
}
.why-row.is-visible .why-body-white { opacity: 1; transform: translateX(0); }

.why-body-purple {
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1);
  transition-delay: 0.38s;
}
.why-row.is-visible .why-body-purple { opacity: 1; transform: translateX(0); }

/* Dashboard: scale + rise reveal */
.dashboard-wrap.reveal { transform: translateY(28px) scale(0.98); }

/* ---- WHY SERGIO ---- */
.why-section {
  position: relative;
  background: var(--bg-primary);
  padding: 96px 0 0;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./images/generated-1773246745191.png');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}
.why-section > .container,
.why-section > .why-rows {
  position: relative;
  z-index: 1;
}
.why-main-headline {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  margin-top: 20px;
  margin-bottom: 56px;
}
.why-rows {
  width: 100%;
}
.why-row-border {
  width: 100%;
  height: 1px;
  background: var(--border);
}
.why-row {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.why-stat-side,
.why-body-side {
  flex: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.why-vdivider {
  width: 1px;
  flex-shrink: 0;
  background: rgba(123, 122, 232, 0.3);
}
.why-big-stat {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.0;
}
.why-stat-sub {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.why-body-white {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.6;
}
.why-body-purple {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--accent);
  line-height: 1.6;
}

/* ---- STEP CARDS (STAGGERED) ---- */
.step-cards {
  position: relative;
  min-height: 560px;
  padding-bottom: 48px;
}
.step-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 32px;
  max-width: 360px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid rgba(240,238,255,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  transition: transform 0.3s ease;
}
.step-card:hover { transform: translateY(-4px); }
.step-card-highlight {
  border-color: rgba(123,122,232,0.55);
  box-shadow: 0 0 40px -10px rgba(123,122,232,0.4), 0 8px 40px rgba(0,0,0,0.45);
  z-index: 2;
}
.step-card-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.step-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}
.step-card p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
}
@media (min-width: 769px) {
  .step-card { position: absolute; }
  .step-card:nth-child(1) { top: 0; left: 0; }
  .step-card:nth-child(2) { top: 96px; left: calc(50% - 180px); }
  .step-card:nth-child(3) { top: 192px; right: 0; z-index: 3; }
}

/* ---- DASHBOARD ---- */
.dashboard-wrap {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  height: 480px;
}
.dashboard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dashboard-label {
  position: absolute;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-primary);
  padding: 6px 12px;
  border: 1px solid var(--border);
}

/* ---- FEATURES ---- */
.feature-row {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row-reverse { flex-direction: row-reverse; }
.feature-text {
  flex: 0 0 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-head {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-primary);
}
.feature-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.feature-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
}
.feature-visual {
  flex: 1;
  height: 280px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.4s;
}
.feature-visual:hover img { filter: brightness(1); }

/* ---- SECONDARY FEATURE GRID ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  gap: 0;
}
.grid-card {
  padding: 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--bg-primary);
  transition: background 0.2s;
}
.grid-card:hover { background: var(--bg-card); }
.grid-card:nth-child(3n) { border-right: none; }
.grid-card:nth-child(4), .grid-card:nth-child(5), .grid-card:nth-child(6) { border-bottom: none; }
.grid-icon { color: var(--accent); }
.grid-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--text-primary);
}
.grid-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- STATS ---- */
.stats-row {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
}
.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat:first-child { padding-right: 48px; }
.stat:last-child { padding-left: 48px; }
.stat:not(:first-child):not(:last-child) { padding: 0 48px; }
.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---- TESTIMONIALS ---- */
.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.testimonial {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--accent);
  line-height: 0.6;
}
.quote-text {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.6;
}
.quote-attr {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---- FINAL CTA ---- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, #7B7AE822 0%, #7B7AE808 40%, transparent 70%);
  pointer-events: none;
}
.cta-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  max-width: 900px;
}
.cta-sub {
  font-size: 20px;
  color: var(--text-secondary);
}
.cta-reassure {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ---- FOOTER ---- */
.footer {
  background: #070708;
  border-top: 1px solid var(--border);
  padding: 64px 80px 40px;
  max-width: 100%;
}
.footer-brand {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 40px;
}
.footer .logo-dot {
  width: 6px;
  height: 6px;
  margin-bottom: 3px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 220px;
}
.footer-nav {
  flex: 1;
  display: flex;
  gap: 48px;
}
.footer-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-col a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
}
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- REQUEST ACCESS FORM ---- */
.form-section {
  background: var(--bg-primary);
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 700px;
}
.form-label-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-label-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
}
.form-label-text {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
}
.form-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.15;
  margin: 0;
}
.form-sub {
  font-family: var(--font-sans);
  font-size: 17px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 540px;
  line-height: 1.7;
  margin: 0;
}
.form-card {
  width: 100%;
  max-width: 600px;
  background: #111113;
  border-radius: 3px;
  padding: 56px 48px;
}
.access-form {
  display: flex;
  flex-direction: column;
}
.form-field {
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
}
.form-field-last {
  padding-bottom: 48px;
}
.field-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.field-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #2A2A38;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 0 0 14px 0;
  width: 100%;
  transition: border-color 0.2s ease;
}
.field-input:focus { border-bottom-color: var(--accent); }
.form-submit {
  width: 100%;
  height: 56px;
  background: var(--accent);
  border: none;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.1s ease;
}
.form-submit:hover { background: #9190EE; }
.form-submit:active { transform: scale(0.99); }
.form-thanks {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 1px;
  display: none;
  padding: 32px 0 0;
}

/* ---- SUPPORTED BY TICKER ---- */
.supported-by {
  background: #0D0D10;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}
.supported-label {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3.5px;
  color: #333345;
}
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.ticker {
  display: flex;
  align-items: center;
  gap: 200px;
  width: max-content;
  animation: ticker-ltr 36s linear infinite;
  animation-delay: -18s;
}
@keyframes ticker-ltr {
  from { transform: translateX(-33.33%); }
  to   { transform: translateX(0);       }
}
.ticker-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: rgba(240,238,255,0.38);
  white-space: nowrap;
  user-select: none;
}
.ticker-equity {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}
.ticker-solt {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
}


/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .container { padding: 0 48px; }
  .header-inner { padding: 0 48px; }
  .footer { padding: 64px 48px 40px; }

  .hero { min-height: 720px; }
  .logo-name { font-size: 120px; letter-spacing: -2px; }
  .logo-img { height: 30px; }

  .section-headline { font-size: 44px; }

  /* Why Sergio */
  .why-main-headline { font-size: 44px; }
  .why-big-stat { font-size: 60px; }
  .why-stat-side, .why-body-side { padding: 56px 48px; }


  .cta-headline { font-size: 56px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .nav { display: none; }
  .footer { padding: 48px 24px 32px; }

  /* Hero */
  .hero { min-height: 580px; }
  .logo-name { font-size: 80px; letter-spacing: -1px; }
  .logo-period-dot { width: 18px; height: 18px; margin-bottom: 10px; }
  .hero-tagline { font-size: 18px; }
  .hero-center { gap: 36px; }
  .logo-img { height: 26px; }
  .trust-line { font-size: 12px; gap: 8px; }

  /* Sections */
  .section { padding: 64px 0; }
  .section-headline { font-size: 36px; }
  .cta-headline { font-size: 36px; }

  /* Why Sergio */
  .why-section { padding-top: 64px; }
  .why-main-headline { font-size: 36px; }
  .why-big-stat { font-size: 48px; }
  .why-stat-side, .why-body-side { padding: 40px 24px; gap: 12px; }
  .why-body-white, .why-body-purple, .why-stat-sub { font-size: 16px; }
  .why-row { flex-direction: column; }
  .why-vdivider { width: 100%; height: 1px; }

  /* Ticker */
  .ticker { gap: 80px; }

  /* Problem */
  .pain-big-num { font-size: 64px; }
  .pain-col-title { font-size: 17px; }
  .pain-col { padding-right: 32px; }
  .pain-vdivider { margin: 0 32px; }

  /* Solution */
  .dashboard-wrap { height: 240px; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Step cards: stack vertically on mobile */
  .step-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: auto;
    padding-bottom: 0;
  }
  .step-card { max-width: 100%; }

  /* Form */
  .form-section { padding: 80px 24px; }
  .form-card { padding: 40px 28px; }
  .form-headline { font-size: 38px; }
}

@media (max-width: 480px) {
  .logo-name { font-size: 64px; letter-spacing: -1px; }
  .logo-period-dot { width: 14px; height: 14px; margin-bottom: 8px; }
  .hero-tagline { font-size: 16px; }
  .trust-line { font-size: 11px; gap: 6px; }

  /* Why Sergio */
  .why-big-stat { font-size: 40px; }

  /* Problem: stack columns on small screens */
  .pain-grid { flex-direction: column; gap: 40px; }
  .pain-vdivider { width: 100%; height: 1px; align-self: auto; margin: 0; }
  .pain-col { padding-right: 0; }
  .pain-big-num { font-size: 56px; }

  .cta-headline { font-size: 30px; }
  .section-headline { font-size: 30px; }
}
