@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Mono:wght@300;400&display=swap');
@import url("https://use.typekit.net/rle1aiv.css");

/* ─── TOKENS ─── */
:root {
    --bg:           #0a0705; /* Café ultra oscuro, casi negro */
    --bg-2:         #140d09; /* Café oscuro elegante */
    --cyan:         #d4af37; /* Reemplazamos el cyan por un Dorado Clásico */
    --purple:       #6b3518; /* Reemplazamos el morado por Madera Caoba */
    --purple-soft:  #a66232; /* Reemplazamos el morado suave por tono Cobre */
    --text:         #f0ebe1; /* Blanco hueso / pergamino */
    --text-dim:     #a39385; /* Gris cálido */
    --text-muted:   #66574c;
    --border:       rgba(212, 175, 55, 0.15); /* Borde con un sutil brillo dorado */
    
    --font-display: 'Bebas Neue', sans-serif;
    --font-body:    'Cormorant Garamond', serif;
    --font-mono:    'DM Mono', monospace;
    --font-logo: "brush-atf", sans-serif;
    font-style: normal;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.75;
    overflow-x: hidden;
    cursor: crosshair;
}

a { text-decoration: none; color: inherit; }

/* ─── GRAIN ─── */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.035;
    animation: grainShift 0.15s steps(1) infinite;
}
@keyframes grainShift {
    0%  { transform: translate(0,0); }
    25% { transform: translate(-2px,1px); }
    50% { transform: translate(1px,-2px); }
    75% { transform: translate(2px,1px); }
    100%{ transform: translate(-1px,2px); }
}

/* ─── NAV ─── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    mix-blend-mode: normal;
}

.site-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(3,3,8,0.8), transparent);
    pointer-events: none;
}

.nav-logo {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--cyan);
    position: relative;
}

.nav-links {
    display: flex;
    gap: 40px;
    position: relative;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--cyan); }

/* ─── HERO ─── */

.hero-container::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0; /* Se queda detrás de las cuerdas (1) y el texto (2) */
    
    /* 👇 PON AQUÍ LA RUTA DE TU IMAGEN */
    background-image: 
    radial-gradient(ellipse, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%),
    url('fondo.jpeg'); 
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* 👇 Ajusta la opacidad para que no robe el protagonismo */
    opacity: 0.25; 
    
    pointer-events: none; /* Evita que bloquee los clics */
}

.hero-container {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* Cambiamos #0a0a1a por un café muy oscuro #120a05 */
    background: radial-gradient(ellipse at 50% 60%, #120a05 0%, var(--bg) 70%);
}

.strings-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 33.33vw;
    left: 33.33vw;
    height: 100%;
}

.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    pointer-events: none;
}
.glow-cyan {
    width: 600px; height: 600px;
    background: var(--cyan);
    top: -10%; left: 20%;
    animation: glowDrift 8s ease-in-out infinite alternate;
}
.glow-purple {
    width: 500px; height: 500px;
    background: var(--purple);
    bottom: -10%; right: 15%;
    animation: glowDrift 10s ease-in-out infinite alternate-reverse;
}
@keyframes glowDrift {
    from { transform: translate(0,0) scale(1); }
    to   { transform: translate(30px,20px) scale(1.1); }
}

@keyframes smoothReveal {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.98);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-eyebrow {
    font-family: var(--font-mono);
    margin-bottom: 0;
    opacity: 0; /* Oculto por defecto */
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--cyan);
    text-transform: uppercase;
    animation: smoothReveal 1s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Tu CSS del título (mantenlo, pero limpié para que sea legible) */
