:root{
  --black:#050504;
  --black-2:#0a0907;
  --ink:#14120e;
  --ivory:#f6efe2;
  --paper:#fff8ea;
  --gold:#b99652;
  --gold-2:#7d622f;
  --gold-3:#e3c883;
  --navy:#101820;
  --line:rgba(246,239,226,.145);
  --line-dark:rgba(20,18,14,.13);
  --shadow-soft:0 26px 70px rgba(0,0,0,.08);
  --max:1180px;
  --ease:cubic-bezier(.22,.61,.36,1);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:var(--black);
  color:var(--ivory);
  line-height:1.45;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
::selection{background:rgba(227,200,131,.28);color:var(--ivory)}

.site{
  position:relative;
  min-height:100vh;
  background:
    radial-gradient(circle at 76% 14%, rgba(185,150,82,.18), transparent 29%),
    radial-gradient(circle at 12% 7%, rgba(16,24,32,.95), transparent 34%),
    linear-gradient(180deg,#050504 0%,#090806 61%,#f6efe2 61%,#f6efe2 100%);
  isolation:isolate;
}

.site.page-shell{
  background:
    radial-gradient(circle at 76% 8%, rgba(185,150,82,.14), transparent 28%),
    linear-gradient(180deg,#050504 0%,#090806 320px,#f6efe2 320px,#f6efe2 100%);
}

.grain{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:1;
  opacity:.032;
  background-image:
    linear-gradient(rgba(255,255,255,.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.30) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:linear-gradient(to bottom, black, transparent 68%);
}

.orb{
  position:fixed;
  width:520px;
  aspect-ratio:1;
  right:-210px;
  top:100px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(227,200,131,.16), transparent 60%);
  filter:blur(18px);
  pointer-events:none;
  z-index:0;
}

header{
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid var(--line);
  background:rgba(5,5,4,.70);
  backdrop-filter:blur(24px) saturate(140%);
}

.nav{
  max-width:var(--max);
  margin:0 auto;
  padding:16px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.logo{
  width:38px;
  height:38px;
  flex:0 0 auto;
  border-radius:50%;
  border:1px solid rgba(185,150,82,.58);
  color:var(--gold-3);
  display:grid;
  place-items:center;
  position:relative;
  overflow:hidden;
  font-size:12px;
  font-weight:760;
  letter-spacing:.02em;
  background:
    radial-gradient(circle at 34% 16%, rgba(227,200,131,.18), transparent 40%),
    rgba(255,255,255,.02);
}

.logo:before{
  content:"";
  position:absolute;
  inset:7px 6px;
  border-top:1px solid rgba(227,200,131,.58);
  border-bottom:1px solid rgba(227,200,131,.32);
  transform:skewY(-14deg);
}

.logo span{position:relative;z-index:1}

.brand-text{
  display:grid;
  gap:3px;
  min-width:0;
}

.brand-name{
  font-size:12px;
  font-weight:720;
  letter-spacing:.115em;
  text-transform:uppercase;
  white-space:nowrap;
}

.brand-cn{
  font-size:12px;
  color:rgba(246,239,226,.48);
  letter-spacing:.1em;
  white-space:nowrap;
}

.nav-links{
  display:flex;
  gap:26px;
  align-items:center;
  color:rgba(246,239,226,.66);
  font-size:13px;
  flex:0 0 auto;
}

.nav-links a{
  position:relative;
  transition:color .2s var(--ease);
}

.nav-links a:not(.nav-cta):after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:1px;
  background:var(--gold-3);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s var(--ease);
  opacity:.8;
}

.nav-links a:hover{color:var(--ivory)}
.nav-links a:hover:after{transform:scaleX(1)}

.nav-cta{
  border:1px solid rgba(185,150,82,.56);
  color:var(--gold-3);
  border-radius:999px;
  padding:9px 15px;
  transition:background .22s var(--ease), border-color .22s var(--ease);
}

.nav-cta:hover{
  background:rgba(185,150,82,.08);
  border-color:rgba(227,200,131,.82);
}

main{position:relative;z-index:2}

.hero{
  max-width:var(--max);
  margin:0 auto;
  padding:86px 24px 112px;
  min-height:calc(100vh - 71px);
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:58px;
  align-items:center;
}

.kicker{
  color:var(--gold-3);
  font-size:11px;
  font-weight:780;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:22px;
}

h1{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(42px,4.5vw,72px);
  line-height:1.02;
  letter-spacing:-.025em;
  font-weight:500;
  white-space:nowrap;
  text-wrap:balance;
}

.hero-copy{
  margin-top:28px;
  max-width:486px;
  font-size:clamp(17px,1.5vw,20px);
  color:rgba(246,239,226,.70);
  letter-spacing:-.012em;
}

.entity-line{
  margin-top:22px;
  color:rgba(246,239,226,.50);
  font-size:12px;
  letter-spacing:.13em;
  text-transform:uppercase;
  line-height:1.85;
}

.entity-line strong{
  display:block;
  color:rgba(246,239,226,.73);
  font-weight:680;
}

.actions{
  margin-top:36px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.button{
  min-height:48px;
  padding:0 22px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:14px;
  font-weight:730;
  transition:transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease);
}

.button:hover{transform:translateY(-2px)}
.primary{background:var(--ivory);color:var(--black)}
.primary:hover{background:#fff8ea}
.secondary{border:1px solid rgba(246,239,226,.22);color:var(--ivory)}
.secondary:hover{border-color:rgba(227,200,131,.48);background:rgba(255,255,255,.035)}

.hero-tags{
  margin-top:72px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  max-width:650px;
}

.tag{
  border-top:1px solid var(--line);
  padding-top:13px;
  color:rgba(246,239,226,.54);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  white-space:nowrap;
}

.visual{
  position:relative;
  min-height:610px;
  display:grid;
  place-items:center;
  perspective:1200px;
}

.visual:before{
  content:"";
  position:absolute;
  width:82%;
  aspect-ratio:1;
  border-radius:50%;
  background:radial-gradient(circle, rgba(185,150,82,.21), transparent 59%);
  filter:blur(14px);
}

.bar-stage{
  position:relative;
  width:min(470px,92%);
  transform:rotateX(11deg) rotateY(-14deg) rotateZ(1.8deg);
  filter:drop-shadow(0 46px 74px rgba(0,0,0,.56));
}

.ingot-svg{width:100%;height:auto;display:block}

.cert-card{
  position:absolute;
  left:-8%;
  bottom:2%;
  width:min(265px,70%);
  border:1px solid rgba(246,239,226,.14);
  background:rgba(5,5,4,.58);
  backdrop-filter:blur(24px);
  border-radius:22px;
  padding:17px 17px 16px;
  box-shadow:0 30px 72px rgba(0,0,0,.38);
  transform:rotateZ(-1.5deg);
}

.cert-top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  color:rgba(246,239,226,.46);
  font-size:10px;
  letter-spacing:.15em;
  text-transform:uppercase;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
}

.cert-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding-top:13px;
  color:rgba(246,239,226,.78);
  font-size:13px;
}

.cert-line span:first-child:before{
  content:"";
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--gold-3);
  box-shadow:0 0 18px rgba(227,200,131,.88);
  margin-right:9px;
}

.assay-mark{
  position:absolute;
  right:2%;
  top:10%;
  width:92px;
  aspect-ratio:1;
  border-radius:50%;
  border:1px solid rgba(227,200,131,.40);
  display:grid;
  place-items:center;
  color:rgba(246,239,226,.56);
  font-size:9px;
  letter-spacing:.14em;
  text-align:center;
  text-transform:uppercase;
  background:rgba(5,5,4,.36);
  backdrop-filter:blur(12px);
  transform:rotateZ(9deg);
}

section{position:relative}
.section-dark{
  background:var(--black);
  color:var(--ivory);
  border-top:1px solid var(--line);
  padding:104px 24px;
}

.section-light{
  background:var(--ivory);
  color:var(--ink);
  padding:104px 24px;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
}

.section-head{
  display:grid;
  grid-template-columns:.25fr 1fr;
  gap:48px;
  align-items:start;
  margin-bottom:48px;
}

.num{
  font-size:11px;
  color:var(--gold);
  font-weight:820;
  letter-spacing:.18em;
  text-transform:uppercase;
  padding-top:8px;
}

h2{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(40px,4.8vw,72px);
  line-height:.95;
  letter-spacing:-.052em;
  font-weight:500;
  max-width:760px;
  text-wrap:balance;
}

.lead{
  margin-top:18px;
  max-width:520px;
  font-size:17px;
  color:rgba(20,18,14,.58);
}

.section-dark .lead{color:rgba(246,239,226,.62)}

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

.pill{
  border:1px solid var(--line-dark);
  border-radius:22px;
  padding:28px 24px 26px;
  min-height:178px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.38),rgba(255,255,255,.18));
  transition:transform .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease);
}

