:root{
  --bg: #0b0d12;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.7);
  --muted2: rgba(255,255,255,0.55);
  --line: rgba(255,255,255,0.12);
  --brand: #d6b35a; /* gold */
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 700px at 20% 0%, rgba(214,179,90,0.12), transparent 55%),
              radial-gradient(900px 600px at 90% 10%, rgba(124,161,255,0.10), transparent 55%),
              var(--bg);
  line-height:1.5;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-underline-offset:3px; }

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

.skip-link{
  position:absolute;
  left:-999px;
  top:12px;
  background:#fff;
  color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:9999;
}
.skip-link:focus{ left:12px; }

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid transparent;
  background: linear-gradient(to bottom, rgba(11,13,18,0.75), rgba(11,13,18,0.35));
  backdrop-filter: blur(10px);
}
.site-header[data-scrolled="true"]{
  border-bottom-color: var(--line);
  background: rgba(11,13,18,0.85);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand-mark{
  width:44px;
  height:44px;
  object-fit:contain;
  border-radius:12px;
  background: rgba(255,255,255,0.04);
  padding:6px;
  border:1px solid var(--line);
}
.brand-text{ display:flex; flex-direction:column; line-height:1; }
.brand-name{ font-weight:700; letter-spacing:0.02em; font-size:16px; }
.brand-sub{ font-weight:600; color:var(--brand); font-size:12px; margin-top:4px; letter-spacing:0.12em; text-transform:uppercase; }

.site-nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.site-nav a{
  color:var(--muted);
  font-weight:500;
}
.site-nav a:hover{ color:var(--text); text-decoration:none; }

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color:var(--text);
}
.nav-toggle-bars{
  display:block;
  width:18px;
  height:2px;
  background: var(--text);
  margin:0 auto;
  position:relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background: var(--text);
}
.nav-toggle-bars::before{ top:-6px; }
.nav-toggle-bars::after{ top:6px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  font-weight:600;
  border:1px solid rgba(255,255,255,0.16);
  background: linear-gradient(180deg, rgba(214,179,90,0.95), rgba(214,179,90,0.75));
  color: #0b0d12;
  box-shadow: 0 12px 30px rgba(214,179,90,0.12);
  text-decoration:none !important;
}
.btn:hover{ filter:brightness(1.02); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn-ghost{
  background: rgba(255,255,255,0.06);
  color: var(--text);
  box-shadow:none;
}
.btn-small{ padding:10px 14px; border-radius:12px; }

.btn-block{ width:100%; }

.hero{
  position:relative;
  padding: 72px 0 44px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:-2px;
  background:
    linear-gradient(120deg, rgba(214,179,90,0.16), transparent 35%),
    radial-gradient(900px 420px at 70% 15%, rgba(255,255,255,0.08), transparent 50%),
    url("images/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  opacity: 0.55;
  transform: scale(1.04);
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items:start;
}
.hero-copy{ padding: 22px 0; }
.eyebrow{
  display:inline-block;
  color: var(--muted);
  border:1px solid var(--line);
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,0.04);
  margin:0 0 14px;
  font-weight:600;
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
}
h1{
  margin:0 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.05;
  letter-spacing:-0.02em;
}
.lead{
  color: var(--muted);
  font-size: 16px;
  max-width: 54ch;
  margin: 0 0 18px;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin: 18px 0 22px; }

.trust{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.trust-item{
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
  padding:12px 14px;
  border-radius: 16px;
  min-width: 140px;
}
.trust-value{ font-weight:800; font-size:18px; }
.trust-label{ color:var(--muted2); font-weight:600; font-size:12px; margin-top:2px; }

.hero-card{
  position:relative;
  margin-top: 6px;
}

.section{
  padding: 66px 0;
}
.section-alt{
  background: rgba(255,255,255,0.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom: 18px;
}
.section-head h2{
  margin:0;
  font-size: 26px;
  letter-spacing:-0.01em;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width: 60ch;
}

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

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.card-title{ margin:0 0 6px; font-size: 18px; }
.card-subtitle{ margin:0 0 14px; color:var(--muted); }

.feature h3{ margin:0 0 8px; }
.feature p{ margin:0 0 12px; color:var(--muted); }

.ticks{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
  color:var(--muted);
}
.ticks li{
  padding-left: 22px;
  position:relative;
}
.ticks li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--brand);
  font-weight:800;
}

.pill-card{
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
  border-radius: 999px;
  padding: 12px 14px;
  color: var(--muted);
  font-weight:600;
  text-align:center;
}

.split{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items:start;
}
.checks{ display:grid; gap: 14px; margin-top: 16px; }
.check h3{ margin:0 0 6px; font-size:16px; }
.check p{ margin:0; color:var(--muted); }

.highlight{
  position:sticky;
  top: 92px;
}
.mini-list{
  display:grid;
  gap:10px;
  margin: 12px 0 18px;
}
.mini-list div{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-weight:600;
}
.mini-list span{
  width:26px;
  height:26px;
  border-radius:10px;
  border:1px solid var(--line);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.05);
  color: var(--brand);
  font-weight:800;
}

.form{ display:grid; gap:12px; }
.field label{
  display:block;
  font-weight:600;
  margin-bottom:6px;
  color: var(--muted);
  font-size: 13px;
}
.field input, .field select, .field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(11,13,18,0.55);
  color: var(--text);
  outline:none;
}
.field input::placeholder, .field textarea::placeholder{ color: rgba(255,255,255,0.35); }
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: rgba(214,179,90,0.65);
  box-shadow: 0 0 0 4px rgba(214,179,90,0.14);
}
.status{ margin:6px 0 0; color: var(--muted); min-height: 1.2em; }
.fineprint{ margin:0; color:var(--muted2); font-size:12px; }

.contact-grid{
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.contact-item{
  display:flex;
  gap:10px;
  justify-content:space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child{ border-bottom:none; }
.contact-label{ color:var(--muted2); font-weight:700; }

.footer{
  padding: 26px 0 38px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.footer-left{ display:flex; align-items:center; gap:12px; }
.footer-mark{
  width:42px;
  height:42px;
  object-fit:contain;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.04);
  padding:6px;
}
.footer-brand{ font-weight:800; }
.footer-small{ color: var(--muted2); font-size:12px; }
.footer-right{ display:flex; align-items:center; gap:16px; }

@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .highlight{ position:relative; top:auto; }
  .cards-3{ grid-template-columns: repeat(2, 1fr); }
  .cards-4{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .site-nav{
    position:absolute;
    top: 66px;
    right: 0;
    left: 0;
    display:none;
    flex-direction:column;
    padding: 12px 20px 18px;
    border-bottom:1px solid var(--line);
    background: rgba(11,13,18,0.96);
  }
  .site-nav[data-open="true"]{ display:flex; }
  .site-nav a{ width:100%; padding:12px 8px; }
  .cards-3{ grid-template-columns: 1fr; }
}
