:root {
  --bg: #f8fafc;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #ffffff;
  --surface-soft: #f8fbff;
  --text: #0f172a;
  --muted: #5b6474;
  --line: #e2e8f0;
  --line-strong: #d6deea;
  --primary: #0f172a;
  --primary-soft: #1e293b;
  --accent: #1d4ed8;
  --accent-soft: #dbeafe;
  --teal: #0f766e;
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 40px rgba(15, 23, 42, 0.06);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: #dbeafe;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.12), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 44%, #f8fafc 100%);
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.brand strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
  font-weight: 800;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a,
.mobile-panel a,
.site-footer a {
  text-decoration: none;
  color: var(--muted);
  transition: 0.25s ease;
}

.nav-links a:hover,
.mobile-panel a:hover,
.site-footer a:hover {
  color: var(--text);
}

.nav-links a {
  font-size: 0.96rem;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 1.25rem;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 18px;
}

.mobile-panel.open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1f2937);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.btn-primary:hover {
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.24);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  background: #fff;
}

.btn-light {
  color: var(--text);
  background: #fff;
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
}

.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  padding: 72px 0 44px;
}

.hero-copy h1,
.section-heading h2,
.trust-band h2,
.cta-shell h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 5rem);
  max-width: 760px;
}

.hero-copy h1 span {
  color: #475569;
}

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 640px;
  margin: 24px 0 0;
}

.hero-badge,
.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: #334155;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}

.section-badge.dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
  color: #dbe5f1;
}

.hero-actions,
.cta-actions,
.team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-tags span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  padding: 10px 14px;
  border-radius: 18px;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-card,
.feature-card,
.step-card,
.category-card,
.partner-card,
.team-card,
.testimonial-card,
.waitlist-card,
.stat-card,
.faq-item,
.search-box {
  background: var(--surface-solid);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: var(--shadow-soft);
}

.hero-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  z-index: 0;
}

.hero-card::before {
  width: 120px;
  height: 120px;
  background: rgba(59, 130, 246, 0.16);
  top: 60px;
  right: -20px;
}

.hero-card::after {
  width: 90px;
  height: 90px;
  background: rgba(20, 184, 166, 0.16);
  left: -16px;
  top: 150px;
}