.pill:hover{
  transform:translateY(-4px);
  border-color:rgba(125,98,47,.32);
  box-shadow:var(--shadow-soft);
}

.pill i{
  display:block;
  font-style:normal;
  color:var(--gold-2);
  font-size:11px;
  font-weight:820;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-bottom:26px;
}

.pill b{
  display:block;
  font-size:17px;
  letter-spacing:-.02em;
  margin-bottom:10px;
}

.pill p{
  font-size:14px;
  color:rgba(20,18,14,.56);
  max-width:220px;
}

.statement{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  align-items:stretch;
}

.large-card{
  border-radius:32px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 82% 10%, rgba(227,200,131,.12), transparent 36%),
    linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.024)),
    #0e0d0b;
  padding:42px;
  min-height:430px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
  position:relative;
}

.large-card:after{
  content:"";
  position:absolute;
  right:-80px;
  bottom:-90px;
  width:240px;
  aspect-ratio:1;
  border:1px solid rgba(227,200,131,.13);
  border-radius:50%;
}

.large-card h3{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(40px,4.3vw,64px);
  line-height:.95;
  letter-spacing:-.055em;
  font-weight:500;
  max-width:480px;
  position:relative;
  z-index:1;
}

.large-card p{
  max-width:410px;
  color:rgba(246,239,226,.60);
  font-size:16px;
  margin-top:24px;
  position:relative;
  z-index:1;
}

