:root {
    --primary: #66ffe8;
    --secondary: #1f1f1f;
    --body: #b1b1b1;
    --headline: #ffffff;
    --border: #353535;
    --dark: #070707;
    --dark-light: #131313;
    --white: #ffffff;
    --primary-soft: rgba(102, 255, 232, .10);
    --primary-line: rgba(102, 255, 232, .28);
    --shadow: 0 28px 80px rgba(0, 0, 0, .38);
    --radius: 20px;
    --shell: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--dark); color: var(--body); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body::before { content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none; background: radial-gradient(circle at 16% 10%, rgba(102,255,232,.055), transparent 25%), linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px); background-size: auto, 72px 72px, 72px 72px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { color: var(--headline); letter-spacing: -.035em; line-height: 1.08; }
p { color: var(--body); }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section-pad { padding: 120px 0; }
.no-top { padding-top: 0; }
.section-dark { background: var(--dark-light); border-block: 1px solid var(--border); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--primary); font-size: 12px; font-weight: 800; letter-spacing: .17em; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--primary); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 0 25px; border: 1px solid var(--primary); border-radius: 999px; background: var(--primary); color: var(--dark); font-size: 14px; font-weight: 800; letter-spacing: -.01em; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(102,255,232,.16); }
.button-small { min-height: 40px; padding: 0 17px; font-size: 12px; }
.button-ghost { color: var(--white); background: transparent; border-color: var(--border); }
.button-ghost:hover { color: var(--dark); background: var(--primary); border-color: var(--primary); }
.button-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.text-link { display: inline-flex; align-items: center; gap: 14px; color: var(--white); font-size: 14px; font-weight: 750; border-bottom: 1px solid var(--border); padding-bottom: 7px; transition: color .2s, border-color .2s; }
.text-link span { color: var(--primary); transition: transform .2s; }
.text-link:hover { color: var(--primary); border-color: var(--primary); }
.text-link:hover span { transform: translateX(4px); }
.panel { background: var(--dark-light); border: 1px solid var(--border); border-radius: var(--radius); }
.flash { position: relative; z-index: 30; display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding: 13px 48px 13px 17px; border: 1px solid var(--primary-line); border-radius: 12px; background: var(--dark-light); color: var(--white); font-size: 14px; }
.flash-success { box-shadow: inset 3px 0 var(--primary); }
.flash-error { box-shadow: inset 3px 0 var(--white); }
.flash button { position: absolute; right: 15px; border: 0; background: none; color: var(--body); font-size: 21px; }
.cursor-glow { position: fixed; width: 360px; height: 360px; margin: -180px 0 0 -180px; z-index: -1; border-radius: 50%; pointer-events: none; background: radial-gradient(circle, rgba(102,255,232,.055), transparent 67%); opacity: 0; transition: opacity .3s; }
body:hover .cursor-glow { opacity: 1; }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; height: 84px; border-bottom: 1px solid transparent; background: rgba(7,7,7,.74); backdrop-filter: blur(18px); transition: height .25s, border-color .25s; }
.site-header.scrolled { height: 72px; border-color: var(--border); }
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 38px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); }
.brand-mark { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 11px; background: var(--primary); color: var(--dark); font-size: 13px; font-weight: 950; letter-spacing: -.08em; transform: rotate(-3deg); }
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand strong { font-size: 15px; letter-spacing: -.02em; }
.brand small { margin-top: 5px; color: var(--body); font-size: 8px; letter-spacing: .17em; }
.main-nav { margin-left: auto; display: flex; align-items: center; gap: 30px; }
.main-nav a { position: relative; color: var(--body); font-size: 13px; font-weight: 700; transition: color .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--white); }
.main-nav a.active::after { content: ""; position: absolute; left: 50%; bottom: -13px; width: 4px; height: 4px; border-radius: 50%; background: var(--primary); transform: translateX(-50%); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.cart-link { display: flex; align-items: center; gap: 8px; color: var(--body); font-size: 12px; font-weight: 700; }
.cart-link span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 50%; background: var(--primary); color: var(--dark); font-size: 10px; }
.nav-toggle { display: none; margin-left: auto; width: 42px; height: 42px; padding: 11px; border: 1px solid var(--border); border-radius: 10px; background: transparent; }
.nav-toggle span { display: block; height: 1px; margin: 5px 0; background: var(--white); }

