/**
 * DeployNow — public landing page (pure CSS, pairs with base style.css: Inter, --primary, utilities).
 */

/* === Tokens & page shell === */
.landing-page {
  --landing-hero-from: #312e81;
  --landing-hero-via: var(--primary, #4f46e5);
  --landing-hero-to: #7c3aed;
  --landing-text-on-hero: #fff;
  --landing-surface: #f8fafc;
  --landing-card: #fff;
  --landing-border: rgba(148, 163, 184, 0.35);
  --landing-muted: #64748b;
  --landing-footer-bg: #0f172a;
  --landing-footer-text: #94a3b8;
  --landing-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  --landing-shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --nav-height: 4rem;
  color: #0f172a;
  background: var(--landing-surface);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

/* === Keyframes === */
@keyframes landing-fade-up {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes landing-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}
@keyframes landing-pulse-soft {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.75; }
}

@media (prefers-reduced-motion: no-preference) {
  .landing-page .reveal {
    animation: landing-fade-up 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 35%;
  }
  .landing-page .reveal-fast {
    animation: landing-fade-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
  }
}
@supports not (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .landing-page .reveal,
    .landing-page .reveal-fast {
      animation: landing-fade-up 0.7s ease forwards;
      animation-timeline: auto;
      animation-range: normal;
    }
  }
}

/* === Blobs === */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.blob--indigo {
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.55), transparent 65%);
}
.blob--violet {
  width: min(38vw, 24rem);
  height: min(38vw, 24rem);
  background: radial-gradient(circle at 70% 40%, rgba(139, 92, 246, 0.5), transparent 65%);
}
.blob--cyan {
  width: min(32vw, 20rem);
  height: min(32vw, 20rem);
  background: radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.25), transparent 70%);
}
@media (prefers-reduced-motion: no-preference) {
  .hero .blob--indigo { animation: landing-float 9s ease-in-out infinite; }
  .hero .blob--violet { animation: landing-float 11s ease-in-out infinite 1.5s; }
}

