*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* Make section title links interactive */
.section-title a,
.subscribe-title a {
text-decoration: none;
color: inherit;
transition: opacity 0.3s, text-shadow 0.3s;
cursor: pointer;
display: inline-block;
}
.section-title-link {
font-family: var(--font-mono);
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.15em;
color: var(--electric);
text-transform: uppercase;
vertical-align: middle;
margin-left: 0.75rem;
}
.section-title-link:hover,
.section-title-link:focus-visible {
color: #fff;
text-shadow: 0 0 10px var(--electric);
outline: 2px solid var(--electric);
outline-offset: 2px;
}
.section-title a:hover,
.subscribe-title a:hover {
opacity: 0.85;
text-shadow: 0 0 10px var(--electric);
}

:root {
--void: #000000;
--deep: #050508;
--surface: #0a0a0f;
--panel: #0f0f18;
--border: #1a1a2e;
--electric: #00d4ff;
--pulse: #7b2fff;
--signal: #ff2d78;
--noise: #00ff9f;
--amber: #ffaa00;
--text: #e8e8f0;
--muted: #8b8bab;
--dim: #2a2a3e;
--dim-text: #5a5a7a;
--font-display: 'Orbitron', monospace;
--font-body: 'Rajdhani', sans-serif;
--font-mono: 'Share Tech Mono', monospace;
}
html { scroll-behavior: smooth; }
body {
background: var(--void);
color: var(--text);
font-family: var(--font-body);
font-size: 19px;
line-height: 1.7;
overflow-x: hidden;
}
.grid-bg {
position: fixed;
inset: 0;
background-image:
linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
background-size: 60px 60px;
pointer-events: none;
z-index: 0;
}
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
padding: 1.2rem 3rem;
display: flex;
align-items: center;
justify-content: space-between;
background: rgba(0,0,0,0.9);
border-bottom: 1px solid var(--border);
backdrop-filter: blur(12px);
}
.nav-logo {
font-family: var(--font-display);
font-size: 2.0rem;
font-weight: 900;
letter-spacing: 0.3em;
color: var(--electric);
text-decoration: none;
transition: all 0.3s;
cursor: pointer;
}