/* Hero */
.hero { padding-top: 88px; overflow: hidden; }
.hero-grid { min-height: 585px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.availability { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 28px; padding: 7px 12px; border: 1px solid var(--border); border-radius: 999px; background: var(--dark-light); color: var(--body); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.availability i, .response-note i { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px var(--primary-soft); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px transparent; } }
.hero h1 { margin-bottom: 26px; font-size: clamp(54px, 6.7vw, 92px); font-weight: 800; letter-spacing: -.075em; }
.hero h1 span, .page-hero h1 span, .about-block h2 span, .cta-section h2 span { color: transparent; -webkit-text-stroke: 1px var(--primary); }
.hero-lead { max-width: 615px; font-size: 18px; line-height: 1.75; }
.hero-lead strong { color: var(--white); }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.hero-proof { display: flex; gap: 34px; margin-top: 48px; padding-top: 25px; border-top: 1px solid var(--border); }
.hero-proof span { color: var(--body); font-size: 11px; line-height: 1.4; text-transform: uppercase; letter-spacing: .08em; }
.hero-proof b { display: block; margin-bottom: 3px; color: var(--white); font-size: 21px; letter-spacing: -.03em; }
.hero-visual { position: relative; display: grid; place-items: center; min-width: 0; }
.hero-visual::before { content: ""; position: absolute; width: 480px; height: 480px; border: 1px solid var(--border); border-radius: 50%; opacity: .8; }
.hero-visual::after { content: ""; position: absolute; width: 380px; height: 380px; border: 1px dashed rgba(102,255,232,.18); border-radius: 50%; animation: spin 30s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.code-window { position: relative; z-index: 2; width: min(100%, 485px); overflow: hidden; border: 1px solid var(--border); border-radius: 17px; background: rgba(19,19,19,.96); box-shadow: var(--shadow); transform: rotate(1.5deg); }
.window-bar { height: 45px; display: flex; align-items: center; gap: 6px; padding: 0 15px; border-bottom: 1px solid var(--border); }
.window-bar > span { width: 7px; height: 7px; border: 1px solid var(--body); border-radius: 50%; opacity: .65; }
.window-bar small { margin-left: 12px; color: var(--body); font-family: monospace; font-size: 10px; }
.code-lines { padding: 28px 18px; }
.code-lines div { display: flex; gap: 20px; min-height: 31px; }
.code-lines em { width: 17px; color: rgba(177,177,177,.45); font-family: monospace; font-size: 11px; font-style: normal; text-align: right; }
.code-lines code { color: var(--white); font-size: 13px; }
.code-lines code i { color: var(--primary); font-style: normal; }
.code-lines code span { color: var(--body); }
.code-lines code b { color: var(--primary); font-weight: 500; }
.build-status { display: flex; align-items: center; gap: 8px; padding: 12px 18px; border-top: 1px solid var(--border); background: rgba(102,255,232,.035); color: var(--primary); font-family: monospace; font-size: 9px; letter-spacing: .08em; }
.build-status b { margin-left: auto; color: var(--body); font-weight: 400; }
.orbit-badge { position: absolute; z-index: 3; display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid var(--border); border-radius: 15px; background: var(--dark-light); color: var(--primary); font-weight: 900; box-shadow: var(--shadow); }
.badge-one { top: 5%; right: 7%; transform: rotate(8deg); }
.badge-two { bottom: 8%; left: 3%; transform: rotate(-8deg); }
.badge-three { bottom: 1%; right: 13%; width: 42px; height: 42px; font-size: 11px; }
.tech-marquee { margin-top: 80px; overflow: hidden; border-block: 1px solid var(--border); }
.tech-marquee div { min-width: max-content; display: flex; align-items: center; justify-content: space-around; gap: 28px; padding: 17px 0; }
.tech-marquee span { color: rgba(177,177,177,.65); font-size: 11px; font-weight: 850; letter-spacing: .16em; }
.tech-marquee i { color: var(--primary); font-size: 8px; }

/* Shared sections */
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 55px; margin-bottom: 58px; }
.section-heading h2 { margin: 13px 0 0; font-size: clamp(38px, 4.7vw, 65px); letter-spacing: -.06em; }
.section-heading > p { width: min(100%, 420px); margin: 0 0 6px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; overflow: hidden; min-height: 395px; padding: 35px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--dark); transition: transform .35s, border-color .35s, background .35s; }
.service-card::after { content: ""; position: absolute; right: -100px; bottom: -100px; width: 200px; height: 200px; border: 1px solid var(--primary-line); border-radius: 50%; transition: transform .4s; }
.service-card:hover { transform: translateY(-8px); border-color: var(--primary-line); background: var(--dark-light); }
.service-card:hover::after { transform: scale(1.25); }
.service-no { position: absolute; top: 26px; right: 29px; color: rgba(177,177,177,.45); font-family: monospace; font-size: 11px; }
.line-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 70px; border: 1px solid var(--primary-line); border-radius: 16px; background: var(--primary-soft); color: var(--primary); font-size: 24px; }
.service-card h3 { font-size: 24px; }
.service-card p { font-size: 14px; }
.service-card ul { display: flex; flex-wrap: wrap; gap: 7px; margin: 23px 0 0; padding: 0; list-style: none; }
.service-card li, .skill-cloud span, .product-tags span, .project-meta span { padding: 5px 9px; border: 1px solid var(--border); border-radius: 99px; color: var(--body); font-size: 9px; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-grid-large { grid-template-columns: repeat(2, 1fr); gap: 54px 25px; }
.project-card { position: relative; min-width: 0; transition: opacity .3s, transform .3s; }
.project-art { position: relative; height: 330px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(135deg, var(--dark-light), var(--secondary)); }
.project-grid-large .project-art { height: 440px; }
.project-art::before { content: ""; position: absolute; inset: 12%; border: 1px solid var(--border); border-radius: 50%; transform: scale(1.2); }
.project-art::after { content: ""; position: absolute; width: 210px; height: 210px; top: 50%; left: 50%; border-radius: 50%; background: var(--accent); filter: blur(75px); opacity: .16; transform: translate(-50%,-50%); }
.project-art > span { position: absolute; z-index: 3; right: 24px; top: 17px; color: var(--primary); font-family: monospace; font-size: 11px; }
.project-art > div { position: absolute; z-index: 2; left: 50%; top: 50%; width: 53%; aspect-ratio: 1; border: 1px solid var(--primary-line); border-radius: 28% 72% 61% 39% / 44% 39% 61% 56%; background: var(--primary-soft); transform: translate(-50%,-50%) rotate(12deg); transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.project-card:hover .project-art > div { transform: translate(-50%,-50%) rotate(35deg) scale(1.08); }
.project-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.project-card:hover .project-art img { transform: scale(1.04); }
.project-meta { display: flex; gap: 7px; margin-top: 20px; }
.project-meta span:last-child { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.project-card h3 { margin: 15px 0 9px; font-size: 26px; }
.project-grid-large h3 { font-size: 31px; }
.project-card p { margin: 0; font-size: 14px; }
.circle-link { position: absolute; right: 18px; bottom: 0; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 50%; color: var(--primary); }
.store-strip { background: var(--dark-light); border-block: 1px solid var(--border); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-card { position: relative; padding: 15px 15px 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--dark); transition: transform .3s, border-color .3s; }
.product-card:hover { transform: translateY(-7px); border-color: var(--primary-line); }
.product-art { position: relative; height: 238px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--border); border-radius: 13px; background: linear-gradient(135deg, var(--dark), var(--secondary)); }
.product-art::before, .product-detail-art::before { content: ""; position: absolute; width: 190px; height: 190px; border: 1px solid var(--primary-line); border-radius: 50%; box-shadow: 0 0 80px var(--primary-soft); }
.product-art::after, .product-detail-art::after { content: ""; position: absolute; width: 85px; height: 85px; border: 1px dashed var(--primary-line); transform: rotate(45deg); }
.product-art img { width: 100%; height: 100%; object-fit: cover; }
.plugin-symbol { position: relative; z-index: 2; color: var(--primary); font-family: monospace; font-size: 38px; font-weight: 800; }
.product-art small { position: absolute; z-index: 2; bottom: 20px; color: var(--body); font-size: 8px; letter-spacing: .18em; }
.product-tags { display: flex; gap: 7px; margin-top: 18px; }
.product-card h3 { margin: 13px 0 8px; font-size: 22px; }
.product-card h3 a:hover { color: var(--primary); }
.product-card p { min-height: 51px; margin-bottom: 20px; font-size: 13px; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 17px; border-top: 1px solid var(--border); }
.product-bottom > strong { color: var(--white); font-size: 21px; }
.featured-label { position: absolute; z-index: 4; top: 26px; left: 27px; padding: 5px 9px; border-radius: 99px; background: var(--primary); color: var(--dark); font-size: 8px; letter-spacing: .1em; }
.center-action { margin-top: 42px; text-align: center; }
.about-block { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.about-block h2 { margin-top: 15px; font-size: clamp(44px, 5vw, 68px); }
.about-lead { color: var(--white); font-size: 24px; line-height: 1.5; letter-spacing: -.025em; }
.skill-cloud { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0; }
.skill-cloud span { padding: 8px 12px; }
.experience-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.experience-grid h2 { margin: 14px 0 22px; font-size: clamp(43px, 5vw, 66px); }
.timeline { border-top: 1px solid var(--border); }
.timeline article { display: grid; grid-template-columns: 135px 1fr; gap: 28px; padding: 27px 0; border-bottom: 1px solid var(--border); }
.timeline article > span { padding-top: 5px; color: var(--primary); font-family: monospace; font-size: 9px; letter-spacing: .06em; }
.timeline h3 { margin: 0 0 8px; font-size: 22px; }
.timeline p { margin: 0; font-size: 13px; }
.cta-section { position: relative; overflow: hidden; padding: 100px 0; background: var(--primary); }
.cta-section::after { content: "AA"; position: absolute; right: -2%; bottom: -48%; color: rgba(7,7,7,.07); font-size: 330px; font-weight: 950; letter-spacing: -.13em; }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-section .eyebrow { color: var(--dark); }
.cta-section .eyebrow::before { background: var(--dark); }
.cta-section h2 { margin: 18px 0 35px; color: var(--dark); font-size: clamp(48px, 7vw, 92px); letter-spacing: -.075em; }
.cta-section h2 span { -webkit-text-stroke-color: var(--dark); }

/* Inner pages */
.page-hero { padding-top: 105px; }
.page-hero .shell { position: relative; }
.page-hero h1 { max-width: 940px; margin: 19px 0 24px; font-size: clamp(55px, 7vw, 96px); letter-spacing: -.075em; }
.page-hero p { max-width: 610px; font-size: 18px; }
.compact-hero { padding-bottom: 75px; }
.compact-hero h1 { font-size: clamp(48px, 5.5vw, 75px); }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 42px; }
.filter-row button { padding: 9px 15px; border: 1px solid var(--border); border-radius: 99px; background: transparent; color: var(--body); font-size: 11px; font-weight: 700; }
.filter-row button.active, .filter-row button:hover { border-color: var(--primary); background: var(--primary); color: var(--dark); }
.project-card.filtered-out { display: none; }
.shop-hero { background: radial-gradient(circle at 80% 40%, var(--primary-soft), transparent 30%); }
.shop-promises { display: flex; gap: 22px; margin-top: 28px; color: var(--white); font-size: 12px; }
.shop-promises span::first-letter { color: var(--primary); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--border); font-size: 13px; }
.shop-toolbar p { margin: 0; }
.shop-toolbar a { color: var(--primary); }
.support-banner { padding: 70px 0; background: var(--primary); }
.support-banner .shell { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.support-banner .eyebrow { color: var(--dark); }.support-banner .eyebrow::before { background: var(--dark); }
.support-banner h2 { margin: 10px 0 0; color: var(--dark); font-size: clamp(30px, 4vw, 48px); }
.empty-state { padding: 60px 30px; text-align: center; }
.empty-state h1, .empty-state h2 { margin-bottom: 10px; }
.product-detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.product-detail-art { position: sticky; top: 110px; height: 570px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--border); border-radius: 28px; background: linear-gradient(135deg, var(--dark-light), var(--secondary)); }
.product-detail-art::before { width: 360px; height: 360px; }.product-detail-art::after { width: 150px; height: 150px; }
.product-detail-art > span { position: relative; z-index: 2; color: var(--primary); font-family: monospace; font-size: 65px; font-weight: 800; }
.product-detail-art > small { position: absolute; bottom: 45px; color: var(--body); letter-spacing: .22em; }
.product-detail-art img { width: 100%; height: 100%; object-fit: cover; }
.back-link { display: inline-block; margin-bottom: 38px; color: var(--body); font-size: 13px; }
.product-detail-copy h1 { margin: 17px 0; font-size: clamp(46px, 5vw, 70px); }
.product-intro { color: var(--white); font-size: 21px; line-height: 1.55; }
.rich-copy { color: var(--body); }
.purchase-box { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 35px; padding: 23px; border: 1px solid var(--primary-line); border-radius: 17px; background: var(--primary-soft); }
.purchase-box small, .purchase-box strong { display: block; }.purchase-box small { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }.purchase-box strong { color: var(--white); font-size: 30px; }
.purchase-notes { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 0; margin: 25px 0 0; list-style: none; font-size: 11px; }.purchase-notes li::before { content: "✓"; margin-right: 7px; color: var(--primary); }
.product-feature-band { padding: 75px 0; border-block: 1px solid var(--border); background: var(--dark-light); }
.three-columns { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }.three-columns > div { padding-right: 30px; border-right: 1px solid var(--border); }.three-columns > div:last-child { border: 0; }.three-columns span { color: var(--primary); font-family: monospace; font-size: 10px; }.three-columns h3 { margin: 20px 0 10px; font-size: 22px; }.three-columns p { font-size: 13px; }

/* Forms, auth and checkout */
label { display: grid; gap: 8px; color: var(--white); font-size: 12px; font-weight: 700; }
input, textarea, select { width: 100%; border: 1px solid var(--border); border-radius: 10px; outline: none; background: var(--dark); color: var(--white); padding: 13px 14px; transition: border-color .2s, box-shadow .2s; }
input:focus, textarea:focus, select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
textarea { resize: vertical; }
label small { color: var(--body); font-size: 10px; font-weight: 400; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.span-2 { grid-column: span 2; }
.honeypot { position: absolute; left: -9999px; }
.contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.contact-aside h2 { font-size: 29px; }.contact-aside > a { display: block; position: relative; padding: 21px 40px 21px 0; border-bottom: 1px solid var(--border); color: var(--white); font-size: 15px; }.contact-aside > a small { display: block; margin-bottom: 5px; color: var(--body); font-size: 9px; text-transform: uppercase; letter-spacing: .11em; }.contact-aside > a span { position: absolute; right: 3px; top: 32px; color: var(--primary); }.response-note { display: flex; align-items: start; gap: 15px; margin-top: 35px; }.response-note i { flex: 0 0 auto; margin-top: 8px; }.response-note p { font-size: 12px; }.response-note strong { color: var(--white); }
.contact-form { padding: 38px; }
.auth-section { min-height: calc(100vh - 84px); display: grid; align-items: center; }
.auth-grid { display: grid; grid-template-columns: 1fr .78fr; align-items: center; gap: 120px; }
.auth-intro h1 { margin: 17px 0 23px; font-size: clamp(48px, 5.2vw, 72px); }.auth-intro > p { font-size: 18px; }.auth-intro ul { display: grid; gap: 13px; padding: 0; list-style: none; }.auth-intro li::before { content: "✓"; margin-right: 10px; color: var(--primary); }
.auth-form { display: grid; gap: 20px; padding: 38px; }.auth-form h2 { margin-bottom: 4px; font-size: 30px; }.form-switch { margin: 4px 0 0; text-align: center; font-size: 12px; }.form-switch a { color: var(--primary); }
.cart-layout, .checkout-grid { display: grid; grid-template-columns: 1fr 365px; gap: 30px; align-items: start; }
.cart-items { display: grid; gap: 12px; }.cart-item { display: grid; grid-template-columns: 68px 1fr auto auto; align-items: center; gap: 18px; padding: 18px; border: 1px solid var(--border); border-radius: 15px; background: var(--dark-light); }.cart-thumb { width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 12px; background: var(--dark); color: var(--primary); font-family: monospace; font-weight: 800; }.cart-item > div:nth-child(2) > span { color: var(--primary); font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }.cart-item h3 { margin: 3px 0; font-size: 17px; }.cart-item small { font-size: 10px; }.cart-item > strong { color: var(--white); }.remove-link { color: var(--body); font-size: 11px; text-decoration: underline; }
.order-summary { position: sticky; top: 100px; padding: 25px; }.order-summary h2 { margin-bottom: 22px; font-size: 23px; }.order-summary > div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; font-size: 12px; }.order-summary strong { color: var(--white); }.order-summary .summary-total { margin-top: 10px; padding: 19px 0; border-top: 1px solid var(--border); font-size: 16px; }.summary-total strong { color: var(--primary); font-size: 22px; }.order-summary .button { width: 100%; margin-top: 10px; }.continue-link { display: block; margin-top: 15px; text-align: center; font-size: 11px; }.order-summary > p { margin: 19px 0 0; padding-top: 17px; border-top: 1px solid var(--border); font-size: 9px; line-height: 1.6; }
.checkout-form { padding: 30px; }.checkout-step { display: flex; gap: 17px; padding: 25px 0; border-bottom: 1px solid var(--border); }.checkout-step:first-of-type { padding-top: 0; }.checkout-step > span { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--primary-line); border-radius: 50%; color: var(--primary); font-family: monospace; font-size: 9px; }.checkout-step h2 { margin: 3px 0 4px; font-size: 20px; }.checkout-step h2 small { color: var(--body); font-size: 10px; }.checkout-step p { margin: 0; font-size: 12px; }.grow { flex: 1; }.gateway-list { display: grid; gap: 8px; margin-top: 17px; }.gateway-list label { display: flex; align-items: center; gap: 12px; padding: 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--dark); cursor: pointer; }.gateway-list input { width: auto; accent-color: var(--primary); }.gateway-list span { display: grid; }.gateway-list small { font-size: 9px; }.checkout-submit { width: 100%; margin-top: 25px; }
.result-section { min-height: 70vh; display: grid; align-items: center; }.result-card { max-width: 680px; margin: auto; padding: 55px; text-align: center; }.result-icon { width: 70px; height: 70px; display: grid; place-items: center; margin: 0 auto 25px; border: 1px solid var(--primary-line); border-radius: 50%; background: var(--primary-soft); color: var(--primary); font-size: 28px; }.result-card h1 { margin: 16px 0; font-size: 45px; }.bank-instructions { margin: 27px 0; padding: 20px; border: 1px solid var(--border); border-radius: 12px; background: var(--dark); text-align: left; }.bank-instructions h3 { font-size: 16px; }.bank-instructions p, .bank-instructions small { font-size: 12px; }

