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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.4;
    font-size: 16px;
    max-width: 375px;
    margin: 0 auto;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
    padding: 30px 20px 20px;
    text-align: center;
    background-color: transparent;
}

.logo {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    background-color: transparent;
}

/* Hero Section */
.hero {
    padding: 30px 20px;
    text-align: left;
}

.hero-headline {
    margin-bottom: 20px;
}

.headline-large {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    display: block;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-features {
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0;
}

.hero-features li {
    font-size: 18px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.hero-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    margin-top: 30px;
}

.cta-text {
    margin-bottom: 20px;
    text-align: center;
}

.cta-bold {
    font-size: 22px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.cta-small {
    font-size: 16px;
    font-weight: 400;
    color: #cccccc;
}

/* Email Form */
.email-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.email-input {
    width: 100%;
    padding: 16px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.email-input:focus {
    border-color: #E63946;
}

.email-input::placeholder {
    color: #666666;
}

.btn-primary {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #E63946 0%, #FF5252 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.success-message {
    color: #4CAF50;
    font-size: 14px;
    text-align: center;
    min-height: 20px;
    font-weight: 500;
}

/* Sections */
.section {
    padding: 50px 20px;
    border-top: 1px solid #1a1a1a;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #cccccc;
}

.section-text {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.section-text.emphasis {
    font-weight: 600;
    font-size: 20px;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    margin: 25px 0;
    padding-left: 0;
}

.feature-list li {
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.4;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 20px;
}

.feature-list-simple {
    list-style: none;
    margin: 20px 0;
    padding-left: 0;
}

.feature-list-simple li {
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
}

.feature-list-simple li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: bold;
}

/* Video Section */
.video-flow {
    margin: 30px 0;
    text-align: center;
}

.flow-text {
    font-size: 18px;
    line-height: 1.8;
}

.flow-step {
    font-weight: 600;
}

.flow-arrow {
    font-size: 24px;
    color: #E63946;
    display: block;
    margin: 10px 0;
}

.video-container {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.preview-video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
}

/* Image Containers */
.image-container {
    margin: 30px 0;
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.feature-image {
    width: 100%;
    height: auto;
    display: block;
}

.feature-explanation {
    margin: 25px 0;
}

/* Result Text */
.result-text {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 18px;
}

/* Why Section */
.why-section {
    background-color: #0f0f0f;
}

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 60px 20px;
}

.onboarding-text {
    margin-top: 20px;
    font-size: 14px;
    color: #999999;
    line-height: 1.5;
}

/* Footer */
.footer {
    padding: 30px 20px 40px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-item {
    margin-bottom: 15px;
    font-size: 14px;
    color: #cccccc;
}

.footer-item .icon {
    color: #ffffff;
}

.verified-badge {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #4CAF50;
    color: #ffffff;
    border-radius: 50%;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    margin-right: 5px;
    font-weight: bold;
}

.icon {
    margin-right: 8px;
    font-size: 16px;
    color: #ffffff;
}

/* Footer links */
.footer-link {
    color: #cccccc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link:focus-visible {
    outline: 2px solid #E63946;
    outline-offset: 3px;
    border-radius: 6px;
}

/* Responsive adjustments */
@media (max-width: 375px) {
    .headline-large {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }
}

@media (min-width: 376px) {
    .logo {
        width: 550px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection Color */
::selection {
    background-color: #E63946;
    color: #ffffff;
}

/* Remove default focus outline, add custom */
*:focus {
    outline: none;
}

button:focus-visible,
input:focus-visible {
    outline: 2px solid #E63946;
    outline-offset: 2px;
}
