
:root{
  --bg:#070707;
  --panel:#101010;
  --panel2:#141414;
  --text:#e9e9e9;
  --muted:#a7a7a7;
  --line:#262626;
  --accent:#ff3c00;
  --accent2:#ff8a00;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 500px at 15% 10%, rgba(255,60,0,.12), transparent 60%),
              radial-gradient(700px 500px at 85% 20%, rgba(255,138,0,.09), transparent 60%),
              var(--bg);
  color:var(--text);
  line-height:1.65;
}

a{color:inherit}
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.small{font-size:14px;color:var(--muted)}
.kicker{letter-spacing:.14em;text-transform:uppercase;font-size:12px;color:var(--muted)}
.hr{height:1px;background:var(--line);margin:26px 0}

nav{
  position:sticky; top:0; z-index:20;
  background:rgba(7,7,7,.8);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
}
.brand{
  display:flex; align-items:baseline; gap:10px;
  font-weight:900; letter-spacing:.12em;
}
.brand span{color:var(--accent)}
.nav-links{display:flex; gap:18px; flex-wrap:wrap}
.nav-links a{
  text-decoration:none; font-size:14px; color:var(--muted);
  padding:8px 10px; border-radius:10px;
}
.nav-links a:hover{color:#fff; background:rgba(255,255,255,.04)}
.nav-links a.active{color:#fff; border:1px solid rgba(255,60,0,.35); background:rgba(255,60,0,.08)}

.hero{
  border-bottom:1px solid var(--line);
}
.hero-inner{
  padding:56px 0 44px;
  display:grid; gap:28px;
  grid-template-columns: 1.1fr .9fr;
  align-items:stretch;
}
@media (max-width: 900px){
  .hero-inner{grid-template-columns:1fr}
}
.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:34px;
  position:relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 220px at 20% 0%, rgba(255,60,0,.25), transparent 60%),
              radial-gradient(500px 260px at 80% 20%, rgba(255,138,0,.18), transparent 60%);
  pointer-events:none;
}
.hero-card > *{position:relative}
h1{
  font-size:44px; line-height:1.1; margin:10px 0 12px;
}
@media (max-width: 500px){ h1{font-size:36px} }
.lede{color:var(--muted); font-size:18px; max-width:60ch}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.btn{
  display:inline-flex; align-items:center; gap:10px;
  text-decoration:none; font-weight:700;
  padding:12px 16px; border-radius:14px;
  border:1px solid rgba(255,60,0,.4);
  background: linear-gradient(135deg, rgba(255,60,0,.25), rgba(255,138,0,.10));
  box-shadow: 0 14px 40px rgba(255,60,0,.10);
}
.btn.secondary{
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  box-shadow:none;
  color:#fff;
}
.btn:hover{filter:brightness(1.08)}

.hero-media{
  border-radius:18px;
  border:1px solid var(--line);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: #0b0b0b;
  position:relative;
}
.hero-media img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  min-height:320px;
  filter:saturate(1.05) contrast(1.02);
}
.hero-media .caption{
  position:absolute; left:16px; right:16px; bottom:14px;
  background: rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.10);
  border-radius:14px;
  padding:10px 12px;
  font-size:13px; color:#d8d8d8;
}

main{padding:44px 0 70px}
.section{margin-top:34px}
.section h2{font-size:28px; margin:10px 0 12px}
.section p{color:#d3d3d3; margin-bottom:12px}
.grid{
  display:grid; gap:18px;
  grid-template-columns: repeat(12, 1fr);
}
.card{
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:18px;
  padding:22px;
}
.card h3{font-size:16px; margin-bottom:6px}
.card p{color:var(--muted); font-size:14px}
.span-4{grid-column: span 4}
.span-6{grid-column: span 6}
.span-8{grid-column: span 8}
.span-12{grid-column: span 12}
@media (max-width: 900px){
  .span-4,.span-6,.span-8{grid-column: span 12}
}

.callout{
  border-left:3px solid var(--accent);
  padding:18px 18px 18px 16px;
  background:rgba(255,60,0,.06);
  border-radius:16px;
  border:1px solid rgba(255,60,0,.20);
}

.ul{margin:10px 0 0 18px; color:#d3d3d3}
.ul li{margin:6px 0}

figure{
  margin:0;
  border-radius:18px;
  border:1px solid var(--line);
  overflow:hidden;
  background:#0b0b0b;
}
figure img{display:block; width:100%; height:260px; object-fit:cover}
figcaption{
  padding:12px 14px;
  font-size:13px;
  color:var(--muted);
  border-top:1px solid var(--line);
}

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:16px;
}
.g-span-6{grid-column: span 6}
.g-span-4{grid-column: span 4}
.g-span-12{grid-column: span 12}
@media (max-width: 900px){
  .g-span-6,.g-span-4{grid-column: span 12}
  figure img{height:240px}
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.table th, .table td{
  padding:12px 12px;
  border-bottom:1px solid var(--line);
  font-size:14px;
  text-align:left;
}
.table th{color:#fff; background:rgba(255,255,255,.03)}
.table tr:last-child td{border-bottom:none}
.badge{
  display:inline-flex; align-items:center;
  padding:4px 10px;
  border-radius:999px;
  border:1px solid rgba(255,60,0,.35);
  background:rgba(255,60,0,.08);
  font-size:12px; color:#fff;
}

footer{
  border-top:1px solid var(--line);
  background: #070707;
}
.footer-inner{
  padding:44px 0;
  display:grid; gap:22px;
  grid-template-columns: 2fr 1fr 1fr;
}
@media (max-width: 900px){ .footer-inner{grid-template-columns:1fr} }
.footer-col h4{margin-bottom:10px}
.footer-col a{
  display:block; text-decoration:none;
  color:var(--muted); margin:6px 0; font-size:14px;
}
.footer-col a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid var(--line);
  padding:16px 0;
  color:var(--muted);
  font-size:13px;
}