.dashboard-top,
.search-box,
.dashboard-grid {
  position: relative;
  z-index: 1;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 20px;
  color: white;
  background: linear-gradient(135deg, #0f172a, #111827);
}

.dashboard-top h3 {
  margin: 3px 0 0;
  font-size: 1.25rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #94a3b8;
}

.eyebrow.light {
  color: #cdd7e4;
}

.live-pill {
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.search-box {
  margin: 24px;
  border-radius: 24px;
  background: #f8fbff;
  padding: 18px;
}

.search-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.search-head h4,
.waitlist-card h3,
.feature-card h3,
.step-card h3,
.category-card h3,
.team-card h3,
.partner-card span,
.testimonial-card strong {
  margin: 0;
}

.search-head span {
  color: var(--muted);
  font-size: 0.92rem;
}

input {
  width: 100%;
  min-height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: #fff;
  padding: 0 14px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

input:focus {
  border-color: #94a3b8;
  box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.15);
}

.inline-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 12px 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 24px 24px;
}

.dashboard-grid article,
.partner-card,
.team-card,
.testimonial-card,
.waitlist-card,
.feature-card,
.step-card,
.category-card,
.stat-card {
  border-radius: var(--radius);
}

.dashboard-grid article {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.dashboard-grid h5 {
  margin: 0 0 6px;
  font-size: 0.98rem;
}

.dashboard-grid p,
.feature-card p,
.step-card p,
.category-card p,
.team-card p,
.testimonial-card p,
.waitlist-card p,
.section-heading p,
.trust-band p,
.site-footer p,
.faq-item p {
  margin: 0;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 10px;
}

.stat-card {
  padding: 26px 18px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.ticker-wrap {
  padding: 28px 0 14px;
}

.ticker-shell {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 14px 0;
  animation: scrollTicker 28s linear infinite;
  white-space: nowrap;
  color: #334155;
  font-weight: 600;
}

@keyframes scrollTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 96px 0;
}

.alt-section {
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading h2,
.trust-band h2,
.cta-shell h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading p,
.trust-band p,
.cta-shell p {
  margin-top: 16px;
  font-size: 1.04rem;
}

.feature-grid,
.steps-grid,
.partner-grid,
.team-grid,
.testimonial-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.steps-grid,
.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.partner-grid {
  grid-template-columns: repeat(6, 1fr);
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.step-card,
.category-card,
.team-card,
.testimonial-card {
  padding: 24px;
}

.feature-card:hover,
.step-card:hover,
.category-card:hover,
.partner-card:hover,
.team-card:hover,
.testimonial-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-card,
.step-card,
.category-card,
.partner-card,
.team-card,
.testimonial-card,
.stat-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.icon-circle {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
  color: #0f172a;
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.step-number {
  display: inline-flex;
  min-width: 48px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.category-card {
  display: flex;
  align-items: center;
  gap: 18px;
}

.category-card > span {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.trust-band {
  background: linear-gradient(135deg, #0f172a, #111827, #1e293b);
  color: #fff;
  padding: 88px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.trust-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-points article {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.partner-card {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.65rem;
  padding: 18px;
  text-align: center;
}

.partner-card span {
  color: #334155;
  font-size: 0.95rem;
}

.testimonial-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 1.02rem;
}

.avatar-placeholder {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #0f172a;
  background: linear-gradient(135deg, #dbeafe, #e0f2fe, #eff6ff);
  margin-bottom: 20px;
}

.team-card span {
  display: inline-block;
  margin-top: 6px;
  color: #334155;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border-radius: 22px;
  padding: 0 22px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-weight: 700;
  color: var(--text);
  position: relative;
  padding-right: 28px;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 0 22px;
}

.cta-section {
  padding: 0 0 100px;
}

.cta-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  border-radius: 36px;
  overflow: hidden;
  padding: 42px;
  background: linear-gradient(135deg, #0f172a, #111827, #1e293b);
  color: #fff;
  box-shadow: var(--shadow);
}

.waitlist-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.waitlist-card h3 {
  color: #fff;
  margin: 6px 0 18px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.waitlist-card input {
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.waitlist-card input::placeholder {
  color: #bfcadb;
}

.site-footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 0.7fr;
  gap: 28px;
  padding: 42px 0 48px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer h4 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.site-footer p,
.site-footer a,
.site-footer span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1120px) {
  .feature-grid,
  .partner-grid,
  .steps-grid,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero,
  .trust-grid,
  .cta-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero {
    padding-top: 40px;
    gap: 28px;
  }

  .stats,
  .category-grid,
  .trust-points {
    grid-template-columns: 1fr 1fr;
  }

  .section,
  .trust-band {
    padding: 76px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .hero-copy h1 {
    font-size: 2.6rem;
  }

  .inline-inputs,
  .dashboard-grid,
  .stats,
  .feature-grid,
  .steps-grid,
  .category-grid,
  .partner-grid,
  .team-grid,
  .testimonial-grid,
  .trust-points {
    grid-template-columns: 1fr;
  }

  .dashboard-top,
  .cta-shell,
  .waitlist-card,
  .hero-card,
  .feature-card,
  .step-card,
  .category-card,
  .partner-card,
  .team-card,
  .testimonial-card,
  .faq-item,
  .stat-card {
    border-radius: 22px;
  }

  .cta-shell {
    padding: 26px;
  }

  .search-box,
  .dashboard-grid {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-tags {
    gap: 10px;
  }

  .hero-tags span {
    width: 100%;
  }
}


/*Updated footer*/
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 44px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18);
  font-weight: 800;
}

.brand-mark svg {
  width: 30px;
  height: 40px;
  display: block;
}

.footer-brand {
  margin-bottom: 16px;
  align-items: center;
}

.footer-brand-copy {
  display: inline-block;
}

.footer-brand-mark {
  margin-bottom: 0;
}

.site-footer p,
.site-footer .footer-grid > div > a:not(.footer-brand),
#year-line {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
}
/*End here*/