@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: vt-out 0.2s ease-in forwards;
}

::view-transition-new(root) {
    animation: vt-in 0.25s ease-out forwards;
}

@keyframes vt-out {
    to { opacity: 0; transform: translateY(-8px); }
}

@keyframes vt-in {
    from { opacity: 0; transform: translateY(10px); }
}

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

html { scroll-behavior: smooth; }
html, body { min-height: 100%; }

:root {
    --bg:       #080808;
    --bg2:      #121212;
    --sur:      #1c1c1c;
    --bd:       #2a2a2a;
    --bd2:      #3a3a3a;
    --cr:       #e6005c;
    --cr-hover: #ff1a75;
    --cr-dim:   rgba(230, 0, 92, 0.15);
    --fg:       #ffffff;
    --fg2:      #b3b3b3;
    --fg3:      #808080;
    --font-head: 'Montserrat', sans-serif;
    --font-sans: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

body {
    background: var(--bg);
    color: var(--fg);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 72px;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    z-index: 100;
    padding: 0 24px;
}

.nav-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 900;
    color: var(--fg);
    letter-spacing: -0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-brand em {
    color: var(--cr);
    font-style: normal;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    color: var(--fg2);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.2s;
}

.nav-link:hover, .nav-link.active {
    color: var(--fg);
}

.nav-btn {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: var(--cr);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-btn:hover {
    background: var(--cr-hover);
    transform: translateY(-1px);
}

.apply-btn { position: relative; }

.hiring-badge {
    position: absolute;
    top: -8px; right: -12px;
    background: #00e676;
    color: #080808;
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 900;
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 36px; height: 36px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: 1px solid var(--bd);
    border-radius: var(--radius-sm);
    padding: 0;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 16px; height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(4px);
    z-index: 99;
}

main {
    padding-top: 70px;
    min-height: calc(100vh - 56px);
}

.page-col {
    max-width: 1120px;
    margin: 0 auto;
}

.section { padding: 100px 48px; }

@keyframes heroBreathe {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50%       { transform: scale(1.02) rotate(1deg); }
}

@keyframes floatMenu3D {
    0%, 100% { transform: perspective(1000px) rotateY(-18deg) rotateX(10deg) rotateZ(-4deg) translateY(0px); }
    50%       { transform: perspective(1000px) rotateY(-14deg) rotateX(8deg) rotateZ(-2deg) translateY(-25px); }
}

.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end; 
    justify-content: center;
    padding: 160px 48px 0; 
    min-height: calc(100vh - 70px);
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.45;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(8,8,8,0.96) 30%, rgba(8,8,8,0.5) 65%, rgba(8,8,8,0.15));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    display: flex;
    align-items: flex-end; 
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    max-width: 540px;
    flex-shrink: 0;
    padding-bottom: 140px; 
    position: relative;
    z-index: 5; 
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end; 
    position: relative;
    height: 100%;
}

.hero-floating-menu {
    position: absolute;
    top: 5%;
    right: 45%; 
    width: 400px;
    height: auto;
    z-index: 1; 
    opacity: 0.75;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px var(--cr-dim);
    filter: blur(0.1px); 
    animation: floatMenu3D 8s ease-in-out infinite;
    pointer-events: none; 
}

.hero-character {
    width: 100%;
    max-width: 580px;
    height: auto;
    object-fit: contain;
    transform-origin: bottom center; 
    animation: heroBreathe 6s ease-in-out infinite;
    position: relative;
    z-index: 2; 
    filter: 
        drop-shadow(0 -10px 40px rgba(230, 0, 92, 0.4)) 
        drop-shadow(0 0 80px var(--cr-dim))
        sepia(0.2) 
        hue-rotate(-30deg) 
        saturate(1.2);
    display: block;
    margin-bottom: -1px; 
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--cr);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-head); 
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--fg);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.hero-title em {
    font-style: normal;
    color: var(--cr); 
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--fg2);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.btn-primary {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--cr);
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    background: var(--cr-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--cr-dim);
}

.btn-ghost {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--fg);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 16px 32px;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    margin: 0 48px;
}

.sec-eyebrow {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    color: var(--cr);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.sec-title {
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    color: var(--fg);
    line-height: 1;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.sec-lead {
    font-size: 16px;
    color: var(--fg2);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 64px;
}

.sec-title--center, .sec-lead--center, .sec-eyebrow--center { text-align: center; }
.sec-lead--center { margin-left: auto; margin-right: auto; }

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.store-grid--single {
    grid-template-columns: minmax(0, 420px);
    margin: 0 auto;
}

.store-card {
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.store-card:hover {
    border-color: var(--cr);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.sc-thumb {
    height: 200px;
    background: var(--sur);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sc-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.store-card:hover .sc-thumb img { transform: scale(1.05); }

.sc-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--cr);
    color: #fff;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.sc-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sc-title {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--fg);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.sc-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sc-tag {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    color: var(--fg2);
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    padding: 6px 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sc-desc {
    font-size: 14px;
    color: var(--fg2);
    line-height: 1.7;
    margin-bottom: 32px;
    flex: 1;
}

.sc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.sc-price-val {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--fg);
}

.sc-btn {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: none;
    padding: 12px 24px;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.store-card:hover .sc-btn { background: var(--cr); }

.product-section { padding: 48px 48px 100px; }

.view { display: none; }
.view.active { display: block; }

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--fg2);
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 48px;
    transition: color 0.2s;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.back-btn:hover { color: var(--fg); }
.back-btn svg { transition: transform 0.2s; }
.back-btn:hover svg { transform: translateX(-4px); }

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.prod-gallery {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    background: var(--bg2);
    position: relative;
    aspect-ratio: 16/10;
}

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

.prod-name {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 900;
    color: var(--fg);
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1;
}

.prod-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.prod-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.prod-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    color: #00e676;
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid rgba(0, 230, 118, 0.2);
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
}

.status-dot {
    width: 6px; height: 6px;
    background: #00e676;
    border-radius: 50%;
    box-shadow: 0 0 8px #00e676;
}

.prod-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--fg2);
    margin-bottom: 40px;
}

