
/* 4Muscle — Nike-like premium styles (multilang) */
:root{
  --bg:#07080b;
  --bg2:#0b0c10;
  --txt:#f4f6ff;
  --muted:rgba(244,246,255,.72);
  --muted2:rgba(244,246,255,.56);
  --line:rgba(244,246,255,.12);
  --accent:#ff2f4e;
  --max:1200px;
  --pad:28px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--txt);
  background:
    radial-gradient(1200px 760px at 15% 10%, rgba(255,47,78,.18), transparent 60%),
    radial-gradient(900px 700px at 85% 22%, rgba(255,47,78,.08), transparent 55%),
    linear-gradient(180deg,var(--bg),var(--bg2));
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 var(--pad)}

header{
  position:sticky;top:0;z-index:20;
  background:rgba(7,8,11,.72);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

header .row{
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;align-items:center;gap:12px;min-width:180px;
}
.brand img{
  height:34px;width:auto;display:block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.45));
}
.brand .wordmark{
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  display:none;
}
/* if image missing, show text */
.brand.noimg .wordmark{display:block}

nav{
  display:flex;gap:18px;align-items:center;flex-wrap:wrap;
}
nav a{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:rgba(244,246,255,.66);
  padding:10px 0;
  border-bottom:1px solid transparent;
}
nav a:hover{color:#fff}
nav a[aria-current="page"]{
  color:#fff;
  border-bottom-color: rgba(255,47,78,.55);
}

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

.lang{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px;
  border:1px solid rgba(244,246,255,.10);
  border-radius:999px;
  background: rgba(255,255,255,.02);
}
.lang button{
  border:0;
  background:transparent;
  color: rgba(244,246,255,.70);
  font-weight:850;
  letter-spacing:.08em;
  font-size:12px;
  padding:9px 10px;
  border-radius:999px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease;
  text-transform:uppercase;
}
.lang button:hover{ transform: translateY(-1px); color:#fff; }
.lang button[aria-pressed="true"]{
  background: rgba(255,47,78,.14);
  color:#fff;
  box-shadow: inset 0 0 0 1px rgba(255,47,78,.28);
}

.hero{
  padding:96px 0 72px;
}
.kicker{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
}
.h1{
  font-family:Oswald,Inter,sans-serif;
  font-size:clamp(56px,8vw,104px);
  line-height:.92;
  margin:16px 0;
  text-transform:uppercase;
}
.h1 .cut{ color:var(--accent); }

.lede{
  max-width:740px;
  font-size:16px;
  line-height:1.9;
  color:var(--muted);
}

section{
  padding:72px 0;
  border-top:1px solid var(--line);
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}

.tile{
  border:1px solid var(--line);
  padding:28px;
  background: rgba(255,255,255,.01);
}
.tile strong{
  display:block;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color: rgba(244,246,255,.84);
  margin-bottom:10px;
}
.tile p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
  font-size:14px;
}

footer{
  border-top:1px solid var(--line);
  padding:32px 0;
  font-size:12px;
  color:rgba(244,246,255,.5);
}

@media (max-width: 880px){
  .container{ padding: 0 18px; }
  nav{ display:none; } /* keep clean on mobile */
}

@media (prefers-reduced-motion: reduce){
  .lang button{ transition:none !important; }
}


/* HERO SIGNUP – aligned with hero copy */
.signupInline{
  margin-top: 28px;
  max-width: 520px; /* aligns with lede width */
}

.signupRow{
  display:flex;
  gap:10px;
  align-items:center;
}

.signupRow input[type="email"]{
  flex:1;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(244,246,255,.18);
  color: #fff;
  font-size: 14px;
  outline: none;
}

.signupRow input[type="email"]::placeholder{
  color: rgba(244,246,255,.45);
}

.signupRow input[type="email"]:focus{
  border-color: rgba(255,47,78,.55);
  box-shadow: 0 0 0 6px rgba(255,47,78,.14);
}

.signupRow button{
  padding: 14px 18px;
  background: var(--accent);
  border: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor:pointer;
}

.signupCheck{
  margin-top: 10px;
  display:flex;
  gap:8px;
  align-items:flex-start;
  font-size: 12px;
  color: rgba(244,246,255,.55);
  line-height: 1.5;
  max-width: 520px;
}

.signupCheck input{
  margin-top: 3px;
}

.toast{
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(244,246,255,.12);
  color: rgba(244,246,255,.75);
  font-size: 12px;
  display:none;
}
.toast.show{ display:block; }

@media (max-width: 720px){
  .signupRow{ flex-direction: column; align-items: stretch; }
  .signupRow button{ width:100%; }
}


/* COOKIE BAR */
.cookieBar{
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 560px;
  width: calc(100% - 36px);

  background: rgba(8,9,12,.92);
  border: 1px solid rgba(244,246,255,.12);
  padding: 16px 18px;
  font-size: 12px;
  color: rgba(244,246,255,.76);
  z-index: 9999;
}
.cookieBar{
  backdrop-filter: blur(10px);
}
.cookieBar p{ margin:0; line-height: 1.55; }
.cookieBar a{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookieActions{
  display:flex;
  gap:10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookieActions button{
  padding: 10px 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .10em;
  background: transparent;
  border: 1px solid rgba(244,246,255,.18);
  color: #fff;
  cursor: pointer;
}

.cookieActions button:hover{ border-color: rgba(244,246,255,.32); }
.cookieActions .primary{ background: var(--accent); border: 0; }

@media (max-width: 520px){
  .cookieBar{ left: 12px; right: 12px; bottom: 12px; }
  .cookieActions button{ width: 100%; }
}

