* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, sans-serif;
    /* background: #fafafa; old slightly grey background*/
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.4;
}

html {
    scroll-behavior: smooth;
}

.landing {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 3rem;
}

:root {
    --card-bg: #fafafa;  /* Unified card background */
}


/* h3 unified */
.curious-card h3,
.step-header h3,
.card-title h3,
.featured-icon-title h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;  /* or margin-bottom: 0.5rem if you prefer */
}


/* -------------------------------
   HEADER / HERO
-------------------------------- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-top: 1rem;
    flex-wrap: wrap;
    border-bottom: 1px solid #ececec;
}

.header-left {
    flex: 1;
    min-width: 280px;
}

.header-left h1 {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #111 0%, #3a3a3a 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.75rem;
}

.subhead {
    font-size: 1.1rem;
    color: #5a5a5a;
    max-width: 520px;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.hero-note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 500;
}

.hero-audience {
    width: 100%;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #7f8c8d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-right {
  flex: 0 1 45%;
  max-width: 650px;
  min-width: 320px;       /* don't get too tiny before stacking */
}

.image-placeholder {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.header-image {
    width: 100%;
    max-width: min(650px, 45vw);
    height: auto;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}


/* ═══════════════════════════════════════════════════════════════
   MADE FOR THE CURIOUS SECTION
   ═══════════════════════════════════════════════════════════════ */

.curious-section {
    margin-bottom: 3rem;
    padding-top: 20px;
}


/* If you want to keep the header but use the same style as other sections: */
.curious-section .section-title {
    margin-bottom: 1.5rem;
}

.curious-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
}

.curious-tagline {
    font-size: 1rem;
    color: #7f8c8d;
    font-style: italic;
    margin: 0;
}

.curious-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.curious-card {
    background: var(--card-bg);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.curious-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.curious-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
}

.curious-icon img {
    width: 100%;
    height: 100%;
}

.curious-card p {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.5;
    margin: 0;
}



/* -------------------------------
   SCENARIOS SECTION
-------------------------------- */
.scenarios-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

/* Featured Card */
.featured-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: var(--card-bg);
    border: 1px solid #ebebeb;
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.featured-card:hover {
    transform: translateY(-3px);
    border-color: #d0d0d0;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
}

.featured-content {
    flex: 1;
}

.featured-badge {
    display: inline-block;
    background: #e8f6f3;
    color: #27ae60;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.featured-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 0.5rem;
}

.featured-content p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    max-width: 540px;
}

.featured-card .btn-select {
    display: inline-block;
    background: #3498db;
    border: 1px solid #d9d9d9;
    padding: 0.5rem 1.25rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2980b9;
    transition: all 0.2s ease;
}

.featured-image {
    flex-shrink: 0;
}

.featured-image img {
    width: 160px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ============================================
   FEATURED CARD — TWO-COLUMN TABLE VARIANT
   ============================================ */

.featured-card.featured-table {
    display: block;
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

/* Grid: left | divider | right */
.featured-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 2rem 2.5rem;
    align-items: stretch;
}

/* ── LEFT COLUMN ── */
.featured-col-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2.5rem;
}

.featured-icon-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.scenario-icon {
    font-size: 2rem;
    line-height: 1;
}


/* Inline badge */
.featured-badge-inline {
    display: inline-block;
    width: fit-content;
    background: #e8f4fd;       
    color: #3498db;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.featured-pitch {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.featured-table .btn-select {
    align-self: flex-start;
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 0.65rem 1.5rem;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.featured-table .btn-select:hover {
    background: #2980b9;
    transform: translateY(-1px);
}


/* ── RIGHT COLUMN ── */
.featured-col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2.5rem;
}

.bullets-header {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.feature-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.feature-bullets li {
    position: relative;
    padding-left: 2rem;              /* More space for the circle */
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #34495e;
    line-height: 1.4;
}

/* Blue circle with checkmark */
.feature-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    
    /* Circle background */
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: #e8f4fd;             /* Light blue circle */
    
    /* Checkmark styling */
    color: #3498db;                  /* Blue checkmark */
    font-weight: 700;
    font-size: 0.75rem;
    
    /* Center the checkmark inside the circle */
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.8rem;
    color: #95a5a6;
    margin-top: 0;
}


.coming-soon-section {
    margin-bottom: 3rem;
    padding-top: 1rem;
}


