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

:root {
    --font-display: 'Space Grotesk', 'Noto Sans KR', sans-serif;
    --font-sans: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', '맑은 고딕', sans-serif;
    --color-background: #05060c;
    --color-surface: rgba(18, 22, 35, 0.82);
    --color-surface-strong: rgba(33, 39, 59, 0.9);
    --color-border: rgba(112, 132, 255, 0.3);
    --color-text: #f2f6ff;
    --color-text-muted: rgba(217, 226, 255, 0.72);
    --color-accent: #7c5cff;
    --color-accent-soft: #8ed3ff;
    --color-highlight: #ffd76f;
    --blur-strong: blur(32px);
    --blur-light: blur(18px);
    --container-width: min(1120px, 92%);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    background: radial-gradient(circle at 10% 10%, rgba(124, 92, 255, 0.25), transparent 35%),
                radial-gradient(circle at 90% 20%, rgba(142, 211, 255, 0.2), transparent 40%),
                radial-gradient(circle at 50% 80%, rgba(255, 142, 180, 0.25), transparent 45%),
                var(--color-background);
    color: var(--color-text);
    min-height: 100vh;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><defs><linearGradient id="g" x1="0" x2="1" y1="0" y2="1"><stop offset="0" stop-color="%23ffffff10"/><stop offset="1" stop-color="%23ffffff00"/></linearGradient></defs><rect width="200" height="200" fill="url(%23g)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
    mix-blend-mode: soft-light;
    z-index: -2;
}

body.is-loading {
    background: radial-gradient(circle at 12% 18%, rgba(34, 45, 85, 0.85), rgba(5, 6, 12, 0.95) 58%),
                radial-gradient(circle at 88% 16%, rgba(72, 38, 112, 0.65), rgba(5, 6, 12, 0.96) 60%),
                linear-gradient(160deg, #05060c, #0b0c17);
}

body.is-loading::after {
    opacity: 0.18;
}

.is-loading {
    overflow: hidden;
}

.loading-screen {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 20% 20%, rgba(124, 92, 255, 0.4), transparent 55%),
                radial-gradient(circle at 80% 30%, rgba(142, 211, 255, 0.35), transparent 60%),
                rgba(5, 6, 12, 0.95);
    z-index: 30;
    transition: opacity 1.1s ease, visibility 1.1s ease;
}

.loading-screen__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
    padding: clamp(36px, 6vw, 48px) clamp(40px, 6vw, 56px);
    border-radius: 28px;
    backdrop-filter: blur(24px);
    background: linear-gradient(145deg, rgba(18, 22, 35, 0.85), rgba(18, 22, 35, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(10, 12, 24, 0.6);
}

.loading-screen__logo {
    font-family: var(--font-display);
    letter-spacing: 0.42em;
    font-size: clamp(26px, 5vw, 44px);
    color: var(--color-text);
}

.loading-screen__caption {
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(242, 246, 255, 0.7);
}

.loading-mascot {
    position: relative;
    width: min(36vw, 150px);
    height: min(36vw, 150px);
}

.loading-mascot__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(142, 211, 255, 0.85);
    border-right-color: rgba(124, 92, 255, 0.9);
    filter: drop-shadow(0 12px 24px rgba(124, 92, 255, 0.4));
    animation: loader-spin 1.6s linear infinite;
}

.loading-mascot__ring--two {
    inset: 12%;
    border-top-color: rgba(255, 215, 111, 0.8);
    border-right-color: rgba(255, 142, 180, 0.85);
    animation-duration: 2.1s;
    animation-direction: reverse;
}

.loading-mascot__core {
    position: absolute;
    inset: 26%;
    background: linear-gradient(160deg, #fed0ff, #8fa8ff);
    border-radius: 42% 42% 46% 46%;
    box-shadow: inset 0 -6px 12px rgba(35, 27, 57, 0.35);
    animation: loader-float 2.4s ease-in-out infinite;
}

.loading-mascot__core::before,
.loading-mascot__core::after {
    content: "";
    position: absolute;
    top: -28%;
    width: 32%;
    height: 38%;
    background: linear-gradient(145deg, rgba(255, 246, 183, 0.9), rgba(255, 182, 185, 0.85));
    border-radius: 50% 50% 12% 12%;
}

.loading-mascot__core::before {
    left: 8%;
    transform: rotate(-12deg);
}

.loading-mascot__core::after {
    right: 8%;
    transform: rotate(12deg);
}

.loading-mascot__spark {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 111, 0.9), rgba(142, 211, 255, 0.7));
    animation: loader-spark 2.8s ease-in-out infinite;
}

