@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #fbfbfd;
    --surface: #ffffff;
    --surface-alt: #f5f5f7;
    --stroke: rgba(0, 0, 0, 0.08);
    --text: #1d1d1f;
    --muted: #6e6e73;
    --accent: #0071e3;
    --accent-dark: #0059b2;
}

body {
    margin: 0;
    font-family: 'SF Pro Display', 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Inter', 'Helvetica Neue', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    padding: 0 clamp(20px, 5vw, 72px) 120px;
}

section {
    padding: clamp(72px, 12vh, 140px) 0;
    border-bottom: 1px solid var(--stroke);
}

section:last-of-type {
    border-bottom: none;
}

.global-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(40px);
    background: rgba(251, 251, 253, 0.85);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px clamp(20px, 5vw, 72px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.brand {
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.32em;
}

.global-nav {
    display: flex;
    gap: 28px;
    font-size: 0.95rem;
    align-items: center;
}

.global-nav a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding-bottom: 6px;
    border-bottom: 1px solid transparent;
}

.global-nav a:hover,
.global-nav a.active {
    opacity: 1;
    border-color: var(--text);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.nav-toggle span {
    width: 60%;
    height: 2px;
    background: var(--text);
}

.hero {
    min-height: 70vh;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-copy h1 {
    font-size: clamp(3rem, 4vw, 4.4rem);
    line-height: 1.05;
    margin: 20px 0 32px;
    letter-spacing: -0.02em;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.7rem;
    color: var(--muted);
}

.lede {
    color: var(--muted);
    max-width: 560px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 40px 0 16px;
}

.btn {
    border-radius: 999px;
    padding: 14px 32px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.35);
}

.btn-ghost {
    border: 1px solid var(--stroke);
    color: var(--text);
    background: transparent;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.2);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-top: 32px;
}

.hero-metrics dt {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-metrics dd {
    font-size: 1.7rem;
    margin: 8px 0 0;
    letter-spacing: -0.02em;
}

.hero-media {
    display: grid;
    gap: 24px;
}

.surface {
    background: var(--surface);
    border-radius: 32px;
    padding: clamp(48px, 7vh, 84px);
    border: 1px solid var(--stroke);
    max-width: 1200px;
    margin: 0 auto;
}

.orientation,
.module-grid,
.capsule-grid .grid,
.slate-list,
.toolkit-grid,
.gallery-grid,
.process,
.split {
    max-width: 1200px;
    margin: 0 auto;
}

.orientation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.orientation h2 {
    margin: 12px 0;
    letter-spacing: -0.01em;
}

.capsule-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.capsule-card,
.module-card,
.slate-list article,
.toolkit-grid article {
    background: var(--surface);
    border-radius: 32px;
    padding: 28px;
    border: 1px solid var(--stroke);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.capsule-card img {
    border-radius: 24px;
    box-shadow: none;
}

.capsule-card ul,
.module-card ul,
.soundstage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--muted);
}

.capsule-card li,
.module-card li,
.soundstage-list li {
    padding-left: 20px;
    position: relative;
    margin-top: 8px;
}

.capsule-card li::before,
.module-card li::before,
.soundstage-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    position: absolute;
    left: 0;
    top: 9px;
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.module-card img {
    border-radius: 24px;
    box-shadow: none;
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 16px 0 12px;
    letter-spacing: -0.02em;
}

.section-heading p {
    color: var(--muted);
    font-size: 1.05rem;
}

.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: start;
}

.process ol {
    counter-reset: steps;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--stroke);
}

.process li {
    border-bottom: 1px solid var(--stroke);
    padding: 24px 0;
    font-size: 1rem;
    letter-spacing: -0.01em;
}

.process span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.28em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.soundstage-media {
    display: grid;
    gap: 24px;
}

.soundstage-media img {
    border-radius: 24px;
}

.slate-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.slate-list dl {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin: 12px 0 0;
}

