/* ============================================================
   gameaudio.css — Shared styles for /gameaudio section
   Bahn Productions
   ============================================================ */

/* ── GOOGLE FONTS imported in HTML head ──
   Rajdhani    : headings, labels, buttons
   Share Tech Mono : mono/code, eyebrows, tags
   Barlow      : body copy
   ---------------------------------------------------------- */

/* ── CSS VARIABLES ── */
:root {
    /* Brand colors */
    --red:        #c1121f;
    --red-bright: #e63946;
    --red-dim:    #7a0812;
    --amber:      #d4a017;
    --cyan:       #38bdf8;

    /* Backgrounds */
    --dark:       #010101;
    --dark-2:     #111111;
    --dark-3:     #1a1a1a;

    /* Borders */
    --border:     rgba(255,255,255,0.07);

    /* Typography scale — change here, applies everywhere */
    --fs-hero:        clamp(4.5rem, 8vw, 7rem);
    --fs-hero-sub:    clamp(2.8rem, 7vw, 6rem);   /* AAS page hero */
    --fs-section:     clamp(2rem, 4vw, 3rem);
    --fs-section-sub: clamp(1.8rem, 3.5vw, 2.6rem);
    --fs-body:        1.1rem;
    --fs-body-sm:     0.95rem;
    --fs-label:       0.8rem;
    --fs-mono:        0.75rem;
    --fs-tag:         0.65rem;

    /* Spacing */
    --section-py: 5rem;
    --content-max: 72rem;   /* max-w-6xl equivalent */
}

/* Base font size — scales all rem units */
html { font-size: 16px; }

@media (min-width: 1920px) {
    html { font-size: 18px; }
}

@media (min-width: 2560px) {
    html { font-size: 20px; }
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }

body {
    background-color: var(--dark);
    color: #e0e0e0;
    font-family: 'Barlow', sans-serif;
    font-weight: 300;
    font-size: var(--fs-body);
    line-height: 1.7;
    margin: 0;
}

h1, h2, h3, h4, h5 {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1;
    margin: 0;
}

a { color: inherit; }

.mono, code {
    font-family: 'Share Tech Mono', monospace;
}

/* ── LAYOUT UTILITIES ── */
.content-wrap {
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-pad {
    padding-top: var(--section-py);
    padding-bottom: var(--section-py);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.h-rule {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* ── HEADER BAR ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 150;
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header-logo img {
    height: 52px;
    width: auto;
}

.site-header-logo {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header-logo:hover {
    opacity: 0.9;
    transform: scale(1.17);
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.6));
}

.site-header-link {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.15s ease, color 0.2s;
}

.site-header-link:hover {
    /*color: rgba(255,255,255,0.7);*/
    color: var(--red-bright);
    transform: scale(1.03);
    filter: drop-shadow(0 0 1px rgba(56, 189, 248, 0.2));
}

/* ── SOCIAL SIDEBAR ── */
.social-sidebar {
    position: fixed;
    top: 5rem;
    right: 2rem;
    z-index: 50;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .social-sidebar { display: flex; }
}

.social-sidebar-label {
    align-self: flex-end;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.social-sidebar-line {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.12);
}

.social-sidebar a {
    color: rgba(255,255,255,0.35);
    transition: color 0.2s, transform 0.2s;
    display: flex;
}

.social-sidebar a:hover {
    color: var(--red-bright);
    transform: scale(1.1);
}

.social-sidebar svg {
    width: 1.35rem;
    height: 1.35rem;
}

/*!* ── HAMBURGER ANIMATION ── *!*/
/*.menu-line {*/
/*    display: block;*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    background: #fff;*/
/*    transition: transform 0.3s ease, opacity 0.15s ease;*/
/*    transform-origin: center;*/
/*}*/

/*.menu-open .menu-line-1 {*/
/*    transform: translateY(9px) rotate(45deg);*/
/*}*/

/*.menu-open .menu-line-2 {*/
/*    opacity: 0;*/
/*    transform: scaleX(0);*/
/*}*/

/*.menu-open .menu-line-3 {*/
/*    transform: translateY(-9px) rotate(-45deg);*/
/*}*/

/* ── AVAILABILITY BADGE ── */
.availability-badge {
    position: fixed;
    top: 1.25rem;
    left: 1.5rem;
    z-index: 100;
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Share Tech Mono', monospace;
}

@media (min-width: 768px) {
    .availability-badge { display: flex; }
}

.availability-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px #22c55e;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

.availability-dot.unavailable {
    background: rgba(255,255,255,0.2);
    box-shadow: none;
    animation: none;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.35; }
}

.availability-text {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* ── SECTION LABELS ── */
.section-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-label);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 0.4rem;
    display: block;
}