.prod-feat-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
}

.prod-feat-list li {
    font-size: 14px;
    color: var(--fg2);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.prod-feat-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--cr);
    font-weight: 700;
}

.prod-purchase-box {
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.purchase-top {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 32px;
}

.purchase-label {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--fg3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.dur-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dur-card {
    background: var(--sur);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px 12px;
    text-align: center;
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    position: relative;
}

.dur-card.active {
    border-color: var(--cr);
    background: var(--cr-dim);
}

.dur-card:hover:not(.active) { border-color: var(--bd2); }

.dc-time {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--fg2);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.dur-card.active .dc-time { color: var(--fg); }

.dc-price {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--fg);
}

.dc-best {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--cr);
    color: #fff;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.purchase-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
}

.purchase-price-val {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 900;
    color: var(--fg);
}

.purchase-price-per {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    color: var(--fg3);
    text-transform: uppercase;
    margin-top: 4px;
}

.purchase-btn {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    background: var(--cr);
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s;
    box-shadow: 0 4px 16px var(--cr-dim);
    text-decoration: none;
    display: inline-block;
}

.purchase-btn:hover {
    background: var(--cr-hover);
    transform: translateY(-2px);
}

.status-inner {
    max-width: 680px;
    margin: 0 auto;
}

.status-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background: var(--bg2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 32px;
}

.sb-info { flex: 1; }

.sb-title {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: var(--fg);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sb-meta {
    font-size: 14px;
    color: var(--fg2);
}

.sb-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.badge-online {
    color: #00e676;
    background: rgba(0,230,118,0.1);
    border: 1px solid rgba(0,230,118,0.2);
}

.badge-offline {
    color: #ff5252;
    background: rgba(255,82,82,0.1);
    border: 1px solid rgba(255,82,82,0.2);
}

.badge-updating {
    color: #ffab40;
    background: rgba(255,171,64,0.1);
    border: 1px solid rgba(255,171,64,0.2);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); }

.faq-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 32px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-q {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--fg);
    transition: color 0.2s;
}

.faq-toggle:hover .faq-q { color: var(--cr); }

.faq-icon {
    color: var(--fg3);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    color: var(--cr);
    transform: rotate(180deg);
}

.faq-a {
    font-size: 14px;
    color: var(--fg2);
    line-height: 1.7;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
    padding-bottom: 0;
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding-bottom: 32px;
}

.bento-section {
    padding: 3rem 1rem 5rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 1.25rem;
}

.bento-card {
    background: var(--bg2);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.bento-card:hover {
    border-color: var(--cr);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% -20%, var(--cr-dim) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

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

.card-wide { grid-column: span 2; }
.card-small { grid-column: span 1; grid-row: span 2; }
.card-tall { grid-column: span 2; grid-row: span 2; }

@media (max-width: 900px) {
    .card-wide, .card-small, .card-tall { grid-column: span 2; grid-row: span 1; }
    .bento-card:nth-child(5) { grid-column: span 4; }
}

@media (max-width: 600px) {
    .card-wide, .card-small, .card-tall, .bento-card:nth-child(5) { grid-column: span 4; }
    .bento-grid { grid-auto-rows: minmax(250px, auto); }
}

.bento-visual {
    flex: 1;
    background: var(--sur);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.02);
    z-index: 2;
    padding: 1rem;
}

.bento-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    opacity: 0.5;
}

.bento-content {
    padding: 1.5rem;
    z-index: 2;
}

