:root {
    --bg-color: rgb(251, 251, 246);
    --text-color: rgb(17, 17, 17);
    --font-stack: "Merriweather", Georgia, serif;
}

body {
    margin: 0;
    font-family: var(--font-stack);
    padding: 0;
    padding-top: 40px;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 28.8px;
    -webkit-font-smoothing: antialiased;
    text-align: left;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

h1 {
    font-size: 2.8rem;
    line-height: 71.68px;
    font-weight: 700;
    margin-bottom: 32px;
    margin-top: 0;
    margin: 5rem 0 2rem 0;
    display: flex;
    align-items: baseline;
}

h2 {
    font-size: 1.8rem;
    line-height: 1.5;
    margin: 5rem 0 2rem 0;
    font-weight: bold;
}

.subtitle {
    font-size: 1.8rem;
    line-height: 43.2px;
    font-weight: 700;
    margin-bottom: 32px;
    margin-top: 0;
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 20.8px;
    font-weight: 700;
}

p {
    font-size: 1.25rem;
    line-height: 35.2px;
    /* 1.6 */
    margin-bottom: 32px;
}

footer p {
    font-size: 1.1rem;
    margin: 3rem 0 3rem 0;
    display: block;
    color: #808080;
}

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

.hero .wave {
    display: inline-block;
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%;
    margin-right: 1rem;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.intro {
    text-align: left;
    margin-bottom: 3rem;
}

.intro p {}

/* Maxim Blocks */
.maxim-block {
    margin-bottom: 64px;
}

.maxim-header {
    margin-bottom: 32px;
}

.maxim-header h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.maxim-header p {
    font-size: 1.125rem;
    color: #444;
    line-height: 1.5;
}

.scenario {
    margin-bottom: 2rem;
}

.chat-context {
    text-align: left;
}

.chat-label {
    display: none;
}

.chat-message {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 1.375rem;
    /* Matching p size */
    font-weight: 700;
    font-style: normal;
    color: var(--text-color);
}

/* Comparison Grid - List Style */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.column h3 {
    margin-bottom: 20.8px;
    font-size: 1.2rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin-bottom: 0px;
    display: flex;
    align-items: flex-start;
    padding-bottom: 16px;
}

.mark {
    margin-right: 8px;
    font-size: 1.25rem;
    line-height: 35.2px;
    display: block;
}

.text-container {
    flex: 1;
}

.text {
    display: block;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 35.2px;
}

.rationale {
    display: block;
    margin-top: 4px;
    font-size: 1.125rem;
    color: #555;
    font-style: italic;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.25rem;
        line-height: 1.3;
    }

    .subtitle {
        font-size: 1.5rem;
    }
}