.section-title {
    font-size: var(--fs-section);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.section-title-sm {
    font-size: var(--fs-section-sub);
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

/* ── HERO — index.html ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
    padding-top: 5rem;
}

.hero-grid {
    position: fixed;
    inset: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(193,18,31,0.15) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-scan {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(193,18,31,0.03) 50%,
            transparent 100%
    );
    animation: scan 8s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { transform: translateY(-100%); }
    50%       { transform: translateY(100%); }
}

.hero-title {
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: #fff;
}

.hero-title span { color: var(--red-bright); }

.hero-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-label);
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-bio {
    font-size: var(--fs-body);
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 540px;
    font-weight: 300;
}

.hero-divider {
    width: 60px;
    height: 2px;
    background: var(--red-bright);
    margin: 1.5rem 0;
}

/* ── HERO — advancedaudiosystem.html ── */
.hero-page {
    position: relative;
    padding: 8rem 1.5rem 5rem;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero-page .hero-grid {
    mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 20%, transparent 100%);
    background-size: 50px 50px;
}

.hero-page .hero-glow {
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(193,18,31,0.12) 0%, transparent 70%);
    top: 0; left: 50%;
    transform: translateX(-50%);
}

.hero-page-title {
    font-size: var(--fs-hero-sub);
    font-weight: 700;
    line-height: 0.95;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero-page-title span { color: var(--red-bright); }

.hero-page-desc {
    font-size: var(--fs-body);
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 580px;
}

.hero-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-body-sm);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--red-bright);
    margin-bottom: 1rem;
    display: block;
}

.back-link {
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-mono);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
    margin-bottom: 2.5rem;
}

.back-link:hover { color: var(--red-bright); }


/* ── BUTTON THEME OVERRIDE ── */
.btn-primary {
    background: var(--red);
}

.btn-primary:hover {
    background: var(--red-bright);
    box-shadow: 0 8px 24px rgba(193,18,31,0.4);
}


/* ── BADGES ── */
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(212,160,23,0.1);
    border: 1px solid rgba(212,160,23,0.3);
    border-radius: 4px;
    padding: 0.25rem 0.6rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-tag);
    color: var(--amber);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(193,18,31,0.07);
    border: 1px solid rgba(193,18,31,0.18);
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-tag);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
}

.feature-pill::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--red-bright);
    flex-shrink: 0;
}

/* ── TOOL CARDS ── */
.tool-primary {
    background: var(--dark-3);
    border: 1px solid rgba(193,18,31,0.25);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.25s ease;
}

.tool-primary:hover {
    border-color: rgba(193,18,31,0.6);
    background: var(--dark-3);
    transform: translateY(-2px);
}

.tool-icon {
    width: 52px; height: 52px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*font-size: 1.2rem;*/
    flex-shrink: 0;
    /*background: rgba(193,18,31,0.12);*/
    /*background: transparent;*/
    background: rgba(255,255,255,0.0);  /* neutral instead of red tint */
    border: 1px solid rgba(255,255,255,0.0);
    padding: 2px;
}

.tool-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.tool-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}

.tool-desc {
    font-size: var(--fs-tag);
    color: rgba(255,255,255,0.4);
    margin-top: 0.15rem;
}

.tool-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.75rem 1.25rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-mono);
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
}

.tool-secondary img {
    width: 30px; height: 30px;
    object-fit: contain;
}

.tool-secondary:hover {
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.2);
}

/* ── PROJECT / VIDEO CARDS ── */
.project-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    border-color: rgba(193,18,31,0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::before { opacity: 1; }

/* ── VIDEO PLACEHOLDERS ── */
.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--dark-3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.video-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
            -45deg,
            transparent, transparent 12px,
            rgba(255,255,255,0.01) 12px, rgba(255,255,255,0.01) 24px
    );
}