.nav-logo:hover,
.nav-logo:focus-visible {
opacity: 0.8;
letter-spacing: 0.4em;
outline: 2px solid var(--electric);
outline-offset: 4px;
}
.nav-links {
display: flex;
gap: 2rem;
list-style: none;
}
.nav-links a {
font-family: var(--font-mono);
font-size: 1.05rem;
letter-spacing: 0.2em;
color: var(--muted);
text-decoration: none;
text-transform: uppercase;
transition: color 0.3s;
font-weight: 700;
}
.nav-links a:hover { color: var(--electric); }
.nav-book {
font-family: var(--font-mono);
font-size: 1.05rem;
letter-spacing: 0.2em;
text-transform: uppercase;
padding: 0.6rem 1.5rem;
background: var(--electric);
color: var(--void);
text-decoration: none;
clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
transition: background 0.3s;
}
.nav-book:hover,
.nav-book:focus-visible { background: #fff; outline: none; }
.scanline {
width: 100%;
height: 1px;
background: linear-gradient(90deg, transparent, var(--electric), var(--pulse), transparent);
position: relative;
z-index: 1;
}
.scanline--pulse-signal {
background: linear-gradient(90deg, transparent, var(--pulse), var(--signal), transparent);
}
.scanline--signal-pulse {
background: linear-gradient(90deg, transparent, var(--signal), var(--pulse), transparent);
}
.scanline--noise-electric {
background: linear-gradient(90deg, transparent, var(--noise), var(--electric), transparent);
}
.section-wrap {
position: relative;
z-index: 1;
padding: 7rem 3rem;
max-width: 1200px;
margin: 0 auto;
}
.section-label {
font-family: var(--font-mono);
font-size: 1rem;
letter-spacing: 0.5em;
color: var(--electric);
text-transform: uppercase;
margin-bottom: 0.5rem;
font-weight: 700;
}
.section-title {
font-family: var(--font-display);
font-size: clamp(2.2rem, 4.5vw, 3.5rem);
font-weight: 900;
letter-spacing: 0.1em;
margin-bottom: 0.75rem;
color: var(--text);
}
.section-title span { color: var(--electric); }
.section-sub {
font-size: 1.1rem;
font-weight: 400;
color: var(--muted);
margin-bottom: 2.5rem;
line-height: 1.7;
}
.btn {
font-family: var(--font-mono);
font-size: 1.5rem;
letter-spacing: 0.2em;
text-transform: uppercase;
padding: 0.9rem 2rem;
text-decoration: none;
transition: all 0.3s;
display: inline-block;
cursor: pointer;
border: none;
}
.btn-primary {
background: var(--electric);
color: var(--void);
clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-primary:hover,
.btn-primary:focus-visible { background: #fff; transform: translateY(-2px); outline: none; }
.btn-outline {
border: 1px solid var(--border);
color: var(--muted);
clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
background: transparent;
}
.btn-outline:hover,
.btn-outline:focus-visible { border-color: var(--electric); color: var(--electric); outline: 2px solid var(--electric); outline-offset: 2px; }
.btn-signal {
background: var(--signal);
color: #fff;
clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-signal:hover,
.btn-signal:focus-visible { background: #ff5599; transform: translateY(-2px); outline: none; }
/* ── HERO ── */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
padding: 8rem 2rem 4rem;
overflow: hidden;
z-index: 1;
}
.hero-orb {
position: absolute;
border-radius: 50%;
filter: blur(100px);
pointer-events: none;
}
.orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(123,47,255,0.12) 0%, transparent 70%); top: -150px; left: -250px; }
.orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%); bottom: -100px; right: -150px; }
.hero-content { position: relative; z-index: 2; max-width: 960px; }
.hero-label {
font-family: var(--font-mono);
font-size: 2rem;
letter-spacing: 0.35em;
color: var(--electric);
margin-bottom: 1.5rem;
opacity: 1;
font-weight: 700;
}
.hero-title {
font-family: var(--font-display);
font-size: clamp(3.5rem, 12vw, 8rem);
font-weight: 900;
letter-spacing: 0.15em;
line-height: 1;
margin-bottom: 1rem;
background: linear-gradient(135deg, #fff 0%, var(--electric) 45%, var(--pulse) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.hero-tagline {
font-family: var(--font-mono);
font-size: 1.5rem;
font-weight: 700;
letter-spacing: 0.2em;
color: var(--muted);
margin-bottom: 2rem;
text-transform: uppercase;
}
.accent-label {
font-family: var(--font-mono);
font-size: 1.5rem;
font-weight: 700;
letter-spacing: 0.2em;
color: var(--muted);
text-transform: uppercase;
}
.accent-label span { color: var(--electric); }
.hero-tagline span { color: var(--electric); }
.hero-bio {
font-size: 1.2rem;
color: rgba(232,232,240,0.7);
max-width: 700px;
margin: 0 auto 3rem;
line-height: 1.85;
font-weight: 400;
}
.hero-cta {
margin-top: 2rem;
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.hero-badges {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 3rem;
}
.badge {
font-family: var(--font-mono);
font-size: 1.0rem;
letter-spacing: 0.2em;
text-transform: uppercase;
padding: 0.4rem 1rem;
border: 1px solid var(--dim);
color: var(--muted);
}
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5px;
background: var(--border);
border: 1px solid var(--border);
}
.service-card {
background: var(--surface);
padding: 2.5rem;
position: relative;
overflow: hidden;
transition: background 0.3s;
}
.service-card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0;
height: 2px;
background: var(--accent, var(--electric));
transition: height 0.3s;
}
.service-card:hover { background: var(--panel); }
.service-card:hover::before { height: 3px; }
.service-num {
font-family: var(--font-display);
font-size: 1rem;
letter-spacing: 0.4em;
color: var(--accent, var(--electric));
margin-bottom: 1.25rem;
opacity: 1;
font-weight: 700;
}
.service-card h3 {
font-family: var(--font-display);
font-size: 1.05rem;
font-weight: 700;
letter-spacing: 0.15em;
margin-bottom: 1rem;
color: var(--text);
}
.service-card p {
font-size: 1rem;
color: var(--muted);
line-height: 1.7;
margin-bottom: 1.5rem;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
font-family: var(--font-mono);
font-size: 0.9rem;
letter-spacing: 0.15em;
padding: 0.25rem 0.6rem;
border: 1px solid var(--dim);
color: var(--muted);
text-transform: uppercase;
font-weight: 700;
}
.shop-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 1.5rem;
}
.shop-grid--spaced {
gap: 2.5rem;
}
.shop-card {
border: 1px solid var(--border);
background: var(--surface);
overflow: hidden;
transition: border-color 0.3s, transform 0.3s;
display: flex;
flex-direction: column;
height: 100%;
}
.shop-card:hover {
border-color: var(--electric);
transform: translateY(-4px);
}
.shop-img {
width: 100%;
aspect-ratio: 1;
background: var(--panel);
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.shop-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.shop-section-heading {
font-family: var(--font-mono);
font-size: 2rem;
letter-spacing: 0.4em;
text-transform: uppercase;
margin-bottom: 1.5rem;
font-weight: 700;
}
/* EDIT: Replace these placeholder backgrounds with real product images using:
.shop-img img { width: 100%; height: 100%; object-fit: cover; } */
.shop-img-placeholder {
font-family: var(--font-display);
font-size: 1.5rem;
letter-spacing: 0.3em;
color: var(--dim-text);
text-transform: uppercase;
text-align: center;
padding: 1rem;
}
.shop-img-icon {
font-size: 3rem;
opacity: 0.15;
display: block;
margin-bottom: 1rem;
}
.shop-body {
padding: 1.5rem;
display: flex;
flex-direction: column;
flex: 1;
}
.shop-category {
font-family: var(--font-mono);
font-size: 2.0rem;
letter-spacing: 0.3em;
color: var(--accent, var(--electric));
text-transform: uppercase;
margin-bottom: 0.5rem;
font-weight: 700;
}
.shop-category--electric,
.wearable-type--signal { color: var(--electric); }
.shop-category--pulse,
.wearable-type--pulse { color: var(--pulse); }
.shop-category--signal { color: var(--signal); }
.shop-category--noise,
.wearable-type--noise { color: var(--noise); }
.shop-category--amber,
.wearable-type--amber { color: var(--amber); }
.shop-name {
font-family: var(--font-display);
font-size: 1.1rem;
font-weight: 700;
letter-spacing: 0.1em;
color: var(--text);
margin-bottom: 0.5rem;
}
.shop-desc {
font-size: 0.95rem;
color: var(--muted);
line-height: 1.6;
margin-bottom: 1.25rem;
flex: 1;
}
.shop-footer {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
width: 100%;
margin-top: auto;
}
.shop-price {
font-family: var(--font-display);
font-size: 1.25rem;
}
.shop-price .price-note {
font-family: var(--font-mono);
font-size: 0.8rem;
color: var(--muted);
display: block;
font-weight: 400;
}
.btn-shop {
font-family: var(--font-mono);
font-size: 1.5rem;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 0.6rem 1.25rem;
background: transparent;
border: 1px solid var(--dim);
color: var(--muted);
text-decoration: none;
transition: all 0.3s;
clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}
.btn-shop:hover,
.btn-shop:focus-visible { border-color: var(--electric); color: var(--electric); outline: 2px solid var(--electric); outline-offset: 2px; }

/* ── WAVEFORM ── */
.waveform {
display: flex;
align-items: center;
gap: 2px;
height: 36px;
margin: 2.5rem 0;
}
.wbar {
width: 3px;
height: 36px;
background: var(--electric);
opacity: 0.3;
border-radius: 1px;
transform-origin: center center;
}
@media (prefers-reduced-motion: no-preference) {
.wbar {
animation: wv 1.5s ease-in-out infinite;
}
}
.wbar:nth-child(1) { animation-delay: 0.0s; }
.wbar:nth-child(2) { animation-delay: 0.1s; }
.wbar:nth-child(3) { animation-delay: 0.2s; }
.wbar:nth-child(4) { animation-delay: 0.3s; }
.wbar:nth-child(5) { animation-delay: 0.4s; }
.wbar:nth-child(6) { animation-delay: 0.5s; }
.wbar:nth-child(7) { animation-delay: 0.6s; }
.wbar:nth-child(8) { animation-delay: 0.7s; }
.wbar:nth-child(9) { animation-delay: 0.8s; }
.wbar:nth-child(10) { animation-delay: 0.9s; }
.wbar:nth-child(11) { animation-delay: 0.8s; }
.wbar:nth-child(12) { animation-delay: 0.7s; }
.wbar:nth-child(13) { animation-delay: 0.6s; }
.wbar:nth-child(14) { animation-delay: 0.5s; }
.wbar:nth-child(15) { animation-delay: 0.4s; }
.wbar:nth-child(16) { animation-delay: 0.3s; }
.wbar:nth-child(17) { animation-delay: 0.2s; }
.wbar:nth-child(18) { animation-delay: 0.1s; }
.wbar:nth-child(19) { animation-delay: 0.0s; }
@keyframes wv {
0%, 100% { transform: scaleY(0.2); }
50% { transform: scaleY(1); }
}
.booking-wrap {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
}
.booking-info h3 {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 700;
letter-spacing: 0.15em;
color: var(--electric);
margin-bottom: 1rem;
text-transform: uppercase;
}
.booking-lede {
font-size: 1.25rem;
color: var(--muted);
line-height: 1.7;
margin-bottom: 2rem;
}
.booking-info p {
font-size: 1rem;
color: var(--muted);
line-height: 1.75;
margin-bottom: 2rem;
}
.booking-detail {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1.25rem;
padding-bottom: 1.25rem;
border-bottom: 1px solid var(--border);
}
.booking-detail-icon {
font-family: var(--font-display);
font-size: 0.95rem;
letter-spacing: 0.3em;
color: var(--electric);
padding-top: 0.3rem;
min-width: 90px;
text-transform: uppercase;
font-weight: 700;
}
.booking-detail-text {
font-size: 0.95rem;
color: var(--muted);
line-height: 1.6;
}
.booking-form { display: flex; flex-direction: column; gap: 1rem; position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label {
font-family: var(--font-mono);
font-size: 1.5rem;
letter-spacing: 0.25em;
color: var(--muted);
text-transform: uppercase;
font-weight: 700;
}
.form-input,
.form-select,
.form-textarea {
background: var(--surface);
border: 1px solid var(--border);
color: var(--text);
font-family: var(--font-mono);
font-size: 0.92rem;
padding: 0.75rem 1rem;
outline: none;
width: 100%;
transition: border-color 0.3s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--electric); }
.form-select {
appearance: none;
cursor: pointer;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2300d4ff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 1rem center;
background-size: 12px 8px;
padding-right: 2.5rem;
}
.form-select option {
background: #0a0a0f;
color: #e8e8f0;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--dim-text); }
.platforms-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1px;
background: var(--border);
border: 1px solid var(--border);
}
.platform-link {
background: var(--surface);
padding: 1.75rem 1.5rem;
text-decoration: none;
display: flex;
flex-direction: column;
gap: 0.6rem;
transition: background 0.3s;
}

.wearables-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
gap: 1.5px;
background: var(--border);
border: 1px solid var(--border);
margin-bottom: 2rem;
}
.wearable-item {
position: relative;
overflow: hidden;
aspect-ratio: 1;
background: var(--panel);
text-decoration: none;
display: block;
}
.wearable-item img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s;
display: block;
}
.wearable-item:hover img {
transform: scale(1.06);
}
.wearable-overlay {
position: absolute;
inset: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 1.25rem;
transition: background 0.3s;
}
.wearable-item:hover .wearable-overlay {
background: rgba(0, 0, 0, 0.7);
}
.wearable-type {
font-family: var(--font-mono);
font-size: 0.9rem;
letter-spacing: 0.3em;
text-transform: uppercase;
font-weight: 700;
}
.wearable-name {
font-family: var(--font-display);
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.12em;
color: var(--text);
}
.platform-link:hover,
.platform-link:focus-visible { background: var(--panel); outline: 2px solid var(--accent, var(--electric)); outline-offset: 2px; }
.platform-link--noise { --accent: var(--noise); }
.platform-link--amber { --accent: var(--amber); }
.platform-link--pulse { --accent: var(--pulse); }
.platform-link--electric { --accent: var(--electric); }
.platform-link .p-label {
font-family: var(--font-mono);
font-size: 1.5rem;
letter-spacing: 0.3em;
color: var(--muted);
text-transform: uppercase;
font-weight: 700;
}
.platform-link .p-name {
font-family: var(--font-display);
font-size: 0.95rem;
font-weight: 700;
letter-spacing: 0.15em;
color: var(--text);
text-transform: uppercase;
}
.platform-link .p-handle {
font-family: var(--font-mono);
font-size: 0.95rem;
color: var(--accent, var(--electric));
margin-top: auto;
}
.stats-bar {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 1px;
background: var(--border);
border: 1px solid var(--border);
}