.loading-mascot__spark--one {
    top: 12%;
    right: -4%;
    animation-delay: 0.3s;
}

.loading-mascot__spark--two {
    bottom: 6%;
    left: -8%;
    animation-delay: 0.9s;
}

.reveal-overlay {
    position: fixed;
    inset: 0;
    z-index: 24;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(circle at 22% 18%, rgba(124, 92, 255, 0.58), transparent 58%),
                radial-gradient(circle at 78% 22%, rgba(255, 142, 180, 0.45), transparent 62%),
                radial-gradient(circle at 50% 88%, rgba(142, 211, 255, 0.48), transparent 65%),
                rgba(5, 6, 12, 0.75);
    overflow: hidden;
}

.reveal-overlay::before,
.reveal-overlay::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.reveal-overlay::before {
    inset: -30%;
    background: conic-gradient(from 120deg, rgba(255, 215, 111, 0.65), rgba(142, 211, 255, 0.2), rgba(124, 92, 255, 0.6), rgba(255, 142, 180, 0.3), rgba(255, 215, 111, 0.65));
    filter: blur(88px);
    opacity: 0;
    transform: rotate(-14deg) scale(0.6);
}

.reveal-overlay::after {
    top: -40%;
    left: -10%;
    width: 140%;
    height: 120%;
    background: linear-gradient(102deg, transparent 0%, rgba(255, 255, 255, 0.1) 24%, rgba(142, 211, 255, 0.4) 45%, rgba(255, 182, 219, 0.65) 60%, rgba(255, 255, 255, 0.1) 78%, transparent 100%);
    filter: blur(18px);
    opacity: 0;
    transform: translateY(62%) skewY(16deg);
}

.is-revealing .reveal-overlay {
    animation: reveal-flash 1.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.is-revealing .reveal-overlay::before {
    animation: reveal-swirl 2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.is-revealing .reveal-overlay::after {
    animation: reveal-streak 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.page-frame {
    position: relative;
    min-height: 100vh;
    opacity: 0;
    transform: translateY(70px) scale(0.9);
    filter: blur(24px);
    will-change: opacity, transform, filter;
    z-index: 1;
    box-shadow: 0 0 0 rgba(18, 22, 35, 0.8);
    transition: box-shadow 1.2s ease;
}

.is-loading .page-frame {
    pointer-events: none;
}

.is-loaded .page-frame {
    opacity: 1;
    transform: none;
    filter: none;
    box-shadow: 0 30px 90px rgba(18, 22, 35, 0.4);
}

.is-revealing .page-frame {
    animation: page-unveil 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    box-shadow: 0 60px 140px rgba(18, 22, 35, 0.55);
}

.is-loaded .loading-screen {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

html:not(.has-js) .loading-screen {
    display: none;
}

html:not(.has-js) .reveal-overlay {
    display: none;
}

html:not(.has-js) .page-frame {
    opacity: 1;
    transform: none;
    filter: none;
}

html:not(.has-js) body.is-loading {
    overflow: auto;
}

.aurora {
    position: fixed;
    inset: auto;
    width: 340px;
    height: 340px;
    filter: blur(90px);
    opacity: 0.7;
    z-index: -3;
    background: radial-gradient(circle, rgba(142, 211, 255, 0.6) 0%, rgba(7, 10, 19, 0) 70%);
    mix-blend-mode: screen;
    animation: pulse 12s ease-in-out infinite;
}

.aurora--one {
    top: 8vh;
    left: -4vw;
}

.aurora--two {
    top: 45vh;
    right: -8vw;
    background: radial-gradient(circle, rgba(255, 160, 196, 0.7) 0%, rgba(7, 10, 19, 0) 70%);
    animation-delay: 2s;
}

.aurora--three {
    bottom: -18vh;
    left: 25vw;
    background: radial-gradient(circle, rgba(255, 215, 111, 0.6) 0%, rgba(7, 10, 19, 0) 75%);
    animation-delay: 4s;
}

.container {
    width: var(--container-width);
    margin: 0 auto;
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: linear-gradient(135deg, rgba(16, 19, 34, 0.85), rgba(16, 19, 34, 0.6));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(20px, 3vw, 28px);
    letter-spacing: 0.24em;
    color: var(--color-text);
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 24px;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 6px;
    transition: color 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(124, 92, 255, 0.7), rgba(142, 211, 255, 0.8));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav a:hover,
.nav a:focus {
    color: var(--color-text);
}

.nav a:hover::after,
.nav a:focus::after {
    transform: scaleX(1);
}

.hero {
    padding: 120px 0 80px;
}

.hero__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: 64px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 520px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-text-muted);
}

.hero__eyebrow::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, rgba(142, 211, 255, 0.2), rgba(124, 92, 255, 0.8));
}