.flow{
  border-radius:32px;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 92% 6%, rgba(185,150,82,.18), transparent 34%),
    #101820;
  padding:30px;
  min-height:430px;
  position:relative;
  overflow:hidden;
}

.flow:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(246,239,226,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,239,226,.035) 1px, transparent 1px);
  background-size:34px 34px;
  mask-image:linear-gradient(135deg,black,transparent 72%);
  pointer-events:none;
}

.flow-row{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:58px 1fr;
  gap:16px;
  align-items:center;
  padding:18px 0;
  border-bottom:1px solid var(--line);
}

.flow-row:last-child{border-bottom:0}

.flow-row span{
  color:var(--gold-3);
  font:740 12px ui-monospace,SFMono-Regular,Menlo,monospace;
}

.flow-row b{
  font-size:18px;
  letter-spacing:-.02em;
}

.flow-row small{
  display:block;
  margin-top:4px;
  color:rgba(246,239,226,.52);
  font-size:13px;
}

.company-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:stretch;
}

.company-main{
  min-height:420px;
  border-radius:32px;
  border:1px solid var(--line-dark);
  background:
    radial-gradient(circle at 86% 4%, rgba(185,150,82,.12), transparent 34%),
    #fff9ed;
  padding:44px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:var(--shadow-soft);
}

