:root{
  --bg: #0b0c0d;
  --panel: rgba(255,255,255,.06);
  --panel-strong: rgba(255,255,255,.09);
  --border: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.86);
  --text-strong: #ffffff;
  --muted: rgba(255,255,255,.68);

  --accent: #ff5a1f;
  --accent-soft: rgba(255,90,31,.16);

  --radius: 18px;
  --max: 1120px;
  --shadow-soft: 0 12px 24px rgba(0,0,0,.28);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color: var(--text);
  background:
    radial-gradient(900px 600px at 30% 0%, rgba(255,90,31,.12), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, #0b0c0d 0%, #0a0a0b 100%);
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
button,input,textarea,select{font:inherit}
:focus-visible{outline:none; box-shadow: 0 0 0 3px rgba(255,90,31,.35); border-radius: 12px}

.container{max-width: var(--max); margin:0 auto; padding:0 18px}
.hr{height:1px; background: rgba(255,255,255,.12); margin: 22px 0}
.small{font-size: 13px; color: var(--muted); line-height: 1.55}

.header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(11,12,13,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.header-row{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand{
  display:flex; align-items:center; gap: 12px;
}
.brand img{width: 54px; height: 54px; object-fit:contain}
.brand .name{display:flex; flex-direction:column; gap:2px; line-height:1.1}
.brand .name strong{color: var(--text-strong); font-size: 14px; letter-spacing:.2px}
.brand .name span{color: var(--muted); font-size: 12px}

.nav{display:flex; align-items:center; gap: 6px}
.nav a{
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 700;
}
.nav a:hover{background: rgba(255,255,255,.06)}
.nav a.active{
  background: var(--accent-soft);
  color: var(--text-strong);
  border: 1px solid rgba(255,90,31,.25);
}

.cta{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap: 8px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text-strong);
  font-weight: 800;
  transition: transform .08s ease, background .15s ease;
}
.btn:hover{background: rgba(255,255,255,.09)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  background: var(--accent);
  border-color: rgba(0,0,0,0);
  color: #101113;
}
.btn.primary:hover{filter: brightness(1.03)}

.burger{
  display:none;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: var(--text-strong);
  font-weight: 800;
}
.mobile{display:none; border-top: 1px solid rgba(255,255,255,.10)}
.mobile.open{display:block}
.mobile a{
  display:block;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 800;
}
.mobile .row{display:flex; gap: 10px; padding: 14px 18px}

.hero{padding: 40px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: stretch;
}
.card{
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.hero-copy{padding: 26px}
.kicker{
  display:inline-flex; align-items:center; gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,90,31,.30);
  background: rgba(255,90,31,.12);
  color: var(--text-strong);
  font-weight: 900;
  font-size: 12px;
}
.h1{
  margin: 14px 0 10px;
  color: var(--text-strong);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -.5px;
}
.lead{
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,.80);
}
.hero-actions{display:flex; flex-wrap:wrap; gap: 10px; margin-top: 14px}
.trust{display:flex; flex-wrap:wrap; gap: 10px; margin-top: 16px}
.badge{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 9px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text-strong);
  font-weight: 800;
  font-size: 13px;
}
.hero-media img{width:100%; height:100%; min-height: 320px; object-fit: cover}

.section{padding: 26px 0}
.section-title{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap: 12px;
  margin-bottom: 14px;
}
.section-title h2{margin:0; color: var(--text-strong); font-size: 22px}
.section-title p{margin:0; color: var(--muted); font-size: 14px}

.grid{display:grid; gap: 14px}
.cols-3{grid-template-columns: repeat(3, 1fr)}
.cols-2{grid-template-columns: repeat(2, 1fr)}

.card-pad{padding: 16px}
.card h3{margin: 0 0 8px; color: var(--text-strong); font-size: 16px}
.card p{margin:0; line-height: 1.6; color: rgba(255,255,255,.78); font-size: 14px}

.pills{display:flex; gap: 8px; flex-wrap:wrap; margin-top: 10px}
.pill{
  display:inline-flex; align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,90,31,.28);
  background: rgba(255,90,31,.10);
  color: var(--text-strong);
  font-weight: 900;
  font-size: 12px;
}

.bullets{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
  padding-left: 18px;
  margin: 10px 0 0;
}
.bullets li{color: rgba(255,255,255,.78); line-height: 1.55}

.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery a{
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.gallery img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform .25s ease;
}
.gallery a:hover img{transform: scale(1.03)}

.staff{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.staff .avatar{
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.14);
  margin-bottom: 12px;
}
.role{color: var(--accent); font-weight: 900; font-size: 13px; margin-top: 2px}

.form{display:grid; gap: 12px}
.field{display:grid; gap: 6px}
label{color: var(--text-strong); font-weight: 900; font-size: 13px}
input, textarea{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.22);
  color: var(--text-strong);
}
textarea{min-height: 120px; resize: vertical}

.footer{
  margin-top: 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.28);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}
.footer strong{color: var(--text-strong)}
.footer a{text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,90,31,.55)}

.sticky{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 999;
  display:none;
  gap: 10px;
}
.sticky .btn{flex:1; padding: 12px 14px; border-radius: 16px}

@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr}
  .cols-3{grid-template-columns: 1fr}
  .cols-2{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(2, 1fr)}
  .footer-grid{grid-template-columns: 1fr}
  .nav{display:none}
  .cta{display:none}
  .burger{display:inline-flex}
  .sticky{display:flex}
  .bullets{grid-template-columns: 1fr}
  .staff{grid-template-columns: 1fr}
}
/* Powered by Grand Line Analytics */
.powered-by {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
}

.powered-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  text-decoration: none;
}

.powered-logo {
  height: 18px;
  width: 18px;
  opacity: 0.95;
}

.powered-text {
  color: #2dd4bf; /* Grand Line teal */
  line-height: 1;
}

.powered-text strong {
  color: #f5c16c; /* Grand Line gold */
  font-weight: 600;
}

.powered-link:hover .powered-text {
  text-decoration: underline;
}