.stat-cell {
background: var(--surface);
padding: 2.5rem 2rem;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 140px;
}
.stat-val {
font-family: var(--font-display);
font-size: clamp(2rem, 5vw, 3.2rem);
color: var(--electric);
font-weight: 900;
letter-spacing: 0.05em;
}
.stat-lbl {
font-family: var(--font-mono);
font-size: clamp(0.85rem, 1.5vw, 1.1rem);
letter-spacing: 0.25em;
color: var(--muted);
text-transform: uppercase;
font-weight: 700;
margin-top: 0.5rem;
display: block;
}
.stat-cell-link {
color: inherit;
text-decoration: none;
transition: background 0.3s, box-shadow 0.3s;
}
.stat-cell-link:hover,
.stat-cell-link:focus-visible {
background: var(--panel);
box-shadow: inset 0 0 0 2px var(--signal);
outline: none;
}
.stat-live-label {
display: block;
margin-top: 1.5rem;
font-family: var(--font-mono);
font-size: 1.5rem;
font-weight: 700;
letter-spacing: 0.16em;
color: var(--signal);
text-transform: uppercase;
}
.stat-live-label[data-state="error"] {
color: var(--amber);
}
@media (prefers-reduced-motion: no-preference) {
.stat-val.is-updating {
animation: stat-count-pulse 0.55s ease;
}
}
@keyframes stat-count-pulse {
0% { transform: scale(1); text-shadow: none; }
45% { transform: scale(1.08); text-shadow: 0 0 18px rgba(0, 212, 255, 0.75); }
100% { transform: scale(1); text-shadow: none; }
}
.quote-band {
position: relative;
z-index: 1;
padding: 6rem 3rem;
text-align: center;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.quote-text {
font-family: var(--font-display);
font-size: clamp(1.1rem, 2.8vw, 1.7rem);
font-weight: 600;
letter-spacing: 0.07em;
line-height: 1.7;
color: rgba(232,232,240,0.6);
max-width: 800px;
margin: 0 auto;
}
.quote-band blockquote {
margin-bottom: 1.5rem;
}
.quote-author {
font-family: var(--font-mono);
font-size: 1.55rem;
letter-spacing: 0.3em;
color: var(--electric);
text-transform: uppercase;
text-align: center;
display: block;
}
footer {
position: relative;
z-index: 1;
padding: 3rem;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 1.5rem;
border-top: 1px solid var(--border);
}
.footer-logo {
font-family: var(--font-display);
font-size: 1.2rem;
font-weight: 900;
letter-spacing: 0.3em;
color: var(--electric);
}
.footer-links {
display: flex;
gap: 1.5rem;
list-style: none;
flex-wrap: wrap;
}
.footer-links a {
font-family: var(--font-mono);
font-size: 0.92rem;
letter-spacing: 0.2em;
color: var(--muted);
text-decoration: none;
text-transform: uppercase;
transition: color 0.3s;
}
.footer-links a:hover,
.footer-links a:focus-visible { color: var(--electric); outline: 2px solid var(--electric); outline-offset: 2px; }
.footer-copy {
font-family: var(--font-mono);
font-size: 1.25rem;
letter-spacing: 0.15em;
color: var(--dim-text);
text-transform: uppercase;
width: 100%;
font-weight: 700;
}
.footer-copy .email {
color: var(--electric);
}
.cursor {
display: inline-block;
width: 2px;
height: 0.9em;
background: var(--electric);
margin-left: 2px;
vertical-align: middle;
}
@media (prefers-reduced-motion: no-preference) {
.cursor {
animation: blink 1s step-end infinite;
}
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}

.nav-toggle {
display: none;
flex-direction: column;
justify-content: center;
gap: 5px;
background: none;
border: none;
cursor: pointer;
padding: 0.75rem;
z-index: 101;
}
.nav-toggle span {
display: block;
width: 24px;
height: 2px;
background: var(--electric);
transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 900px) {
.booking-wrap { grid-template-columns: 1fr; gap: 3rem; }
.form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
nav { padding: 1rem 1.5rem; }
.section-wrap { padding: 5rem 1.5rem; }
footer { padding: 2rem 1.5rem; }
.quote-band { padding: 4rem 1.5rem; }
.nav-toggle { display: flex; }
.nav-book { display: none; }
.nav-links {
display: none;
position: fixed;
top: 0; left: 0; right: 0;
background: rgba(0,0,0,0.97);
border-bottom: 1px solid var(--border);
flex-direction: column;
align-items: center;
gap: 0;
padding: 5rem 2rem 2rem;
z-index: 99;
}
.nav-links.is-open { display: flex; }
.nav-links li { width: 100%; text-align: center; }
.nav-links a {
display: block;
padding: 1rem;
font-size: 1rem;
border-bottom: 1px solid var(--border);
}
}
.subscribe-band {
position: relative;
z-index: 1;
padding: 7rem 3rem;
text-align: center;
overflow: hidden;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.subscribe-band::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(135deg,
rgba(0,212,255,0.04) 0%,
rgba(123,47,255,0.06) 50%,
rgba(255,45,120,0.04) 100%);
pointer-events: none;
}
.subscribe-inner {
position: relative;
z-index: 1;
max-width: 680px;
margin: 0 auto;
}
.subscribe-label {
font-family: var(--font-mono);
font-size: 1.5rem;
letter-spacing: 0.5em;
color: var(--electric);
text-transform: uppercase;
margin-bottom: 1rem;
font-weight: 700;
display: block;
}
.subscribe-title {
font-family: var(--font-display);
font-size: clamp(1.8rem, 4vw, 3rem);
font-weight: 900;
letter-spacing: 0.1em;
color: var(--text);
margin-bottom: 1rem;
line-height: 1.15;
}
.subscribe-title span { color: var(--electric); }
.subscribe-desc {
font-size: 1.05rem;
color: var(--muted);
line-height: 1.75;
margin-bottom: 2.5rem;
font-weight: 400;
}
.subscribe-form {
display: flex;
gap: 0;
max-width: 520px;
margin: 0 auto 1.25rem;
position: relative;
}
.subscribe-input {
flex: 1;
background: var(--surface);
border: 1px solid var(--border);
border-right: none;
color: var(--text);
font-family: var(--font-mono);
font-size: 1rem;
font-weight: 700;
padding: 1rem 1.5rem;
outline: none;
transition: border-color 0.3s;
min-width: 0;
}
.subscribe-input:focus { border-color: var(--electric); }
.subscribe-input::placeholder { color: var(--dim-text); font-weight: 400; }
.subscribe-btn {
font-family: var(--font-mono);
font-size: 1rem;
font-weight: 700;
letter-spacing: 0.2em;
text-transform: uppercase;
padding: 1rem 2rem;
background: var(--electric);
color: var(--void);
border: none;
cursor: pointer;
transition: background 0.3s, transform 0.2s;
white-space: nowrap;
clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}
.subscribe-btn:hover,
.subscribe-btn:focus-visible { background: #fff; transform: translateX(2px); outline: none; }
.subscribe-note {
font-family: var(--font-mono);
font-size: 1.25rem;
letter-spacing: 0.15em;
color: var(--dim-text);
line-height: 1.6;
}
.subscribe-perks {
display: flex;
gap: 2rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 2.5rem;
}
.subscribe-perk {
display: flex;
align-items: center;
gap: 0.6rem;
font-family: var(--font-mono);
font-size: 0.9rem;
font-weight: 700;
letter-spacing: 0.1em;
color: var(--muted);
text-transform: uppercase;
}
.subscribe-perk::before {
content: '//';
color: var(--electric);
font-size: 0.75rem;
}
.subscribe-success {
display: none;
font-family: var(--font-display);
font-size: 1.1rem;
font-weight: 700;
letter-spacing: 0.15em;
color: var(--noise);
margin-top: 1rem;
text-transform: uppercase;
}
@media (max-width: 600px) {
.subscribe-form { flex-direction: column; gap: 0.75rem; }
.subscribe-input { border-right: 1px solid var(--border); }
.subscribe-btn { clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%); }
.subscribe-perks { gap: 1rem; }
.subscribe-band { padding: 5rem 1.5rem; }
}

.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
overflow: hidden;
clip-path: inset(0);
}
.skip-to-main {
position: absolute;
top: -40px;
left: 0;
background: var(--electric);
color: var(--void);
padding: 0.5rem 1rem;
text-decoration: none;
z-index: 200;
font-family: var(--font-mono);
font-weight: 700;
font-size: 0.9rem;
letter-spacing: 0.15em;
text-transform: uppercase;
transition: top 0.2s;
}
.skip-to-main:focus {
top: 0;
}

