:root {
  --bg: #050609;
  --bg-alt: #0c1016;
  --bg-soft: #111925;
  --card-bg: #121926;
  --border-subtle: rgba(255, 255, 255, 0.06);

  --primary: #20c997; /* teal/emerald accent */
  --primary-soft: rgba(32, 201, 151, 0.14);
  --accent: #f5c76b;  /* soft gold */
  --accent-soft: rgba(245, 199, 107, 0.16);

  --text-main: #f8fafc;
  --text-muted: #9ca3af;
  --text-soft: #6b7280;

  --danger: #f97373;

  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.55);

  --container-width: 1120px;

  --transition-fast: 0.18s ease-out;
  --transition-med: 0.24s ease;
}

/* Light mode overrides */
:root[data-theme="light"] {
  --bg: #f8fafc;
  --bg-alt: #eef2ff;
  --bg-soft: #e5e7eb;
  --card-bg: #ffffff;
  --border-subtle: rgba(15, 23, 42, 0.08);

  --text-main: #020617;
  --text-muted: #4b5563;
  --text-soft: #6b7280;

  --shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.12);
}

/* Global reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #111827 0, #020617 55%, #020617 100%);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Basic elements */
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button {
  font-family: inherit;
}

/* Layout */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  max-width: 640px;
  margin: 0 0 2.5rem;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem;
}

.section-header p {
  margin: 0;
}

/* Typography */
h1, h2, h3 {
  color: var(--text-main);
}

.muted {
  color: var(--text-muted);
}

.small {
  font-size: 0.88rem;
}

.tiny {
  font-size: 0.78rem;
}

/* HEADER */
.site-header {
  padding: 1.25rem 0 3.5rem;
  background:
    radial-gradient(circle at top left, rgba(32, 201, 151, 0.16) 0, transparent 50%),
    radial-gradient(circle at bottom right, rgba(245, 199, 107, 0.13) 0, transparent 55%),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.94));
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  object-fit: contain;
}

.brand-text h1 {
  font-size: 1.3rem;
  margin: 0;
}

.brand-text small {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  color: var(--text-muted);
  padding-bottom: 0.15rem;
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.main-nav a:hover {
  color: var(--text-main);
  border-color: rgba(245, 199, 107, 0.7);
  transform: translateY(-1px);
}

/* Header controls */
.controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toggle {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.75);
  color: var(--text-muted);
  font-size: 0.8rem;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.toggle:hover {
  background: rgba(15, 23, 42, 0.95);
  color: var(--text-main);
  transform: translateY(-0.5px);
}

/* Buttons */
.btn {
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: background var(--transition-med), color var(--transition-med), transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med);
}

.btn-cta {
  background: #f97316;
  color: #020617;
  padding-inline: 1.5rem;
  box-shadow: 0 10px 30px rgba(248, 113, 22, 0.45);
}

.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(248, 113, 22, 0.6);
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #20c997);
  color: #020617;
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(34, 197, 94, 0.7);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.7);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.lead {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.3rem;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.86rem;
}

.hero-features li {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

/* Hero media card */
.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-media-card {
  position: relative;
  width: 100%;
  max-width: 360px;
  padding: 0.9rem;
  border-radius: 999px;
  background: radial-gradient(circle at top, rgba(32, 201, 151, 0.25), transparent 60%);
}

.hero-glow {
  position: absolute;
  inset: 15%;
  border-radius: 40px;
  background: radial-gradient(circle at 20% 0, rgba(245, 199, 107, 0.22) 0, transparent 55%);
  filter: blur(14px);
  z-index: 0;
}

.hero-illustration {
  position: relative;
  z-index: 1;
  border-radius: 36px;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.hero-large {
  width: 100%;
  height: auto;
}

/* Generic cards / boxes */
.three-boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.box {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-med), background var(--transition-med);
}

.box h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.05rem;
}

.box p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  border-color: rgba(148, 163, 184, 0.5);
}

/* Numbered boxes */
.three-boxes.numbered .box {
  position: relative;
  padding-top: 2.2rem;
}

.step-pill {
  position: absolute;
  top: 1rem;
  left: 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--primary-soft);
  color: #a7f3d0;
}

/* Showcase images */
.showcase-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.featured-image {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  background: #020617;
}

/* Pattern section */
.pattern-section {
  background-image: radial-gradient(circle at top, rgba(32, 201, 151, 0.18) 0, transparent 55%);
  background-color: #020617;
  border-block: 1px solid rgba(148, 163, 184, 0.16);
}

/* Screens */
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.screen {
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  background: #020617;
}

/* Signup */
.signup-section {
  text-align: center;
}

.waitlist-form {
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 520px;
}

