/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #111111;
}
.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1.5rem;
}
.section-text {
    font-size: 1.125rem;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 1.8rem;
    color: #444444;
}
.section {
  padding: 2.8rem 0 1.8rem;
}

/* reduce space AFTER first section */
.section.tight-bottom {
  padding-bottom: 1.6rem;
}

/* reduce space BEFORE next section */
.section.tight-top {
  padding-top: 1.6rem;
}

/* Layout */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.container.narrow {
    max-width: 780px;
}
.section {
    padding: 3.5rem 0 2.5rem;
}
.section.alt-bg {
    background: #f9f9f9;
}

/* Top Logo Area */
.top-logo-area {
    position: relative;
    padding: 1.4rem 0 1rem;
    text-align: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 220px;
    width: auto;
    max-width: 85vw;
    display: block;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInTimeline 2.8s forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInTimeline {
    0%   { opacity: 0; transform: translateX(-100px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Hero – condensed */
.hero {
    text-align: center;
    padding: 0.5rem 0 2.5rem;
}
.hero-title {
    font-size: 2.8rem;
     line-height: 1.15;
  margin-bottom: 0.9rem;
}
.hero-subtitle {
    font-size: 1.5rem;
    max-width: 650px;
    margin: 0 auto 1.2rem;
    color: #444444;
}

.hero-subtitle .highlight {
    text-decoration: underline;
    text-decoration-color: #bfdbfe;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
    font-weight: 500;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto 0;
    flex-wrap: nowrap;
    justify-content: center;
}
.cta-btn {
    width: auto; /* both buttons will size to content */
    min-width: 200px; /* minimum width for both */
}
}
.hero-copy {
  margin-bottom: 1.6rem;
}

/* CTA Buttons – refined, modern, trustworthy */
.cta-btn.primary {
    background: #bfdbfe;
    color: #111111;
    border: none;
    padding: 0.85rem 1.8rem; /* KEEP at 1.8rem */
    border-radius: 0.625rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(191, 219, 254, 0.25);
}

.cta-btn.primary:hover {
    background: #f5f5f4;
    color: #bfdbfe;
    box-shadow: 0 4px 16px rgba(191, 219, 254, 0.35);
    transform: translateY(-1px); /* less dramatic lift */
}

.cta-btn.secondary {
    background: #f5f5f4;
    color: #111111;
    border: none;
    padding: 0.85rem 1.8rem; /* SAME as primary (was 1.2rem before) */
    border-radius: 0.625rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.cta-btn.secondary:hover {
    background: #bfdbfe;
    color: #f5f5f4;
    transform: translateY(-1px);
}
.cta-subcopy {
    display: block;
    font-size: 0.75rem;
    font-weight: 600; /* increased from 500 */
    margin-top: 0.35rem;
    opacity: 0.75; /* slightly more contrast */
    letter-spacing: 0.4px;
    text-transform: uppercase; /* makes it feel more official */
}
/* In-page Waitlist Box */
.waitlist-box {
    margin-top: 1.2rem;
    padding: 1.5rem;
    background: #f5f5f4; /* linen bg */
    border-radius: 1rem;
    border: 1px solid #bfdbfe;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    animation: slideDownFade 0.6s ease-out;
    overflow: hidden;
}

@keyframes slideDownFade {
    from { opacity: 0; height: 0; padding: 0; margin-top: 0; }
    to { opacity: 1; height: auto; padding: 1.5rem; margin-top: 1.2rem; }
}

/* Inline Form - modernized */
.waitlist-form-inline {
    display: flex;
    flex-direction: column;
    gap: 0.75rem; /* tighter spacing */
}

.inline-form-group {
    display: flex;
    gap: 0.5rem;
}

.inline-form-group input[type="email"] {
    flex: 1;
    padding: 0.85rem 1.2rem; /* slightly tighter */
    border: 1px solid #e5e5e5; /* lighter border */
    border-radius: 0.625rem; /* match button style */
    font-size: 1rem;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

.inline-form-group input[type="email"]:focus {
    outline: none;
    border-color: #bfdbfe; /* subtle brand color on focus */
}
/* City + State fields – match email input */
.location-input {
    width: 100%;
    padding: 0.85rem 1.2rem;
    margin-bottom: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 0.625rem;
    font-size: 1rem;
    background-color: #ffffff;
    color: #111111;
    transition: border-color 0.2s ease;
}

.location-input:focus {
    outline: none;
    border-color: #bfdbfe;
}

/* Dropdown arrow styling */
select.location-input {
    appearance: none;
    cursor: pointer;
    background-image:
      linear-gradient(45deg, transparent 50%, #666 50%),
      linear-gradient(135deg, #666 50%, transparent 50%);
    background-position:
      calc(100% - 18px) 55%,
      calc(100% - 13px) 55%;
    background-size: 5px 5px;
    background-repeat: no-repeat;
}

.inline-form-group .submit-arrow {
    background: #bfdbfe;
    color: #111111;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 0.625rem; /* match button style */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0; /* prevent squishing */
}

.inline-form-group .submit-arrow:hover {
    background: #a8c9f5; /* slightly darker blue */
    transform: scale(1.05);
}

/* Disclaimer text - much smaller and less intrusive */
.form-disclaimer {
    font-size: 0.7rem; /* reduced from default */
    color: #888888; /* lighter gray */
    text-align: center;
    line-height: 1.4;
    margin-top: 0.25rem;
}

.form-disclaimer a {
    color: #666666;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.form-disclaimer a:hover {
    color: #111111;
}
.form-success-inline {
    margin-top: 1rem;
    padding: 1.2rem 1.5rem;
    background: #f0f9ff; /* very light blue tint */
    border: 1px solid #bfdbfe;
    border-radius: 0.625rem; /* match form style */
    font-size: 1rem; /* slightly smaller */
    color: #1e3a8a; /* dark blue for contrast */
    font-weight: 600; /* reduced from 1200 (which is invalid anyway) */
    text-align: center;
    line-height: 1.5;
}

.form-success-inline p {
    margin: 0;
}

/* Badge/Chip – light linen */
.badge {
  background: #f7f6f3;     /* warm neutral */
  color: #2b2b2b;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #ebe8e1;
  white-space: nowrap;
}
/* Badge hover feedback */
.badge {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.badge:hover {
  background-color: #f2f1ec;
  border-color: #e2ded6;
}
.badge-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0 auto 0.6rem;
  margin-top: 0.05rem;
  justify-content: center;
}
@media (min-width: 769px) {
  .badge-row {
    margin-top: 0.05rem;
    margin-bottom: 0.8rem;
  }
}
/* Grid & Cards */
.grid {
    display: grid;
    gap: 2rem;
}
.two-col {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.card {
    background: white;
    padding: 2rem;
    border: 1px solid #eeeeee;
    border-radius: 0.6rem;
    text-align: center;
}
.icon {
    font-size: 2.2rem;
    color: #bfdbfe; /* dusty blue accent */
    margin-bottom: 1.2rem;
    display: block;
}

/* Profile Example */
.profile-example {
    display: flex;
    gap: 1.4rem;
    align-items: flex-start;
    background: white;
    padding: 2.5rem;
    border: 1px solid #eeeeee;
    border-radius: 0.6rem;
    flex-direction: column;
    max-width: 520px;
    margin: 0 auto;
}
/* Example profile entrance */
.profile-example {
  animation: profileFadeUp 0.45s ease-out both;
}

@keyframes profileFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-example h4 {
  text-align: center;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  letter-spacing: 0.4px;
}

@media (min-width: 769px) {
  .profile-example {
    padding-top: 1.8rem;
    gap: 1.0rem; 
  }
}
.avatar {
    margin: 0 auto 0.05rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.profile-info h3 {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.15rem;
    justify-content: center; 
}
.location {
    color: #555555;
    margin-bottom: 1.25rem;
    text-align: center;
}
@media (min-width: 769px) {
  .profile-info h3 {
    margin-top: 0.15rem;
  }

  .location {
    margin-bottom: 1rem;
  }
}
.milestones {
    display: flex;
    gap: 1rem;
    margin: 1.6rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid #eeeeee;
}
.milestone-item {
    flex: 1;
    text-align: center;
}
.milestone-item span {
    font-size: 0.8rem;
    color: #666666;
    display: block;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.milestone-item p {
    font-size: 1.1rem;
    font-weight: 500;
}
.insight {
    color: #444444;
    margin-top: 1.8rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

/* Steps — desktop-first, centered */
.steps {
  counter-reset: step;
  list-style: none;
  max-width: 520px;
  margin: 0 auto;
  padding-left: 1.55rem;
}

.steps li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  column-gap: 1.2rem;
  text-align: left;
  counter-increment: step;
  margin: 1.6rem 0;
  font-size: 1.08rem;
  align-items: start;
  justify-items: start;
}

.steps li::before {
  content: counter(step);
  width: 2.2rem;
  height: 2.2rem;
  background: #bfdbfe;
  color: white;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.95rem;
  font-weight: 600;
}

.not-for-list {
  margin-left: auto;
  margin-right: auto;
  transform: translateX(6rem); /* tweak as needed */
}
.not-for-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}

.not-for-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;

  font-size: 1.08rem;
  margin: 1.6rem 0;
  line-height: 1.5;
}

.not-for-list li::before {
  content: "✕";
  color: #e11d48; /* red */
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.15rem;
}
.center-cta {
    text-align: center;
    margin-top: 1.4rem;
    padding: 0 1.5rem; /* add horizontal padding */
}

/* Footer – dusty blue text/links */
.footer {
    background: white;
    color: #0a0a1a;
    padding: 1.6rem 0 1.2rem;
    text-align: center;
    font-size: 0.95rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer a {
    color: #0a0a1a; /* dusty milky blue prominent */
    text-decoration: underline;
    transition: color 0.3s;
}

.footer a:hover {
    color: #bfdbfe; /* linen/greysh on hover */
    text-decoration: underline;
}

.footer p {
    margin: 0.5rem 0;
}

.footer .x-icon {
    font-size: 1.2rem;
    margin-right: 0.4rem;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: #ffffff;
    margin: 8% auto;
    padding: 2.8rem 2.5rem 3rem;
    border-radius: 1rem;
    width: 85%;
    max-width: 720px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    position: relative;
    color: #111111;
    max-height: 85vh;
    overflow-y: auto;
    text-align: center;
    line-height: 1.65;
}

.modal-content h2 {
    font-size: 1.9rem;
    margin-bottom: 1.8rem;
    color: #111111;
}

.modal-content p {
    margin-bottom: 1.4rem;
    font-size: 1.03rem;
    color: #333333;
    text-align: left;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2.2rem;
    color: #888888;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover,
.close:focus {
    color: #111111;
}

/* Responsive */
@media (min-width: 769px) {
  /* desktop-only tweaks live here */
}
@media (max-width: 768px) {
    /* General section spacing - more consistent */
    .section {
        padding: 2.5rem 0 2rem !important; /* override the 4rem 0 3rem */
    }
    
    .section.tight-top {
        padding-top: 1rem !important;
    }
    
    .section.tight-bottom {
        padding-bottom: 1rem !important;
    }
    
    /* Hero adjustments */
    .hero {
        padding: 0.5rem 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
    font-size: 1.15rem; /* slightly bigger */
    line-height: 1.4; /* better line height */
    margin-bottom: 1.2rem;
    padding: 0 0.5rem; /* add breathing room */
}
    
    .hero-actions {
        width: 100%;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 100%;
        min-width: auto; /* remove min-width on mobile */
    }
     .cta-btn.secondary {
        padding: 0.85rem 1.8rem; /* restore full padding on mobile */
    }
    /* Logo area */
    .top-logo-area {
        padding: 1rem 0 0.5rem;
    }
    
    .logo-img {
        height: 120px;
        max-width: 90vw;
    }
    
    /* Waitlist box */
    .waitlist-box {
        padding: 1.2rem;
        margin-top: 1rem;
    }
    
    /* Testimonial */
    .testimonial-strip {
        padding: 1.5rem 0;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.2rem;
    }
    
    /* Cards */
    .card {
        padding: 1.5rem;
    }
    
    .grid {
        gap: 1.5rem;
    }
    
    /* Steps */
    .steps {
        max-width: 92%;
        padding-left: 0;
    }
    
    .steps li {
        grid-template-columns: 2rem 1fr;
        column-gap: 1rem;
        margin: 1.2rem 0;
        font-size: 1rem;
    }
    
    /* Profile example */
    .profile-example {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.2rem;
    }
    
    /* Milestones */
    .milestones {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Not-for list */
    .not-for-list {
        transform: none;
        padding: 0 1rem;
    }
    
    .not-for-list li {
        font-size: 1rem;
        margin: 1.2rem 0;
    }
    
    /* Footer */
    .footer {
        padding: 1.5rem 0 1rem;
        font-size: 0.9rem;
    }
    
    /* Modal */
    .modal-content {
        margin: 5% auto;
        padding: 1.5rem 1.2rem 2rem;
        width: 92%;
    }
}
/* Testimonial Strip */
.testimonial-strip {
    background: #f9f9f9;
    padding: 2rem 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.testimonial-card {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #333333;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666666;
    font-weight: 500;
}
/* Corner Launch Badge - text-only, no button styling */
.corner-launch-badge {
    position: fixed;
    top: 20px;
    right: 20px;
    color: #666666;
    background: rgba(255, 255, 255, 0.8); /* barely-there background */
    border: 1px solid #e5e5e5; /* light border */
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 999;
    animation: slideInRight 0.6s ease-out;
    backdrop-filter: blur(4px); /* subtle glass effect */
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hide on mobile to avoid clutter */
@media (max-width: 768px) {
    .corner-launch-badge {
        display: none;
    }
}
.why-section {
    padding: 2.5rem 0 2rem; /* tighter top/bottom */
}

.why-section .section-title {
    margin-bottom: 1.2rem; /* less space after title */
}

/* Why section mobile fix */
@media (max-width: 768px) {
    .why-section {
        padding: 1.5rem 0 2rem !important;
    }
    
    .why-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
}
.launch-badge-mobile {
    display: none; /* hide on desktop, you have corner badge */
    text-align: center;
    font-size: 0.8rem;
    color: #888888;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 500;
}

@media (max-width: 768px) {
    .launch-badge-mobile {
        display: block;
    }
}
/* Founding Member Benefits - Three blue checkmarks */
.founding-member-benefits {
    text-align: center;
    font-size: 0.85rem;
    color: #666666;
    margin-top: 0.4rem;
    margin-bottom: 0;
    letter-spacing: 0.3px;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}

.benefit-item::before {
    content: "✓ ";
    color: #bfdbfe; /* your brand blue */
    font-weight: 700;
    margin-right: 0.25rem;
}

/* Mobile: Stack vertically */
@media (max-width: 768px) {
    .founding-member-benefits {
        font-size: 0.8rem;
        margin-top: 0.3rem;
        flex-direction: column;
        gap: 0.3rem;
        padding: 0 1rem;
    }
}
/* Success message styling - Option 2 */
.success-headline {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.success-checkmark {
    color: #bfdbfe;
    font-weight: 700;
    margin-right: 0.3rem;
}

.success-cta {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 0;
}

.skool-link {
    color: #1e3a8a;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.skool-link:hover {
    color: #bfdbfe;
}
/* Floating FAQ Button */
.faq-float-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #bfdbfe;
    color: #111111;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(191, 219, 254, 0.4);
    transition: all 0.3s ease;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-float-btn:hover {
    background: #a8c9f5;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(191, 219, 254, 0.5);
}

.faq-float-btn:active {
    transform: scale(0.95);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .faq-float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}
/* Mobile adjustments */
@media (max-width: 768px) {
    .research-float-btn {
        bottom: 78px; /* 50px (FAQ height) + 8px gap + 20px (FAQ bottom) = 78px */
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}
/* FAQ Item Styling */
.faq-item {
    margin-bottom: 2rem;
    text-align: left;
}

.faq-item h3 {
    font-size: 1.15rem;
    color: #111111;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
}
/* Page Modal Overlay - for FAQ, Research, etc. */
.page-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.page-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 85vh;
    margin: 5vh auto;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.page-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.page-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.page-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .page-modal-content {
        width: 95%;
        height: 90vh;
        margin: 5vh auto;
    }
}