/* ── CATEGORY CARDS ── */
.category-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}

.category-card {
border: 1px solid var(--border);
background: var(--surface);
overflow: hidden;
transition: all 0.3s;
display: flex;
flex-direction: column;
text-decoration: none;
color: inherit;
position: relative;
}
.category-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: var(--accent, var(--electric));
transition: height 0.3s;
z-index: 1;
}

.category-card:hover {
border-color: var(--electric);
transform: translateY(-4px);
background: var(--panel);
}

.category-icon {
width: 100%;
aspect-ratio: 1;
background: linear-gradient(135deg, var(--panel) 0%, var(--deep) 100%);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-display);
font-size: 4rem;
color: var(--accent, var(--electric));
opacity: 0.3;
}

.category-body {
padding: 2rem;
flex: 1;
display: flex;
flex-direction: column;
position: relative;
}

.category-tag {
font-family: var(--font-mono);
font-size: 0.85rem;
letter-spacing: 0.3em;
color: var(--accent, var(--electric));
text-transform: uppercase;
margin-bottom: 0.5rem;
font-weight: 700;
}

.category-name {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 700;
letter-spacing: 0.1em;
color: var(--text);
margin-bottom: 0.75rem;
}

.category-desc {
font-size: 0.95rem;
color: var(--muted);
line-height: 1.6;
margin-bottom: 1.5rem;
flex: 1;
}
.category-count {
font-family: var(--font-mono);
font-size: 0.85rem;
color: var(--dim-text);
margin-bottom: 1rem;
}

