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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #ffffff;
    color: #111;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* NAV */
nav {
    margin-bottom: 60px;
}

.logo {
    font-weight: 700;
    font-size: 18px;
}

/* HERO */
.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.subtext {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
}

/* EXAMPLE */
.example {
    margin: 60px 0;
}

.example-box {
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 24px;
    background: #fafafa;
    max-width: 600px;
}

.example-header {
    font-weight: 600;
    margin-bottom: 16px;
    color: #555;
}

.example-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.example-item {
    font-size: 18px;
}

.example-item strong {
    font-weight: 600;
}

.warning {
    color: #d97706;
}

/* FORM */
.form-section {
    margin-top: 40px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
}

input,
textarea {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

textarea {
    min-height: 100px;
    resize: vertical;
    display: none;
}

button {
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background: #111;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

button:hover {
    background: #333;
}

.note {
    margin-top: 12px;
    font-size: 14px;
    color: #888;
}

/* OPTIONS */
.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s ease;
}

.option:hover {
    border-color: #111;
}

.option input {
    accent-color: #111;
}

.question {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 34px;
    }
}