.home-page {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-section {
    background: linear-gradient(120deg,
    color-mix(in srgb, var(--color-surface) 88%, var(--color-primary-light)),
    color-mix(in srgb, var(--color-background) 94%, var(--color-primary-light)));
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
}

.hero-grid {
    align-items: stretch;
}

.hero-title {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-2);
}

.hero-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    margin-bottom: var(--space-4);
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-semibold);
}

.hero-cta {
    font-size: 1rem;
    padding-inline: 1.35rem;
    padding-block: 0.75rem;
}

.hero-note {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    background: linear-gradient(145deg, var(--color-surface), color-mix(in srgb, var(--color-primary-light) 55%, var(--color-surface)));
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-strong);
    box-shadow: var(--shadow-lg);
    padding: var(--space-4);
    overflow: hidden;
    isolation: isolate;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--color-primary-light) 60%, transparent), transparent 55%),
    radial-gradient(circle at 85% 30%, color-mix(in srgb, var(--color-accent) 25%, transparent), transparent 40%);
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

.visual-header {
    border: 1px solid var(--color-border);
    background: color-mix(in srgb, var(--color-primary-light) 35%, var(--color-surface));
    padding: var(--space-3);
    margin-bottom: var(--space-3);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xs);
    position: relative;
    z-index: 1;
}

.visual-icon {
    font-size: 1.35rem;
}

.visual-label {
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

.visual-subtext {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.visual-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-3);
    position: relative;
    z-index: 1;
}

.visual-panel {
    background: color-mix(in srgb, var(--color-surface) 92%, var(--color-primary-light));
    border: 1px solid var(--color-border-strong);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.visual-panel-title {
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-2);
    color: var(--color-text-primary);
}

.visual-list,
.visual-steps {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.visual-list {
    list-style: none;
    padding-left: 0;
}

.visual-list li {
    display: flex;
    gap: var(--space-2);
    align-items: center;
    padding-block: 0.15rem;
}

.visual-bullet {
    display: inline-flex;
    width: 0.6rem;
    color: var(--color-primary);
    font-weight: var(--font-weight-bold);
}

.visual-steps {
    list-style: decimal;
    padding-left: 1.2rem;
}

.info-section {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-4);
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
}

.info-card {
    background: var(--color-surface-strong);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    height: 100%;
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-pill);
    color: var(--color-surface);
    font-weight: var(--font-weight-bold);
    font-size: 1rem;
    box-shadow: var(--shadow-xs);
}

.info-title {
    margin: 0;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
}

.info-text {
    color: var(--color-text-secondary);
    margin: 0;
}

.why-section {
    border-radius: var(--radius-xl);
}

.section-subtitle {
    color: var(--color-text-secondary);
}

.why-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: var(--space-2);
}

.why-list li {
    background: var(--color-primary-light);
    border-radius: var(--radius-pill);
    padding: 0.65rem 1rem;
    margin: 0;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-xs);
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.65rem;
    }

    .hero-visual {
        padding: var(--space-3);
    }
}