/* Standard Grid */
.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.card {
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid #ebebeb;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

.card-icon {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
    text-align: left;
}

.card-icon-image {
    width: 120px;
    height: auto;
    object-fit: contain;
    display: inline-block;
}

.card-content {
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}


.description {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.45;
    margin-bottom: 1.2rem;
    flex: 1;
}

.card-footer {
    margin-top: auto;
}


.coming-soon-section .card.locked {
    opacity: 0.50;
    filter: grayscale(0.8);
}

.btn-locked {
    background: #cdc6c6;
    border: 1px solid #e6e6e6;
    padding: 0.45rem 1.1rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #090909;
    cursor: default;
    font-family: inherit;
    width: 100%;
}


/* -------------------------------
COMING SOON: THREE-COLUMN ALIGNMENT
-------------------------------- */
.coming-soon-section .scenarios-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.coming-soon-section .card {
  height: 100%;
}

.coming-soon-section .card-content {
  height: 100%;
}

.coming-soon-section .description {
  margin-bottom: 1.5rem;
}



/* -------------------------------
   HOW IT WORKS
-------------------------------- */
.how-it-works-section {
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.2s ease;
}

.step-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.06);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #3498db;
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}


.step-desc {
    font-size: 0.95rem;
    color: #5a5a5a;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.step-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-bullets li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.85rem;
    color: #5a5a5a;
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.step-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}


/* -------------------------------
FAQ SECTION (Accordion)
-------------------------------- */
.faq-section {
  margin-bottom: 3rem;
  padding-top: 1rem;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e1e5e9;
}

.faq-item:first-child {
  border-top: 1px solid #e1e5e9;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;           /* Remove default triangle */
  user-select: none;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #3498db;
}

/* Custom chevron icon */
.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: #7f8c8d;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

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

.faq-answer {
  padding: 0 0 1.25rem 0;
  animation: faqFadeIn 0.25s ease;
}

.faq-answer p {
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.6;
  margin: 0;
}

.faq-steps {
  margin: 0.75rem 0;
  padding-left: 1.25rem;
}

.faq-steps li {
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.6;
  margin-bottom: 0.35rem;
}

.faq-steps li strong {
  color: #1a1a1a;
}


@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Remove default marker in Firefox */
.faq-question::-webkit-details-marker {
  display: none;
}



/* -------------------------------
   FOOTER
-------------------------------- */
.footer {
    text-align: center;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid #ececec;
    color: #6c6c6c;
    font-size: 0.85rem;
}

.footer p {
    margin: 0.25rem 0;
}

.footer-note {
    font-size: 0.8rem;
    color: #8a8a8a;
}

.footer-legal {
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

.footer-legal a {
  color: #3498db;
  text-decoration: none;
  margin: 0 0.25rem;
}

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

/* -------------------------------
   RESPONSIVE
-------------------------------- */


@media (max-width: 1024px) {
    .curious-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .coming-soon-section .scenarios-grid {
        grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
    .curious-section {
        border-radius: 20px;
    }
    
    .curious-header h2 {
        font-size: 1.5rem;
    }
    
    .curious-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .curious-card {
        padding: 1.25rem;
    }

    .featured-columns {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    .featured-divider {
        display: none;
    }
    .featured-col-left {
        padding-right: 0;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #e1e5e9;
        margin-bottom: 1.5rem;
    }
    .featured-col-right {
        padding-left: 0;
    }

    .header-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .header-image {
        max-width: min(480px, 85vw);   /* don't go full-bleed on phones */
    }

    .header {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .header-left h1 {
        font-size: 2rem;
    }

    
    .image-placeholder {
        max-width: 100%;
    }

    .featured-card {
        flex-direction: column-reverse;
        text-align: left;
        padding: 1.5rem;
    }

    .featured-content p {
        margin-left: 0;
        margin-right: 0;
    }

    .featured-image img {
        width: 120px;
    }

    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
    font-size: 0.95rem;
    padding: 1rem 0;
    }

    .faq-answer p {
    font-size: 0.9rem;
    }

    .faq-steps li {
    font-size: 0.9rem;
    }

}

@media (max-width: 480px) {
    .landing {
        padding: 1.25rem 1rem 2rem;
    }
    
    .subhead {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .step-card {
        padding: 1.25rem;
    }
}