:root {
    --bg: #050712;
    --bg-alt: #0c0f1e;
    --bg-soft: #121427;
    --accent: #6b8bff;
    --accent-soft: rgba(107, 139, 255, 0.15);
    --accent-strong: #94b0ff;
    --accent-warm: #f97373;
    --text-main: #f9fafb;
    --text-soft: #c3c7d9;
    --text-muted: #878ca3;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.55);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-pill: 999px;
    --transition-fast: 0.18s ease;
    --transition-normal: 0.25s ease;
    --container-width: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background: radial-gradient(circle at top left, #1b2143 0, #050712 45%, #050712 100%);
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
}

/* Layout helpers */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4.5rem 0;
}

.section-alt {
    background: radial-gradient(circle at top, #181c3a 0, #050712 55%);
    position: relative;
    z-index: 1;
}

.section-alt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(107, 139, 255, 0.12), transparent 55%);
    opacity: 0.55;
    pointer-events: none;
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 680px;
    margin-inline: auto;
}

.section-header.left {
    text-align: left;
    margin-inline: 0;
}

.section-header h2 {
    font-size: 2rem;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.section-header p {
    margin: 0;
    color: var(--text-soft);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(5, 7, 18, 0.9), transparent);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 40px;
}

.logo-img {
    max-height: 40px;
    width: auto;
    display: block;
}


.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-weight: 600;
    font-size: 1.02rem;
}

.logo-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--text-soft);
    padding: 0.35rem 0.2rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.1rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
    color: #050507;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-cta::after {
    display: none;
}

/* Mobile nav toggle */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 7, 18, 0.8);
    cursor: pointer;
}

.nav-toggle-line {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: #ffffff;
}

/* Hero */

.hero {
    padding: 4.5rem 0 3.5rem;
}

