:root{
  --bg:#0a0c0f;
  --panel:rgba(255,255,255,.08);
  --panel2:rgba(255,255,255,.12);
  --text:rgba(255,255,255,.95);
  --muted:rgba(255,255,255,.65);
  --line:rgba(255,255,255,.12);
  --orange:#ff6a00;
  --orange-bright:#ff8533;
  --orange-dark:#cc5500;
  --shadow: 0 20px 70px rgba(0,0,0,.6);
  --shadow-lg: 0 30px 90px rgba(0,0,0,.75);
  --radius:16px;
  --max:1200px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1400px 800px at 15% 10%, rgba(255,106,0,.20), transparent 65%),
    radial-gradient(1000px 600px at 85% 25%, rgba(255,106,0,.12), transparent 60%),
    radial-gradient(800px 500px at 50% 80%, rgba(255,106,0,.08), transparent 55%),
    var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; transition: all 0.3s ease; }
a:hover{ text-decoration:none; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

/* === HEADER === */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px) saturate(180%);
  background: rgba(10,12,15,.85);
  border-bottom:1px solid var(--line);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width: 260px;
  transition: transform 0.3s ease;
}
.brand:hover{
  transform: scale(1.03);
  text-decoration:none;
}
.brand img{
  height:28px;
  width:auto;
  display:block;
  filter: drop-shadow(0 2px 8px rgba(255,106,0,.3));
}
.brand .title{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand .title strong{
  font-size:15px;
  letter-spacing:.5px;
  color:var(--orange-bright);
}
.brand .title span{
  font-size:12px;
  color:var(--muted);
}

.menu{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  justify-content:center;
}

.menu a{
  font-size:14px;
  color:var(--muted);
  padding:10px 16px;
  border-radius:999px;
  border:1px solid transparent;
  position:relative;
  overflow:hidden;
  transition: all 0.3s ease;
}
.menu a::before{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,106,0,.15), rgba(255,106,0,.05));
  opacity:0;
  transition: opacity 0.3s ease;
}
.menu a.active{
  color:var(--text);
  border-color: rgba(255,106,0,.40);
  background: rgba(255,106,0,.15);
  box-shadow: 0 0 20px rgba(255,106,0,.2);
}
.menu a.active::before{ opacity:1; }
.menu a:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,106,0,.20);
  transform: translateY(-2px);
  text-decoration:none;
}

.actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
  min-width: 340px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size:14px;
  white-space:nowrap;
  transition: all 0.3s ease;
}
.pill:hover{
  background: rgba(255,255,255,.10);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,106,0,.2);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 20px;
  border-radius:999px;
  border:1px solid rgba(255,106,0,.50);
  background: linear-gradient(180deg, rgba(255,106,0,.25), rgba(255,106,0,.12));
  color: var(--text);
  font-weight:600;
  font-size:14px;
  white-space:nowrap;
  cursor:pointer;
  transition: all 0.3s ease;
  position:relative;
  overflow:hidden;
}
.btn::before{
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,106,0,.4), rgba(255,106,0,.2));
  opacity:0;
  transition: opacity 0.3s ease;
}
.btn:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(255,106,0,.4);
  border-color: var(--orange-bright);
  text-decoration:none;
}
.btn:hover::before{ opacity:1; }
.btn:active{
  transform: translateY(-1px) scale(0.98);
}

/* === HERO === */
.hero{
  padding:32px 0 16px;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from { opacity:0; transform: translateY(20px); }
  to { opacity:1; transform: translateY(0); }
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:20px;
  align-items:stretch;
}

.card{
  border:1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position:relative;
  overflow:hidden;
}
.card::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-bright), var(--orange));
  opacity:0;
  transition: opacity 0.4s ease;
}
.card:hover{
  border-color: rgba(255,106,0,.3);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255,106,0,.15);
  transform: translateY(-4px);
}
.card:hover::before{ opacity:1; }

