/* gamelicen.se — Frutiger Aero Glossy Tech */

:root {
    --sky-blue: #4a90d9;
    --light-sky: #87ceeb;
    --panel-white: rgba(255, 255, 255, 0.8);
    --panel-white-strong: rgba(255, 255, 255, 0.92);
    --cloud-light: #f0f4fa;
    --deep-navy: #1a2a4a;
    --leaf-green: #5cb85c;
    --glow-cyan: #5ec8f2;
    --warm-gray: #6b7a8d;
    --mid-navy: #2a3a5a;

    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lift: 0 12px 40px rgba(0, 0, 0, 0.15);
    --inset-gloss: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    --inset-gloss-strong: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    --border-glass: 1px solid rgba(255, 255, 255, 0.3);

    --font-display: "Nunito Sans", "Inter", system-ui, sans-serif;
    --font-body: "Inter", system-ui, sans-serif;
    --font-accent: "Poppins", "Inter", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--mid-navy);
    background: var(--cloud-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fixed sky background for parallax depth */
.sky-fixed {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: linear-gradient(170deg, #4a90d9, #87ceeb 60%, #b8dcef);
    pointer-events: none;
}
.sky-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='4' height='4'><circle cx='1' cy='1' r='0.5' fill='white' opacity='0.6'/><circle cx='3' cy='2' r='0.5' fill='white' opacity='0.4'/></svg>");
    opacity: 0.05;
    mix-blend-mode: overlay;
    pointer-events: none;
}

main {
    position: relative;
    z-index: 1;
}

/* Glass panel — atomic unit */
.glass-panel {
    background: var(--panel-white);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-radius: 20px;
    border: var(--border-glass);
    box-shadow: var(--shadow-soft), var(--inset-gloss);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
}
.glass-panel::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0));
    pointer-events: none;
    border-radius: 20px 20px 0 0;
}
.glass-panel:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift), var(--inset-gloss-strong);
}

/* Section base */
.section {
    position: relative;
    padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ===== Navigation Pill ===== */
.nav-pill {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), var(--inset-gloss);
    padding: 0.55rem 1.1rem;
    max-width: calc(100% - 40px);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: var(--deep-navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
}
.nav-shield {
    width: 22px;
    height: 22px;
    background: var(--leaf-green);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    box-shadow: 0 2px 6px rgba(92, 184, 92, 0.4),
                inset 0 1px 0 rgba(255,255,255,0.5);
    position: relative;
    flex-shrink: 0;
}
.nav-shield::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 4px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: translate(-55%, -65%) rotate(-45deg);
}
.nav-tld {
    color: var(--glow-cyan);
    font-weight: 900;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}
.nav-links a {
    display: block;
    padding: 0.4rem 0.85rem;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.nav-links a:hover {
    background: rgba(74, 144, 217, 0.12);
    color: var(--sky-blue);
}

/* ===== Welcome Section ===== */
.section-welcome {
    min-height: 100vh;
}

.orb-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.orb-glow-large {
    width: 720px;
    height: 720px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
        rgba(94, 200, 242, 0.35) 0%,
        rgba(94, 200, 242, 0.18) 35%,
        rgba(94, 200, 242, 0) 70%);
    filter: blur(20px);
}

.hero-panel {
    position: relative;
    z-index: 2;
    width: min(640px, 90%);
    text-align: center;
    padding: clamp(2.5rem, 6vw, 4rem) clamp(2rem, 5vw, 3.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.hero-shield {
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

/* Shield Emblem */
.shield {
    width: 48px;
    height: 48px;
    background: linear-gradient(160deg, #7ed47e, #5cb85c 50%, #4aa14a);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(92, 184, 92, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.55),
                inset 0 -2px 4px rgba(74, 161, 74, 0.4);
    position: relative;
}
.shield::after {
    content: "";
    width: 14px;
    height: 8px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(-45deg) translate(0, -2px);
    margin-top: -2px;
}
.shield-large {
    width: 72px;
    height: 72px;
}
.shield-large::after {
    width: 22px;
    height: 12px;
    border-left-width: 4px;
    border-bottom-width: 4px;
}
.shield-xl {
    width: 96px;
    height: 96px;
}
.shield-xl::after {
    width: 30px;
    height: 16px;
    border-left-width: 5px;
    border-bottom-width: 5px;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.01em;
    color: var(--deep-navy);
    line-height: 1.05;
}
.hero-domain {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    letter-spacing: -0.01em;
    color: var(--mid-navy);
}
.hero-domain-tld {
    color: var(--glow-cyan);
    text-shadow: 0 1px 0 rgba(255,255,255,0.5),
                 0 0 18px rgba(94, 200, 242, 0.5);
}
.hero-tagline {
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    color: var(--warm-gray);
    max-width: 460px;
    line-height: 1.7;
}
.hero-badges {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}
.badge {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(240,244,250,0.85));
    color: var(--sky-blue);
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 217, 0.25);
    box-shadow: var(--inset-gloss), 0 1px 3px rgba(0,0,0,0.05);
}
.badge-green {
    color: #2f7a2f;
    border-color: rgba(92, 184, 92, 0.35);
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(232, 245, 232, 0.85));
}

.welcome-scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(26, 42, 74, 0.55);
    z-index: 2;
}
.scroll-arrow {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(26,42,74,0.5), rgba(26,42,74,0));
    animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
    0%, 100% { opacity: 0.6; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}

