/* ==================== SEELIO PAGE — Mental Health Tracking App ==================== */

/* ── Reduce section padding ── */
.seelio-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

@media (min-width: 768px) {
    .seelio-section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }
}

.seelio-section .section__header {
    margin-bottom: 36px;
    text-align: center;
}

.seelio-section .section__title {
    text-align: center;
}

.seelio-section__sub {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 8px auto 0;
    text-align: center;
}

/* ── Section Badge Small ── */
.seelio-badge-sm {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 100px;
    margin-bottom: 16px;
}

/* ============================================================
   HERO
   ============================================================ */
.seelio-hero {
    padding: calc(var(--header-height) + 48px) var(--container-padding) 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.seelio-hero__glow {
    position: absolute;
    top: -200px;
    left: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(14, 165, 233, 0.04) 40%, transparent 70%);
    pointer-events: none;
    animation: seelioHeroGlow 20s ease-in-out infinite;
}

@keyframes seelioHeroGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, 20px) scale(1.05); }
    66% { transform: translate(-20px, -15px) scale(0.95); }
}

@media (min-width: 768px) {
    .seelio-hero {
        padding-top: calc(var(--header-height) + 64px);
        padding-bottom: 80px;
    }
}

.seelio-hero__inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .seelio-hero__inner {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.seelio-hero__content { text-align: center; }
@media (min-width: 768px) { .seelio-hero__content { text-align: left; } }

/* ── Badge ── */
.seelio-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 18px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 100px;
    margin-bottom: 24px;
}

.seelio-badge-pulse {
    width: 8px;
    height: 8px;
    background: #38bdf8;
    border-radius: 50%;
    animation: seelioPulse 2s infinite;
}

@keyframes seelioPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7); }
    50% { box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
}

/* ── Title ── */
.seelio-hero__title {
    font-size: clamp(52px, 10vw, 88px);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
    line-height: 1;
}

.seelio-logo {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.4));
}

.seelio-hero__subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
    max-width: 460px;
}

@media (min-width: 768px) { .seelio-hero__subtitle { font-size: 18px; } }
@media (max-width: 767px) { .seelio-hero__subtitle { margin-left: auto; margin-right: auto; } }

.seelio-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

@media (min-width: 768px) { .seelio-hero__actions { justify-content: flex-start; } }

/* ── Glowing Button ── */
.btn--glow-seelio {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
    border-color: #38bdf8 !important;
    color: #fff !important;
}

.btn--glow-seelio:hover {
    box-shadow: 0 8px 32px rgba(56, 189, 248, 0.4);
    color: #fff !important;
}

.btn--glow-seelio::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, #38bdf8, #8b5cf6, #38bdf8);
    background-size: 200% 100%;
    border-radius: inherit;
    z-index: -1;
    animation: seelioGlowMove 3s linear infinite;
    opacity: 0.6;
    filter: blur(8px);
}

@keyframes seelioGlowMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.btn--lg {
    padding: 16px 32px;
    font-size: 15px;
}

/* ============================================================
   PHONE MOCKUP
   ============================================================ */
.seelio-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.seelio-phone {
    width: 260px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 36px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05) inset;
    animation: seelioPhoneFloat 6s ease-in-out infinite;
    position: relative;
}

@keyframes seelioPhoneFloat {
    0%, 100% { transform: translateY(0) rotateX(2deg); }
    50% { transform: translateY(-10px) rotateX(0deg); }
}

@media (min-width: 768px) {
    .seelio-phone { width: 280px; }
}

.seelio-phone__notch {
    width: 100px;
    height: 24px;
    background: var(--color-bg);
    border-radius: 0 0 16px 16px;
    margin: 0 auto 12px;
}

.seelio-phone__screen {
    background: var(--color-bg);
    border-radius: 24px;
    padding: 24px 20px;
}

.seelio-phone__header {
    text-align: center;
    margin-bottom: 20px;
}