.brand-title {
    font-family: var(--font-logo);
    font-weight: normal;
    font-size: clamp(80px, 14vw, 200px);
    line-height: 0.85; /* Texto muy apretado */
    margin-top: -10px;    
    margin-bottom: -15px; 
    padding-top: 10px; 
    padding-bottom: 15px;
    position: relative;
    z-index: 10;
    
    /* Gradiente central */
    background: linear-gradient(135deg, var(--cyan) 0%, #ffffff 40%, var(--purple-soft) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Animación */
    opacity: 0;
    animation: smoothReveal 1.2s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    text-shadow: none;
}

/* 👇 EL EFECTO DE LÍNEA DESFASADA CORREGIDO (MÁS SUTIL) */
.brand-title::before {
    content: attr(data-text); /* Clona el texto "Hendrix" del HTML */
    position: absolute;
    inset: 0; /* Se estira a los mismos bordes que el título original */
    padding: inherit; /* Hereda tus 10px y 15px para alinear perfectamente */
    z-index: -1; /* Lo manda a la capa trasera */
    
    /* 1. Relleno transparente para que no cree bloque de color */
    -webkit-text-fill-color: transparent;
    
    /* 2. Trazo blanco MUCHO MÁS FINO para que no se apelotone */
    -webkit-text-stroke: 1.5px white; /* Reducido de 3px a 1.5px */
    
    /* 3. Desfase MÁS SUTIL para una sombra de línea limpia */
    /* El primer valor es X (derecha), el segundo es Y (abajo) */
    transform: translate(5px, 5px); /* Reducido de 8px/8px a 5px/5px */
    
    pointer-events: none; /* Evita que estorbe al hacer scroll o clic */
}

.hero-lead {
    font-family: var(--font-body);
    font-size: clamp(18px, 2.2vw, 28px);
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
    margin-top: 0;
    opacity: 0;
    animation: smoothReveal 1s 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-lead em {
    font-style: normal;
    color: rgba(255,255,255,0.85);
}

.hero-scroll-cue {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-transform: uppercase;
    margin-top: 20px;
    opacity: 0;
    animation: smoothReveal 1s 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transition: color 0.2s;
}
.hero-scroll-cue:hover { color: var(--cyan); }

.hero-counter {
    position: absolute;
    bottom: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    opacity: 0;
    animation: fadeUp 1s 1.3s ease forwards;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.counter-num {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--cyan);
    line-height: 1;
}
.counter-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-transform: uppercase;
}
.counter-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ─── SCROLL REVEAL ─── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── NARRATIVE ─── */
.narrative-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;

    /* 👇 Gradiente radial: centro transparente hacia bordes negros */
    background-image: 
        radial-gradient(ellipse, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 1) 100%), 
        url('fondo2.jpg'); 

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* 👇 Sube la opacidad general para que el gradiente se note */
    opacity: 0.15; 
    
    pointer-events: none;
}

.narrative-section {
    padding: 120px 5% 80px;
    border-bottom: 1px solid var(--border);
}
.narrative-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}
.narrative-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--cyan);
    letter-spacing: 0.2em;
    margin-bottom: 28px;
}
.narrative-inner p {
    font-family: var(--font-body);
    font-size: clamp(18px, 1.6vw, 24px);
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    line-height: 1.9;
}

/* ─── EXHIBITOR ─── */
.exhibitor {
    padding: 120px 6%;
    border-bottom: 1px solid var(--border);
}

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--text) 0%, var(--text-dim) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Product Visual */
.product-visual {
    height: 580px;
    border-radius: 32px;
    position: relative;
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guitar-gradient {
    background: radial-gradient(circle at 40% 30%, #0d1533, #020210);
}
.uke-gradient {
    background: radial-gradient(circle at 60% 70%, #130c30, #02010d);
}

.visual-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instrument-silhouette {
    width: 180px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 30px rgba(0,247,255,0.12));
    animation: instrumentFloat 4s ease-in-out infinite;
}

.uke-svg {
    width: 130px;
    filter: drop-shadow(0 0 30px rgba(112,0,255,0.15));
}

@keyframes instrumentFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.glow-spot {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    bottom: 15%; left: 50%;
    transform: translateX(-50%);
}
.cyan-glow   { background: var(--cyan); }
.purple-glow { background: var(--purple); }

.visual-badge {
    position: absolute;
    top: 24px; right: 24px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    border: 1px solid rgba(0,247,255,0.2);
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(0,247,255,0.04);
}
.purple-badge {
    color: var(--purple-soft);
    border-color: rgba(160,64,255,0.25);
    background: rgba(112,0,255,0.06);
}

/* Product Description */
.product-description {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 4px 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 12px;
}
.spec-item:last-child { border-bottom: none; }

.spec-key { color: var(--text-dim); letter-spacing: 0.1em; }
.spec-val  { color: var(--text); }

.product-description p {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
}

.product-cta {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}
.product-cta:hover { gap: 16px; }

.order-first { order: -1; }

/* ─── MARQUEE ─── */
.marquee-section {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
    overflow: hidden;
    background: var(--bg-2);
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 22s linear infinite;
    white-space: nowrap;
}

.marquee-track span {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--text-dim);
    text-transform: uppercase;
}
.marquee-dot { color: var(--cyan) !important; }

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── CONTACT ─── */
.b2b-contact {
    padding: 120px 6%;
}

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

.contact-heading {
    margin-bottom: 32px !important;
}

.contact-body {
    font-size: 17px;
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.meta-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-dim);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.05em;
}
.meta-icon { color: var(--cyan); }

/* Form */
.form-container {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
}

.hendrix-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
}

.form-group label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
}

input, textarea {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-bottom-color: rgba(255,255,255,0.12);
    padding: 16px 18px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    resize: none;
}

