/* Clean, simple, responsive CSS (no frameworks) */

:root{
  --bg: #0b0f14;
  --surface: rgba(255,255,255,.06);
  --surface-2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --border: rgba(255,255,255,.12);
  --accent: #7dd3fc;
  --accent-2: #a78bfa;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1060px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1000px 600px at 10% 10%, rgba(125,211,252,.16), transparent 60%),
              radial-gradient(900px 500px at 90% 30%, rgba(167,139,250,.14), transparent 55%),
              var(--bg);
}

a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--container), 100% - 32px);
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.tiny{ font-size: 13px; }

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.55);
  border-bottom: 1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  gap:16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  flex-direction: column;
  min-width: 220px;
}

.brand-name{
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--text);
}

.brand-sub{
  font-size: 13px;
  color: var(--muted);
}

.nav{
  margin-left:auto;
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap: wrap;
}

.nav a{
  color: var(--text);
  opacity: .86;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 999px;
}
.nav a:hover{
  background: var(--surface);
  text-decoration: none;
  opacity: 1;
}

.nav-toggle{
  display:none;
  margin-left:auto;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  cursor:pointer;
}

/* Hero */
.hero{
  padding: 42px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: center;
}
.hero h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
}
.lead{
  margin: 0 0 18px;
  font-size: 18px;
  color: var(--muted);
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap: wrap;
}

.hero-photo{
  margin:0;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.hero-photo img{
  width: 100%;
  height: auto;
  display:block;
}

/* Sections */
.section{
  padding: 46px 0;
}
.section-alt{
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.03) 40%, transparent);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.section h2{
  margin: 0 0 18px;
  font-size: 26px;
}

.cards{
  display:grid;
  gap: 16px;
}

.card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow);
}

.card h3{
  margin: 0 0 10px;
  font-size: 18px;
}
.card h4{
  margin: 16px 0 8px;
  font-size: 15px;
  color: var(--text);
  opacity: .95;
}

.bullets{
  margin:0 0 18px;
  padding-left: 18px;
  color: var(--text);
}
.bullets li{ margin: 6px 0; }

.card ul{
  margin: 0;
  padding-left: 18px;
}
.card li{ margin: 6px 0; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(125,211,252,.30);
  background: rgba(125,211,252,.12);
  color: var(--text);
  font-weight: 600;
  cursor:pointer;
}
.btn:hover{
  background: rgba(125,211,252,.18);
  text-decoration:none;
}
.btn-ghost{
  border-color: var(--border);
  background: var(--surface);
}

/* Tables */
.table-wrap{
  overflow:auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}
table{
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
thead th{
  text-align: left;
  font-size: 13px;
  letter-spacing: .2px;
  color: var(--muted);
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.03);
}
tbody td{
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  vertical-align: top;
}
tbody tr:hover td{
  background: rgba(255,255,255,.03);
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items:start;
}
.contact-box{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,.04);
}
.contact-row{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap: wrap;
}

.form{
  display:grid;
  gap: 12px;
}
label span{
  display:block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}
input, textarea{
  width:100%;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.18);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(125,211,252,.55);
  box-shadow: 0 0 0 3px rgba(125,211,252,.12);
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  background: rgba(11,15,20,.55);
}
.footer-inner{
  display:flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  flex-wrap: wrap;
}
.footer-name{
  font-weight: 700;
}
.footer-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a{
  color: var(--muted);
  font-size: 14px;
}
.footer-links a:hover{ color: var(--text); text-decoration:none; }

.hp {
  position: absolute;
  left: -9999px;
}

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav{ 
    display:none;
    position: absolute;
    left: 0;
    right: 0;
    top: 58px;
    padding: 10px 16px 14px;
    background: rgba(11,15,20,.92);
    border-bottom: 1px solid var(--border);
  }
  .nav.nav-open{ display:flex; flex-direction: column; align-items: flex-start; }
  .nav-toggle{ display:inline-flex; }
  .header-inner{ position: relative; }
  table{ min-width: 520px; }
}
