/* about-us.css — Hikari Skript About page (consolidated) */

/* ── Base ── */
.hs-about {
    font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Text", "SF Pro Display", Segoe UI, Roboto, Arial, sans-serif;
    color: #0b0f19;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.dark .hs-about {
    color: #e8eaed;
    background: #0d1117;
}

/* ── Container ── */
.hs-about .container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── HERO ── */
.hs-hero {
    position: relative;
    padding: 140px 0 80px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hs-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 600px at 20% 20%, rgba(220, 53, 69, 0.18), transparent 60%),
        radial-gradient(1000px 500px at 80% 10%, rgba(15, 23, 42, 0.12), transparent 55%),
        linear-gradient(rgba(255, 255, 255, 0.92), rgba(247, 248, 251, 0.97));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

body.dark .hs-hero-overlay {
    background:
        radial-gradient(1200px 600px at 20% 20%, rgba(220, 53, 69, 0.14), transparent 60%),
        radial-gradient(1000px 500px at 80% 10%, rgba(100, 120, 200, 0.08), transparent 55%),
        linear-gradient(rgba(13, 17, 23, 0.94), rgba(13, 17, 23, 0.97));
}

.hs-hero-inner {
    position: relative;
}

.hs-hero-top {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 880px;
}

.hs-logo-badge {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: rgba(255, 255, 255, 0.7);
    font-size: 30px;
    font-weight: 900;
    color: #dc3545;
    flex: 0 0 auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

body.dark .hs-logo-badge {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
}

.hs-title {
    font-weight: 900;
    letter-spacing: -0.025em;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    margin: 0 0 12px;
}

.hs-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: #475569;
    margin: 0;
    max-width: 720px;
    line-height: 1.65;
}

body.dark .hs-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* ── SECTIONS ── */
.hs-section {
    padding: 72px 0;
}

.hs-section-tight {
    padding: 48px 0;
}

.hs-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.hs-grid.reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.hs-grid.reverse .hs-copy {
    order: 2;
}

.hs-copy {
    max-width: 700px;
}

/* ── Typography ── */
.hs-h2 {
    font-weight: 900;
    letter-spacing: -0.02em;
    font-size: 28px;
    margin: 0 0 12px;
    line-height: 1.2;
}

.hs-h3 {
    font-weight: 800;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    font-size: 18px;
}

.hs-p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #1f2937;
    margin: 0 0 12px;
}

body.dark .hs-p {
    color: rgba(255, 255, 255, 0.78);
}

.hs-p.muted {
    color: #64748b;
}

body.dark .hs-p.muted {
    color: rgba(255, 255, 255, 0.5);
}

.hs-highlight {
    color: #dc3545;
    font-weight: 800;
}

body.dark .hs-highlight {
    color: #f87171;
}

/* ── Images ── */
.hs-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    border: 1px solid #eef0f4;
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.10);
    display: block;
}

body.dark .hs-img {
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

/* ── Card (video container) ── */
.hs-card {
    border: 1px solid #eef0f4;
    border-radius: 18px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.08);
}

body.dark .hs-card {
    background: #161b22;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.hs-card-top {
    margin-bottom: 12px;
}

/* ── Video ── */
.hs-videoShell {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #0b0f19;
    aspect-ratio: 16 / 9;
}

@supports not (aspect-ratio: 16 / 9) {
    .hs-videoShell {
        height: 0;
        padding-top: 56.25%;
    }

    .hs-videoShell .hs-video {
        position: absolute;
        inset: 0;
    }
}

.hs-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hs-audioToggle {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background 0.2s;
}

.hs-audioToggle:hover {
    background: rgba(0, 0, 0, 0.6);
}

.hs-audioToggle:active {
    transform: translateY(1px);
}