.waitlist-form input[type="email"] {
  flex: 1 1 220px;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-main);
  font-size: 0.94rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--text-soft);
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(32, 201, 151, 0.4);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem 1.4rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.testimonial-photo {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: 0.75rem;
  border: 2px solid var(--primary-soft);
}

.testimonial-card blockquote {
  margin: 0 0 0.6rem;
  font-size: 0.96rem;
  line-height: 1.7;
}

.testimonial-card cite {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  position: relative;
}

.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.pricing-card .price {
  margin: 0 0 0.9rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.pricing-card .price span {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card ul li + li {
  margin-top: 0.45rem;
}

.pricing-featured {
  border: 1px solid rgba(245, 199, 107, 0.7);
  box-shadow: 0 20px 60px rgba(245, 199, 107, 0.55);
  transform: translateY(-4px);
}

.pricing-featured .badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.75rem;
  background: var(--accent-soft);
  color: #fefce8;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Founder */
.founder-section {
  border-top: 1px solid var(--border-subtle);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.founder-copy p {
  margin-bottom: 0.85rem;
}

.founder-signoff {
  margin-top: 0.6rem;
  font-weight: 500;
}

.founder-photo-wrap {
  display: flex;
  justify-content: flex-end;
}

.founder-photo {
  max-width: 260px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* Investors */
.investor-section {
  border-top: 1px solid var(--border-subtle);
}

.investor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.investor-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.investor-card ul {
  padding-left: 1rem;
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* Comparison */
.comparison-wrap {
  margin-top: 0.75rem;
}

.comparison-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.comparison-table {
  display: grid;
  gap: 0.5rem;
  border-radius: var(--radius-lg);
  padding: 0.9rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 0.6rem;
  align-items: stretch;
  font-size: 0.88rem;
}

.comparison-header {
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-soft);
}

.comparison-cell {
  padding: 0.6rem 0.7rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(31, 41, 55, 0.95);
}

.comparison-cell.highlight {
  background: linear-gradient(135deg, rgba(32, 201, 151, 0.18), rgba(15, 23, 42, 0.98));
  border-color: rgba(45, 212, 191, 0.7);
}

.comparison-table .comparison-header .comparison-cell {
  background: transparent;
  border-color: transparent;
}

.comparison-table .comparison-header .highlight {
  background: transparent;
}

.comparison-table .comparison-row:not(.comparison-header) .comparison-cell:first-child {
  font-weight: 500;
}

.comparison-wrap .tiny {
  margin-top: 0.65rem;
}

/* Blog */
.blog-section {
  border-top: 1px solid var(--border-subtle);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

.blog-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.blog-card p {
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

.blog-link {
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 500;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  font-size: 0.96rem;
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item p {
  margin: 0.6rem 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at top, #020617 0, #020617 100%);
  padding: 2.4rem 0 2.8rem;
  margin-top: 2rem;
}

.centre {
  text-align: center;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.footer-title {
  margin: 0;
  font-weight: 600;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-subtle);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.footer-social a:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(148, 163, 184, 0.8);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.8);
}

.footer-social .icon {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-meta {
  margin: 0.15rem 0;
  color: var(--text-soft);
  font-size: 0.8rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
.desktop-break {
  display: none;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media {
    justify-content: center;
  }

  .hero-media-card {
    max-width: 320px;
    margin-top: 1rem;
  }

  .founder-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .founder-photo-wrap {
    justify-content: flex-start;
  }

  .three-boxes,
  .screenshot-grid,
  .testimonials-grid,
  .pricing-grid,
  .investor-grid,
  .blog-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-featured {
    transform: none;
  }

  .comparison-row {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    grid-template-areas:
      "feature feature"
      "mbh muzz";
  }

  .comparison-row .comparison-cell:first-child {
    grid-area: feature;
  }

  .comparison-row .comparison-cell:nth-child(2) {
    grid-area: mbh;
  }

  .comparison-row .comparison-cell:nth-child(3) {
    grid-area: muzz;
  }
}

@media (max-width: 800px) {
  .topbar {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .controls {
    margin-left: auto;
  }

  .site-header {
    padding-bottom: 2.5rem;
  }

  .section {
    padding: 3.2rem 0;
  }
}

@media (max-width: 640px) {
  .desktop-break {
    display: none;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-images {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-brand {
    justify-content: flex-start;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

.footer-links {
  margin: 12px 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  color: #b9c1ff;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
.seo-bridge {
  margin-top: 18px;
  font-size: 16px;
  color: #cfd6ff;
}

.seo-link {
  color: #7da2ff;
  font-weight: 600;
  text-decoration: none;
}

.seo-link:hover {
  text-decoration: underline;
}