.slate-list dt {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.toolkit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.toolkit-grid article h3 {
    margin-bottom: 8px;
}

.cta {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta address {
    font-style: normal;
    margin-top: 24px;
    color: var(--muted);
}

.global-footer {
    padding: 32px clamp(20px, 5vw, 72px) 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--muted);
    align-items: center;
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
    background: #f9f9fb;
    border-top: 1px solid var(--stroke);
    font-family: 'Cormorant Garamond', 'Space Grotesk', 'Inter', serif;
    letter-spacing: 0.08em;
    font-size: 1.05rem;
}

.global-footer p {
    margin: 0;
}

.global-footer strong {
    font-size: 1.3rem;
    letter-spacing: 0.4em;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

[data-animate] {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(40px);
    transition:
        opacity 0.9s cubic-bezier(0.19, 1, 0.22, 1),
        transform 0.9s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.6s ease;
    transition-delay: var(--animate-delay, 0ms);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="slide-left"] {
    transform: translateX(60px);
}

[data-animate="slide-right"] {
    transform: translateX(-60px);
}

[data-animate="tilt-up"] {
    transform-origin: center top;
    transform: perspective(1000px) rotateX(8deg);
}

[data-animate="zoom-in"] {
    transform: scale(0.94);
}

[data-animate].visible {
    opacity: 1;
    filter: blur(0);
    transform: none;
}

.orientation article,
.hero-metrics > div,
.module-card,
.capsule-card,
.soundstage-media img,
.process li,
.gallery-grid img,
.slate-list article,
.toolkit-grid article {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.orientation article:nth-child(1),
.hero-metrics > div:nth-child(1),
.module-card:nth-child(1),
.capsule-card:nth-child(1),
.soundstage-media img:nth-child(1),
.process li:nth-child(1),
.gallery-grid img:nth-child(1),
.slate-list article:nth-child(1),
.toolkit-grid article:nth-child(1) {
    transition-delay: 0.05s;
}

.orientation article:nth-child(2),
.hero-metrics > div:nth-child(2),
.module-card:nth-child(2),
.capsule-card:nth-child(2),
.soundstage-media img:nth-child(2),
.process li:nth-child(2),
.gallery-grid img:nth-child(2),
.slate-list article:nth-child(2),
.toolkit-grid article:nth-child(2) {
    transition-delay: 0.15s;
}

.orientation article:nth-child(3),
.hero-metrics > div:nth-child(3),
.module-card:nth-child(3),
.capsule-card:nth-child(3),
.soundstage-media img:nth-child(3),
.process li:nth-child(3),
.gallery-grid img:nth-child(3),
.slate-list article:nth-child(3),
.toolkit-grid article:nth-child(3) {
    transition-delay: 0.25s;
}

.orientation article:nth-child(4),
.hero-metrics > div:nth-child(4),
.module-card:nth-child(4),
.capsule-card:nth-child(4),
.soundstage-media img:nth-child(4),
.process li:nth-child(4),
.gallery-grid img:nth-child(4),
.slate-list article:nth-child(4),
.toolkit-grid article:nth-child(4) {
    transition-delay: 0.35s;
}

.capsule-card:nth-child(5),
.gallery-grid img:nth-child(5),
.slate-list article:nth-child(5) {
    transition-delay: 0.45s;
}

.capsule-card:nth-child(6),
.gallery-grid img:nth-child(6),
.slate-list article:nth-child(6) {
    transition-delay: 0.55s;
}

[data-animate].visible .orientation article,
[data-animate].visible .hero-metrics > div,
[data-animate].visible .module-card,
[data-animate].visible .capsule-card,
[data-animate].visible .soundstage-media img,
[data-animate].visible .process li,
[data-animate].visible .gallery-grid img,
[data-animate].visible .slate-list article,
[data-animate].visible .toolkit-grid article {
    opacity: 1;
    transform: none;
}

@media (hover: hover) and (pointer: fine) {
    .capsule-card,
    .module-card,
    .slate-list article,
    .toolkit-grid article,
    .process li,
    .soundstage-list li,
    .hero-media img,
    .soundstage-media img,
    .gallery-grid img {
        transition:
            transform 0.7s cubic-bezier(0.19, 1, 0.22, 1),
            box-shadow 0.7s cubic-bezier(0.19, 1, 0.22, 1),
            border-color 0.4s ease,
            filter 0.6s ease;
        will-change: transform;
    }

    .capsule-card:hover,
    .module-card:hover,
    .slate-list article:hover,
    .toolkit-grid article:hover,
    .process li:hover,
    .soundstage-list li:hover {
        transform: translateY(-10px) scale(1.01);
        border-color: rgba(0, 0, 0, 0.18);
        box-shadow: 0 30px 60px rgba(13, 25, 44, 0.12);
    }

    .hero-media img:hover,
    .soundstage-media img:hover,
    .gallery-grid img:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 40px 80px rgba(15, 35, 65, 0.18);
        filter: saturate(1.08);
    }

    .footer-links a,
    .global-footer a {
        transition: opacity 0.3s ease;
    }

    .footer-links a:hover,
    .global-footer a:hover {
        opacity: 0.7;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-animate],
    [data-animate="fade-down"],
    [data-animate="slide-left"],
    [data-animate="slide-right"],
    [data-animate="tilt-up"],
    [data-animate="zoom-in"],
    .orientation article,
    .hero-metrics > div,
    .module-card,
    .capsule-card,
    .soundstage-media img,
    .process li,
    .gallery-grid img,
    .slate-list article,
    .toolkit-grid article {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }
}

@media (max-width: 768px) {
    .global-nav {
        position: fixed;
        inset: 0;
        background: rgba(251, 251, 253, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
    }

    .global-nav.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .global-header {
        position: relative;
    }

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