.company-main h3{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(42px,4.4vw,68px);
  line-height:.95;
  letter-spacing:-.055em;
  font-weight:500;
  max-width:650px;
}

.company-main p{
  margin-top:24px;
  color:rgba(20,18,14,.56);
  font-size:16px;
  max-width:560px;
}

.info-panel{
  border:1px solid var(--line-dark);
  border-radius:26px;
  padding:26px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.40),rgba(255,255,255,.20));
  display:grid;
  gap:18px;
}

.info-row{
  border-top:1px solid var(--line-dark);
  padding-top:16px;
}

.info-row:first-child{
  border-top:0;
  padding-top:0;
}

.info-row small{
  display:block;
  color:var(--gold-2);
  font-size:11px;
  font-weight:820;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-bottom:7px;
}

.info-row b{
  font-size:17px;
  letter-spacing:-.02em;
  display:block;
}

.info-row p{
  font-size:14px;
  color:rgba(20,18,14,.55);
  margin-top:5px;
}

.address{
  text-transform:uppercase;
  line-height:1.55;
}

.qr-wrap{
  display:flex;
  align-items:center;
  gap:16px;
  margin-top:10px;
}

.qr-box{
  width:96px;
  height:96px;
  border:1px dashed rgba(20,18,14,.25);
  border-radius:17px;
  display:grid;
  place-items:center;
  color:rgba(20,18,14,.36);
  font-size:10px;
  text-align:center;
  line-height:1.3;
  background:rgba(255,255,255,.25);
  flex:0 0 auto;
}

.qr-note{
  color:rgba(20,18,14,.50);
  font-size:13px;
  max-width:250px;
}

.access{
  border:1px solid var(--line);
  border-radius:30px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
}

.access-row{
  display:grid;
  grid-template-columns:.65fr repeat(3,1fr);
  border-bottom:1px solid var(--line);
}

.access-row:last-child{border-bottom:0}

.access-row div{
  min-height:88px;
  padding:24px;
  border-right:1px solid var(--line);
  display:flex;
  align-items:center;
  color:rgba(246,239,226,.72);
  font-size:14px;
}

.access-row div:last-child{border-right:0}