/* Customer dashboard */
.dashboard-head { padding: 55px 0; border-bottom: 1px solid var(--border); background: var(--dark-light); }.dashboard-head .shell { display: flex; align-items: center; justify-content: space-between; gap: 25px; }.dashboard-head h1 { margin: 10px 0 0; font-size: 44px; }
.dashboard-body { padding-top: 50px; }.dashboard-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 55px; }.dashboard-stats > div { padding: 22px; border: 1px solid var(--border); border-radius: 14px; background: var(--dark-light); }.dashboard-stats span, .dashboard-stats strong { display: block; }.dashboard-stats span { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }.dashboard-stats strong { margin-top: 5px; color: var(--white); font-size: 28px; }
.dashboard-section { margin-bottom: 60px; }.dashboard-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }.dashboard-title h2 { margin: 9px 0 0; font-size: 30px; }.dashboard-title > a { color: var(--primary); font-size: 12px; }
.license-list { display: grid; gap: 13px; }.license-card { display: grid; grid-template-columns: 1.2fr 1.6fr 1.3fr auto; align-items: center; gap: 24px; padding: 20px; }.license-product { display: flex; align-items: center; gap: 13px; }.license-product span { color: var(--body); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }.license-product h3 { margin: 4px 0 0; font-size: 16px; }.license-key small { font-size: 8px; letter-spacing: .1em; }.license-key > div { display: flex; margin-top: 5px; }.license-key code { overflow: hidden; padding: 7px 9px; border: 1px solid var(--border); border-radius: 7px 0 0 7px; background: var(--dark); color: var(--primary); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }.license-key button { border: 1px solid var(--border); border-left: 0; border-radius: 0 7px 7px 0; background: var(--secondary); color: var(--white); font-size: 9px; }.license-facts { display: grid; gap: 5px; }.license-facts span { display: flex; justify-content: space-between; gap: 12px; font-size: 9px; }.license-facts b { color: var(--white); }.file-notice { font-size: 9px; }
.status { display: inline-flex; width: fit-content; padding: 4px 8px; border: 1px solid var(--border); border-radius: 99px; color: var(--body); font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.status-active, .status-paid, .status-published { border-color: var(--primary-line); background: var(--primary-soft); color: var(--primary); }
.table-wrap { overflow-x: auto; }.table-wrap table { width: 100%; border-collapse: collapse; min-width: 680px; }.table-wrap th, .table-wrap td { padding: 17px 19px; border-bottom: 1px solid var(--border); text-align: left; font-size: 11px; }.table-wrap th { color: var(--body); font-size: 8px; text-transform: uppercase; letter-spacing: .1em; }.table-wrap td strong { color: var(--white); }.table-wrap td small { display: block; margin-top: 4px; }

/* Footer */
.site-footer { padding: 75px 0 24px; background: var(--dark-light); border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 80px; padding-bottom: 55px; }.footer-grid > div:first-child p { max-width: 420px; margin: 25px 0 0; font-size: 13px; }.footer-grid h3 { margin: 5px 0 21px; font-size: 12px; text-transform: uppercase; letter-spacing: .11em; }.footer-grid > div:not(:first-child) a { display: block; width: fit-content; margin: 9px 0; color: var(--body); font-size: 12px; }.footer-grid a:hover { color: var(--primary); }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }

/* Installer */
.install-body { min-height: 100vh; display: grid; place-items: center; padding: 40px 20px; }.install-shell { width: min(100%, 780px); }.install-card { padding: 45px; border: 1px solid var(--border); border-radius: 24px; background: var(--dark-light); box-shadow: var(--shadow); }.install-card h1 { margin: 12px 0; font-size: 42px; }.install-card .form-grid { margin-top: 30px; }.form-divider { height: 1px; background: var(--border); }

@media (max-width: 1050px) {
    .hero-grid { grid-template-columns: 1fr; }.hero-copy { max-width: 760px; }.hero-visual { min-height: 500px; }.service-grid, .product-grid { grid-template-columns: repeat(2,1fr); }.service-grid article:last-child { grid-column: span 2; }.project-grid { grid-template-columns: repeat(2,1fr); }.project-card:last-child:nth-child(odd) { grid-column: span 2; }.about-grid, .experience-grid { gap: 55px; }.product-detail-grid { gap: 45px; }.auth-grid { gap: 55px; }.license-card { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
    .shell { width: min(calc(100% - 32px), var(--shell)); }.section-pad { padding: 85px 0; }.site-header { height: 72px; }.main-nav { position: fixed; left: 16px; right: 16px; top: 80px; display: grid; gap: 0; padding: 12px; border: 1px solid var(--border); border-radius: 15px; background: var(--dark-light); box-shadow: var(--shadow); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: .25s; }.main-nav.open { opacity: 1; pointer-events: auto; transform: none; }.main-nav a { padding: 13px; }.main-nav a.active::after { display: none; }.nav-toggle { display: block; }.nav-actions .button { display: none; }.hero { padding-top: 65px; }.hero-grid { min-height: auto; gap: 45px; }.hero h1 { font-size: clamp(50px, 13vw, 75px); }.hero-proof { gap: 20px; }.tech-marquee { margin-top: 55px; }.section-heading { display: grid; gap: 23px; }.section-heading > p { width: auto; }.project-grid, .project-grid-large, .service-grid, .product-grid { grid-template-columns: 1fr; }.service-grid article:last-child, .project-card:last-child:nth-child(odd) { grid-column: auto; }.project-grid-large .project-art { height: 360px; }.about-grid, .experience-grid, .product-detail-grid, .contact-grid, .auth-grid, .cart-layout, .checkout-grid { grid-template-columns: 1fr; }.about-grid, .experience-grid { gap: 25px; }.product-detail-art { position: relative; top: auto; height: 430px; }.contact-grid { gap: 45px; }.auth-grid { gap: 45px; }.order-summary { position: static; }.three-columns { grid-template-columns: 1fr; }.three-columns > div { padding: 0 0 24px; border: 0; border-bottom: 1px solid var(--border); }.support-banner .shell { display: grid; }.dashboard-stats { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: 1fr 1fr; gap: 45px; }.footer-grid > div:first-child { grid-column: span 2; }
}
@media (max-width: 560px) {
    .timeline article { grid-template-columns: 1fr; gap: 6px; }
    .shell { width: min(calc(100% - 24px), var(--shell)); }.section-pad { padding: 68px 0; }.hero h1 { font-size: 48px; }.hero-lead { font-size: 16px; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }.hero-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; }.hero-proof b { font-size: 17px; }.hero-visual { min-height: 380px; }.hero-visual::before { width: 350px; height: 350px; }.hero-visual::after { width: 280px; height: 280px; }.code-window { width: calc(100% - 20px); }.code-lines code { font-size: 11px; }.orbit-badge { display: none; }.section-heading h2 { font-size: 39px; }.service-card { min-height: 355px; padding: 27px; }.line-icon { margin-bottom: 55px; }.project-art { height: 300px; }.project-grid-large .project-art { height: 300px; }.page-hero h1 { font-size: 48px; }.shop-promises { display: grid; gap: 7px; }.product-detail-art { height: 340px; }.purchase-box { align-items: stretch; flex-direction: column; }.form-grid { grid-template-columns: 1fr; }.span-2 { grid-column: auto; }.contact-form, .auth-form, .checkout-form, .result-card, .install-card { padding: 25px; }.cart-item { grid-template-columns: 55px 1fr auto; }.cart-item .remove-link { grid-column: 2; }.cart-thumb { width: 52px; height: 52px; }.dashboard-head .shell, .dashboard-title { align-items: flex-start; flex-direction: column; }.dashboard-head h1 { font-size: 34px; }.license-card { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: 1fr; }.footer-grid > div:first-child { grid-column: auto; }.footer-bottom { flex-direction: column; }.nav-actions { gap: 6px; }.cart-link { font-size: 0; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; } [data-reveal] { opacity: 1; transform: none; } }