.hero-grid {
    display: grid;
    gap: 2.8rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2.2rem, 3vw, 2.7rem);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.hero-text p {
    margin: 0;
    margin-bottom: 1.7rem;
    color: var(--text-soft);
    max-width: 540px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.2rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.3rem;
    border-radius: var(--radius-pill);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.primary-btn {
    background: linear-gradient(140deg, var(--accent), var(--accent-warm));
    color: #050507;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.75);
}

.ghost-btn {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(6, 9, 25, 0.8);
    color: var(--text-main);
}

.ghost-btn:hover {
    background: rgba(16, 20, 45, 0.95);
}

.full-width {
    width: 100%;
}

/* Hero badges */

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.badge {
    font-size: 0.76rem;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    background: rgba(10, 13, 32, 0.9);
    border: 1px solid var(--accent-soft);
    color: var(--accent-strong);
}

/* Hero media */

.hero-media {
    display: flex;
    justify-content: flex-end;
}

.hero-monitor {
    width: 360px;
    max-width: 100%;
    border-radius: 26px;
    padding: 0.9rem;
    background: radial-gradient(circle at top, #262a4f, #080814);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-monitor::before {
    content: "";
    position: absolute;
    inset: -60%;
    background: conic-gradient(from 210deg, rgba(107, 139, 255, 0.5), rgba(249, 116, 115, 0.2), transparent 60%);
    opacity: 0.35;
    filter: blur(20px);
    pointer-events: none;
    z-index: -1;
}

.hero-monitor-top {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    margin-bottom: 0.6rem;
}

.hero-led {
    width: 8px;
    height: 8px;
    border-radius: 999px;
}

.led-green {
    background: radial-gradient(circle, #4ade80, #15803d);
}

.led-red {
    background: radial-gradient(circle, #fb7185, #b91c1c);
}

.led-yellow {
    background: radial-gradient(circle, #fde047, #ca8a04);
}

.hero-monitor-screen {
    background: radial-gradient(circle at top, #141938, #02020a);
    border-radius: 18px;
    padding: 0.75rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-status-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-soft);
    margin-bottom: 0.6rem;
}

.hero-status-bar span:last-child {
    padding: 0.1rem 0.55rem;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.15);
    color: #bbf7d0;
    border: 1px solid rgba(34, 197, 94, 0.35);
    font-size: 0.66rem;
}

.hero-timeline {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.hero-timeline-fill {
    width: 48%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
}

.hero-playlist {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.8rem;
}

.hero-playlist-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) 70px;
    align-items: center;
    gap: 0.4rem;
    padding: 0.42rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.16);
    color: var(--text-soft);
}

.hero-playlist-item.active {
    background: linear-gradient(135deg, rgba(107, 139, 255, 0.18), rgba(6, 78, 59, 0.4));
    border-color: rgba(129, 140, 248, 0.65);
    color: var(--text-main);
}

.hero-playlist-item .time {
    font-variant-numeric: tabular-nums;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero-playlist-item .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hero-playlist-item .type {
    text-align: right;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-strong);
}

.hero-monitor-footer {
    margin-top: 0.7rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Pill row and metrics */

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.pill {
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-pill);
    background: rgba(5, 7, 18, 0.9);
    border: 1px solid rgba(148, 163, 248, 0.25);
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    min-width: 180px;
    text-align: center;
}

.pill-label {
    color: var(--accent-strong);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    margin-bottom: 0.15rem;
}

.pill-text {
    color: var(--text-soft);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
}

.metric {
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(5, 7, 18, 0.9);
    border: 1px solid var(--border-subtle);
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Features */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.feature-card {
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(5, 7, 18, 0.96);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    transform: translateY(6px);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    margin-top: 0;
    margin-bottom: 0.9rem;
    color: var(--text-soft);
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card li {
    font-size: 0.86rem;
    color: var(--text-muted);
    padding-left: 1.1rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.feature-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

/* Workflows */

.workflow-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.workflow-step {
    min-width: 180px;
    max-width: 220px;
    flex: 1 1 0;
    padding: 1.1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(5, 7, 18, 0.95);
    border: 1px solid var(--border-subtle);
}

.step-number {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--accent);
    color: #050507;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.workflow-step h3 {
    margin: 0 0 0.3rem;
    font-size: 1rem;
}

.workflow-step p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--text-soft);
}

.workflow-arrow {
    align-self: center;
    font-size: 1.3rem;
    color: var(--accent-strong);
}

/* Who uses Telvi */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.audience-card {
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(5, 7, 18, 0.9);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.65);
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.audience-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.audience-card h3 {
    margin: 0 0 0.4rem;
}

.audience-card p {
    margin: 0 0 0.8rem;
    color: var(--text-soft);
}

.audience-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-card li {
    font-size: 0.86rem;
    color: var(--text-muted);
    padding-left: 1.1rem;
    margin-bottom: 0.25rem;
    position: relative;
}

.audience-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-strong);
}

/* CTA */

.section-cta {
    background: radial-gradient(circle at top, #1d264b, #050712);
}

.cta-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: space-between;
}

.cta-text {
    max-width: 520px;
}

.cta-text h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.cta-text p {
    margin: 0;
    color: var(--text-soft);
}

.cta-actions {
    text-align: right;
}

.cta-note {
    margin-top: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.3rem 0 0;
}

.contact-list li {
    margin-bottom: 0.8rem;
}

.contact-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.contact-list a {
    color: var(--accent-strong);
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Contact form */

.contact-form {
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(5, 7, 18, 0.95);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    margin-top: 0;
    margin-bottom: 0.35rem;
}

.contact-form p {
    margin-top: 0;
    margin-bottom: 1.2rem;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.form-row {
    margin-bottom: 0.9rem;
}

.form-row label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(3, 6, 20, 0.95);
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
    color: var(--text-muted);
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--accent-strong);
    box-shadow: 0 0 0 1px rgba(107, 139, 255, 0.8);
    background: rgba(5, 10, 32, 1);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.16);
    padding: 1.4rem 0 1.6rem;
    background: radial-gradient(circle at top, #14162b, #050712);
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-strong);
}

/* Reveal animations */

