
:root {
  --bg:#050505;
  --bg2:#0e0e0e;
  --panel:#111111;
  --panel2:#171717;
  --gold:#c99a43;
  --gold2:#f2d38b;
  --gold3:#8d5f21;
  --text:#f8f2e8;
  --muted:#bdb5aa;
  --muted2:#8f887f;
  --line:rgba(242,211,139,.22);
  --line2:rgba(255,255,255,.085);
  --danger:#e8bf68;
  --shadow:0 32px 92px rgba(0,0,0,.42);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:
    radial-gradient(circle at 88% 0%, rgba(201,154,67,.17), transparent 31%),
    radial-gradient(circle at 0% 19%, rgba(255,255,255,.055), transparent 27%),
    linear-gradient(145deg,#020202 0%,#101010 48%,#050505 100%);
  color:var(--text);
}
body.legal-page{background:#060606;color:var(--text)}
a{color:inherit;text-decoration:none}
.container{max-width:1180px;margin:0 auto;padding-left:22px;padding-right:22px}
.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(18px);
  background:rgba(2,2,2,.78);
  border-bottom:1px solid var(--line2);
}
.nav-inner{
  max-width:1180px;
  margin:0 auto;
  padding:15px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.brand{display:flex;align-items:center;gap:13px;min-width:245px}
.brand-mark{
  width:49px;height:49px;border-radius:14px;
  background:linear-gradient(145deg,#f6dc93,#986625);
  display:grid;place-items:center;
  color:#060606;
  font-family:Georgia,serif;
  font-weight:900;
  font-size:19px;
  letter-spacing:-.11em;
  box-shadow:0 15px 42px rgba(201,154,67,.24);
}
.brand-name{
  font-weight:850;
  letter-spacing:.17em;
  text-transform:uppercase;
  font-size:14px;
  line-height:1.1;
}
.brand-name span{
  display:block;
  color:var(--muted);
  margin-top:5px;
  font-size:10px;
  letter-spacing:.25em;
  font-weight:650;
}
.links{display:flex;align-items:center;gap:24px;color:#ded8ce;font-size:14px}
.links a:hover{color:var(--gold2)}
.button{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:46px;
  padding:13px 19px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(201,154,67,.075);
  color:#fff;
  font-weight:850;
  font-size:14px;
}
.button.gold{
  border:0;
  color:#070707;
  background:linear-gradient(135deg,#f2d489,#b67a2a);
  box-shadow:0 20px 56px rgba(201,154,67,.22);
}
.button:hover{transform:translateY(-1px)}
.mobile-note{display:none}
.hero{
  min-height:790px;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  align-items:center;
  gap:54px;
  padding-top:84px;
  padding-bottom:72px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:8px 13px;
  border:1px solid var(--line);
  background:rgba(201,154,67,.08);
  border-radius:999px;
  color:var(--gold2);
  font-size:12px;
  font-weight:850;
  letter-spacing:.17em;
  text-transform:uppercase;
  margin-bottom:23px;
}
.eyebrow:before{
  content:"";
  width:7px;height:7px;border-radius:999px;
  background:var(--gold2);
  box-shadow:0 0 18px rgba(242,211,139,.9);
}
h1{
  margin:0 0 24px;
  max-width:760px;
  font-size:clamp(43px,6.6vw,78px);
  line-height:.94;
  letter-spacing:-.066em;
}
.gold-text{
  background:linear-gradient(135deg,#fff4c8 0%,#d8ad57 48%,#8f611f 100%);
  -webkit-background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 31px;
  max-width:650px;
  color:#cac2b8;
  font-size:18.5px;
  line-height:1.72;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:38px}
.fact-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:13px;
  max-width:675px;
}
.fact{
  min-height:118px;
  border:1px solid var(--line2);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
  border-radius:24px;
  padding:18px;
}
.fact b{display:block;font-size:21px;color:#fff;margin-bottom:7px}
.fact span{display:block;color:#aaa39a;font-size:13px;line-height:1.45}
.logo-stage{
  position:relative;
  min-height:570px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.logo-stage:before{
  content:"";
  position:absolute;
  inset:8% 5%;
  border:1px solid var(--line2);
  border-radius:44px;
  background:
    radial-gradient(circle at 50% 30%,rgba(242,211,139,.22),transparent 34%),
    linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.025));
  box-shadow:var(--shadow);
}
.logo-card{
  position:relative;
  width:100%;
  max-width:520px;
  border-radius:38px;
  overflow:hidden;
  border:1px solid rgba(242,211,139,.23);
  background:#050505;
  box-shadow:0 45px 110px rgba(0,0,0,.58),0 0 80px rgba(201,154,67,.11);
}
.logo-card img{display:block;width:100%;height:auto}
.floating-note{
  position:absolute;
  right:0;
  bottom:34px;
  max-width:290px;
  padding:18px 19px;
  border-radius:24px;
  background:rgba(10,10,10,.84);
  border:1px solid rgba(255,255,255,.11);
  backdrop-filter:blur(16px);
  box-shadow:0 20px 65px rgba(0,0,0,.45);
}
.floating-note b{display:block;margin-bottom:7px;color:#fff}
.floating-note span{display:block;color:#bdb6ad;font-size:13px;line-height:1.55}
section{padding-top:76px;padding-bottom:76px}
.kicker{
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.19em;
  font-size:12px;
  font-weight:850;
  margin-bottom:14px;
}
.section-title{
  margin:0 0 16px;
  font-size:clamp(34px,4.6vw,52px);
  line-height:1.03;
  letter-spacing:-.055em;
}
.section-intro{
  margin:0 0 35px;
  max-width:775px;
  color:#bbb5ad;
  font-size:17px;
  line-height:1.75;
}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid4{display:grid;grid-template-columns:repeat(4,1fr);gap:15px}
.card{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line2);
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
  border-radius:30px;
  padding:29px;
}
.card:after{
  content:"";
  position:absolute;
  width:130px;height:130px;border-radius:50%;
  right:-50px;top:-50px;
  background:rgba(201,154,67,.08);
  filter:blur(8px);
}
.number{
  width:48px;height:48px;border-radius:16px;
  display:grid;place-items:center;
  margin-bottom:22px;
  border:1px solid var(--line);
  background:rgba(201,154,67,.12);
  color:var(--gold2);
  font-weight:900;
}
.card h3{margin:0 0 12px;font-size:21px;letter-spacing:-.02em}
.card p{margin:0;color:#b9b2aa;line-height:1.68}
.split{display:grid;grid-template-columns:.94fr 1.06fr;gap:28px;align-items:stretch}
.panel{
  border:1px solid var(--line2);
  border-radius:34px;
  padding:34px;
  background:
    radial-gradient(circle at top left,rgba(201,154,67,.12),transparent 35%),
    linear-gradient(150deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
}
.panel h3{margin:0 0 13px;font-size:31px;letter-spacing:-.04em}
.panel p{color:#bfb8af;line-height:1.72}
.check{
  display:flex;
  gap:12px;
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.075);
  color:#ded8cf;
  line-height:1.5;
}
.check:before{content:"✓";color:var(--gold2);font-weight:950}
.check:last-child{border-bottom:0}
.meta-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}
.meta{
  border:1px solid var(--line2);
  border-radius:26px;
  padding:22px;
  background:linear-gradient(145deg,rgba(201,154,67,.12),rgba(255,255,255,.025));
  min-height:150px;
}
.meta small{
  display:block;
  color:var(--gold2);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:10px;
  font-weight:850;
  margin-bottom:10px;
}
.meta b{font-size:18px;line-height:1.35}
.meta span{display:block;margin-top:8px;color:#aaa39a;font-size:13px;line-height:1.55}
.cta{
  text-align:center;
  padding:60px 28px;
  border:1px solid var(--line);
  border-radius:44px;
  background:
    radial-gradient(circle at 50% 0%,rgba(242,211,139,.24),transparent 38%),
    linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025));
  box-shadow:0 30px 100px rgba(0,0,0,.32);
}
.cta img{width:min(430px,92%);border-radius:22px;margin-bottom:18px;opacity:.96}
.cta h2{font-size:clamp(34px,5vw,54px);letter-spacing:-.065em;line-height:1.02;margin:0 0 14px}
.cta p{max-width:720px;margin:0 auto 27px;color:#c7c0b7;line-height:1.72}
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:15px;margin-top:22px;text-align:left}
.contact-card{border:1px solid var(--line2);border-radius:24px;padding:20px;background:rgba(0,0,0,.22)}
.contact-card small{display:block;color:var(--gold2);text-transform:uppercase;letter-spacing:.15em;font-size:10px;font-weight:850;margin-bottom:8px}
.contact-card a{color:#fff;font-weight:750;word-break:break-word}
.footer{
  margin-top:54px;
  border-top:1px solid var(--line2);
  padding:34px 22px;
  color:#9f988f;
  font-size:13px;
}
.footer-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
}
.footer-links{display:flex;gap:14px;flex-wrap:wrap;justify-content:flex-end}
.footer a{color:#d6c7a9}
.footer a:hover{color:var(--gold2)}
.company-line{line-height:1.65}
.legal-hero{padding-top:74px;padding-bottom:24px}
.legal-wrap{
  max-width:900px;
  margin:0 auto;
  padding:28px 22px 90px;
}
.legal-box{
  border:1px solid var(--line2);
  border-radius:34px;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025));
  padding:34px;
}
.legal-box h1{font-size:clamp(38px,5vw,60px);line-height:1;margin-bottom:18px}
.legal-box h2{margin-top:32px;color:#fff}
.legal-box p,.legal-box li{color:#c6bfb6;line-height:1.75}
.legal-box ul{padding-left:20px}
.last-updated{color:var(--gold2);font-size:13px;text-transform:uppercase;letter-spacing:.14em;font-weight:850}
@media(max-width:980px){
  .links{display:none}
  .mobile-note{display:block;color:var(--muted);font-size:12px}
  .hero,.split{grid-template-columns:1fr}
  .hero{padding-top:56px;min-height:auto}
  .logo-stage{min-height:auto;padding:20px 0 84px}
  .logo-stage:before{inset:0}
  .floating-note{left:20px;right:20px;bottom:12px;max-width:none}
  .grid3,.grid4,.meta-grid,.fact-row,.contact-grid{grid-template-columns:1fr}
  .footer-inner{grid-template-columns:1fr}
  .footer-links{justify-content:flex-start}
  .brand-name{font-size:13px}
}