.bento-content h3 {
    color: var(--fg);
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.bento-content p {
    color: var(--fg2);
    font-size: 0.85rem;
    line-height: 1.6;
}

.mock-shield {
    width: 64px; height: 64px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.mock-toggles {
    display: flex; flex-direction: column; gap: 10px; width: 80%;
}
.mock-toggle-row {
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,255,255,0.02); padding: 8px 12px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.03);
}
.mock-toggle-text { font-size: 12px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px;}
.mock-switch { width: 32px; height: 18px; background: rgba(255,255,255,0.1); border-radius: 10px; position: relative; }
.mock-switch.active { background: var(--cr); }
.mock-switch::after { content: ''; position: absolute; width: 14px; height: 14px; background: #fff; border-radius: 50%; top: 2px; left: 2px; transition: 0.2s; }
.mock-switch.active::after { left: 16px; }

.mock-menu {
    width: 80%; height: 80%; background: var(--bg); border-radius: 8px; border: 1px solid rgba(255,255,255,0.05);
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}
.mock-menu-header { height: 20px; background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; align-items: center; padding: 0 10px; gap: 4px; }
.mock-menu-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.mock-menu-body { flex: 1; padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.mock-menu-line { height: 6px; background: rgba(255,255,255,0.05); border-radius: 4px; width: 100%; }
.mock-menu-line.short { width: 60%; }

.mock-esp-box {
    width: 40px; height: 60px; border: 1px solid var(--cr); border-radius: 2px; position: relative;
    box-shadow: inset 0 0 10px var(--cr-dim), 0 0 10px var(--cr-dim);
}
.mock-esp-hp { position: absolute; left: -6px; top: 0; bottom: 0; width: 2px; background: #00e676; }

.how-section {
    padding: 0 48px 100px;
}

.how-label {
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 800;
    color: var(--fg3);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.mock-scene {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #0c0c0c;
    background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    user-select: none;
}

.mock-cursor {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 50;
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    gap: 5px;
    transition: left 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                top  0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mock-cursor svg {
    transition: transform 0.1s ease;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.6));
}

.mock-cursor.clicking svg { transform: scale(0.82); }

.cursor-tag {
    background: var(--cr);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
    margin-top: 14px;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.mock-desktop {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.mock-file {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s;
}

.mock-file.selected {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.1);
}

.mock-file-icon {
    width: 52px;
    height: 52px;
    background: var(--sur);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cr);
}

.mock-file-name {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--fg2);
    font-weight: 500;
}

.mock-window {
    position: absolute;
    inset: 16px;
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.96) translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.mock-window.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.mock-win-bar {
    height: 34px;
    background: #1a1a1a;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    padding: 0 14px;
    gap: 10px;
    flex-shrink: 0;
}

.mock-win-dots {
    display: flex;
    gap: 5px;
}

.mock-win-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
}

.mock-win-title {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--fg3);
    font-weight: 600;
}

.mock-win-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.mock-field-label {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 700;
    color: var(--fg3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.mock-input {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    padding: 9px 12px;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: var(--fg);
    display: flex;
    align-items: center;
    transition: border-color 0.2s;
    min-height: 38px;
}

.mock-input.focused { border-color: var(--cr); }

.mock-caret {
    color: var(--cr);
    animation: blink 0.9s step-end infinite;
    margin-left: 1px;
    font-weight: 300;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.mock-status-line {
    font-family: var(--font-sans);
    font-size: 11px;
    color: var(--fg3);
    transition: color 0.3s;
}

.mock-status-line.authorizing { color: #ffab40; }
.mock-status-line.done        { color: #00e676; }

.mock-inject-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--fg3);
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 800;
    padding: 0 16px;
    height: 38px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    align-self: flex-start;
}

.mock-inject-btn.ready {
    background: var(--cr);
    border-color: var(--cr);
    color: #fff;
}

.mock-inject-btn.injected {
    background: rgba(0,230,118,0.12);
    border-color: rgba(0,230,118,0.25);
    color: #00e676;
}

.mock-success {
    position: absolute;
    inset: 0;
    background: rgba(8,8,8,0.88);
    backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 30;
    pointer-events: none;
}

.mock-success.visible { opacity: 1; }

.mock-check-wrap {
    width: 52px;
    height: 52px;
    background: rgba(0,230,118,0.08);
    border: 1px solid rgba(0,230,118,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-success-text {
    font-family: var(--font-head);
    font-size: 15px;
    font-weight: 800;
    color: var(--fg);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .how-section { padding-left: 24px; padding-right: 24px; }
}

.site-footer {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: var(--bg);
}

.footer-copy {
    font-family: var(--font-head);
    font-size: 12px;
    color: var(--fg3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links { display: flex; gap: 32px; }

.footer-link {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--fg3);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}

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

@media (max-width: 900px) {
    .hero {
        padding: 120px 32px 0; 
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        align-items: center; 
    }

    .hero-content {
        margin: 0 auto;
        padding-bottom: 0;
    }

    .hero-visual {
        justify-content: center;
    }

    .hero-floating-menu {
        display: none;
    }

    .hero-character {
        max-width: 400px;
    }

    .hero-actions { justify-content: center; }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .navbar { padding: 0 24px; }
    .menu-toggle { display: flex; }

    .nav-overlay.open { display: block; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg2);
        flex-direction: column;
        padding: 100px 32px;
        align-items: flex-start;
        gap: 32px;
        transition: right 0.3s;
        border-left: 1px solid rgba(255,255,255,0.05);
        z-index: 100;
    }

    .nav-links.open { right: 0; }

    .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.open span:nth-child(2) { opacity: 0; }
    .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .section, .video-section { padding: 80px 24px; }
    .product-section { padding: 40px 24px 80px; }
    .divider { margin: 0 24px; }

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

    .site-footer {
        padding: 32px 24px;
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
}