.hero__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    letter-spacing: -0.02em;
}

.hero__subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button {
    background: linear-gradient(135deg, #7c5cff, #53a8ff);
    color: #0b0d18;
    box-shadow: 0 12px 32px rgba(124, 92, 255, 0.35);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(124, 92, 255, 0.45);
}

.ghost-button {
    border: 1px solid rgba(142, 211, 255, 0.6);
    color: var(--color-text);
    background: rgba(11, 13, 24, 0.4);
}

.ghost-button:hover {
    transform: translateY(-3px);
    background: rgba(142, 211, 255, 0.1);
}

.hero__visual {
    position: relative;
    width: min(480px, 82vw);
    aspect-ratio: 1;
    margin: 0 auto;
    padding: clamp(18px, 5.2vw, 30px);
    border-radius: clamp(28px, 5vw, 40px);
    background: linear-gradient(145deg, #080d1f, #111c3d 52%, #060e22);
    box-shadow: 0 34px 120px rgba(6, 10, 36, 0.56);
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.hero__visual::before {
    content: "";
    position: absolute;
    inset: -22%;
    background: radial-gradient(circle at 28% 24%, rgba(124, 92, 255, 0.32), transparent 58%),
                radial-gradient(circle at 74% 66%, rgba(142, 211, 255, 0.35), transparent 68%);
    filter: blur(88px);
    opacity: 0.55;
    transform: translateZ(0);
    pointer-events: none;
}

.hero__visual::after {
    content: "";
    position: absolute;
    inset: 6%;
    border-radius: clamp(20px, 4vw, 32px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    mix-blend-mode: screen;
    opacity: 0.6;
    pointer-events: none;
}

.hero-showcase {
    position: relative;
    width: clamp(300px, 88%, 440px);
    max-width: 100%;
    aspect-ratio: 1;
    border-radius: clamp(24px, 4.6vw, 34px);
    padding: clamp(12px, 3.8vw, 22px);
    display: grid;
    place-items: center;
    background: linear-gradient(152deg, rgba(38, 52, 96, 0.82), rgba(14, 22, 46, 0.88));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 16px 38px rgba(6, 8, 20, 0.65), 0 24px 60px rgba(4, 10, 36, 0.48);
    overflow: hidden;
    isolation: isolate;
}

.hero-showcase::before {
    content: "";
    position: absolute;
    inset: 7%;
    border-radius: 32%;
    background:
        radial-gradient(circle at 50% 34%, rgba(124, 92, 255, 0.32), transparent 60%),
        radial-gradient(circle at 50% 72%, rgba(142, 211, 255, 0.26), transparent 72%);
    filter: blur(26px);
    opacity: 0.85;
    pointer-events: none;
}

.hero-showcase::after {
    content: "";
    position: absolute;
    inset: 4%;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.07);
    mix-blend-mode: screen;
    opacity: 0.55;
    pointer-events: none;
}

.hero-showcase__glow {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    opacity: 0.55;
    transform-origin: center;
    animation: hero-glow 9s ease-in-out infinite;
}

.hero-showcase__glow--violet {
    width: 168%;
    height: 168%;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.46), rgba(124, 92, 255, 0));
}

.hero-showcase__glow--cyan {
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(142, 211, 255, 0.52), rgba(142, 211, 255, 0));
    animation-delay: 2.4s;
}

.hero-showcase__orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    mix-blend-mode: screen;
    opacity: 0.65;
    animation: hero-orbit 18s linear infinite;
}

.hero-showcase__orbit--outer {
    inset: clamp(6%, 4.2vw, 9%);
    border-color: rgba(124, 92, 255, 0.38);
}

.hero-showcase__orbit--inner {
    inset: clamp(16%, 9vw, 22%);
    border-color: rgba(142, 211, 255, 0.42);
    animation-duration: 14s;
    animation-direction: reverse;
}

.hero-showcase__logo {
    position: relative;
    width: clamp(248px, 94%, 394px);
    max-width: 98%;
    z-index: 1;
    border-radius: 18px;
    filter: drop-shadow(0 24px 48px rgba(4, 8, 24, 0.7));
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), filter 0.8s ease;
}

.hero__visual:hover .hero-showcase__logo {
    transform: translateY(-6px) scale(1.04);
    filter: drop-shadow(0 30px 60px rgba(4, 8, 24, 0.78));
}


.section {
    padding: 80px 0;
}

.section__header {
    max-width: 640px;
    margin-bottom: 48px;
}