.category-link {
align-self: flex-start;
font-family: var(--font-mono);
font-size: 0.9rem;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 0.6rem 1.25rem;
background: transparent;
border: 1px solid var(--dim);
color: var(--muted);
text-decoration: none;
transition: all 0.3s;
clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
}
.category-link:hover,
.category-link:focus-visible {
border-color: var(--electric);
color: var(--electric);
outline: 2px solid var(--electric);
outline-offset: 2px;
}
/* ── PRODUCT GRID & FILTERS ── */
.filter-tabs {
display: flex;
gap: 1rem;
margin-bottom: 3rem;
flex-wrap: wrap;
align-items: center;
}

.tab-btn {
font-family: var(--font-mono);
font-size: 0.9rem;
letter-spacing: 0.2em;
text-transform: uppercase;
padding: 0.6rem 1.25rem;
background: var(--panel);
color: var(--muted);
border: 1px solid var(--border);
cursor: pointer;
transition: all 0.3s;
font-weight: 700;
}
.tab-btn:hover,
.tab-btn.active,
.tab-btn:focus-visible {
background: var(--electric);
color: var(--void);
border-color: var(--electric);
outline: none;
}

.tab-btn:focus-visible {
outline: 2px solid var(--electric);
outline-offset: 4px;
}

.product-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 2rem;
margin-bottom: 3rem;
}