.access-row .label{
  color:var(--gold-3);
  font-size:11px;
  font-weight:820;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.contact{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:40px;
  align-items:start;
}

.closing{
  font-family:Georgia, "Times New Roman", serif;
  font-size:clamp(42px,5vw,76px);
  line-height:.95;
  letter-spacing:-.055em;
  font-weight:500;
  text-wrap:balance;
}

.contact-card{
  border:1px solid var(--line-dark);
  border-radius:30px;
  background:#fff9ed;
  padding:38px;
  box-shadow:var(--shadow-soft);
}

.contact-card h3{
  font-family:Georgia, "Times New Roman", serif;
  font-size:40px;
  line-height:1;
  letter-spacing:-.048em;
  font-weight:500;
}

.contact-card p{
  margin-top:14px;
  color:rgba(20,18,14,.58);
  font-size:15px;
}

.contact-line{
  padding-top:18px;
  margin-top:20px;
  border-top:1px solid var(--line-dark);
}

.contact-line small{
  display:block;
  color:var(--gold-2);
  font-size:11px;
  font-weight:820;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-bottom:7px;
}

.contact-line a,.contact-line span{
  font-size:18px;
  font-weight:680;
  color:var(--ink);
}

.legal-hero{
  max-width:var(--max);
  margin:0 auto;
  padding:86px 24px 92px;
}

.legal-hero h1{
  max-width:900px;
  white-space:normal;
}

.legal-hero p{
  margin-top:22px;
  max-width:720px;
  color:rgba(246,239,226,.66);
  font-size:18px;
}

.legal-content{
  background:var(--ivory);
  color:var(--ink);
  padding:78px 24px 104px;
}

.legal-card{
  max-width:920px;
  margin:0 auto;
  border:1px solid var(--line-dark);
  background:#fff9ed;
  border-radius:32px;
  padding:44px;
  box-shadow:var(--shadow-soft);
}

.legal-card h2{
  font-size:clamp(28px,3vw,42px);
  margin-top:44px;
  max-width:none;
}

.legal-card h2:first-child{
  margin-top:0;
}

.legal-card p,
.legal-card li{
  margin-top:14px;
  color:rgba(20,18,14,.64);
  font-size:15px;
  line-height:1.75;
}

.legal-card ul{
  margin-top:8px;
  padding-left:20px;
}

.legal-meta{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid var(--line-dark);
  color:rgba(20,18,14,.48);
  font-size:13px;
}

footer{
  background:var(--black);
  border-top:1px solid var(--line);
  color:var(--ivory);
  padding:56px 24px 38px;
  overflow:hidden;
}

.foot{
  max-width:var(--max);
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(280px, 380px) minmax(0, 1fr);
  gap:64px;
  align-items:start;
}

.foot .brand{
  align-items:flex-start;
  gap:16px;
  min-width:0;
}

.foot .brand-text{
  gap:6px;
  min-width:0;
}

.foot .brand-name{
  white-space:normal;
  line-height:1.45;
  max-width:340px;
}

.foot .brand-cn{
  white-space:normal;
  line-height:1.5;
  max-width:340px;
}

.foot-right{
  min-width:0;
}

.disclaimer{
  color:rgba(246,239,226,.48);
  font-size:12px;
  line-height:1.72;
  max-width:none;
}

.foot-links{
  display:flex;
  gap:12px 22px;
  flex-wrap:wrap;
  margin-top:24px;
  color:rgba(246,239,226,.62);
  font-size:12px;
  line-height:1.6;
}

.copy{
  max-width:var(--max);
  margin:36px auto 0;
  padding-top:22px;
  border-top:1px solid var(--line);
  color:rgba(246,239,226,.36);
  font-size:12px;
  line-height:1.7;
}

.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .78s var(--ease), transform .78s var(--ease);
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

@media(max-width:1280px){
  .foot{
    grid-template-columns:1fr;
    gap:30px;
  }

  .foot .brand-name,
  .foot .brand-cn{
    max-width:none;
  }
}

@media(max-width:1120px){
  h1{white-space:normal}
  .brand-cn{display:none}
}

@media(max-width:960px){
  .nav-links{display:none}
  .hero{
    grid-template-columns:1fr;
    padding-top:62px;
    gap:46px;
  }
  .visual{min-height:520px}
  .hero-tags{grid-template-columns:repeat(2,1fr)}
  .section-head,.statement,.company-grid,.contact,.foot{grid-template-columns:1fr}
  .pill-grid{grid-template-columns:repeat(2,1fr)}
  .access-row{grid-template-columns:1fr}
  .access-row div{
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .access-row div:last-child{border-bottom:0}
  .cert-card{left:0}
  .assay-mark{right:0}
}

@media(max-width:640px){
  .nav{padding:14px 18px}
  .brand-name{
    font-size:11px;
    letter-spacing:.075em;
    max-width:270px;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .hero,.section-dark,.section-light{
    padding-left:18px;
    padding-right:18px;
  }
  .hero{
    padding-top:52px;
    padding-bottom:82px;
  }
  .actions{flex-direction:column}
  .button{width:100%}
  .hero-tags,.pill-grid{grid-template-columns:1fr}
  .visual{min-height:430px}
  .bar-stage{width:94%}
  .cert-card{
    position:relative;
    left:auto;
    bottom:auto;
    width:92%;
    margin:-38px auto 0;
  }
  .assay-mark{display:none}
  .large-card,.flow,.company-main,.contact-card,.legal-card{padding:28px}
  .flow-row{grid-template-columns:42px 1fr}
  .qr-wrap{align-items:flex-start}
  .legal-hero{padding:58px 18px 66px}
  .legal-content{padding:54px 18px 76px}
}
