*{box-sizing:border-box}
:root{
  color-scheme:dark;
  --bg:#07080b;
  --panel:rgba(15,17,23,.88);
  --panel2:rgba(10,12,17,.92);
  --text:#f8f8f6;
  --muted:#aeb3bd;
  --line:rgba(255,255,255,.1);
  --gold:#d8b967;
  --gold2:#f2dda0;
  --danger:#ffc1c1;
  --success:#dff5d7;
}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  overflow-x:hidden;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    linear-gradient(rgba(255,255,255,.017) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.017) 1px,transparent 1px),
    var(--bg);
  background-size:52px 52px;
}
.ambient{
  position:fixed;
  width:460px;
  height:460px;
  border-radius:50%;
  filter:blur(90px);
  opacity:.16;
  pointer-events:none;
}
.ambient-one{top:-180px;right:-120px;background:#d7ae4e}
.ambient-two{bottom:-220px;left:-140px;background:#354276}
.shell{
  position:relative;
  width:min(100%,1180px);
  margin:0 auto;
  padding:44px 22px 24px;
}
.hero-card,.inquiry-card{
  border:1px solid var(--line);
  background:linear-gradient(145deg,var(--panel),var(--panel2));
  box-shadow:0 30px 90px rgba(0,0,0,.45);
  backdrop-filter:blur(18px);
}
.hero-card{
  min-height:680px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:30px clamp(24px,6vw,76px) 44px;
  border-radius:30px;
  overflow:hidden;
}
.topline{
  display:flex;
  align-items:center;
  gap:10px;
  color:#d3d5da;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.status-dot{
  width:8px;height:8px;border-radius:50%;background:var(--gold);
  box-shadow:0 0 0 5px rgba(216,185,103,.12),0 0 22px rgba(216,185,103,.6);
}
.hero-copy{padding:72px 0 52px;text-align:center}
.eyebrow{
  margin:0;
  color:var(--gold);
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.24em;
  text-transform:uppercase;
}
h1{
  margin:24px 0 0;
  font-size:clamp(3.35rem,10vw,8.3rem);
  line-height:.94;
  letter-spacing:-.06em;
  overflow-wrap:anywhere;
}
.lead{
  width:min(100%,760px);
  margin:32px auto 0;
  color:var(--muted);
  font-size:clamp(1rem,2vw,1.24rem);
  line-height:1.78;
}
.value-grid{
  width:min(100%,820px);
  margin:44px auto 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,.018);
}
.value-grid div{padding:20px 18px}
.value-grid div+div{border-left:1px solid var(--line)}
.value-grid strong{display:block;color:var(--gold2);font-size:.92rem}
.value-grid span{display:block;margin-top:6px;color:#9299a5;font-size:.78rem;line-height:1.45}
.cta-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding-top:28px;
  border-top:1px solid var(--line);
}
.primary-cta{
  display:inline-flex;
  justify-content:center;
  min-width:205px;
  padding:15px 22px;
  border-radius:12px;
  color:#171309;
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  text-decoration:none;
  font-weight:950;
  box-shadow:0 14px 35px rgba(216,185,103,.18);
}
.microcopy{color:#858c97;font-size:.78rem}
.inquiry-card{
  margin-top:26px;
  padding:58px clamp(22px,6vw,72px) 64px;
  border-radius:26px;
}
.inquiry-heading{
  width:min(100%,750px);
  margin:0 auto 38px;
  text-align:center;
}
.inquiry-heading h2{
  margin:13px 0 14px;
  font-size:clamp(2rem,5vw,3.7rem);
  line-height:1.06;
  letter-spacing:-.035em;
}
.inquiry-heading p:last-child{margin:0;color:var(--muted);line-height:1.7}
form{display:grid;gap:18px}
.two-up{display:grid;grid-template-columns:1fr 1fr;gap:18px}
label{display:grid;gap:9px}
label span{font-size:.9rem;font-weight:800}
label b{color:var(--gold)}
input,textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.13);
  border-radius:13px;
  padding:15px 16px;
  color:var(--text);
  background:rgba(3,4,7,.7);
  font:inherit;
  outline:none;
  transition:border-color .16s ease,box-shadow .16s ease,background .16s ease;
}
input:focus,textarea:focus{
  border-color:var(--gold);
  background:rgba(6,7,10,.96);
  box-shadow:0 0 0 3px rgba(216,185,103,.12);
}
textarea{min-height:155px;resize:vertical}
button{
  width:100%;
  border:0;
  border-radius:13px;
  padding:17px 22px;
  color:#171309;
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  font:inherit;
  font-weight:950;
  cursor:pointer;
  box-shadow:0 14px 35px rgba(216,185,103,.18);
  transition:transform .16s ease,filter .16s ease,opacity .16s ease;
}
button:hover{transform:translateY(-1px);filter:brightness(1.04)}
button:disabled{cursor:wait;opacity:.68;transform:none}
.legal{
  margin:0;
  color:#858c98;
  font-size:.75rem;
  line-height:1.6;
  text-align:center;
}
.honeypot{
  position:absolute!important;
  left:-9999px!important;
  width:1px!important;height:1px!important;overflow:hidden!important;
}
.notice{
  margin:0 0 24px;
  padding:17px 18px;
  border-radius:12px;
  text-align:center;
  line-height:1.6;
}
.notice.success{border:1px solid rgba(173,222,153,.35);color:var(--success);background:rgba(121,184,97,.09)}
.notice.error{border:1px solid rgba(255,184,184,.35);color:var(--danger);background:rgba(180,74,74,.09)}
footer{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:20px 6px 0;
  color:#7f8794;
  font-size:.78rem;
}
@media(max-width:760px){
  .shell{padding:14px 10px 16px}
  .hero-card{min-height:auto;border-radius:19px;padding:22px 20px 28px}
  .hero-copy{padding:58px 0 42px}
  .value-grid{grid-template-columns:1fr}
  .value-grid div+div{border-left:0;border-top:1px solid var(--line)}
  .cta-row{flex-direction:column;align-items:stretch;text-align:center}
  .primary-cta{width:100%}
  .inquiry-card{border-radius:19px;padding:48px 18px 52px}
  .two-up{grid-template-columns:1fr}
  footer{flex-direction:column;align-items:center;text-align:center}
}