.product-card {
border: 1px solid var(--border);
background: var(--surface);
overflow: hidden;
transition: border-color 0.3s, transform 0.3s;
display: flex;
flex-direction: column;
}

.product-card:hover {
border-color: var(--electric);
transform: translateY(-4px);
}

.product-cover {
width: 100%;
aspect-ratio: 1;
background: linear-gradient(135deg, var(--panel) 0%, var(--deep) 100%);
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
font-family: var(--font-display);
font-size: 1.5rem;
letter-spacing: 0.3em;
color: var(--dim);
text-transform: uppercase;
text-align: center;
padding: 1rem;
}

.product-cover img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-body {
padding: 1.75rem;
flex: 1;
display: flex;
flex-direction: column;
justify-content: flex-start;
}

.product-tag {
font-family: var(--font-mono);
font-size: 0.85rem;
letter-spacing: 0.3em;
color: var(--accent, var(--electric));
text-transform: uppercase;
margin-bottom: 0.5rem;
font-weight: 700;
}
.product-title {
font-family: var(--font-display);
font-size: 1.15rem;
font-weight: 700;
letter-spacing: 0.1em;
color: var(--text);
margin-bottom: 0.75rem;
}
.product-info {
font-size: 0.9rem;
color: var(--muted);
line-height: 1.6;
margin-bottom: 0.75rem;
flex: 1;
}
.product-tracks {
font-family: var(--font-mono);
font-size: 0.85rem;
color: var(--dim-text);
margin-bottom: 1.25rem;
}
.player-wrapper {
background: var(--panel);
border: 1px solid var(--border);
border-radius: 4px;
padding: 1rem;
margin-bottom: 1.25rem;
}