/* === Nav & buttons === */
.landing-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--nav-height);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.landing-nav.scrolled { background: rgba(255, 255, 255, 0.96); border-bottom-color: var(--landing-border); box-shadow: var(--landing-shadow); }
.landing-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: #0f172a;
  text-decoration: none;
}
.landing-nav__brand:hover { color: var(--primary, #4f46e5); }
.landing-nav__links { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); list-style: none; margin: 0; padding: 0; }
.landing-nav__links a { font-size: 0.9375rem; font-weight: 500; color: #475569; text-decoration: none; transition: color 0.2s ease; }
.landing-nav__links a:hover { color: var(--primary, #4f46e5); }
.landing-nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.landing-nav__toggle { display: none; padding: 0.5rem; border: 1px solid var(--landing-border); border-radius: 0.5rem; background: #fff; cursor: pointer; }
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.625rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.landing-btn--ghost { background: transparent; color: #334155; border-color: var(--landing-border); }
.landing-btn--ghost:hover { background: #f1f5f9; border-color: #cbd5e1; transform: translateY(-1px); }
.landing-btn--primary { background: var(--primary, #4f46e5); color: #fff; box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35); }
.landing-btn--primary:hover { background: #4338ca; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4); }
.landing-btn--on-dark { background: #fff; color: var(--primary, #4f46e5); }
.landing-btn--on-dark:hover { background: #f8fafc; transform: translateY(-2px); }
.landing-btn--outline-light { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.landing-btn--outline-light:hover { background: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

/* === Hero === */
.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(4rem, 12vw, 7rem) clamp(1.25rem, 4vw, 2.5rem) clamp(5rem, 14vw, 8rem);
  background: linear-gradient(145deg, var(--landing-hero-from) 0%, var(--landing-hero-via) 45%, var(--landing-hero-to) 100%);
  color: var(--landing-text-on-hero);
  overflow: hidden;
}
.hero .blob--indigo { top: -15%; right: -8%; }
.hero .blob--violet { bottom: -20%; left: -10%; }
.hero .blob--cyan { top: 40%; left: 35%; animation: landing-pulse-soft 6s ease-in-out infinite; }
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) { .hero__inner { grid-template-columns: 1fr 1fr; } }
.hero__content { text-align: center; }
@media (min-width: 900px) { .hero__content { text-align: left; } }
.hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  text-wrap: balance;
}
.hero-subtitle {
  margin: 0 0 1.75rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
@media (min-width: 900px) { .hero-subtitle { margin-left: 0; } }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 0.875rem; justify-content: center; }
@media (min-width: 900px) { .hero-buttons { justify-content: flex-start; } }
.hero-visual {
  position: relative;
  min-height: 280px;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--landing-shadow-lg);
  overflow: hidden;
}
.hero-visual__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-visual__dot { width: 0.65rem; height: 0.65rem; border-radius: 50%; background: #64748b; }
.hero-visual__dot:nth-child(1) { background: #f87171; }
.hero-visual__dot:nth-child(2) { background: #fbbf24; }
.hero-visual__dot:nth-child(3) { background: #34d399; }
.hero-visual__body {
  padding: 1.25rem 1.25rem 1.5rem;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.95);
  text-align: left;
}
.hero-visual__body .kv { color: #a5b4fc; }
.hero-visual__body .str { color: #86efac; }

/* === Section headers === */
.landing-section { padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem); }
.landing-section__header { max-width: 40rem; margin: 0 auto 3rem; text-align: center; }
.landing-section__eyebrow {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary, #4f46e5);
}
.landing-section__title { margin: 0 0 0.75rem; font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 700; letter-spacing: -0.02em; color: #0f172a; }
.landing-section__lead { margin: 0; font-size: 1.0625rem; line-height: 1.65; color: var(--landing-muted); }

/* === Features === */
.features-section { position: relative; background: #fff; }
.features-section .blob--indigo { top: 10%; left: -5%; opacity: 0.35; }
.features-section .blob--violet { bottom: 5%; right: -5%; opacity: 0.3; }
.features-grid { position: relative; z-index: 1; display: grid; gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  position: relative;
  padding: 1.75rem;
  background: var(--landing-card);
  border: 1px solid var(--landing-border);
  border-radius: 1rem;
  box-shadow: var(--landing-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--landing-shadow-lg); border-color: rgba(79, 70, 229, 0.25); }
.feature-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.125rem;
  font-size: 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(124, 58, 237, 0.1));
}
.feature-card__title { margin: 0 0 0.5rem; font-size: 1.125rem; font-weight: 600; color: #0f172a; }
.feature-card__desc { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--landing-muted); }

/* === How it works === */
.how-it-works { position: relative; background: var(--landing-surface); }
.how-it-works__steps {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  gap: 0;
}
@media (min-width: 768px) {
  .how-it-works__steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .how-it-works__steps::before {
    content: "";
    position: absolute;
    top: 1.75rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary, #4f46e5), rgba(124, 58, 237, 0.6));
    opacity: 0.35;
    z-index: 0;
  }
}
.step { position: relative; z-index: 1; padding: 1rem 0; text-align: center; }
@media (min-width: 768px) { .step { padding: 0 0.5rem; } }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(145deg, var(--primary, #4f46e5), #7c3aed);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
  transition: transform 0.25s ease;
}
.step:hover .step-number { transform: scale(1.06); }
.step-title { margin: 0 0 0.5rem; font-size: 1.0625rem; font-weight: 600; color: #0f172a; }
.step-desc { margin: 0; font-size: 0.9375rem; line-height: 1.55; color: var(--landing-muted); }
@media (max-width: 767px) {
  .step + .step { border-top: 1px solid var(--landing-border); padding-top: 1.75rem; margin-top: 0.5rem; }
}

/* === Benefits === */
.benefits-section { position: relative; background: #fff; overflow: hidden; }
.benefits-section .blob--cyan { top: -20%; right: -10%; opacity: 0.4; }
.benefits-split { max-width: 72rem; margin: 0 auto; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) {
  .benefits-split { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .benefits-split--reverse .benefits-split__text { order: 2; }
  .benefits-split--reverse .benefits-split__visual { order: 1; }
}
.benefits-split__text .landing-section__header { margin: 0 0 1.5rem; text-align: left; }
.benefits-list { margin: 0; padding: 0; list-style: none; }
.benefits-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #334155;
}
.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary, #4f46e5);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}
.benefits-split__visual {
  min-height: 220px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.06));
  border: 1px solid var(--landing-border);
}

/* FAQ: <details class="faq-item"><summary class="faq-question">…</summary><div class="faq-answer">…</div></details> */
.faq-section { background: var(--landing-surface); }
.faq-list { max-width: 42rem; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--landing-border); }
.faq-item:first-child { border-top: 1px solid var(--landing-border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.125rem 0;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: #0f172a;
  background: none;
  border: none;
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-question::after { transform: rotate(180deg); }
.faq-question:hover { color: var(--primary, #4f46e5); }
.faq-answer { padding: 0 0 1.125rem; font-size: 0.9375rem; line-height: 1.65; color: var(--landing-muted); }
.faq-answer p { margin: 0; }

/* === CTA band === */
.cta-section {
  position: relative;
  isolation: isolate;
  padding: clamp(3.5rem, 9vw, 5rem) clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  color: #fff;
  background: linear-gradient(125deg, #312e81 0%, var(--primary, #4f46e5) 50%, #6d28d9 100%);
  overflow: hidden;
}
.cta-section .blob--indigo { top: -30%; left: -10%; }
.cta-section .blob--violet { bottom: -40%; right: -15%; }
.cta-section__inner { position: relative; z-index: 1; max-width: 40rem; margin: 0 auto; }
.cta-section__title { margin: 0 0 0.75rem; font-size: clamp(1.75rem, 3.5vw, 2.25rem); font-weight: 700; letter-spacing: -0.02em; }
.cta-section__lead { margin: 0 0 1.75rem; font-size: 1.0625rem; line-height: 1.6; color: rgba(255, 255, 255, 0.88); }
.cta-section__actions { display: flex; flex-wrap: wrap; gap: 0.875rem; justify-content: center; }

/* === Footer === */
.landing-footer {
  background: var(--landing-footer-bg);
  color: var(--landing-footer-text);
  padding: clamp(3rem, 7vw, 4rem) clamp(1.25rem, 4vw, 2.5rem) 0;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  max-width: 72rem;
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); } }

.footer-brand { font-size: 1.125rem; font-weight: 700; color: #f1f5f9; margin: 0 0 0.75rem; }
.footer-about { margin: 0; font-size: 0.9375rem; line-height: 1.6; max-width: 22rem; }
.footer-heading { margin: 0 0 1rem; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #cbd5e1; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { font-size: 0.9375rem; color: var(--landing-footer-text); text-decoration: none; transition: color 0.2s ease; }
.footer-links a:hover { color: #e2e8f0; }
.footer-bottom { max-width: 72rem; margin: 0 auto; padding: 1.25rem 0; font-size: 0.8125rem; color: #64748b; text-align: center; }

/* === Mobile nav & a11y motion === */
@media (max-width: 899px) {
  .landing-nav__toggle { display: inline-flex; }
  .landing-nav__panel {
    position: fixed;
    inset: var(--nav-height) 0 auto 0;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--landing-border);
    box-shadow: var(--landing-shadow-lg);
    display: none;
    flex-direction: column;
    gap: 1rem;
  }
  .landing-nav[data-open="true"] .landing-nav__panel { display: flex; }
  .landing-nav__links { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .landing-nav__actions { width: 100%; flex-direction: column; }
  .landing-nav__actions .landing-btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === Bridging Styles (HTML class aliases) === */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  color: #0f172a;
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo:hover { color: var(--primary, #4f46e5); }
.nav-logo .logo-icon { color: var(--primary, #4f46e5); font-size: 1.25rem; }
.nav-logo .logo-img { height: 40px; width: auto; object-fit: contain; }

.landing-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
}
.landing-nav .nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}
.landing-nav .nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}
.landing-nav .nav-links a:hover { color: var(--primary, #4f46e5); }
.landing-nav .mobile-nav-toggle {
  display: none;
  padding: 0.5rem;
  border: 1px solid var(--landing-border, #cbd5e1);
  border-radius: 0.5rem;
  background: #fff;
  cursor: pointer;
  font-size: 1.25rem;
}
@media (max-width: 899px) {
  .landing-nav .mobile-nav-toggle { display: inline-flex; }
  .landing-nav .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height, 4rem);
    left: 0; right: 0;
    padding: 1.5rem;
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid var(--landing-border, #cbd5e1);
    box-shadow: 0 25px 50px -12px rgba(15,23,42,0.18);
  }
  .landing-nav .nav-links.active { display: flex; }
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  gap: clamp(2.5rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) { .hero .container { grid-template-columns: 1fr 1fr; } }

.hero-content { text-align: center; }
@media (min-width: 900px) { .hero-content { text-align: left; } }

.blob-1 {
  position: absolute;
  width: min(42vw, 28rem);
  height: min(42vw, 28rem);
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
  top: -15%;
  right: -8%;
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.55), transparent 65%);
}
.blob-2 {
  position: absolute;
  width: min(38vw, 24rem);
  height: min(38vw, 24rem);
  border-radius: 50%;
  filter: blur(64px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 0;
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle at 70% 40%, rgba(139, 92, 246, 0.5), transparent 65%);
}

.features-section,
.how-it-works,
.benefits-section,
.faq-section {
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 2.5rem);
}

.features-section .container,
.how-it-works .container,
.benefits-section .container,
.faq-section .container,
.cta-section .container {
  max-width: 72rem;
  margin: 0 auto;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.125rem;
  font-size: 1.5rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(124, 58, 237, 0.1));
}
.feature-card h3 { margin: 0 0 0.5rem; font-size: 1.125rem; font-weight: 600; color: #0f172a; }
.feature-card p { margin: 0; font-size: 0.9375rem; line-height: 1.6; color: var(--landing-muted, #64748b); }

.steps-grid {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  gap: 0;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .steps-grid::before {
    content: "";
    position: absolute;
    top: 1.75rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary, #4f46e5), rgba(124, 58, 237, 0.6));
    opacity: 0.35;
    z-index: 0;
  }
}
@media (max-width: 767px) {
  .steps-grid .step + .step { border-top: 1px solid var(--landing-border, #cbd5e1); padding-top: 1.75rem; margin-top: 0.5rem; }
}

.benefits-text h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #0f172a;
}

.benefits-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-card {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(124, 58, 237, 0.06));
  border: 1px solid var(--landing-border, #cbd5e1);
  border-radius: 1rem;
  padding: 2rem;
  width: 100%;
}
.stat-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-item {
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary, #4f46e5);
  letter-spacing: -0.02em;
}
.stat-lbl {
  display: block;
  font-size: 0.8125rem;
  color: var(--landing-muted, #64748b);
  margin-top: 0.25rem;
}

.cta-section {
  text-align: center;
}
.cta-section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 700;
}
.cta-section p {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.88);
}
.cta-section .hero-buttons {
  justify-content: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.75rem;
}
.footer-brand .logo-icon { color: #818cf8; }
.footer-brand .logo-img { height: 36px; width: auto; object-fit: contain; }

.footer-col p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.landing-footer .container {
  max-width: 72rem;
  margin: 0 auto;
}

/* === Auth Pages (Login / Signup) === */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #312e81 0%, #4f46e5 50%, #7c3aed 100%);
  padding: 2rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
}

.auth-wrapper {
  width: 100%;
  max-width: 440px;
}

.auth-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  color: #4f46e5;
  margin-bottom: 1.5rem;
}

.auth-logo .logo-icon {
  font-size: 1.25rem;
}
.auth-logo .logo-img {
  height: 48px; width: auto; object-fit: contain;
}

.auth-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #18181b;
  margin: 0 0 0.25rem;
}

.auth-header p {
  color: #71717a;
  margin: 0;
  font-size: 0.95rem;
}

.auth-form .form-group {
  margin-bottom: 1.25rem;
}

.auth-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #18181b;
  margin-bottom: 0.375rem;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e4e4e7;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #18181b;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.auth-form input:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
  background: #fff;
}

.auth-form .btn {
  margin-top: 0.5rem;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e4e4e7;
}

.auth-footer p {
  margin: 0.375rem 0;
  font-size: 0.9rem;
  color: #71717a;
}

.auth-footer a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
}

.auth-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .auth-card {
    padding: 1.75rem 1.5rem;
  }
  .auth-page {
    padding: 1rem;
  }
}
