:root {
    --bg: #000000;
    --text: #ffffff;
    --grey-light: #151515;
    --grey-mid: #333333;
    --pink: #ff2d55;

    /* A sharp, premium pink */
    --font-family: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

header {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    justify-content: center;
}

.logo {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    color: var(--pink);
}

main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.hero {
    width: 100%;
    margin-top: 4rem;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #ccc;
    padding-left: 2rem;
}

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

.cta-container {
    margin-top: 1rem;
    width: 100%;
    max-width: 250px;
}

.cta-note {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
    font-weight: 300;
}

.hero-video {
    width: 100%;
    border: 1px solid var(--grey-mid);
}

.hero-video video {
    width: 100%;
    display: block;
}

h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.04em;
}

.subtitle {
    font-size: 1.1rem;
    color: #bbb;
    font-weight: 300;
}

.pricing-card.minimal {
    border: 1px solid var(--grey-mid);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: border-color 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--text);
}

h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: center;
}

.features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ccc;
    font-weight: 300;
    font-size: 0.9rem;
}

.features li {
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    text-align: center;
}

.btn.primary {
    background-color: var(--text);
    color: var(--bg);
}

.btn.primary:hover {
    background-color: transparent;
    border-color: var(--text);
    color: var(--text);
}

.btn.secondary {
    background-color: transparent;
    border-color: var(--grey-mid);
    color: var(--text);
}

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

footer {
    padding: 4rem 2rem;
    color: #666;
    font-size: 0.8rem;
    font-weight: 300;
    text-align: center;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
}

/* Comparison Table */
.comparison {
    width: 100%;
    margin-bottom: 4rem;
    text-align: center;
}

.section-desc {
    color: #bbb;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    margin-top: 2rem;
    border: 1px solid var(--grey-mid);
    border-radius: 8px;
    background: var(--bg);
}

#comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: center;
}

#comparison-table th {
    background-color: var(--grey-light);
    color: var(--text);
    font-weight: 600;
    padding: 1.2rem;
    border-bottom: 2px solid var(--grey-mid);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

#comparison-table td {
    padding: 1.2rem;
    border-bottom: 1px solid var(--grey-mid);
    color: #ccc;
    font-weight: 300;
}

#comparison-table tr:last-child td {
    border-bottom: none;
}

#comparison-table tr.highlight {
    background-color: rgba(255, 255, 255, 0.05);
}

#comparison-table tr.highlight td {
    color: var(--text);
    font-weight: 600;
}

#comparison-table tr.highlight td:first-child {
    position: relative;
}

#comparison-table tr.highlight td:first-child::before {
    content: '★';
    position: absolute;
    left: 0.3rem;
    color: var(--text);
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-left,
    .hero-right {
        order: 2;
    }

    .hero-center {
        order: 1;
    }
}

.footnote {
    font-size: 0.8rem;
    color: #666;
    font-weight: 300;
    margin-top: 2rem;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

#comparison-table th,
#comparison-table td {
    white-space: nowrap;
}

#comparison-table td:nth-child(5),
#comparison-table td:nth-child(8) {
    white-space: normal;
    min-width: 150px;
}