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

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--accent);
    color: var(--bg-dark);
}

:root {
    --bg-dark: #1a1410;
    --bg-medium: #2d2419;
    --bg-light: #3d2f23;
    --surface: #4a3a2e;
    --surface-light: #5c4a3d;

    --text-primary: #e8dcc8;
    --text-secondary: #c9bca8;
    --text-muted: #9a8a7a;

    --accent: #c67b5c;
    --accent-dim: #8a5a45;

    --border: rgba(232, 220, 200, 0.1);
}

body {
    font-family: "EB Garamond", Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--bg-dark);
    position: relative;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* Header */
header {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.logo-svg {
    height: 40px;
    width: auto;
    filter: brightness(0) saturate(100%) invert(91%) sepia(12%) saturate(434%)
        hue-rotate(337deg) brightness(98%) contrast(90%);
}

.hero {
    padding: 120px 0 100px;
    text-align: left;

    background-image: url(./assets/girl.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left bottom;
}

.hero-content {
    background-color: rgb(26, 20, 16, 0.6);
    margin: -20px;
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.subtitle {
    font-size: 22px;
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.6;
}

.what-it-is {
    padding: 100px 0;
    background: var(--bg-medium);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background-image: url(./assets/plant.png);
    background-repeat: no-repeat;
    background-size: auto 300px;
    background-position: right 200px bottom;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 80px;
}

.content-block h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--text-primary);
}

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

.feature-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-secondary);
    font-size: 19px;
}

.feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 24px;
    margin-top: -5px;
}

.feature-list.negative li::before {
    content: "×";
    font-size: 28px;
    margin-top: -12px;
}

/* Requirements Section */
.requirements {
    padding: 100px 0;
}

.requirements h2 {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text-primary);
}

.requirement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.req-card {
    background: var(--bg-medium);
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition:
        border-color 0.3s,
        transform 0.3s;
}

.req-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--accent);
}

.req-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.req-card ul {
    list-style: none;
    padding-left: 0;
}

.req-card li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 17px;
}

.req-card strong {
    color: var(--text-secondary);
}

footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
    background: var(--bg-medium);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 32px;
    filter: brightness(0) saturate(100%) invert(91%) sepia(12%) saturate(434%)
        hue-rotate(337deg) brightness(98%) contrast(90%);
    opacity: 0.6;
}

/* Screenshots Section */
.screenshots {
    padding: 100px 0;
    background: var(--bg-dark);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
}

.screenshot {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Subscribe Section */
.subscribe {
    padding: 100px 0;
    background: var(--bg-medium);
    border-top: 1px solid var(--border);
    text-align: center;
}

.subscribe h2 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.subscribe-form {
    display: flex;
    gap: 16px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 24px;
}

.subscribe-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    font-family: "EB Garamond", Georgia, serif;
    font-size: 18px;
    color: var(--text-primary);
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.subscribe-form input[type="email"]::placeholder {
    color: var(--text-muted);
}

.subscribe-form input[type="email"]:focus {
    border-color: var(--accent);
}

.subscribe-form button {
    padding: 16px 32px;
    font-family: "EB Garamond", Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--bg-dark);
    background: var(--accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-form button:hover {
    background: var(--accent-dim);
}

.subscribe-note {
    color: var(--text-muted);
    font-size: 16px;
    font-style: italic;
}

.subscribe-message {
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 18px;
}

.subscribe-message.success {
    background: rgba(76, 175, 80, 0.15);
    color: #81c784;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.subscribe-message.error {
    background: rgba(244, 67, 54, 0.15);
    color: #e57373;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

@media (max-width: 1600px) {
    .hero {
        padding-bottom: 420px;
        background-size: auto 400px;
    }

    .what-it-is {
        background-position: right 80px bottom;
    }
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }

    .what-it-is {
        background-position: right 20px bottom;
    }

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

    .subscribe-form input[type="email"],
    .subscribe-form button {
        width: 100%;
    }
}
