:root{
  --bg0:#050507;
  --bg1:#0a0003;
  --bg2:#140007;

  --red:#e04444;
  --red2:#ff5b5b;

  --text:#f5f5f7;
  --muted:#b3b3c2;

  --border:rgba(255,255,255,0.10);
  --border2:rgba(255,255,255,0.06);

  --radius:14px;
  --radius2:18px;

  --shadow:0 18px 50px rgba(0,0,0,0.55);
  --container:1160px;
  --headerH:72px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);

  background:
    radial-gradient(circle at 15% 10%, rgba(224,68,68,0.30), transparent 55%),
    radial-gradient(circle at 85% 0%, rgba(224,68,68,0.18), transparent 45%),
    linear-gradient(180deg, var(--bg0) 0%, var(--bg1) 45%, var(--bg2) 100%);
}

.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 22px;
}

.section{
  padding:72px 0;
  scroll-margin-top: calc(var(--headerH) + 18px);
}

.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-title{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:0.02em;
  margin:0 0 10px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.section-sub{
  margin-top:0;
  margin-bottom:26px;
  max-width: 760px;
}

.muted{color:var(--muted)}
a{color:inherit}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  height:var(--headerH);
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner{
  height:var(--headerH);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.brand-logo{
  width:42px;
  height:42px;
  border-radius:999px;
  object-fit:cover;
  border:2px solid rgba(224,68,68,0.8);
}

.brand-text{display:flex; flex-direction:column; line-height:1.05}
.brand-name{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:0.04em;
  text-transform:uppercase;
  font-size:0.92rem;
}
.brand-role{
  font-size:0.78rem;
  color:var(--muted);
}

.main-nav{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav-link{
  text-decoration:none;
  color:var(--text);
  opacity:0.88;
  font-size:0.95rem;
  padding:8px 2px;
  position:relative;
}
.nav-link:hover{opacity:1}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:2px;
  width:0;
  height:2px;
  background: linear-gradient(90deg, var(--red), var(--red2));
  transition: width 0.18s ease;
  border-radius:999px;
}
.nav-link.active::after{width:100%}
.nav-link.active{opacity:1}

.header-right{
  display:flex;
  align-items:center;
  gap:12px;
}

.lang-toggle{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:0.85rem;
  color:var(--muted);
}
.lang-btn{
  border:none;
  background:none;
  color:var(--muted);
  cursor:pointer;
  font:inherit;
  letter-spacing:0.06em;
  padding:4px 6px;
}
.lang-btn.active{color: #ffd37a}
.lang-btn:hover{color:var(--text)}
.lang-sep{opacity:0.6}

.icon-btn{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid var(--border2);
  background: rgba(255,255,255,0.02);
  color:var(--text);
  cursor:pointer;
}
.icon-btn:hover{border-color:rgba(224,68,68,0.55)}

/* Hero */
.hero{
  padding-top:84px;
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap:46px;
  align-items:center;
}

.hero-kicker{
  margin:0 0 10px;
  color:#ffd37a;
  letter-spacing:0.16em;
  text-transform:uppercase;
  font-size:0.88rem;
}

.hero-title{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:700;
  margin:0 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.0rem);
}

.hero-subtitle{
  margin:0 0 20px;
  max-width: 680px;
}

/* Demo bars block */
.demo-block{
  margin-top: 6px;
  padding: 8px 0 0;
  max-width: 560px;
}

.demo-block-title{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
  font-size:0.85rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.88);
}

.demo-bars{
  display:grid;
  gap:10px;
}

.demo-bar{
  width:100%;
  display:flex;
  align-items:center;
  gap:12px;

  padding: 14px 14px;
  border-radius: 10px;

  background: #07070a;
  border: 1px solid rgba(255,255,255,0.10);

  color: var(--text);
  cursor:pointer;
  text-align:left;

  transition: transform 0.12s ease, border-color 0.18s ease, background 0.18s ease;
}

.demo-bar:hover{
  transform: translateY(-1px);
  border-color: rgba(224,68,68,0.55);
  background: #060608;
}

.demo-icon{
  width: 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  opacity:0.95;
}

.demo-text{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:600;
  letter-spacing:0.02em;
}

.demo-bar.is-playing{
  border-color: rgba(255, 211, 122, 0.80);
}

/* Buttons under demos */
.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.hero-cta-under{
  margin-top: 18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding: 11px 18px;
  font-weight:600;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform 0.12s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.btn-primary{
  background: linear-gradient(135deg, var(--red), var(--red2));
  color:white;
  box-shadow: var(--shadow);
}
.btn-primary:hover{transform: translateY(-1px)}
.btn-secondary{
  background: rgba(255,255,255,0.02);
  border-color: var(--border);
}
.btn-secondary:hover{border-color: rgba(224,68,68,0.55)}

.hero-image{
  width: 200%;
  max-width: 460px;           /* bigger bubble */
  aspect-ratio: 1 / 1;        /* perfect circle */
  object-fit: cover;          /* crops to fill circle */
  object-position: center 12%;/* key: shows body+head, leaves space above head */

  display: block;
  margin-left: auto;

  border-radius: 999px;
  border: 2px solid rgba(224,68,68,0.45);
  box-shadow: 0 22px 60px rgba(0,0,0,0.65);
  background: rgba(255,255,255,0.02);
}




/* Two column layout */
.two-col{
  display:grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 28px;
  align-items:start;
}

.side-card{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius2);
  padding: 18px 18px;
}

.side-card-label{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 10px;
}

.side-card-list{
  list-style:none;
  padding:0;
  margin:0;
}
.side-card-list li{
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.side-card-list li:last-child{border-bottom:none}

.bullet-list{
  list-style:none;
  padding:0;
  margin: 18px 0 0;
}
.bullet-list li{
  position:relative;
  padding-left: 16px;
  margin: 10px 0;
  color: var(--muted);
}
.bullet-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:#ffd37a;
}

/* Cards / grids */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.content-card{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius2);
  padding: 18px;
  min-height: 150px;
}

