:root {
    --cream: #fdf6e3;
    --charcoal: #2b2b2b;
    --terracotta: #d65a27;
    --accent-orange: #e85d04; /* kept for any legacy uses */
    --text-dark: #2b2b2b;
    --text-light: #fff;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
    --radius-pill: 9999px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

/* Base */
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
}

/* Utilities (Tailwind-like) */
.text-dark { color: var(--text-dark); }
.text-cream { color: var(--cream); }
.text-charcoal { color: var(--charcoal); }
.text-terracotta { color: var(--terracotta); }
.text-accent-orange { color: var(--accent-orange); }
.bg-cream { background-color: var(--cream); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-terracotta { background-color: var(--terracotta); }
.bg-white\/80 { background-color: rgba(255,255,255,0.8); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-black\/5 { border-color: rgba(0,0,0,0.05); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-inner { box-shadow: inset 0 2px 4px rgba(0,0,0,0.05); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-pill { border-radius: var(--radius-pill); }
.transition-all { transition: var(--transition); }
.hover\:bg-terracotta\/90:hover { background-color: rgba(214,90,39,0.9); }
.hover\:text-accent-orange:hover { color: var(--accent-orange); }

/* Typography */
.heading-serif {
    font-family: 'Newsreader', serif;
    font-weight: 700;
    line-height: 1.2;
}
.heading-serif-semibold {
    font-family: 'Newsreader', serif;
    font-weight: 600;
}
.emphasis {
    font-style: italic;
    font-family: 'Newsreader', serif;
    color: var(--terracotta);
}
.body-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

/* Buttons */
.btn-primary {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    background-color: var(--terracotta);
    color: var(--cream);
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    width: auto; /* ensure not full-width */
    transition: background-color .2s ease, transform .1s ease;
}
.btn-primary:hover {
    background-color: #b44a1e; /* slightly darker */
    transform: translateY(-2px);
}
.btn-primary:active {
    transform: translateY(0);
}

/* Testimonial avatar */
.testimonial-avatar {
    @apply w-12 h-12 rounded-full flex-shrink-0;
}

/* Layout containers */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.site-header {
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.logo {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    font-weight: 700;
    font-family: 'Newsreader', serif;
}
.site-nav a {
    opacity: 0.8;
}
.site-nav a:hover {
    opacity: 1;
    color: var(--terracotta);
}

/* Hero */
.hero {
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(214,90,39,0.08) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}
.hero > .container {
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem */
.section-problem {
    padding: 6rem 0;
}
.section-problem h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.section-problem h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--terracotta);
    margin-top: 0.6rem;
    border-radius: 2px;
}
.problem-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}
.problem-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.problem-number {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--terracotta);
    color: var(--cream);
    border-radius: 50%;
    font-size: 1.5rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
    font-weight: 700;
}
.problem-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.problem-title::before {
    content: "";
    /* removed bullet */
    display: none;
}
.problem-summary {
    text-align: center;
    font-weight: 600;
    margin-top: 2rem;
    color: var(--text-dark);
}

/* Offer (inverted) */
.section-offer {
    padding: 6rem 0;
    background-color: var(--charcoal);
    color: var(--cream);
}
.section-offer h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
.offer-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}
.offer-card {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-inner);
    transition: background-color var(--transition), transform var(--transition);
}
.offer-card:hover {
    background-color: rgba(255,255,255,0.05);
    transform: translateY(-4px);
}
.offer-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--cream);
}
.offer-outcome {
    font-size: 1.25rem;
    margin-top: 2rem;
    text-align: center;
}
.section-offer .btn-primary {
    padding: 0.9rem 1.8rem;
    font-size: 1.1rem;
}

/* Beta */
.section-beta {
    padding: 6rem 0;
    background-color: var(--cream);
}
.section-beta h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.beta-details {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.beta-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}
.beta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.beta-marker {
    width: 0.75rem;
    height: 0.75rem;
    background-color: var(--terracotta);
    border-radius: 50%;
    margin-top: 0.25rem;
    flex-shrink: 0;
}
.beta-note {
    font-size: 0.85rem;
    margin-top: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

/* Testimonials */
.section-testimonials {
    padding: 6rem 0;
    background-color: var(--cream);
}
.section-testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
.testimonial-slider {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial {
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}
.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}
.testimonial cite {
    display: block;
    font-weight: 600;
    color: var(--terracotta);
    font-size: 0.95rem;
}

/* FAQ */
.section-faq {
    padding: 6rem 0;
    background-color: var(--cream);
}
.section-faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}
.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.faq-answer {
    font-size: 1rem;
    color: var(--text-dark/60);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background-color: var(--charcoal);
    color: var(--cream);
    padding: 3rem 0 1.5rem;
}
.footer-left,
.footer-center,
.footer-right {
    text-align: center;
}
@media (min-width: 768px) {
    .footer-left { text-align: left; }
    .footer-center { text-align: center; }
    .footer-right { text-align: right; }
}
.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: 'Newsreader', serif;
}
.footer-left p {
    margin-top: 0;
    font-size: 0.95rem;
}
.footer-center a,
.footer-right a {
    display: inline-block;
    margin: 0.25rem 0;
    opacity: 0.8;
}
.footer-center a:hover,
.footer-right a:hover {
    opacity: 1;
    color: var(--terracotta);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
    text-align: center;
    opacity: 0.7;
}

/* Video placeholder (hero) */
.aspect-w-16,
.aspect-h-9 {
    position: relative;
    width: 100%;
    padding-top: calc(9 / 16 * 100%);
}
.aspect-w-16 > *,
.aspect-h-9 > * {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

/* Thank You section */
.section-thankyou {
    padding: 6rem 0;
    background-color: var(--charcoal);
    color: var(--cream);
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .hero { padding-top: 6rem; }
    .hero h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-problem h2,
    .section-offer h2,
    .section-beta h2,
    .section-testimonials h2,
    .section-faq h2,
    .section-thankyou h2 {
        font-size: 1.5rem;
    }
    .problem-list { gap: 1rem; }
    .offer-grid { grid-template-columns: 1fr; }
    .testimonial-slider { grid-template-columns: 1fr; }
    .faq-item { padding-bottom: 1rem; margin-bottom: 1rem; }
}