.audio-player {
width: 100%;
max-width: 100%;
height: 32px;
cursor: pointer;
}

.product-footer {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
margin-top: auto;
}

.product-price {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 700;
color: var(--electric);
}

.price-note {
font-family: var(--font-mono);
font-size: 0.75rem;
color: var(--muted);
display: block;
font-weight: 400;
}
.btn-buy {
font-family: var(--font-mono);
font-size: 0.85rem;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 0.6rem 1.25rem;
background: transparent;
border: 1px solid var(--dim);
color: var(--muted);
text-decoration: none;
transition: all 0.3s;
clip-path: polygon(5px 0%, 100% 0%, calc(100% - 5px) 100%, 0% 100%);
cursor: pointer;
}
.btn-buy:hover,
.btn-buy:focus-visible {
border-color: var(--electric);
color: var(--electric);
outline: 2px solid var(--electric);
outline-offset: 2px;
}
/* ── FEATURED ── */
.featured-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.5rem;
}

.featured-card {
border: 1px solid var(--border);
background: var(--surface);
overflow: hidden;
transition: all 0.3s;
display: flex;
flex-direction: column;
position: relative;
}
.featured-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: var(--accent, var(--electric));
transition: height 0.3s;
z-index: 1;
}

.featured-card:hover {
border-color: var(--electric);
transform: translateY(-3px);
}

.featured-img {
width: 100%;
aspect-ratio: 1;
background: linear-gradient(135deg, var(--panel) 0%, var(--deep) 100%);
display: flex;
align-items: center;
justify-content: center;
font-family: var(--font-display);
font-size: 1.5rem;
color: var(--dim);
padding: 1rem;
text-align: center;
}
.featured-body {
padding: 1.5rem;
flex: 1;
display: flex;
flex-direction: column;
position: relative;
}

.featured-tag {
font-family: var(--font-mono);
font-size: 1.5rem;
letter-spacing: 0.3em;
color: var(--accent, var(--electric));
text-transform: uppercase;
margin-bottom: 0.4rem;
font-weight: 700;
}

.featured-tag--album {
color: var(--pulse);
}

.featured-tag--free {
color: var(--noise);
}

.featured-title {
font-family: var(--font-display);
font-size: 1.5rem;
font-weight: 700;
letter-spacing: 0.1em;
color: var(--text);
margin-bottom: 0.5rem;
}

.featured-info {
font-size: 0.9rem;
color: var(--muted);
line-height: 1.5;
margin-bottom: 1rem;
flex: 1;
}
.featured-footer {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
}

.featured-price {
font-family: var(--font-display);
font-size: 1.25rem;
font-weight: 700;
color: var(--electric);
}

.featured-price--free {
color: var(--noise);
}

.featured-btn {
font-family: var(--font-mono);
font-size: 1.5rem;
letter-spacing: 0.15em;
text-transform: uppercase;
padding: 0.5rem 1rem;
background: transparent;
border: 1px solid var(--dim);
color: var(--muted);
text-decoration: none;
transition: all 0.3s;
clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.featured-btn:hover,
.featured-btn:focus-visible {
border-color: var(--electric);
color: var(--electric);
outline: 2px solid var(--electric);
outline-offset: 2px;
}

@media (max-width: 768px) {
.category-grid { grid-template-columns: 1fr; }
.product-grid { grid-template-columns: 1fr; }
.filter-tabs { flex-direction: column; align-items: flex-start; }
.featured-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
}
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}
}

:focus-visible {
outline: 2px solid var(--electric);
outline-offset: 3px;
}
:focus:not(:focus-visible) {
outline: none;
}
.shop-heading-link {
text-decoration: none;
color: inherit;
transition: color 0.3s;
}
.shop-heading-link:hover,
.shop-heading-link:focus-visible {
color: var(--electric);
outline: 2px solid var(--electric);
outline-offset: 2px;
}
/* ── FILTER TAB LINKS: remove underline ── */
.filter-tabs a {
text-decoration: none;
}
.category-card[data-category="drums"] { --accent: var(--electric); }
.category-card[data-category="basslines"] { --accent: var(--pulse); }
.category-card[data-category="synths"] { --accent: var(--noise); }

.category-icon {
font-family: 'Share Tech Mono', monospace;
font-size: 1.5em;
}