.reveal {
    opacity: 0;
    transform: translateY(10px);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 880px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-media {
        justify-content: flex-start;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        text-align: left;
    }

    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .nav-links {
        position: absolute;
        inset: 68px 1.5rem auto 1.5rem;
        border-radius: 18px;
        background: rgba(3, 6, 20, 0.98);
        border: 1px solid rgba(148, 163, 184, 0.25);
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem 0.9rem;
        gap: 0.35rem;
        transform-origin: top;
        transform: scaleY(0.6);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-normal), transform var(--transition-normal);
    }

    .nav-links.open {
        opacity: 1;
        transform: scaleY(1);
        pointer-events: auto;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.5rem 0.35rem;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 0.3rem;
    }

    .nav-toggle {
        display: flex;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .section {
        padding: 3.5rem 0;
    }

    .hero {
        padding-top: 3.4rem;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .hero-monitor {
        margin-top: 0.6rem;
    }
}

.contact-info-panel {
    padding: 1.4rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(5, 7, 18, 0.95);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.contact-info-panel h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.contact-info-panel p {
    margin-top: 0;
    margin-bottom: 1.3rem;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.contact-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info-list li {
    margin-bottom: 1rem;
}

.contact-info-list .label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.15rem;
}

.contact-info-list a {
    color: var(--accent-strong);
    text-decoration: none;
    font-size: 0.92rem;
}

.contact-info-list a:hover {
    text-decoration: underline;
}

.contact-note {
    display: inline-block;
    margin-top: 0.2rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Trusted By Static Section */

.trustedby-section {
    text-align: center;
}

.trustedby-static {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trustedby-logo {
    height: 70px;
    width: auto;
    opacity: 0.85;
    filter: grayscale(100%) brightness(1.4);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.trustedby-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* About Sarah */

.about-section {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

.about-avatar {
    display: flex;
    justify-content: center;
}

.about-avatar-ring {
    padding: 4px;
    border-radius: 999px;
    background: conic-gradient(from 210deg, #6b8bff, #f97373, #6b8bff);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.about-avatar-circle {
    width: 90px;
    height: 90px;
    border-radius: 999px;
    background: radial-gradient(circle at top, #1e253f, #050712);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.about-avatar-initials {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #e5e7eb;
}

.about-content h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.about-lead {
    margin-top: 0;
    margin-bottom: 0.7rem;
    color: var(--text-soft);
}

.about-body {
    margin-top: 0;
    margin-bottom: 0.9rem;
    color: var(--text-soft);
    font-size: 0.95rem;
}

.about-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.about-tag {
    font-size: 0.78rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 248, 0.35);
    background: rgba(8, 11, 30, 0.9);
    color: var(--accent-strong);
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list li {
    font-size: 0.88rem;
    color: var(--text-muted);
    padding-left: 1.1rem;
    position: relative;
    margin-bottom: 0.25rem;
}

.about-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-warm));
}

@media (max-width: 720px) {
    .about-grid {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .about-avatar {
        justify-content: flex-start;
    }
}

/* About avatar (profile photo) */

.about-avatar-ring {
    padding: 5px;
    border-radius: 999px;
    background: conic-gradient(from 210deg, #6b8bff, #f97373, #6b8bff);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.75);
    overflow: hidden;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ensures perfect cropping inside the circle */
    border-radius: 999px; /* double safety */
    display: block;
}

/* FAQ section */

.faq-section {
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.faq-item {
    border-radius: 16px;
    background: rgba(5, 7, 18, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.28);
    overflow: hidden;
}

.faq-item-header {
    width: 100%;
    padding: 0.85rem 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: none;
    background: transparent;
    color: var(--text-main);
    font-size: 0.95rem;
    text-align: left;
    cursor: pointer;
}

.faq-item-header:hover {
    background: rgba(15, 23, 42, 0.9);
}

.faq-question {
    flex: 1;
}

.faq-toggle-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--accent-strong);
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.faq-item.open .faq-toggle-icon {
    background: var(--accent);
    color: #050507;
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.1rem;
    transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-item.open .faq-body {
    padding-bottom: 0.8rem;
}

.faq-body p {
    margin: 0.4rem 0 0;
    font-size: 0.9rem;
    color: var(--text-soft);
}

.section-footer-note {
    margin-top: 1.8rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.5;
}
