:root{
  --green-950:#032b23;
  --green-900:#063d31;
  --green-800:#075442;
  --green-700:#08705a;
  --green-100:#e7f2ee;
  --orange:#ff6426;
  --orange-dark:#e34e13;
  --navy:#061739;
  --blue:#1677ff;
  --text:#12231e;
  --muted:#66756f;
  --surface:#ffffff;
  --surface-soft:#f4f7f6;
  --line:rgba(6,61,49,.11);
  --shadow-sm:0 12px 30px rgba(9,38,30,.08);
  --shadow-lg:0 28px 70px rgba(9,38,30,.15);
  --radius:24px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:92px}
body{
  font-family:"Manrope",sans-serif;
  background:#fff;
  color:var(--text);
  line-height:1.65;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit}
button,input,textarea{font:inherit}
.container{width:min(1240px,calc(100% - 40px));margin-inline:auto}
.section{padding:112px 0}
.center{text-align:center}

h1,h2,h3,.logo,.nav{font-family:"Space Grotesk",sans-serif}
h2{font-size:clamp(2.15rem,4vw,4rem);line-height:1.05;letter-spacing:-.045em}
p{color:var(--muted)}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:18px;
  color:#bceadd;
  font-size:12px;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.eyebrow::before{content:"";width:28px;height:2px;background:var(--orange);border-radius:99px}
.eyebrow.dark-text{color:var(--green-700)}
.section-heading{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:40px;
  margin-bottom:48px;
}
.section-heading p{margin-top:14px;font-size:17px}
.section-link{
  flex:none;
  font-weight:800;
  text-decoration:none;
  color:var(--green-800);
  border-bottom:1px solid currentColor;
  padding-bottom:5px;
  transition:.2s ease;
}
.section-link:hover{color:var(--orange);transform:translateX(4px)}

.btn{
  min-height:50px;
  padding:0 24px;
  border:1px solid transparent;
  border-radius:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.btn:hover{transform:translateY(-3px)}
.btn-primary{background:var(--orange);color:#fff;box-shadow:0 14px 28px rgba(255,100,38,.26)}
.btn-primary:hover{background:var(--orange-dark);box-shadow:0 18px 34px rgba(255,100,38,.34)}
.btn-secondary{background:var(--green-700);color:#fff}
.btn-ghost{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.3);color:#fff;backdrop-filter:blur(14px)}
.btn-ghost-dark{background:#fff;border-color:var(--line);color:var(--green-900)}
.btn-light{background:#fff;color:var(--green-900);box-shadow:var(--shadow-sm)}

.court-status{
  background:linear-gradient(90deg,var(--green-800),#0d7a48);
  color:#fff;
  font-size:13px;
}
.court-status-inner{
  min-height:42px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:9px;
  text-align:center;
}
.status-dot{
  width:9px;height:9px;border-radius:50%;
  background:#9df45f;
  box-shadow:0 0 0 6px rgba(157,244,95,.12),0 0 18px #9df45f;
}
.court-status span:last-child{opacity:.82}

@media(max-width:760px){
  .container{width:min(100% - 28px,1240px)}
  .section{padding:76px 0}
  .section-heading{align-items:flex-start;flex-direction:column;margin-bottom:32px}
  .section-link{font-size:14px}
  .court-status-inner{padding:10px 0;flex-wrap:wrap;line-height:1.35}
  .court-status span:last-child{display:none}
}