/* ===== Features Section ===== */
.section-features {
    background: linear-gradient(180deg, #e8f0fe 0%, #f0f4fa 100%);
    min-height: 90vh;
}

.features-header,
.process-header {
    text-align: center;
    max-width: 720px;
    margin-bottom: 3rem;
}
.eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sky-blue);
    margin-bottom: 0.75rem;
    padding: 0.3rem 0.9rem;
    background: rgba(94, 200, 242, 0.12);
    border-radius: 20px;
    border: 1px solid rgba(94, 200, 242, 0.25);
}
.eyebrow-light {
    background: rgba(255,255,255,0.7);
    color: var(--sky-blue);
    border-color: rgba(255,255,255,0.5);
}
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--deep-navy);
    letter-spacing: 0.01em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.section-subtitle {
    font-family: var(--font-body);
    color: var(--warm-gray);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
}

.feature-grid {
    display: grid;
    grid-template-columns: 30% 35% 28%;
    gap: 3%;
    width: min(1200px, 100%);
    align-items: start;
}
.feature-panel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out, box-shadow 0.35s ease;
}
.feature-panel-1 { margin-top: 0; }
.feature-panel-2 { margin-top: 4vh; }
.feature-panel-3 { margin-top: 2vh; }
.feature-panel.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--inset-gloss-strong),
                0 4px 14px rgba(74, 144, 217, 0.3);
    position: relative;
}
.feature-icon::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 8px;
    width: 40%;
    height: 30%;
    background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0));
    border-radius: 50%;
}
.icon-blue {
    background: radial-gradient(circle at 35% 30%, #8dc6f5, #4a90d9 70%);
}
.icon-green {
    background: radial-gradient(circle at 35% 30%, #8fdc8f, #5cb85c 70%);
    box-shadow: var(--inset-gloss-strong),
                0 4px 14px rgba(92, 184, 92, 0.3);
}
.icon-cyan {
    background: radial-gradient(circle at 35% 30%, #a8e3f8, #5ec8f2 70%);
    box-shadow: var(--inset-gloss-strong),
                0 4px 14px rgba(94, 200, 242, 0.35);
}

.icon-glyph {
    width: 22px;
    height: 22px;
    position: relative;
    z-index: 1;
}
.icon-key {
    width: 22px;
    height: 12px;
    border: 2.5px solid white;
    border-radius: 7px;
    position: relative;
}
.icon-key::after {
    content: "";
    position: absolute;
    right: -6px;
    top: 50%;
    width: 10px;
    height: 2.5px;
    background: white;
    transform: translateY(-50%);
    box-shadow: 0 4px 0 white;
}
.icon-shield {
    width: 18px;
    height: 22px;
    background: white;
    clip-path: polygon(50% 0, 100% 18%, 100% 60%, 50% 100%, 0 60%, 0 18%);
}
.icon-sparkle {
    width: 22px;
    height: 22px;
    position: relative;
}
.icon-sparkle::before,
.icon-sparkle::after {
    content: "";
    position: absolute;
    background: white;
    top: 50%;
    left: 50%;
}
.icon-sparkle::before {
    width: 22px;
    height: 3px;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}
.icon-sparkle::after {
    width: 3px;
    height: 22px;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.feature-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.15rem, 1.8vw, 1.5rem);
    color: var(--deep-navy);
    letter-spacing: 0.01em;
}
.feature-text {
    font-family: var(--font-body);
    color: var(--warm-gray);
    font-size: 0.98rem;
    line-height: 1.65;
}
.feature-meta {
    margin-top: auto;
    padding-top: 0.5rem;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--glow-cyan);
}

/* ===== Process Section ===== */
.section-process {
    min-height: 80vh;
}

.process-flow {
    position: relative;
    width: min(1200px, 100%);
    padding: 2rem 0;
}
.process-svg {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    height: 220px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
}
.connector-path {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    transition: stroke-dashoffset 0.9s ease-out;
}
.connector-path.is-drawn {
    stroke-dashoffset: 0;
}
.connector-dot {
    opacity: 0;
    transition: opacity 0.4s ease-out;
}
.connector-dot.is-drawn {
    opacity: 1;
}

.process-pills {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
}
.process-pill {
    flex: 1;
    min-width: 0;
    max-width: 220px;
    padding: 1.1rem 1.25rem;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.85) 50%,
        rgba(240,244,250,0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.45);
    box-shadow: 0 6px 20px rgba(26, 42, 74, 0.15),
                var(--inset-gloss-strong);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
}
.process-pill.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.process-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(26, 42, 74, 0.2),
                var(--inset-gloss-strong);
}
.process-num {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--glow-cyan);
}
.process-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--deep-navy);
}
.process-desc {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--warm-gray);
    line-height: 1.4;
}