.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin-top: 10px;
}

.equip-card{
  background: rgba(255,255,255,0.02);
  border: 2px solid rgba(224,68,68,0.65); /* red outline */
  border-radius: var(--radius2);
  overflow:hidden;
  transition: transform 0.12s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.equip-card:hover{
  transform: translateY(-2px);
  border-color: rgba(224,68,68,0.95);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}


.equip-img{
  background: rgba(0,0,0,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
  height: 250px;
}


.equip-img img{
  max-width: 110%;
  max-height: 10000%;
  object-fit: contain;
}

.equip-meta{
  padding: 14px 16px 18px;
}

.equip-label{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 8px;
}

.equip-value{
  font-weight:600;
}

/* Contact */
.contact-line{margin-top: 14px}
.contact-email{
  color:#ffd37a;
  text-decoration:none;
}
.contact-email:hover{text-decoration:underline}

.socials{
  margin-top: 18px;
}
.socials-label{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 10px;
}

.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.social-links a{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration:none;
  background: rgba(0,0,0,0.25);
}
.social-links a:hover{
  border-color: rgba(224,68,68,0.55);
}

.form-card{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius2);
  padding: 18px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

.field span{
  display:block;
  margin-bottom: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}

.field input,
.field textarea{
  width:100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.35);
  color: var(--text);
  padding: 10px 12px;
  font:inherit;
  outline:none;
}
.field input:focus,
.field textarea:focus{
  border-color: rgba(77, 255, 0, 0.65);
}

.form-note{
  margin: 8px 0 0;
  font-size: 0.9rem;
}

/* Footer */
.site-footer{
  padding: 22px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner{
  display:flex;
  justify-content:center;
}

/* Responsive */
@media (max-width: 980px){
  .hero-inner{grid-template-columns: 1fr; gap: 26px;}
  .hero-image{margin-left:0; max-width: 320px;}
  .two-col{grid-template-columns: 1fr; gap: 18px;}
  .grid-3{grid-template-columns: 1fr;}
}

@media (max-width: 760px){
  .main-nav{display:none;}
  .hero{padding-top: 64px;}
  .section{padding: 60px 0;}
}

/* My Voice catalog */
.voice-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 8px 0 18px;
}

.filter-btn{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  padding: 8px 12px;
  border-radius: 999px;
  cursor:pointer;
  font: inherit;
}
.filter-btn:hover{
  border-color: rgba(224,68,68,0.55);
}
.filter-btn.active{
  border-color: rgba(255, 211, 122, 0.80);
}

.voice-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}

.voice-card{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius2);
  overflow:hidden;
}

.voice-thumb{
  position:relative;
  display:block;
  background: rgba(0,0,0,0.35);
  height: 190px;
}
.voice-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.voice-play{
  position:absolute;
  right:12px;
  bottom:12px;
  width: 42px;
  height: 42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.92);
  font-size: 1.0rem;
}

.voice-card-body{
  padding: 14px 16px 18px;
}

.voice-type{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.70);
  margin-bottom: 8px;
}

.voice-title{
  margin: 0 0 10px;
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:700;
  font-size: 1.05rem;
}

.voice-link{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration:none;
  background: rgba(0,0,0,0.25);
}
.voice-link:hover{
  border-color: rgba(224,68,68,0.55);
}

.voice-empty{
  margin-top: 12px;
}

/* Responsive for voice grid */
@media (max-width: 980px){
  .voice-grid{grid-template-columns: 1fr;}
  .voice-thumb{height: 210px;}
}

/* =========================
   My Voice – Collapsible catalog
   ========================= */

.voice-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 8px 0 18px;
}

.filter-btn{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  color: rgba(255,255,255,0.92);
  padding: 8px 12px;
  border-radius: 999px;
  cursor:pointer;
  font: inherit;
  transition: transform 0.12s ease, border-color 0.18s ease, background 0.18s ease;
}
.filter-btn:hover{
  border-color: rgba(224,68,68,0.55);
  transform: translateY(-1px);
}
.filter-btn.active{
  border-color: rgba(255, 211, 122, 0.80);
}

/* Wrapper controls collapse/expand */
.voice-catalog{
  position: relative;
}

/* Grid */
.voice-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
  transition: max-height 0.35s ease;
}

/* Smaller cards (less screen space) */
.voice-card{
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius2);
  overflow:hidden;
  transform: translateY(0) scale(1);
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.voice-card:hover{
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(224,68,68,0.35);
}

.voice-thumb{
  position:relative;
  display:block;
  background: rgba(0,0,0,0.35);
  height: 150px; /* smaller than before */
}
.voice-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform 0.20s ease;
}

/* Slight zoom on hover for the thumbnail image too */
.voice-card:hover .voice-thumb img{
  transform: scale(1.03);
}

/* Play button looks like a real button */
.voice-play{
  position:absolute;
  right:10px;
  bottom:10px;

  width: 38px;
  height: 38px;
  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:999px;
  border: 1px solid rgba(255,255,255,0.18);

  background: rgba(120,120,120,0.25); /* base grey */
  color: rgba(255,255,255,0.92);

  font-size: 0.95rem;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

/* Hovering the whole card makes the play button slightly different */
.voice-card:hover .voice-play{
  background: rgba(160,160,160,0.22); /* different grey */
  border-color: rgba(255,255,255,0.24);
}

/* Hovering specifically the play button */
.voice-thumb:hover .voice-play{
  background: rgba(200,200,200,0.20); /* another grey */
  border-color: rgba(255,255,255,0.30);
  transform: scale(1.05);
}

/* Pressed state */
.voice-thumb:active .voice-play{
  transform: scale(0.96);
  background: rgba(220,220,220,0.16);
}

.voice-card-body{
  padding: 12px 14px 16px;
}

.voice-type{
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  font-size: 0.70rem;
  color: rgba(255,255,255,0.70);
  margin-bottom: 8px;
}

.voice-title{
  margin: 0 0 10px;
  font-family:"Montserrat",system-ui,sans-serif;
  font-weight:700;
  font-size: 0.98rem;
  line-height: 1.25;
}

.voice-link{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  text-decoration:none;
  background: rgba(0,0,0,0.25);
  transition: border-color 0.18s ease, transform 0.12s ease;
}
.voice-link:hover{
  border-color: rgba(224,68,68,0.55);
  transform: translateY(-1px);
}

/* COLLAPSED VIEW:
   show ~3 items and a hint of the next row via fade.
*/
.voice-catalog.is-collapsed .voice-grid{
  max-height: 520px; /* tuned for 3 cards + partial next row */
  overflow: hidden;
}

/* Expanded shows all */
.voice-catalog.is-expanded .voice-grid{
  max-height: 5000px;
}

/* Fade overlay at bottom (stylish cut) */
.voice-fade{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height: 140px;
  pointer-events:none;
  opacity: 0;
  transition: opacity 0.18s ease;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.00) 0%,
    rgba(5,5,7,0.45) 35%,
    rgba(5,5,7,0.85) 100%
  );
}

.voice-catalog.is-collapsed .voice-fade{
  opacity: 1;
}

/* Toggle button */
.voice-toggle{
  position:absolute;
  left:50%;
  bottom: 16px;
  transform: translateX(-50%);

  display:inline-flex;
  align-items:center;
  gap:10px;

  padding: 10px 14px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.92);

  cursor:pointer;
  transition: transform 0.12s ease, border-color 0.18s ease, background 0.18s ease;
}

.voice-toggle:hover{
  transform: translateX(-50%) translateY(-1px);
  border-color: rgba(224,68,68,0.55);
  background: rgba(0,0,0,0.62);
}

.voice-toggle:active{
  transform: translateX(-50%) translateY(0px) scale(0.99);
}

.voice-toggle-icon{
  width: 30px;
  height: 30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;

  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.92);

  transition: transform 0.18s ease, background 0.18s ease;
}

/* Rotate arrow when expanded */
.voice-catalog.is-expanded .voice-toggle-icon{
  transform: rotate(180deg);
}

/* Hide toggle entirely if not needed (JS will set display:none) */
.voice-toggle[hidden]{
  display:none !important;
}

/* Responsive */
@media (max-width: 980px){
  .voice-grid{grid-template-columns: 1fr;}
  .voice-thumb{height: 180px;}
  .voice-catalog.is-collapsed .voice-grid{max-height: 760px;}
}