.seelio-phone__date {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.seelio-phone__greeting {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

/* Mood Emojis */
.seelio-phone__moods {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.seelio-mood {
    font-size: 28px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    transition: all 0.2s ease;
    cursor: pointer;
    opacity: 0.5;
}

.seelio-mood--active {
    opacity: 1;
    border-color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
    box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
    transform: scale(1.1);
}

/* Sleep Bar */
.seelio-phone__sleep {
    margin-bottom: 16px;
}

.seelio-phone__sleep-label {
    display: block;
    font-size: 11px;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    margin-bottom: 6px;
}

.seelio-phone__sleep-bar {
    height: 6px;
    background: var(--color-bg-secondary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 4px;
}

.seelio-phone__sleep-fill {
    height: 100%;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    border-radius: 3px;
}

.seelio-phone__sleep-value {
    display: block;
    font-size: 11px;
    color: var(--color-text-secondary);
    font-family: var(--font-mono);
}

/* Note */
.seelio-phone__note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--color-bg-secondary);
    border: 1px dashed var(--color-border);
    border-radius: 10px;
    margin-bottom: 16px;
}

.seelio-phone__note-icon { font-size: 14px; }

.seelio-phone__note-text {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* Save Button */
.seelio-phone__btn {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
}

/* ============================================================
   PROBLEMS GRID
   ============================================================ */
.seelio-problems {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) { .seelio-problems { grid-template-columns: repeat(2, 1fr); } }

.seelio-problem {
    padding: 28px 24px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.seelio-problem:hover {
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(56, 189, 248, 0.08);
}

.seelio-problem__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    color: #38bdf8;
    margin-bottom: 16px;
}

.seelio-problem__icon svg { width: 22px; height: 22px; }

.seelio-problem__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.seelio-problem__text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================================
   STEPS
   ============================================================ */
.seelio-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) { .seelio-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .seelio-steps { grid-template-columns: repeat(4, 1fr); } }

.seelio-step {
    padding: 28px 24px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.seelio-step:hover {
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-4px);
}

.seelio-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 800;
    border-radius: 12px;
    margin-bottom: 16px;
}

.seelio-step__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.seelio-step__text {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================================
   REPORT SECTION
   ============================================================ */
.seelio-report {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

@media (min-width: 768px) {
    .seelio-report {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }
}

.seelio-report__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.seelio-report__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.seelio-report__list li svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    color: #38bdf8;
    margin-top: 2px;
}

/* Report Card Preview */
.seelio-report__preview {
    display: flex;
    justify-content: center;
}

.seelio-report__card {
    width: 100%;
    max-width: 320px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.seelio-report__card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.seelio-report__card-logo {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.seelio-report__card-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-muted);
    padding: 3px 10px;
    background: var(--color-bg-tertiary);
    border-radius: 100px;
}

.seelio-report__card-period {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.seelio-report__card-chart {
    margin-bottom: 16px;
    position: relative;
}

.seelio-report__card-chart svg {
    width: 100%;
    height: 60px;
}

.seelio-report__card-chart-label {
    font-size: 10px;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.seelio-report__card-trend {
    font-size: 12px;
    color: var(--color-text-secondary);
    padding: 8px 12px;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 8px;
    margin-bottom: 12px;
}

.seelio-report__card-trend span {
    color: #38bdf8;
    font-weight: 700;
}

.seelio-report__card-notes {
    margin-bottom: 16px;
}

.seelio-report__card-notes-title {
    display: block;
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.seelio-report__card-notes p {
    font-size: 12px;
    color: var(--color-text-secondary);
    font-style: italic;
    line-height: 1.5;
}

.seelio-report__card-footer {
    font-size: 10px;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

/* ============================================================
   LIMITATIONS
   ============================================================ */
.seelio-limits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) { .seelio-limits { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .seelio-limits { grid-template-columns: repeat(4, 1fr); } }

.seelio-limit {
    padding: 28px 24px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.seelio-limit:hover {
    border-color: rgba(56, 189, 248, 0.2);
    transform: translateY(-3px);
}

.seelio-limit__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    color: #38bdf8;
    margin: 0 auto 12px;
}

.seelio-limit__icon svg {
    width: 22px;
    height: 22px;
}

.seelio-limit__title {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.seelio-limit__text {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================================
   PRIVACY
   ============================================================ */
.seelio-privacy {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) { .seelio-privacy { grid-template-columns: repeat(3, 1fr); } }

.seelio-privacy__item {
    padding: 28px 24px;
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.seelio-privacy__item:hover {
    border-color: rgba(56, 189, 248, 0.3);
    transform: translateY(-4px);
}

.seelio-privacy__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 14px;
    color: #38bdf8;
    margin: 0 auto 16px;
}

.seelio-privacy__icon svg { width: 24px; height: 24px; }

.seelio-privacy__title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.seelio-privacy__text {
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ============================================================
   CTA
   ============================================================ */
.seelio-cta {
    padding: 48px 32px;
    background: linear-gradient(145deg, var(--color-bg-secondary), var(--color-bg-tertiary));
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.seelio-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.seelio-cta__content {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0 auto;
}

.seelio-cta__title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 14px;
}

@media (min-width: 768px) { .seelio-cta__title { font-size: 34px; } }

.seelio-cta__text {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.seelio-cta__sub {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 480px) {
    .seelio-hero { min-height: auto; padding-bottom: 40px; }
    .seelio-hero__title { font-size: clamp(44px, 12vw, 64px); }
    .seelio-phone { width: 240px; }
    .seelio-cta { padding: 32px 20px; }
    .seelio-cta__title { font-size: 24px; }
}