/* ===== Showcase Section ===== */
.section-showcase {
    min-height: 100vh;
    position: relative;
}
.showcase-panel {
    position: relative;
    z-index: 2;
    width: min(820px, 90%);
    text-align: center;
    padding: clamp(2.5rem, 6vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}
.showcase-shield {
    margin-bottom: 0.5rem;
}
.showcase-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--deep-navy);
    letter-spacing: 0.01em;
    line-height: 1.2;
    max-width: 640px;
}
.showcase-text {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--warm-gray);
    max-width: 580px;
}
.showcase-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin: 1rem 0 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.stat-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    position: relative;
}
.stat-num {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--sky-blue);
    line-height: 1;
    letter-spacing: -0.02em;
}
.stat-suffix {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--sky-blue);
    margin-left: 2px;
}
.stat-block:nth-child(3) .stat-num,
.stat-block:nth-child(3) .stat-suffix {
    display: inline;
}
.stat-label {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--warm-gray);
}
.stat-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(74,144,217,0.35), transparent);
}

.showcase-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.75rem;
}
.pill-btn {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    padding: 0.85rem 1.6rem;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.pill-btn-primary {
    background: linear-gradient(180deg, #6ba8e8 0%, #4a90d9 50%, #3a7bbf 100%);
    color: white;
    box-shadow: 0 6px 18px rgba(74, 144, 217, 0.4),
                inset 0 1px 0 rgba(255,255,255,0.5),
                inset 0 -2px 4px rgba(58, 123, 191, 0.6);
}
.pill-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(74, 144, 217, 0.5),
                inset 0 1px 0 rgba(255,255,255,0.6);
}
.pill-btn-ghost {
    background: rgba(255, 255, 255, 0.85);
    color: var(--deep-navy);
    border: 1px solid rgba(74, 144, 217, 0.25);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06),
                var(--inset-gloss);
}
.pill-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.97);
    transform: translateY(-2px);
}

/* ===== Footer Section ===== */
.section-footer {
    background: linear-gradient(180deg, #1a2a4a 0%, #2a3a5a 100%);
    color: white;
    min-height: 50vh;
    padding: clamp(3rem, 7vw, 5rem) 1.5rem;
    overflow: hidden;
}
.footer-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
        rgba(94, 200, 242, 0.18) 0%,
        rgba(74, 144, 217, 0.10) 35%,
        rgba(0,0,0,0) 70%);
    filter: blur(20px);
    pointer-events: none;
}
.footer-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    max-width: 720px;
}
.footer-wordmark {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.01em;
    color: white;
    text-shadow: 0 0 28px rgba(94, 200, 242, 0.55),
                 0 0 60px rgba(74, 144, 217, 0.35);
    animation: glow-pulse 4s ease-in-out infinite;
}
.footer-tld {
    color: var(--glow-cyan);
}
@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 28px rgba(94, 200, 242, 0.55),
                     0 0 60px rgba(74, 144, 217, 0.35);
    }
    50% {
        text-shadow: 0 0 36px rgba(94, 200, 242, 0.75),
                     0 0 80px rgba(74, 144, 217, 0.5);
    }
}
.footer-line {
    font-family: var(--font-body);
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 520px;
}
.footer-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-links a {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    padding: 0.35rem 0.85rem;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    transition: all 0.25s ease;
}
.footer-links a:hover {
    color: var(--glow-cyan);
    border-color: rgba(94, 200, 242, 0.4);
    background: rgba(94, 200, 242, 0.08);
}
.footer-fineprint {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.4);
    margin-top: 0.5rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .feature-panel-1,
    .feature-panel-2,
    .feature-panel-3 {
        margin-top: 0;
    }
    .process-pills {
        flex-direction: column;
        gap: 1rem;
    }
    .process-pill {
        max-width: 100%;
        width: 100%;
    }
    .process-svg {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-pill {
        top: 12px;
        border-radius: 20px;
        gap: 0.75rem;
        padding: 0.45rem 0.85rem;
    }
    .nav-links {
        gap: 0;
    }
    .nav-links a {
        padding: 0.3rem 0.55rem;
        font-size: 0.7rem;
    }
    .glass-panel {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .showcase-panel {
        width: 90%;
    }
    .stat-divider {
        display: none;
    }
    .showcase-stats {
        gap: 1rem;
    }
}

@media (max-width: 540px) {
    .nav-links li:last-child {
        display: none;
    }
    .hero-title {
        font-size: 2rem;
    }
}