.section__eyebrow {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(217, 226, 255, 0.6);
}

.section__eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(124, 92, 255, 0.6), rgba(142, 211, 255, 0));
}

.section h2 {
    margin: 16px 0 12px;
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.01em;
}

.section p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-muted);
}

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

.principle {
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(20, 24, 39, 0.8), rgba(20, 24, 39, 0.55));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(5, 6, 12, 0.4);
    backdrop-filter: blur(12px);
}

.principle h3 {
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: 22px;
}

.principle p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

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

.app-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    border-radius: 26px;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(145deg, rgba(26, 31, 52, 0.9), rgba(18, 22, 35, 0.75));
    border: 1px solid rgba(142, 211, 255, 0.12);
    box-shadow: 0 18px 42px rgba(5, 7, 18, 0.5);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.app-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(124, 92, 255, 0.18), transparent 70%);
    top: -80px;
    right: -60px;
    transition: transform 0.35s ease;
    pointer-events: none;
}

.app-card:hover {
    transform: translateY(-8px);
    border-color: rgba(142, 211, 255, 0.4);
    box-shadow: 0 28px 64px rgba(5, 7, 18, 0.65);
}

.app-card:hover::before {
    transform: scale(1.2);
}

.app-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(142, 211, 255, 0.12);
    color: rgba(142, 211, 255, 0.9);
}

.app-card__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 26px;
}

.app-card__description {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.app-card__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.app-card__pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-card__cta {
    margin-top: auto;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-accent-soft);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease;
}

.app-card:hover .app-card__cta {
    transform: translateX(6px);
}

.site-footer {
    padding: 56px 0;
    background: rgba(4, 6, 14, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: rgba(217, 226, 255, 0.7);
}

.footer-link {
    color: rgba(142, 211, 255, 0.85);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-link:hover {
    color: var(--color-text);
}

.has-js [data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.has-js [data-animate].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes reveal-flash {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    18% {
        opacity: 1;
    }
    46% {
        opacity: 0.88;
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

@keyframes reveal-swirl {
    0% {
        opacity: 0;
        transform: rotate(-18deg) scale(0.55);
    }
    40% {
        opacity: 0.92;
    }
    100% {
        opacity: 0;
        transform: rotate(26deg) scale(1.1);
    }
}

@keyframes reveal-streak {
    0% {
        opacity: 0;
        transform: translateY(60%) skewY(18deg);
    }
    30% {
        opacity: 1;
    }
    55% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translateY(-28%) skewY(0deg);
    }
}

@keyframes page-unveil {
    0% {
        opacity: 0;
        transform: translateY(70px) scale(0.9);
        filter: blur(24px);
    }
    45% {
        opacity: 1;
        filter: blur(14px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes loader-spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes loader-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes loader-spark {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(0.9);
        opacity: 0.8;
    }
    50% {
        transform: translate3d(4px, -4px, 0) scale(1.2);
        opacity: 1;
    }
}

@keyframes hero-glow {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.45;
    }
    50% {
        transform: scale(1.08) rotate(14deg);
        opacity: 0.7;
    }
}

@keyframes hero-orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.65;
    }
    50% {
        transform: scale(1.12);
        opacity: 0.85;
    }
}


@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal-overlay {
        display: none;
    }

    .page-frame {
        filter: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .hero-showcase__glow,
    .hero-showcase__orbit {
        animation: none !important;
    }

    .hero-showcase__logo {
        transition: none !important;
    }

    .hero__visual:hover .hero-showcase__logo {
        transform: none !important;
    }
}


@media (max-width: 768px) {
    .top-bar__inner {
        padding: 16px 0;
    }

    .nav {
        gap: 16px;
        font-size: 12px;
    }

    .hero {
        padding: 96px 0 64px;
    }

    .hero__inner {
        gap: 48px;
    }

    .hero__visual {
        width: min(400px, 92vw);
        padding: clamp(16px, 7vw, 26px);
    }

    .section {
        padding: 64px 0;
    }
}

@media (max-width: 520px) {
    .nav {
        display: none;
    }

    .hero__title {
        font-size: clamp(40px, 12vw, 56px);
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section__header {
        margin-bottom: 40px;
    }

    .hero__visual {
        width: min(340px, 90vw);
        padding: clamp(12px, 6.5vw, 18px);
    }

    .hero-showcase {
        width: clamp(220px, 84%, 300px);
        padding: clamp(8px, 9vw, 16px);
        border-radius: clamp(22px, 12vw, 30px);
    }

    .hero-showcase__logo {
        width: clamp(188px, 96%, 288px);
    }
}