.nav-toggle:focus-visible {
outline: 2px solid var(--electric);
outline-offset: 2px;
}

.main-content { position: relative; z-index: 1; }
.stats-bar--spaced { margin-top: 3rem; }
.form-helper { font-size: 0.875rem; color: var(--dim); margin-top: 0.25rem; display: block; }
.wearables-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── CLOTHING PRODUCT CARD INTERNALS (shop/clothing) ── */
.product-img { position: relative; cursor: pointer; overflow: hidden; }
.product-img img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 0.2s; }
.product-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.1em; color: var(--text); margin-bottom: 0.75rem; }
.product-desc { font-size: 1rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.75rem; flex: 1 1 0%; }
.product-meta { list-style: none; font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; }
.product-meta li { margin-bottom: 0.5rem; }

/* ── LARGE / WIDE SCREEN SCALING ──
Every size in this file is set in rem, which is relative to the root
<html> font-size (16px by default) rather than <body>. Raising the root
font-size here scales nav, buttons, cards, badges and the clamp()-based
headings all together, proportionally, without touching each rule.
Widening .section-wrap lets the content column use the extra space
instead of sitting in a fixed 1200px column with large empty margins. */
@media (min-width: 1600px) {
html { font-size: 18px; }
.section-wrap { max-width: 1400px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.wearables-grid { grid-template-columns: repeat(4, 1fr); }
.platforms-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1920px) {
html { font-size: 19px; }
.section-wrap { max-width: 1600px; }
}
@media (min-width: 2400px) {
html { font-size: 21px; }
.section-wrap { max-width: 1800px; }
}
.hero-nav {
position: relative;
padding: clamp(4rem, 8vw, 7rem) 3rem;
background: transparent;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
overflow: hidden;
z-index: 1;
}

.hero-nav .hero-orb {
position: absolute;
border-radius: 50%;
pointer-events: none;
filter: blur(100px);
}

.hero-nav .orb-1 {
width: 700px;
height: 700px;
background: radial-gradient(circle, rgba(123, 47, 255, 0.12) 0%, transparent 70%);
top: -150px;
left: -250px;
}

.hero-nav .orb-2 {
width: 500px;
height: 500px;
background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
bottom: -100px;
right: -150px;
}

.hero-nav-content {
position: relative;
z-index: 2;
max-width: 900px;
margin: 0 auto;
text-align: left;
display: flex;
flex-direction: column;
gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-nav .accent-label {
font-size: clamp(0.75rem, 1.8vw, 0.9rem);
margin-bottom: 0;
display: flex;
align-items: center;
gap: clamp(0.5rem, 2vw, 1rem);
flex-wrap: wrap;
}

.hero-nav .accent-label a {
color: var(--electric);
text-decoration: none;
transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
border-bottom: 1px solid transparent;
padding-bottom: 2px;
}

.hero-nav .accent-label a:hover {
color: #fff;
border-bottom-color: var(--electric);
}

.hero-nav .accent-label a:focus-visible {
outline: 2px solid var(--electric);
outline-offset: 2px;
}

.hero-nav .accent-label span {
color: rgba(232, 232, 240, 0.5);
font-weight: 300;
letter-spacing: 0.08em;
}

.hero-nav-tagline {
font-family: var(--font-body);
font-size: clamp(1.1rem, 2.5vw, 1.4rem);
font-weight: 400;
color: var(--muted);
letter-spacing: 0.05em;
margin: 0;
line-height: 1.7;
}

.hero-nav-tagline span {
color: var(--electric);
font-weight: 600;
}

@media (max-width: 1024px) {
.hero-nav {
padding: clamp(3rem, 6vw, 5rem) 2.5rem;
}

.hero-nav-tagline {
font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-nav .orb-1 {
width: 500px;
height: 500px;
top: -100px;
left: -150px;
}

.hero-nav .orb-2 {
width: 350px;
height: 350px;
bottom: -50px;
right: -75px;
}
}

@media (max-width: 768px) {
.hero-nav {
padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}

.hero-nav .accent-label {
font-size: 0.75rem;
gap: 0.4rem;
}

.hero-nav-tagline {
font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

.hero-nav .orb-1 {
width: 350px;
height: 350px;
top: -50px;
left: -100px;
}

.hero-nav .orb-2 {
width: 250px;
height: 250px;
bottom: -30px;
right: -50px;
}
}

@media (max-width: 480px) {
.hero-nav {
padding: clamp(1.5rem, 3vw, 2.5rem) 1.5rem;
}

.hero-nav .accent-label {
font-size: 0.7rem;
gap: 0.25rem;
}

.hero-nav-tagline {
font-size: 0.95rem;
}

.hero-nav .orb-1 {
width: 250px;
height: 250px;
top: -30px;
left: -75px;
}

.hero-nav .orb-2 {
width: 180px;
height: 180px;
bottom: -20px;
right: -40px;
}
}

@media (prefers-reduced-motion: reduce) {
.hero-nav .accent-label a {
transition: none;
}
}