/* Simplified CSS Variables */
:root {
    --background: #0f0f0f;
    --text: #f0f0f0;
    --text-muted: #a0a0a0;
    --border: #2a2a2a;
    --card-bg: #1a1a1a;
    --primary: #ffffff;
    --accent: #d4773a; /* More muted orange */
    --accent-muted: #d4773a15; /* Even more transparent */
    --spacing: 1.5rem;
    --radius: 8px;
    --font-size-base: 16px;
    --line-height: 1.6;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: var(--line-height);
    font-size: var(--font-size-base);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { 
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text);
}
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    color: var(--accent);
    text-decoration: underline;
}

a:hover {
    opacity: 0.8;
}

/* Layout */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing);
}

section {
    padding: calc(var(--spacing) * 3) 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: oklch(0% 0 0 / 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing);
    max-width: 1000px;
    margin: 0 auto;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--text);
}

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

/* Buttons */
.cta-button {
    background: var(--accent);
    color: var(--background);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.cta-button:hover {
    background: var(--text);
    transform: translateY(-1px);
}

.cta-button.simple {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.cta-button.full-width {
    width: 100%;
}

.price, .subtext {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(80px + var(--spacing)) var(--spacing) var(--spacing);
}

.hero-content {
    max-width: 1000px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-title {
    margin-bottom: 0;
    color: var(--text);
    text-align: left;
}

.hero-subtitle {
    margin-bottom: 0;
}

.hero-subtitle p {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: left;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

.hero-cta {
    margin-top: 0;
    text-align: left;
}

.disclaimer {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: left;
}

/* Content Sections */
.stats-section {
    background: var(--card-bg);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    padding: 2rem 1.5rem;
    background: var(--background);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.stats-conclusion {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--background);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.stats-conclusion p {
    font-size: 1.1rem;
    color: var(--text);
    font-style: italic;
}

/* What's Inside Section */
.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.item {
    text-align: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: transform 0.2s ease;
}

.item:hover {
    transform: translateY(-2px);
}

.item-image {
    margin-bottom: 1rem;
}

.item-image img {
    width: 100%;
    max-width: 150px;
    height: auto;
    border-radius: var(--radius);
}

.item h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.item p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.plus-three {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--background);
    border: 2px dashed var(--border);
}

.plus-three h3 {
    color: var(--text);
}

/* Why Buy Section */
.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.reason {
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.reason h3 {
    color: var(--text);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.testimonial {
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.2;
    font-family: serif;
}

.testimonial p {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1rem;
    font-style: italic;
    margin-top: 1rem;
}

.testimonial cite {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: normal;
}

/* FAQ */
.faq {
    background: var(--card-bg);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--background);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 500;
    list-style: none;
    background: var(--background);
    transition: background-color 0.2s ease;
}

.faq-item summary:hover {
    background: var(--card-bg);
}

.faq-item summary::after {
    content: '+';
    float: right;
    font-size: 1.25rem;
    color: var(--accent);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 1.25rem 1.25rem;
    background: var(--card-bg);
}

.faq-content p {
    color: var(--text-muted);
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: var(--card-bg);
}

.cta-container {
    max-width: 400px;
    margin: 0 auto;
}

.final-disclaimer {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.footer-brand .logo {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: oklch(0% 0 0 / 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--card-bg);
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid var(--border);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--text);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-body {
    padding: 1.5rem;
}

.modal-intro {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Form */
.preorder-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--background);
    color: var(--text);
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    accent-color: var(--accent);
}

.checkbox-group label {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Success Content */
.success-content {
    text-align: center;
}

.success-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.share-section p {
    color: var(--text);
    margin-bottom: 1rem;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.share-btn {
    padding: 0.75rem 1.5rem;
    background: var(--background);
    color: var(--text-muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-btn:hover {
    color: var(--accent);
    background: var(--card-bg);
    border-color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing: 1rem;
        --font-size-base: 14px;
    }
    
    /* Navigation */
    .nav {
        padding: 0.75rem var(--spacing);
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 0.7rem;
    }
    
    .cta-button.simple {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    /* Hero Section */
    .hero {
        min-height: 90vh;
        padding: calc(80px + var(--spacing)) var(--spacing) var(--spacing);
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-text {
        display: contents;
    }
    
    .hero-title {
        grid-row: 1;
        text-align: center;
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        line-height: 1.2;
        margin-bottom: 0;
    }
    
    .hero-visual {
        grid-row: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-subtitle {
        grid-row: 3;
        margin-bottom: 0;
    }
    
    .hero-subtitle p {
        text-align: center;
        font-size: 1rem;
    }
    
    .hero-cta {
        grid-row: 4;
        text-align: center;
        margin-top: 0;
    }
    
    .cta-button.primary {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
    }
    
    .disclaimer {
        text-align: center;
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .hero-image {
        max-width: 80%;
        height: auto;
    }
    
    /* Stats Section */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stats-conclusion {
        margin-top: 2rem;
        padding: 1rem;
    }
    
    .stats-conclusion p {
        font-size: 1rem;
    }
    
    /* Items Grid */
    .items-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .item {
        padding: 1rem;
    }
    
    .item-image img {
        max-width: 120px;
    }
    
    /* Reasons */
    .reasons {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .reason {
        padding: 1rem;
    }
    
    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.5rem 0;
    }
    
    .testimonial {
        padding: 1rem;
    }
    
    /* FAQ */
    .faq-item summary {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-content {
        padding: 0 1rem 1rem;
    }
    
    /* Final CTA */
    .final-cta {
        padding: calc(var(--spacing) * 2) 0;
    }
    
    .cta-button.large {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .final-disclaimer {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        max-width: 400px;
        margin: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .share-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    /* Section Spacing */
    section {
        padding: calc(var(--spacing) * 2) 0;
    }
    
    /* Typography adjustments */
    h2 {
        font-size: clamp(1.3rem, 4vw, 1.7rem);
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    .section-intro {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing: 0.75rem;
        --font-size-base: 14px;
    }
    
    /* Navigation */
    .nav {
        padding: 0.5rem var(--spacing);
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 0.65rem;
    }
    
    /* Hero */
    .hero {
        min-height: 85vh;
        padding: calc(70px + var(--spacing)) var(--spacing) var(--spacing);
    }
    
    .hero-content {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-text {
        display: contents;
    }
    
    .hero-title {
        grid-row: 1;
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        line-height: 1.1;
        margin-bottom: 0;
        text-align: center;
    }
    
    .hero-visual {
        grid-row: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .hero-subtitle {
        grid-row: 3;
        margin-bottom: 0;
    }
    
    .hero-subtitle p {
        font-size: 0.9rem;
        line-height: 1.4;
        text-align: center;
    }
    
    .hero-cta {
        grid-row: 4;
        text-align: center;
        margin-top: 0;
    }
    
    .cta-button.primary {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 0.75rem;
    }
    
    .disclaimer {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .hero-image {
        max-width: 70%;
    }
    
    /* Stats */
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem 0.75rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Items Grid - 2 columns on very small screens */
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .item {
        padding: 0.75rem;
    }
    
    .item h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .item-image img {
        max-width: 80px;
    }
    
    .plus-three {
        grid-column: 1 / -1;
        padding: 1rem;
    }
    
    .plus-three h3 {
        font-size: 1rem;
    }
    
    /* Reasons */
    .reason {
        padding: 0.875rem;
    }
    
    .reason h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .reason p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* FAQ */
    .faq-item summary {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .faq-content {
        padding: 0 0.875rem 0.875rem;
    }
    
    .faq-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    /* Final CTA */
    .cta-button.large {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .final-disclaimer {
        font-size: 0.8rem;
    }
    
    /* Modal */
    .modal-content {
        width: 98%;
        margin: 0.5rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 0.875rem;
    }
    
    .form-group input,
    .form-group select {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .checkbox-group label {
        font-size: 0.8rem;
    }
    
    /* Typography */
    h2 {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-bottom: 0.75rem;
    }
    
    h3 {
        font-size: 1rem;
    }
    
    p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .section-intro {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Spacing */
    section {
        padding: calc(var(--spacing) * 1.5) 0;
    }
    
    .container {
        padding: 0 var(--spacing);
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-title {
        grid-row: 1;
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 0;
    }
    
    .hero-visual {
        grid-row: 2;
    }
    
    .hero-subtitle {
        grid-row: 3;
    }
    
    .hero-cta {
        grid-row: 4;
    }
    
    .items-grid {
        grid-template-columns: 1fr;
    }
    
    .item-image img {
        max-width: 100px;
    }
    
    .cta-button.primary,
    .cta-button.large {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .modal-content {
        width: 100%;
        margin: 0;
        border-radius: 0;
        height: 100vh;
        overflow-y: auto;
    }
}