.hs-audioIcon {
    width: 18px;
    height: 18px;
    display: inline-block;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10v4h4l5 4V6L7 10H3zm13.5 2c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 10v4h4l5 4V6L7 10H3zm13.5 2c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hs-audioText {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* ── Dark band ── */
.hs-dark-band {
    background:
        radial-gradient(900px 400px at 30% 20%, rgba(220, 53, 69, 0.14), transparent 60%),
        linear-gradient(180deg, #0b0f19, #0f172a);
    color: #fff;
}

body.dark .hs-dark-band {
    background:
        radial-gradient(900px 400px at 30% 20%, rgba(220, 53, 69, 0.10), transparent 60%),
        linear-gradient(180deg, #010409, #0d1117);
}

.hs-h2.light {
    color: #fff;
}

.hs-p.light-muted {
    color: rgba(255, 255, 255, 0.72);
}

.hs-h3.light {
    color: rgba(255, 255, 255, 0.92);
}

.hs-band-head {
    margin-bottom: 28px;
}

.hs-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hs-mini-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.3s, border-color 0.3s;
}

.hs-mini-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
}

/* ── Feature cards (light bg) ── */
.hs-feature-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hs-feature-card {
    border: 1px solid #eef0f4;
    border-radius: 18px;
    padding: 26px 24px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(2, 6, 23, 0.05);
    transition: box-shadow 0.3s, transform 0.3s;
}

.hs-feature-card:hover {
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.10);
    transform: translateY(-2px);
}

body.dark .hs-feature-card {
    background: #161b22;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

body.dark .hs-feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hs-feature-card .hs-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

body.dark .hs-feature-card .hs-icon {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
}

.hs-feature-card .hs-h3 {
    color: #0b0f19;
}

body.dark .hs-feature-card .hs-h3 {
    color: #e8eaed;
}


.hs-awards {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(800px 400px at 50% 0%, rgba(202, 163, 74, 0.08), transparent 70%),
        #fefdfb;
    border-top: 1px solid rgba(202, 163, 74, 0.15);
    border-bottom: 1px solid rgba(202, 163, 74, 0.15);
}

body.dark .hs-awards {
    background:
        radial-gradient(800px 400px at 50% 0%, rgba(202, 163, 74, 0.06), transparent 70%),
        #0d1117;
    border-top-color: rgba(202, 163, 74, 0.12);
    border-bottom-color: rgba(202, 163, 74, 0.12);
}

.hs-awards-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(202, 163, 74, 0.12), rgba(202, 163, 74, 0.04));
    border: 1px solid rgba(202, 163, 74, 0.2);
    font-size: 13px;
    font-weight: 700;
    color: #a0802a;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

body.dark .hs-awards-badge {
    background: linear-gradient(135deg, rgba(202, 163, 74, 0.14), rgba(202, 163, 74, 0.04));
    border-color: rgba(202, 163, 74, 0.25);
    color: #d4af5a;
}

.hs-awards-badge .hs-trophy {
    font-size: 15px;
}

.hs-awards .hs-h2 {
    background: linear-gradient(135deg, #8b6914, #c9a34a, #8b6914);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
}

body.dark .hs-awards .hs-h2 {
    background: linear-gradient(135deg, #d4af5a, #f0d78c, #d4af5a);
    -webkit-background-clip: text;
    background-clip: text;
}

.hs-awards .hs-p {
    max-width: 640px;
}

.hs-awards-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #a0802a, #c9a34a);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: opacity 0.2s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(160, 128, 42, 0.25);
}

.hs-awards-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
}

body.dark .hs-awards-link {
    box-shadow: 0 4px 16px rgba(160, 128, 42, 0.15);
}

.hs-awards-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.hs-awards-link:hover svg {
    transform: translateX(2px);
}

/* ── Community pill ── */
.hs-community-highlight {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(220, 53, 69, 0.06);
    border: 1px solid rgba(220, 53, 69, 0.12);
    font-size: 13px;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 14px;
}

body.dark .hs-community-highlight {
    background: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.15);
    color: #f87171;
}

/* ── CTA + buttons ── */
.hs-cta {
    border: 1px solid #eef0f4;
    border-radius: 18px;
    padding: 32px 28px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(2, 6, 23, 0.06);
    text-align: center;
}

body.dark .hs-cta {
    background: #161b22;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.hs-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.hs-actions.centered {
    justify-content: center;
}

.hs-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 11px 20px;
    border-radius: 12px;
    background: #dc3545;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.2s, transform 0.2s;
    border: none;
}

.hs-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: #fff;
}

.hs-btn.ghost {
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #111827;
}

.hs-btn.ghost:hover {
    border-color: #d1d5db;
    color: #111827;
}

body.dark .hs-btn.ghost {
    border-color: rgba(255, 255, 255, 0.12);
    color: #e8eaed;
}

body.dark .hs-btn.ghost:hover {
    border-color: rgba(255, 255, 255, 0.22);
}

/* ── Placeholder ── */
.hs-placeholder {
    width: 100%;
    border-radius: 18px;
    border: 1px dashed #d7dbe3;
    background: linear-gradient(180deg, #ffffff, #f7f8fb);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-align: center;
    padding: 22px;
    overflow: hidden;
}

body.dark .hs-placeholder {
    border-color: rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, #161b22, #0d1117);
    color: rgba(255, 255, 255, 0.4);
}

/* ── Section divider ── */
.hs-divider {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: rgba(220, 53, 69, 0.3);
    margin-bottom: 20px;
}

body.dark .hs-divider {
    background: rgba(248, 113, 113, 0.25);
}

/* ── Reveal animation ── */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for card grids */
.reveal-delay-1 {
    transition-delay: 80ms;
}

.reveal-delay-2 {
    transition-delay: 160ms;
}

.reveal-delay-3 {
    transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        transform: none;
        opacity: 1;
    }
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .hs-hero {
        padding: 100px 0 52px;
    }

    .hs-hero-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .hs-grid {
        grid-template-columns: 1fr;
    }

    .hs-grid.reverse .hs-copy {
        order: 0;
    }

    .hs-cards {
        grid-template-columns: 1fr;
    }

    .hs-feature-cards {
        grid-template-columns: 1fr;
    }

    .hs-section {
        padding: 56px 0;
    }

    .hs-section-tight {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .hs-hero {
        padding: 88px 0 44px;
    }

    .hs-h2 {
        font-size: 24px;
    }

    .hs-awards .hs-h2 {
        font-size: 26px;
    }

    .hs-cta {
        padding: 24px 20px;
    }

    .hs-feature-card {
        padding: 20px 18px;
    }

    .hs-mini-card {
        padding: 18px 16px;
    }
}