.heroLeft{
  padding:32px;
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from { opacity:0; transform: translateX(-30px); }
  to { opacity:1; transform: translateX(0); }
}

.heroRight{
  overflow:hidden;
  position:relative;
  animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
  from { opacity:0; transform: translateX(30px); }
  to { opacity:1; transform: translateX(0); }
}

.heroRight img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter: contrast(1.08) saturate(1.05);
  transition: transform 0.6s ease;
}
.heroRight:hover img{
  transform: scale(1.05);
}
.heroRight:after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(10,12,15,.3), rgba(10,12,15,.8));
  pointer-events:none;
}

.kicker{
  color:var(--orange-bright);
  font-size:14px;
  margin:0 0 12px;
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity:1; }
  50% { opacity:0.7; }
}

.h1{
  margin:0 0 16px;
  font-size:48px;
  line-height:1.05;
  letter-spacing:-.8px;
  background: linear-gradient(135deg, var(--text), var(--orange-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead{
  margin:0 0 20px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}

.ctaRow{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 16px 0 20px;
}

.chips{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 16px 0 0;
}

.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: var(--muted);
  font-size:13px;
  transition: all 0.3s ease;
}
.chip:hover{
  background: rgba(255,106,0,.12);
  border-color: var(--orange);
  color:var(--text);
  transform: translateY(-2px);
}

/* === SECTIONS === */
.section{
  padding:24px 0 40px;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from { opacity:0; transform: translateY(30px); }
  to { opacity:1; transform: translateY(0); }
}

.section h2{
  margin: 0 0 20px;
  font-size:32px;
  color:var(--text);
  letter-spacing:-.4px;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:18px;
}

.item{
  padding:24px;
}
.item h3{
  margin:0 0 12px;
  font-size:18px;
  color:var(--orange-bright);
}
.item p{
  margin:0 0 10px;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}
.item ul{
  margin:12px 0 0;
  color:var(--muted);
  padding-left:20px;
  line-height:1.8;
}
.item li{ margin:8px 0; }

/* === PAGE HEAD === */
.pageHead{
  padding:28px 0 10px;
  animation: fadeIn 0.6s ease;
}
.pageHead h1{
  margin:0 0 12px;
  font-size:42px;
  letter-spacing:-.6px;
  background: linear-gradient(135deg, var(--text), var(--orange-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pageHead p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:16px;
}

/* === FOOTER === */
.footer{
  border-top:1px solid var(--line);
  padding:24px 0;
  color:var(--muted);
  font-size:13px;
  background: rgba(0,0,0,.2);
}
.footer a{
  color:var(--muted);
  transition: color 0.3s ease;
}
.footer a:hover{
  color:var(--orange-bright);
}
.footerRow{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

/* === RESPONSIVE === */
@media (max-width: 980px){
  .heroGrid{
    grid-template-columns: 1fr;
    gap:16px;
  }
  .h1{ font-size:38px; }
  .brand{ min-width:auto; }
  .actions{ min-width:auto; justify-content:flex-start; }
  .grid3{ grid-template-columns: 1fr; }
  .nav{ flex-wrap:wrap; }
}

@media (max-width: 640px){
  .menu{
    gap:6px;
    justify-content:flex-start;
    width:100%;
  }
  .menu a{ padding:9px 12px; font-size:13px; }
  .h1{ font-size:32px; }
  .heroLeft{ padding:24px; }
  .section h2{ font-size:26px; }
  .pageHead h1{ font-size:32px; }
  .actions{
    width:100%;
    justify-content:space-between;
  }
}

/* === ANIMATIONS === */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.card.item:nth-child(1){ animation-delay: 0.1s; }
.card.item:nth-child(2){ animation-delay: 0.2s; }
.card.item:nth-child(3){ animation-delay: 0.3s; }

/* === UTILITIES === */
button{
  font-family: inherit;
  border:none;
  cursor:pointer;
}

strong{
  color:var(--orange-bright);
  font-weight:600;
}

pre{
  font-family: 'Courier New', monospace;
}
