/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-color: #1a1a2e;
    --text-light: #4a5568;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --hover-primary: #0f1419;
    --hover-secondary: #2d3748;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: #ffffff;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 2rem;
    padding-right: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.site-logo {
    height: 350px;
    width: auto;
}

/* Hero Section */
.hero {
    padding: 3rem 0 5rem;
    margin-top: 0;
    text-align: center;
    background-color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 16px;
    margin-bottom: 16px;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 1rem;
    margin-bottom: 24px;
    color: var(--text-color);
}

.hero-subline {
    display: block;
    margin-top: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}

.hero .support-text {
    margin-bottom: 3rem;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero .support-text p {
    margin-bottom: 0.5rem;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-note {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #6b7280;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--hover-primary);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
}

.section:first-of-type {
    border-top: none;
    padding-top: 6rem;
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.section .content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
}

.section .content p {
    margin-bottom: 1.5rem;
}

/* Lists */
.matters-list,
.vibecoding-list,
.build-list {
    list-style: none;
    padding-left: 0;
}

.matters-list li,
.vibecoding-list li,
.build-list li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.matters-list li:last-child,
.vibecoding-list li:last-child,
.build-list li:last-child {
    border-bottom: none;
}

.matters-list li strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Why This Matters - Restructured */
.why-matters {
    padding: 5rem 0;
}

.matters-group {
    margin-top: 3rem;
    max-width: 800px;
}

.matters-group:first-of-type {
    margin-top: 2rem;
}

.matters-group h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.matters-group ul {
    list-style: none;
    padding-left: 0;
}

.matters-group li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.1rem;
    color: var(--text-light);
}

.matters-group li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    padding: 4rem 0;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    margin-top: 2rem;
}

.footer-text {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-email {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-email a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

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

.site-footer {
    margin-top: 2rem;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.95rem;
}

.site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.site-footer a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .site-header {
        padding: 1rem 1.5rem;
    }

    .site-logo {
        height: 90px;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero .support-text {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section h2 {
        font-size: 2rem;
    }

    .section .content {
        font-size: 1rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .footer {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section h2 {
        font-size: 1.75rem;
    }
}
.footer-legal {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
}
.section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.section .content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.section ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  max-width: 600px;
  text-align: left;
}

.section ul li {
  padding: 0.5rem 0;
  font-size: 1.05rem;
  line-height: 1.6;
}
/* ---- FORCE CENTER ALIGNMENT FOR ALL SECTIONS ---- */
section.section {
  text-align: center;
}

section.section .container {
  max-width: 1100px;
  margin: 0 auto;
}

section.section p,
section.section .content {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Lists: centered block but readable left-aligned items */
section.section ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem auto 0;
  max-width: 600px;
  text-align: left;
}

section.section ul li {
  padding: 0.5rem 0;
  line-height: 1.6;
}

/* “Why This Matters” groups */
section.section .matters-group {
  max-width: 760px;
  margin: 2.5rem auto;
  text-align: center;
}
/* ===== WHY THIS MATTERS: 2-COLUMN LAYOUT ===== */

.why-matters .container {
  max-width: 900px;
  margin: 0 auto;
}

/* Grid layout */
.why-matters .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* Section title spans full width */
.why-matters h2 {
  grid-column: 1 / -1;
}

/* Column blocks */
.matters-group {
  text-align: left;
}

/* Headings inside columns */
.matters-group h3 {
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

/* Lists */
.matters-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.matters-group ul li {
  padding: 0.5rem 0;
  line-height: 1.6;
  border: none;          /* kill divider lines */
}

/* Subtle bullet */
.matters-group ul li::before {
  content: "• ";
  opacity: 0.5;
}

/* ===== MOBILE FALLBACK ===== */
@media (max-width: 768px) {
  .why-matters .container {
    grid-template-columns: 1fr;
  }

  .matters-group {
    text-align: center;
  }
}
/* ============================
   PREMIUM POLISH: WHY THIS MATTERS
   ============================ */

/* Give the whole section a soft background and spacing */
.why-matters {
  padding: 5rem 0;
  background: rgba(79, 70, 229, 0.04); /* very soft tint */
}

/* Keep layout centered and readable */
.why-matters .container {
  max-width: 980px;
  margin: 0 auto;
}

/* Make the section title feel intentional */
.why-matters h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

/* Turn the two groups into cards */
.matters-group {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  padding: 1.75rem 1.75rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

/* Card headings */
.matters-group h3 {
  text-align: left;
  margin: 0 0 1rem;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

/* Clean list style inside cards */
.matters-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each list item looks like a clean row */
.matters-group ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  line-height: 1.55;
}

/* Remove the last divider line */
.matters-group ul li:last-child {
  border-bottom: none;
}

/* Premium bullet: small gradient dot */
.matters-group ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  flex: 0 0 10px;
  opacity: 0.95;
}

/* Make the grid breathe (desktop) */
.why-matters .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
}

.why-matters h2 {
  grid-column: 1 / -1;
}

/* Mobile: stack cards and center text a bit */
@media (max-width: 768px) {
  .why-matters .container {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .matters-group h3 {
    text-align: center;
  }

  .matters-group ul li {
    justify-content: center;
  }
}
/* ============================
   ALIGN FIX: WHAT IS VIBECODING
   ============================ */

#vibecoding .container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

#vibecoding .content {
  margin-top: 1.5rem;
}

/* Keep the list visually centered but readable */
#vibecoding ul {
  max-width: 520px;
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

/* List items spacing */
#vibecoding ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  line-height: 1.6;
}

/* Remove last divider */
#vibecoding ul li:last-child {
  border-bottom: none;
}/
/* ============================
   PREMIUM LIST STYLE (VIBECODING + BUILD)
   ============================ */

/* Shared: nicer list block */
#vibecoding ul,
#what-build ul {
  max-width: 520px;
  margin: 2rem auto 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

/* Shared: remove those long divider lines and add structure */
#vibecoding ul li,
#what-build ul li {
  border-bottom: none !important;
  padding: 0.9rem 1rem;
  margin: 0.75rem 0;
  line-height: 1.6;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  position: relative;
}

/* Accent dot (matches your Why This Matters polish) */
#vibecoding ul li::before,
#what-build ul li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.95;
}

/* Space the text away from the dot */
#vibecoding ul li,
#what-build ul li {
  padding-left: 2.3rem;
}

/* Mobile: keep it neat */
@media (max-width: 768px) {
  #vibecoding ul,
  #what-build ul {
    max-width: 92%;
  }
}
/* ============================
   WHAT WE BUILD: GRID ON DESKTOP
   ============================ */
@media (min-width: 900px) {
  #what-build ul {
    max-width: 980px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  #what-build ul li {
    margin: 0; /* grid handles spacing */
    min-height: 96px;
    display: flex;
    align-items: center;
  }
/* WAITING LIST FORM — LARGE & READABLE */

.form-embed {
  width: 100%;
  max-width: 1100px;   /* wider on desktop */
  margin: 2.5rem auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  background: #fff;
}


    /* Waiting list form – FIXED SIZE */
.waiting-list .form-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 3rem auto;
  padding: 0;
}

.waiting-list iframe {
  display: block;
  width: 100%;
  min-height: 1200px;
  border: 0;
  border-radius: 12px;
}


@media (max-width: 768px) {
  .waiting-list iframe {
    min-height: 1400px;
  }
}











