/* ============================================
   EYKINE — Mini Altavoz Bluetooth
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --ink:        #0B0D10;
  --surface:    #14171C;
  --surface-2:  #1C2026;
  --line:       #2A2F37;
  --paper:      #F3F1EA;
  --muted:      #9CA3AF;
  --gold:       #E3A83B;
  --gold-light: #F5CE7E;
  --ring-cyan:  #3FC7FF;
  --ring-orange:#FF8A3D;
  --ring-pink:  #E14FD0;
  --ring-green: #6BE38A;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1160px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3{ margin:0; font-family: var(--font-display); font-weight:400; letter-spacing:.01em; }
p{ margin:0; }
button{ font-family: inherit; }

.wrap{ max-width: var(--max); margin:0 auto; padding: 0 24px; }

:focus-visible{ outline: 2px solid var(--gold-light); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ---------- Ring motif (used sparingly) ---------- */
.ring-dot{
  display:inline-block; width:.55em; height:.55em; border-radius:50%;
  background: conic-gradient(from 200deg, var(--ring-cyan), var(--ring-pink), var(--ring-orange), var(--ring-green), var(--ring-cyan));
}

/* ---------- Nav ---------- */
.nav{
  position: sticky; top:0; z-index: 50;
  background: rgba(11,13,16,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap{
  display:flex; align-items:center; justify-content:space-between;
  height: 76px;
}
.brand{
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: .04em;
  color: var(--gold-light);
  text-decoration:none;
  display:flex; align-items:center; gap:10px;
}
.brand .ring-dot{ width:10px; height:10px; }

.nav-right{ display:flex; align-items:center; gap:18px; }

.lang{
  display:flex; gap:2px; background: var(--surface-2); border:1px solid var(--line);
  border-radius: 999px; padding:3px;
}
.lang button{
  border:none; background:transparent; color: var(--muted);
  padding:6px 12px; border-radius:999px; font-size:13px; font-weight:700;
  letter-spacing:.03em; cursor:pointer; transition: background .15s, color .15s;
}
.lang button[aria-pressed="true"]{
  background: var(--gold); color:#1a1305;
}
.lang button:hover:not([aria-pressed="true"]){ color: var(--paper); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px 26px; border-radius: 10px; font-weight:700; font-size:15px;
  text-decoration:none; border:1px solid transparent; cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn-primary{
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color:#1a1305;
  box-shadow: 0 8px 24px -8px rgba(227,168,59,.55);
}
.btn-primary:hover{ transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(227,168,59,.7); }
.btn-ghost{
  background: transparent; border-color: var(--line); color: var(--paper);
}
.btn-ghost:hover{ border-color: var(--gold-light); }
.btn-sm{ padding: 9px 16px; font-size: 13px; }

/* ---------- Hero ---------- */
.hero{
  padding: 64px 0 0;
  overflow: hidden;
}
.hero .wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items:center;
}
.hero-copy .eyebrow{
  display:flex; align-items:center; gap:8px;
  color: var(--gold-light); font-weight:700; font-size:14px; margin-bottom:18px;
}
.hero-copy h1{
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02;
  color: var(--paper);
  max-width: 12ch;
}
.hero-copy .sub{
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 46ch;
}
.hero-buy{
  margin-top: 32px;
  display:flex; align-items:center; gap:20px; flex-wrap:wrap;
}
.price{
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold-light);
}
.price small{
  display:block; font-family: var(--font-body); font-size:12px; font-weight:600;
  color: var(--muted); letter-spacing:.04em; margin-top:2px;
}
.hero-media{
  position:relative;
  border-radius: 20px;
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.8);
}
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(11,13,16,0) 55%, rgba(11,13,16,.55) 100%);
  pointer-events:none;
}

/* ---------- Spec strip ---------- */
.specs{
  margin-top: 96px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.specs .wrap{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
}
.spec{
  padding: 36px 24px;
  text-align:left;
  border-right: 1px solid var(--line);
}
.spec:last-child{ border-right:none; }
.spec .num{
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--paper);
}
.spec .label{
  margin-top:6px;
  font-size: 13px;
  color: var(--muted);
  font-weight:600;
}

/* ---------- Features ---------- */
.features{ padding: 110px 0; }
.feature-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items:center;
}
.feature-row + .feature-row{ margin-top: 96px; }
.feature-row.reverse .f-media{ order:2; }
.feature-row.reverse .f-copy{ order:1; }

.f-media{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid var(--line);
  aspect-ratio: 4/5;
}
.f-media img{ width:100%; height:100%; object-fit:cover; }

.f-copy h2{
  font-size: clamp(28px, 3.4vw, 38px);
  color: var(--paper);
  max-width: 14ch;
}
.f-copy p{
  margin-top: 18px;
  font-size: 16.5px;
  color: var(--muted);
  max-width: 42ch;
}
.f-tag{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; color: var(--gold-light);
  margin-bottom: 14px;
}

/* ---------- Final CTA ---------- */
.cta-band{
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 90px 0;
}
.cta-band .wrap{
  display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap;
}
.cta-band h2{
  font-size: clamp(30px, 4vw, 44px);
  max-width: 16ch;
  color: var(--paper);
}
.cta-right{ display:flex; align-items:center; gap:24px; flex-wrap:wrap; }

/* ---------- Footer ---------- */
footer{ padding: 56px 0 40px; }
.foot-top{
  display:flex; justify-content:space-between; align-items:flex-start; gap:32px; flex-wrap:wrap;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.foot-brand .brand{ margin-bottom:10px; }
.foot-brand p{ color: var(--muted); font-size:14px; max-width:36ch; }
.foot-note{
  margin-top: 24px;
  color: #6b7280;
  font-size: 12.5px;
  line-height:1.6;
  max-width: 70ch;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  .hero .wrap{ grid-template-columns: 1fr; gap:36px; }
  .hero{ padding-top: 40px; }
  .hero-media{ order:-1; }
  .specs .wrap{ grid-template-columns: repeat(2,1fr); }
  .spec:nth-child(2){ border-right:none; }
  .spec{ border-bottom: 1px solid var(--line); }
  .feature-row{ grid-template-columns: 1fr; gap:28px; }
  .feature-row.reverse .f-media{ order:1; }
  .feature-row.reverse .f-copy{ order:2; }
  .feature-row + .feature-row{ margin-top: 56px; }
  .features{ padding: 70px 0; }
  .cta-band .wrap{ flex-direction:column; align-items:flex-start; }
}
.btn-sm .short{ display:none; }

@media (max-width: 560px){
  .nav .wrap{ height:64px; }
  .brand{ font-size:21px; }
  .nav-right{ gap:10px; }
  .btn-sm .long{ display:none; }
  .btn-sm .short{ display:inline; }
}
