:root {
    --bg-base: #FAF8F4;
    --bg-card: #FFFFFF;
    --bg-chalk: #F5F2ED;
    --text-white: #2C2A26;
    --text-muted: #6B6760;
    --accent-blue: #8B7A6B;
    --accent-teal: #D4A574;
    --accent-teal-glow: rgba(212, 165, 116, 0.15);
    --border-subtle: rgba(44, 42, 38, 0.12);
}

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

body {
    background-color: var(--bg-base);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background: linear-gradient(135deg, #FAF8F4 0%, #F5F2ED 100%);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.text-highlight {
    color: var(--accent-teal);
    position: relative;
    display: inline-block;
}

.text-blue {
    color: var(--accent-teal);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    background: rgba(250, 248, 244, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
}

.neo-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

/* Spotlight & Background */
.spotlight {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(800px circle at var(--x, 50%) var(--y, 50%), rgba(212, 165, 116, 0.08), transparent 40%);
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-teal);
    top: -100px;
    right: -100px;
    animation: float 15s ease-in-out infinite;
    opacity: 0.08;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 50px);
    }
}

/* Layout Utilities */
section {
    position: relative;
    padding: 6rem 2rem;
    z-index: 2;
}

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

.center {
    text-align: center;
}

/* Hero */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 8rem;
}

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

.badge-pill {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(212, 165, 116, 0.15);
    border: 1px solid rgba(212, 165, 116, 0.3);
    color: var(--accent-teal);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.hero-trust {
    font-size: 0.9rem;
    color: var(--text-muted);
    opacity: 0.7;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-image-container {
    margin-top: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    padding: 20px;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    bottom: 0;
    background: rgba(212, 165, 116, 0.05);
    transform: rotate(-2deg);
    z-index: -1;
    border-radius: 20px;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border: 1px solid var(--border-subtle);
    display: block;
}

/* Buttons */
.btn-primary {
    background: var(--accent-teal);
    color: #FFFFFF;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary:hover {
    background: #C89664;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.25);
}

.btn-secondary {
    color: var(--text-white);
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
    color: var(--accent-teal);
    border-color: var(--accent-teal);
}

.btn-text {
    color: var(--accent-teal);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-text:hover {
    gap: 0.8rem;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.problem-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 2rem;
    border: 8px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: rotate(-1.5deg);
    transition: transform 0.3s ease;
}

.problem-card:nth-child(even) .card-image {
    transform: rotate(1.5deg);
}

.problem-card:hover .card-image {
    transform: rotate(0deg) scale(1.02);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent-teal);
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Insight Section */
.insight-section {
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 165, 116, 0.03) 50%, transparent 100%);
}

.quote-box blockquote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.insight-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Solution / How it works */
.solution-section .section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: 1rem;
    max-width: 600px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.step-item {
    position: relative;
    padding-top: 2rem;
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 165, 116, 0.1);
    position: absolute;
    top: -10px;
    left: 0;
    z-index: -1;
}

.step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--accent-teal);
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Outcome / Split Section */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-title-sm {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.li-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-teal);
    flex-shrink: 0;
}

.block-text {
    display: block;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Chat Simulation */
.visual-block {
    position: relative;
    padding: 2rem;
}

.visual-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: -4rem;
    margin-left: -2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border: 12px solid #fff;
    transform: rotate(-3deg);
    position: relative;
    z-index: 2;
}

.image-caption {
    position: absolute;
    bottom: 2rem;
    right: 0;
    background: #fff;
    padding: 0.5rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-muted);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transform: rotate(2deg);
    z-index: 4;
    border: 1px solid var(--border-subtle);
}

.chat-simulation {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    z-index: 3;
    margin-top: 2rem;
}

.chat-header {
    background: rgba(212, 165, 116, 0.05);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #FF5F56;
}

.yellow {
    background: #FFBD2E;
}

.green {
    background: #27C93F;
}

.chat-header span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-left: 0.5rem;
    font-family: monospace;
}

.chat-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 85%;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-message.ai {
    background: rgba(212, 165, 116, 0.12);
    color: var(--text-white);
    border-bottom-left-radius: 2px;
    border: 1px solid rgba(212, 165, 116, 0.25);
    align-self: flex-start;
}

.chat-message.user {
    background: rgba(44, 42, 38, 0.06);
    color: var(--text-muted);
    border-bottom-right-radius: 2px;
    align-self: flex-end;
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item[open] {
    border-color: var(--accent-teal);
    background: rgba(212, 165, 116, 0.08);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
    padding-right: 3rem;
}

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

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-teal);
    font-weight: 300;
}

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

.faq-item p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item[open] p {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 8rem 2rem;
}

.cta-section .section-title {
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.waitlist-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
}

.waitlist-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
    font-size: 1rem;
    color: var(--text-white);
    outline: none;
    transition: border-color 0.2s;
}

.waitlist-input:focus {
    border-color: var(--accent-teal);
}

.cta-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

/* Footer */
.main-footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .nav-container {
        padding: 0 1rem;
    }

    .problem-grid,
    .grid-split {
        grid-template-columns: 1fr;
    }

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

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .waitlist-form {
        flex-direction: column;
    }
}