.video-placeholder .play-btn,
.video-placeholder .play-icon {
    width: 56px; height: 56px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.video-placeholder .play-btn svg,
.video-placeholder .play-icon svg {
    width: 20px; height: 20px;
    fill: rgba(255,255,255,0.2);
    margin-left: 3px;
}

.video-label,
.coming-soon-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-tag);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    position: relative;
    z-index: 1;
}

/* ── VIDEO BLOCK (AAS page) ── */
.video-block {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.video-info {
    padding: 1.5rem 1.75rem;
    border-top: 1px solid var(--border);
}

.video-info-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.video-info-desc {
    font-size: var(--fs-body-sm);
    color: rgba(255,255,255,0.4);
    line-height: 1.65;
}

/* ── SOUND TAGS ── */
.sound-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.sound-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-tag);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(193,18,31,0.7);
    border: 1px solid rgba(193,18,31,0.2);
    border-radius: 3px;
    padding: 0.15rem 0.5rem;
}

/* ── AAS STAT BOXES ── */
.aas-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.aas-stat-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--red-bright);
    line-height: 1;
}

.aas-stat-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-tag);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-top: 0.35rem;
}

/* ── AAS FEATURE SECTION ── */
.aas-section {
    background: var(--dark-2);
    border: 1px solid rgba(193,18,31,0.2);
    border-radius: 12px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.aas-section::before {
    content: 'AAS';
    position: absolute;
    right: -1rem; top: 50%;
    transform: translateY(-50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: 12rem;
    font-weight: 700;
    color: rgba(193,18,31,0.04);
    letter-spacing: -0.05em;
    pointer-events: none;
    line-height: 1;
}

/* ── SUBSYSTEM CARDS (AAS page) ── */
.subsystem-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.75rem;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.subsystem-card:hover {
    border-color: rgba(193,18,31,0.3);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}

.subsystem-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.subsystem-card:hover::after { opacity: 1; }

.subsystem-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-tag);
    color: rgba(193,18,31,0.5);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.subsystem-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.subsystem-desc {
    font-size: var(--fs-body-sm);
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
}

.subsystem-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 1rem;
}

.subsystem-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-tag);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(193,18,31,0.6);
    border: 1px solid rgba(193,18,31,0.18);
    border-radius: 3px;
    padding: 0.15rem 0.45rem;
}

/* ── EDITOR TOOL CARDS ── */
.editor-tool-card {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.editor-tool-card:hover {
    border-color: rgba(193,18,31,0.3);
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.4);
}

.editor-tool-header {
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.editor-tool-icon {
    width: 44px; height: 44px;
    background: rgba(193,18,31,0.1);
    border: 1px solid rgba(193,18,31,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.editor-tool-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.editor-tool-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.editor-tool-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-tag);
    color: rgba(255,255,255,0.3);
    margin-top: 0.2rem;
}

/* ── SIGNAL FLOW ── */
.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 0;
}

.flow-node {
    background: var(--dark-2);
    border: 1px solid rgba(193,18,31,0.25);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    width: 100%;
    margin-bottom: 0.35rem;
}

.flow-node-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: var(--fs-tag);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.25rem;
}

.flow-node-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.flow-node-desc {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.8);
}

.flow-node img {
    width: 30px; height: 30px;
    margin: 0.5rem auto;
    display: block;
}

.flow-node.highlight {
    border-color: rgba(193,18,31,0.4);
}

.flow-node.highlight .flow-node-name {
    color: var(--red-bright);
}

.flow-tag-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.flow-tag-icon {
    width: 16px;
    height: 16px;
    opacity: 0.9;
}

.flow-arrow {
    color: rgba(193,18,31,0.4);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    height: 0;
    margin-top: 3.5rem;
    flex-shrink: 0;
}

.flow-scroll-hint {
    display: none;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #e63946;
    text-align: left;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .flow-scroll-hint {
        display: block;
    }
}

.flow-scroll-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: -4px;
    margin-left: 2px;
    opacity: 0.8;
}

.flow-step-wrapper {
    position: relative;
}

.flow-step-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, transparent, var(--dark-2));
    pointer-events: none;
    border-radius: 0 12px 12px 0;
}

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* stagger children */
.stagger > *:nth-child(1) { transition-delay: 0.05s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.19s; }
.stagger > *:nth-child(4) { transition-delay: 0.26s; }
.stagger > *:nth-child(5) { transition-delay: 0.33s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }