:root{
  --bg:#061114;
  --surface:#0a171a;
  --text:#f5f5f2;
  --muted:#c8cfce;
  --accent:#4ee9ec;
  --line:rgba(255,255,255,.22);
  --soft-line:rgba(255,255,255,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--bg)}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}

.landing{
  position:relative;
  min-height:100svh;
  overflow:hidden;
  isolation:isolate;
  background:linear-gradient(180deg,rgba(4,12,14,.55),rgba(4,12,14,.96) 67%,#061114 100%);
}
.stadium-bg{
  position:absolute;
  inset:0;
  z-index:-3;
  background:
    linear-gradient(90deg,rgba(4,12,14,.98) 0%,rgba(4,12,14,.84) 52%,rgba(4,12,14,.48) 100%),
    linear-gradient(180deg,rgba(4,12,14,.52) 0%,rgba(4,12,14,.30) 38%,rgba(4,12,14,.88) 74%,#061114 100%),
    url('/assets/stadion.jpg') center 14%/cover no-repeat;
  filter:saturate(.65) contrast(1.05);
}
.landing::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:radial-gradient(circle at 82% 17%,rgba(78,233,236,.08),transparent 30%);
  pointer-events:none;
}

.masthead,.intro-section,.identity-section,.site-footer{
  width:min(1080px,calc(100% - 48px));
  margin-inline:auto;
}
.masthead{
  min-height:205px;
  position:relative;
  display:flex;
  justify-content:flex-end;
  align-items:flex-start;
  padding-top:36px;
}
.accent-line{
  position:absolute;
  left:0;
  bottom:28px;
  width:182px;
  height:6px;
  border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 24px rgba(78,233,236,.18);
}
.logo{
  display:block;
  width:150px;
  height:150px;
  object-fit:cover;
  border-radius:50%;
  box-shadow:0 16px 48px rgba(0,0,0,.28);
}

.intro-section{padding-top:10px}
.brand-kicker{
  margin:0 0 20px;
  font-size:1.2rem;
  line-height:1;
  font-weight:850;
  letter-spacing:.14em;
  color:var(--accent);
}
h1{
  margin:0;
  max-width:880px;
  font-size:clamp(4rem,9vw,7rem);
  line-height:.88;
  letter-spacing:-.055em;
  font-weight:900;
  text-transform:uppercase;
  text-wrap:balance;
}
.intro-copy{
  max-width:820px;
  margin:34px 0 0;
  font-size:clamp(1.15rem,2vw,1.55rem);
  line-height:1.63;
  color:var(--muted);
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:36px;
}
.contact-card{
  min-width:0;
  min-height:112px;
  padding:18px 18px;
  display:grid;
  grid-template-columns:52px minmax(0,1fr);
  align-items:center;
  gap:12px;
  text-decoration:none;
  border:1px solid var(--line);
  border-radius:20px;
  background:linear-gradient(145deg,rgba(8,23,26,.76),rgba(6,16,18,.58));
  box-shadow:0 16px 38px rgba(0,0,0,.16);
  backdrop-filter:blur(8px);
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.contact-card:hover,.contact-card:focus-visible{
  transform:translateY(-3px);
  border-color:var(--accent);
  background:linear-gradient(145deg,rgba(10,31,34,.90),rgba(7,19,21,.74));
  outline:none;
}
.contact-card.instagram{border-color:rgba(78,233,236,.88)}
.contact-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  color:var(--accent);
}
.contact-icon svg,.value svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.contact-icon svg .fill{fill:currentColor;stroke:none}
.contact-copy{min-width:0;display:flex;align-items:center}
.contact-copy strong{
  text-transform:uppercase;
  font-size:1.02rem;
  letter-spacing:.035em;
}
.identity-section{
  padding:72px 0 0;
  display:flex;
  flex-direction:column;
  align-items:center;
}
.portrait-shell{
  width:min(390px,72vw);
  aspect-ratio:1;
  padding:7px;
  border-radius:50%;
  background:linear-gradient(145deg,var(--accent),rgba(78,233,236,.18));
  box-shadow:0 28px 70px rgba(0,0,0,.30),0 0 50px rgba(78,233,236,.07);
}
.portrait{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center 32%;
  border-radius:50%;
  border:6px solid #0a171a;
  filter:saturate(.92) contrast(1.02);
}
.values{
  width:100%;
  margin-top:-12px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(145deg,rgba(12,28,31,.91),rgba(7,18,20,.86));
  overflow:hidden;
  box-shadow:0 18px 44px rgba(0,0,0,.24);
  backdrop-filter:blur(10px);
}
.value{
  position:relative;
  min-height:142px;
  padding:23px 18px 20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.value + .value::before{
  content:"";
  position:absolute;
  left:0;
  top:26px;
  bottom:26px;
  width:1px;
  background:var(--line);
}
.value svg{width:42px;height:42px;color:var(--accent);margin-bottom:10px}
.value strong{text-transform:uppercase;font-size:1.02rem;letter-spacing:.025em}
.value small{margin-top:3px;color:#b7c0be;font-size:.86rem}

.site-footer{
  padding:46px 0 34px;
  text-align:center;
  color:#aeb6b4;
}
.site-footer p{margin:0 0 16px;font-size:1rem}
.site-footer nav{display:flex;justify-content:center;gap:18px;align-items:center}
.site-footer a{text-decoration:none;color:#d7dcda;transition:color .18s ease}
.site-footer a:hover,.site-footer a:focus-visible{color:var(--accent);outline:none}
.site-footer nav span{color:#65706e}

/* Legal pages */
.legal-body{min-height:100svh;background:#071114;color:var(--text)}
.legal-topbar{
  width:min(980px,calc(100% - 40px));
  margin:0 auto;
  min-height:130px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.legal-topbar a{text-decoration:none;font-weight:750;color:#dce1df}
.legal-topbar a:hover,.legal-topbar a:focus-visible{color:var(--accent);outline:none}
.legal-topbar img{width:86px;height:86px;object-fit:cover;border-radius:50%}
.legal-card{
  width:min(980px,calc(100% - 40px));
  margin:0 auto 70px;
  padding:54px 58px 64px;
  border:1px solid var(--soft-line);
  border-radius:28px;
  background:linear-gradient(145deg,rgba(13,29,32,.96),rgba(8,20,22,.96));
  box-shadow:0 24px 80px rgba(0,0,0,.22);
}
.legal-card .accent-line{position:static;width:150px;height:6px;margin:0 0 30px}
.legal-card h1{
  font-size:clamp(3rem,7vw,5.4rem);
  line-height:.92;
  margin-bottom:44px;
}
.legal-card h2{font-size:1.35rem;margin:34px 0 12px;letter-spacing:-.02em}
.legal-card p,.legal-card li,.legal-card address{
  font-style:normal;
  font-size:1.02rem;
  line-height:1.72;
  color:#c5cdcb;
}
.legal-card ul{padding-left:22px}
.legal-card a{color:var(--accent)}
.legal-note{
  margin-top:38px;
  padding:18px 20px;
  border-left:3px solid var(--accent);
  background:rgba(78,233,236,.055);
  border-radius:0 12px 12px 0;
}
.legal-footer{
  width:min(980px,calc(100% - 40px));
  margin:0 auto;
  padding:0 0 48px;
  text-align:center;
  color:#8f9a98;
}
.legal-footer a{color:#d5dad9;text-decoration:none}

@media(max-width:760px){
  .masthead,.intro-section,.identity-section,.site-footer{width:min(100% - 28px,1080px)}
  .masthead{min-height:188px;padding-top:24px}
  .logo{width:126px;height:126px}
  .accent-line{width:132px;height:5px;bottom:26px}
  .brand-kicker{font-size:1rem;margin-bottom:18px}
  h1{font-size:clamp(3.05rem,14.5vw,5.1rem);line-height:.91;letter-spacing:-.052em}
  .intro-copy{font-size:1.08rem;line-height:1.6;margin-top:28px}
  .contact-grid{gap:9px;margin-top:30px}
  .contact-card{
    min-height:112px;
    padding:14px 6px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:9px;
    text-align:center;
    border-radius:17px;
  }
  .contact-icon{width:36px;height:36px;flex:0 0 auto}
  .contact-copy{width:100%;justify-content:center}
  .contact-copy strong{font-size:.72rem;white-space:nowrap;letter-spacing:.015em;line-height:1}
  .identity-section{padding-top:58px}
  .portrait-shell{width:min(330px,78vw);padding:5px}
  .portrait{border-width:5px}
  .values{margin-top:-4px;border-radius:18px}
  .value{min-height:120px;padding:20px 9px 16px}
  .value svg{width:34px;height:34px;margin-bottom:8px}
  .value strong{font-size:.75rem}
  .value small{font-size:.66rem}
  .value + .value::before{top:22px;bottom:22px}
  .site-footer{padding-top:38px}
  .legal-card{padding:40px 26px 48px;border-radius:22px}
  .legal-topbar{min-height:112px}
  .legal-topbar img{width:72px;height:72px}
}

@media(max-width:430px){
  .contact-grid{gap:8px}
  .contact-card{min-height:108px;padding:12px 4px;gap:8px}
  .contact-icon{width:34px;height:34px}
  .contact-copy strong{font-size:.68rem;white-space:nowrap;letter-spacing:0}
}

@media(max-width:360px){
  .contact-grid{gap:6px}
  .contact-card{min-height:104px;padding-inline:3px}
  .contact-icon{width:32px;height:32px}
  .contact-copy strong{font-size:.63rem}
}