input::placeholder, textarea::placeholder {
    color: var(--text-muted);
    font-style: italic;
}

input:focus, textarea:focus {
    border-color: rgba(0,247,255,0.3);
    background: rgba(0,247,255,0.03);
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(90deg, var(--cyan), var(--purple-soft));
    border: none;
    padding: 18px 44px;
    color: #03030a;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: crosshair;
    border-radius: 100px;
    transition: transform 0.25s, box-shadow 0.25s, gap 0.2s;
    margin-top: 8px;
}

.cta-button:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(0,247,255,0.25);
    gap: 18px;
}

/* ─── FOOTER ─── */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 32px 48px;
    background: var(--bg-2);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.25em;
    color: var(--text-dim);
}

.footer-copy {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    color: var(--text-muted);
}

.footer-mono {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    opacity: 0.5;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .product-showcase { grid-template-columns: 1fr; gap: 50px; }
    .product-visual { height: 380px; }
    .order-first { order: unset; }
    .contact-layout { grid-template-columns: 1fr; gap: 60px; }
    .site-nav { padding: 20px 24px; }
    .nav-links { gap: 24px; }
    .hero-counter { gap: 24px; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .form-container { padding: 32px 24px; }
    .exhibitor { padding: 80px 5%; }
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .hero-counter { bottom: 24px; }
    .counter-num { font-size: 28px; }
}

/* ─── INTEGRATED INSTRUMENT SECTIONS ─── */
.exhibitor-integrated {
    padding: 120px 6%;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    min-height: 600px;
}

/* Instrument side: full bleed, no box */
.integrated-instrument {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 480px;
}

.instrument-bg {
    width: 88%;
    max-width: 480px;
    height: auto;
    animation: instrumentFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 0 60px rgba(0,247,255,0.08));
}

.uke-section .instrument-bg {
    filter: drop-shadow(0 0 60px rgba(112,0,255,0.08));
}

.uke-bg {
    width: 72%;
    max-width: 360px;
}

/* Ambient glow behind instrument */
.instrument-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    pointer-events: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cyan-glow-free {
    background: radial-gradient(circle, rgba(0,247,255,0.07) 0%, transparent 70%);
}
.purple-glow-free {
    background: radial-gradient(circle, rgba(112,0,255,0.09) 0%, transparent 70%);
}

/* Content side */
.integrated-content {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    z-index: 2;
}

/* Ukulele: instrument on the right */
.uke-section {
    direction: rtl;
}
.uke-section .integrated-content {
    direction: ltr;
    padding-left: 0;
    padding-right: 60px;
}
.uke-section .integrated-instrument {
    direction: ltr;
}

/* Subtle vertical separator line */
.exhibitor-integrated::after {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

/* Section accent line top */
.exhibitor-integrated::before {
    content: '';
    position: absolute;
    top: 0; left: 6%; right: 6%;
    height: 1px;
    background: var(--border);
}

@media (max-width: 900px) {
    .exhibitor-integrated {
        grid-template-columns: 1fr;
        padding: 80px 5%;
        gap: 40px;
    }
    .exhibitor-integrated::after { display: none; }
    .integrated-instrument { min-height: 280px; }
    .instrument-bg { width: 60%; }
    .uke-bg { width: 50%; }
    .uke-section { direction: ltr; }
    .uke-section .integrated-content {
        padding-right: 0;
        order: -1;
    }
    .integrated-content { padding-left: 0; }
}

.teal-glow-free {
    background: radial-gradient(circle, rgba(29,158,117,0.09) 0%, transparent 70%);
}

.coral-glow-free {
    background: radial-gradient(circle, rgba(216,90,48,0.09) 0%, transparent 70%);
}

/* ─── FORM EXTENSIONS ─── */
.req { color: var(--cyan); font-style: normal; }

.field-hint {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

.phone-row {
    display: flex;
    gap: 0;
}
.phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-bottom-color: rgba(255,255,255,0.12);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-dim);
    white-space: nowrap;
    flex-shrink: 0;
}
.prefix-flag { font-size: 16px; }
.phone-row input {
    border-radius: 0 8px 8px 0;
    border-left: none;
    flex: 1;
}
.phone-row input:focus { border-left: none; }

.form-divider {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 20px 0 16px;
    border-top: 1px solid var(--border);
    margin-bottom: 4px;
}
.form-divider span:first-child {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
}
.form-divider-hint {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--text-muted) !important;
    text-transform: none !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

select {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-bottom-color: rgba(255,255,255,0.12);
    padding: 16px 18px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 17px;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    cursor: pointer;
}
select option { background: #07070f; color: var(--text); }
select:focus {
    border-color: rgba(0,247,255,0.3);
    background-color: rgba(0,247,255,0.03);
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}
