
:root{
  --bg:#050505;
  --surface:#0d0d0d;
  --surface-2:#131313;
  --text:#f5f2e9;
  --muted:#aaa69d;
  --gold:#d4af37;
  --gold-light:#f0d77c;
  --line:rgba(212,175,55,.22);
  --white-line:rgba(255,255,255,.09);
  --radius:28px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--text);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}
body.is-loading{overflow:hidden}
a{color:inherit;text-decoration:none}
button{font:inherit}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.loader{
  position:fixed;inset:0;z-index:9999;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  background:#030303;
  transition:opacity .8s ease,visibility .8s ease;
}
.loader.is-hidden{opacity:0;visibility:hidden}
.loader__brand{font-size:clamp(2.8rem,8vw,6rem);font-weight:800;letter-spacing:.22em;color:var(--gold)}
.loader__tagline{margin-top:14px;color:#d8d0b2;letter-spacing:.24em;text-transform:uppercase;font-size:.68rem}
.loader__track{width:min(360px,72vw);height:2px;background:#242019;margin-top:42px;overflow:hidden}
.loader__track span{display:block;width:0;height:100%;background:linear-gradient(90deg,var(--gold),var(--gold-light));transition:width .08s linear}
.loader__count{font-variant-numeric:tabular-nums;color:var(--gold);margin-top:13px;letter-spacing:.14em}
.loader__skip{margin-top:30px;border:0;background:none;color:#8d887e;cursor:pointer}

.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:82px;padding:0 clamp(22px,5vw,76px);
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(5,5,5,.68);backdrop-filter:blur(18px);
  border-bottom:1px solid transparent;
  transition:.35s ease;
}
.site-header.is-scrolled{height:70px;border-color:var(--white-line);background:rgba(5,5,5,.9)}
.brand{display:inline-flex;align-items:center;gap:11px}
.brand__mark{
  display:grid;place-items:center;width:38px;height:38px;border:1px solid var(--gold);
  color:var(--gold);font-weight:800;font-size:.78rem;letter-spacing:.06em;transform:rotate(45deg)
}
.brand__mark::first-letter{transform:rotate(-45deg)}
.brand__name{font-size:1.15rem;font-weight:800;letter-spacing:.24em}
.main-nav{display:flex;align-items:center;gap:clamp(18px,2.5vw,36px)}
.main-nav a{font-size:.82rem;color:#c9c5bc;transition:.25s}
.main-nav a:hover,.main-nav a.is-active{color:var(--gold)}
.header-cta{border:1px solid var(--gold);border-radius:100px;padding:11px 18px;color:var(--gold);font-size:.8rem}
.menu-toggle{display:none;background:none;border:0;cursor:pointer}
.menu-toggle span:not(.sr-only){display:block;width:24px;height:1px;background:#fff;margin:6px}

.section{position:relative;padding:clamp(90px,11vw,150px) clamp(22px,7vw,110px)}
.hero{
  min-height:100svh;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(360px,.85fr);
  gap:clamp(40px,6vw,100px);align-items:center;overflow:hidden;
  padding-top:130px;background:
  linear-gradient(180deg,rgba(255,255,255,.018),transparent 30%),
  radial-gradient(circle at 75% 30%,rgba(212,175,55,.14),transparent 30%);
}
.ambient{position:absolute;border-radius:50%;filter:blur(60px);pointer-events:none}
.ambient--one{width:440px;height:440px;right:-150px;top:10%;background:rgba(212,175,55,.12)}
.ambient--two{width:320px;height:320px;left:-180px;bottom:0;background:rgba(255,255,255,.05)}
.particles{position:absolute;inset:0;opacity:.45;background-image:
radial-gradient(circle at 20% 30%,rgba(212,175,55,.75) 0 1px,transparent 1.5px),
radial-gradient(circle at 70% 20%,rgba(212,175,55,.5) 0 1px,transparent 1.5px),
radial-gradient(circle at 45% 80%,rgba(212,175,55,.55) 0 1px,transparent 1.5px);
background-size:150px 150px,210px 210px,260px 260px;animation:drift 18s linear infinite}
@keyframes drift{to{transform:translate3d(24px,-30px,0)}}
.eyebrow{color:var(--gold);letter-spacing:.25em;text-transform:uppercase;font-size:.72rem;font-weight:700;margin-bottom:22px}
.hero h1,.section-heading h2,.distribution h2,.technology h2{
  font-family:Georgia,"Times New Roman",serif;font-weight:500;letter-spacing:-.035em;
}
.hero h1{font-size:clamp(3.4rem,7vw,7.2rem);line-height:.98;max-width:900px}
.hero h1 span{color:var(--gold)}
.hero__content>p{max-width:670px;margin-top:26px;color:#c4c0b7;font-size:clamp(1rem,1.4vw,1.22rem);line-height:1.75}
.hero__actions{display:flex;flex-wrap:wrap;gap:13px;margin-top:34px}
.button{display:inline-flex;align-items:center;justify-content:center;min-height:52px;padding:0 25px;border-radius:100px;font-size:.88rem;transition:.3s}
.button--gold{background:var(--gold);color:#090909;font-weight:800}
.button--gold:hover{background:var(--gold-light);transform:translateY(-2px)}
.button--ghost{border:1px solid var(--line);color:#ddd}
.button--ghost:hover{border-color:var(--gold);color:var(--gold)}
.hero__facts{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:62px;padding-top:25px;border-top:1px solid var(--white-line)}
.hero__facts strong,.hero__facts span{display:block}
.hero__facts strong{font-size:.9rem;color:#eee}
.hero__facts span{font-size:.72rem;color:#817d75;margin-top:6px}
.hero__visual{position:relative;min-height:590px;display:grid;place-items:center}
.visual-orbit{position:absolute;border:1px solid rgba(212,175,55,.18);border-radius:50%;animation:spin 20s linear infinite}
.visual-orbit::before,.visual-orbit::after{content:"";position:absolute;width:8px;height:8px;border-radius:50%;background:var(--gold);box-shadow:0 0 20px var(--gold)}
.visual-orbit::before{top:10%;left:16%}.visual-orbit::after{right:7%;bottom:23%}
.visual-orbit--outer{width:560px;height:560px}
.visual-orbit--inner{width:410px;height:410px;animation-direction:reverse;animation-duration:14s}
@keyframes spin{to{transform:rotate(360deg)}}
.product-stage{
  position:relative;z-index:2;width:min(430px,88%);height:520px;border:1px solid var(--line);
  border-radius:42px;display:flex;flex-direction:column;justify-content:flex-end;padding:36px;
  background:
  linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.01)),
  radial-gradient(circle at 50% 32%,rgba(212,175,55,.25),transparent 35%);
  box-shadow:0 40px 100px rgba(0,0,0,.65),inset 0 1px rgba(255,255,255,.08);
  transform:perspective(1000px) rotateY(-7deg) rotateX(3deg);animation:float 5s ease-in-out infinite;
}
@keyframes float{50%{transform:perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(-14px)}}
.product-stage::before{
  content:"LX";position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-65%);
  font-family:Georgia,serif;font-size:8rem;color:rgba(212,175,55,.26);letter-spacing:-.12em
}
.product-stage__label{font-size:.62rem;letter-spacing:.24em;color:#9d9788}
.product-stage__title{font-family:Georgia,serif;font-size:2rem;color:var(--gold);margin-top:8px}
.product-stage__copy{font-size:.73rem;color:#8b877f;margin-top:8px;line-height:1.5}
.scroll-cue{position:absolute;left:50%;bottom:28px;transform:translateX(-50%);display:flex;align-items:center;gap:10px;color:#77736a;font-size:.7rem;letter-spacing:.15em;text-transform:uppercase}
.scroll-cue span{width:38px;height:1px;background:var(--gold);animation:pulseLine 1.8s ease-in-out infinite}
@keyframes pulseLine{50%{width:60px}}

.section-heading{max-width:820px;margin:0 auto 58px;text-align:center}
.section-heading h2,.distribution h2,.technology h2{font-size:clamp(2.8rem,5vw,5rem);line-height:1.05}
.section-heading p,.distribution__copy>p,.technology__intro>p{color:var(--muted);line-height:1.75;margin-top:20px;font-size:1.05rem}
.products{background:linear-gradient(180deg,#070707,#0b0b0b)}
.product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;max-width:1450px;margin:auto}
.product-card{border:1px solid var(--white-line);border-radius:var(--radius);overflow:hidden;background:var(--surface);transition:.4s}
.product-card:hover{transform:translateY(-9px);border-color:var(--line)}
.product-card__visual{
  min-height:330px;padding:28px;display:flex;flex-direction:column;justify-content:space-between;
  background:radial-gradient(circle at 50% 42%,rgba(212,175,55,.2),transparent 28%),linear-gradient(145deg,#171717,#080808)
}
.product-card__visual span{font-size:.7rem;color:var(--gold);letter-spacing:.2em}
.product-card__visual strong{font-family:Georgia,serif;font-size:2.1rem;font-weight:500;max-width:220px}
.product-card__body{padding:28px}
.product-card__meta{font-size:.64rem;letter-spacing:.17em;color:var(--gold);text-transform:uppercase}
.product-card h3{font-family:Georgia,serif;font-size:1.65rem;font-weight:500;margin-top:11px}
.product-card p{color:#96928b;line-height:1.65;margin-top:12px;font-size:.9rem}
.pill{display:inline-block;margin-top:22px;padding:8px 12px;border:1px solid var(--line);border-radius:100px;color:var(--gold);font-size:.7rem}

.distribution{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(60px,8vw,130px);align-items:center;background:#070707}
.feature-list{margin-top:42px}
.feature-list>div{display:grid;grid-template-columns:54px 1fr;gap:18px;padding:20px 0;border-top:1px solid var(--white-line)}
.feature-list span{color:var(--gold);font-size:.72rem}
.feature-list p{color:#8f8b83;line-height:1.55;font-size:.9rem}
.feature-list strong{display:block;color:#eee;font-size:1rem;margin-bottom:4px}
.network{position:relative;display:grid;grid-template-columns:repeat(2,1fr);gap:28px;padding:40px}
.network::before{content:"";position:absolute;inset:0;background:radial-gradient(circle,rgba(212,175,55,.12),transparent 60%)}
.network__line{position:absolute;left:50%;top:12%;bottom:12%;width:1px;background:linear-gradient(transparent,var(--gold),transparent)}
.network__node{
  position:relative;z-index:1;min-height:190px;border:1px solid var(--line);border-radius:26px;padding:26px;
  display:flex;flex-direction:column;justify-content:flex-end;background:rgba(255,255,255,.025);backdrop-filter:blur(10px)
}
.network__node:nth-of-type(even){transform:translateY(45px)}
.network__node span{position:absolute;top:22px;right:22px;color:var(--gold);font-size:.7rem}
.network__node strong{font-family:Georgia,serif;font-size:1.55rem;font-weight:500}
.network__node small{color:#77736b;margin-top:7px}

.growth{background:linear-gradient(180deg,#090909,#050505)}
.growth-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;max-width:1450px;margin:auto}
.growth-card{min-height:260px;border-top:1px solid var(--gold);padding:25px 10px 20px;background:linear-gradient(180deg,rgba(212,175,55,.045),transparent)}
.growth-card span{font-size:.68rem;color:var(--gold);letter-spacing:.15em}
.growth-card h3{font-family:Georgia,serif;font-size:1.9rem;font-weight:500;margin-top:58px}
.growth-card p{color:#8d8981;line-height:1.65;margin-top:12px;font-size:.9rem}
.vision-panel{
  margin:70px auto 0;max-width:1450px;padding:38px;border:1px solid var(--line);border-radius:var(--radius);
  display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:end;background:linear-gradient(110deg,rgba(212,175,55,.09),rgba(255,255,255,.015))
}
.vision-panel span{font-size:.68rem;color:var(--gold);letter-spacing:.2em}
.vision-panel h3{font-family:Georgia,serif;font-size:clamp(2rem,4vw,3.8rem);font-weight:500;margin-top:11px}
.vision-panel p{color:#a39f96;line-height:1.7}

.technology{background:#070707}
.technology__intro{max-width:800px;margin-bottom:55px}
.technology-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.tech-card{border:1px solid var(--white-line);border-radius:24px;padding:28px;min-height:260px;background:var(--surface)}
.tech-card>div{width:54px;height:54px;display:grid;place-items:center;border:1px solid var(--gold);border-radius:50%;color:var(--gold);font-size:.72rem;font-weight:800}
.tech-card h3{font-family:Georgia,serif;font-size:1.55rem;font-weight:500;margin-top:48px}
.tech-card p{color:#8d8981;line-height:1.65;margin-top:12px;font-size:.88rem}

.footer{padding:75px clamp(22px,7vw,110px) 30px;background:#030303;border-top:1px solid var(--line)}
.footer__top{display:grid;grid-template-columns:2fr 1fr 1fr;gap:50px}
.brand--footer{margin-bottom:20px}
.footer__brand>p{color:#8d8981;max-width:400px;line-height:1.6}
.languages{display:flex;flex-wrap:wrap;gap:9px;margin-top:25px}
.languages button{border:1px solid var(--white-line);background:none;color:#aaa;padding:8px 12px;border-radius:100px;cursor:pointer}
.languages button:hover{border-color:var(--gold);color:var(--gold)}
.footer__links{display:flex;flex-direction:column;gap:11px}
.footer__links h3{color:var(--gold);font-size:.75rem;letter-spacing:.18em;text-transform:uppercase;margin-bottom:8px}
.footer__links a,.footer__links span{color:#96928b;font-size:.88rem}
.footer__links a:hover{color:var(--gold)}
.footer__bottom{display:flex;justify-content:space-between;gap:20px;margin-top:60px;padding-top:22px;border-top:1px solid var(--white-line);color:#625f59;font-size:.74rem}

.reveal{opacity:0;transform:translateY(32px);transition:opacity .9s cubic-bezier(.2,.7,.2,1),transform .9s cubic-bezier(.2,.7,.2,1)}
.reveal.is-visible{opacity:1;transform:none}
.back-to-top{
  position:fixed;right:24px;bottom:24px;width:44px;height:44px;border-radius:50%;border:1px solid var(--line);
  background:rgba(5,5,5,.85);color:var(--gold);cursor:pointer;opacity:0;visibility:hidden;transform:translateY(10px);transition:.3s;z-index:900
}
.back-to-top.is-visible{opacity:1;visibility:visible;transform:none}

@media(max-width:1100px){
  .main-nav{display:none}
  .menu-toggle{display:block}
  .header-cta{display:none}
  .main-nav.is-open{
    display:flex;position:absolute;left:18px;right:18px;top:75px;padding:24px;flex-direction:column;align-items:flex-start;
    background:#0b0b0b;border:1px solid var(--white-line);border-radius:20px
  }
  .hero{grid-template-columns:1fr;padding-top:130px}
  .hero__visual{min-height:520px}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .distribution{grid-template-columns:1fr}
  .growth-grid,.technology-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:700px){
  .site-header{height:70px}
  .hero h1{font-size:clamp(3rem,15vw,4.5rem)}
  .hero__facts{grid-template-columns:1fr;gap:14px}
  .hero__visual{min-height:430px}
  .visual-orbit--outer{width:390px;height:390px}
  .visual-orbit--inner{width:290px;height:290px}
  .product-stage{height:390px;width:300px}
  .product-grid,.network,.growth-grid,.technology-grid,.vision-panel,.footer__top{grid-template-columns:1fr}
  .product-card__visual{min-height:260px}
  .network{padding:0}
  .network__line{display:none}
  .network__node:nth-of-type(even){transform:none}
  .vision-panel{padding:25px}
  .footer__bottom{flex-direction:column}
}
@media(prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important;animation:none!important;transition-duration:.01ms!important}
}


.brand__logo{width:44px;height:44px;object-fit:contain;filter:drop-shadow(0 0 14px rgba(212,175,55,.18))}
.header-actions{display:flex;align-items:center;gap:10px}
.header-login{font-size:.8rem;color:#d5d0c5;padding:11px 15px}
.about{background:#080808}
.about-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;max-width:1400px;margin:auto}
.about-card{padding:32px;border-radius:26px;border:1px solid var(--white-line);background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.012));min-height:230px}
.about-card span{color:var(--gold);font-size:.7rem;letter-spacing:.18em}
.about-card h3{font-family:Georgia,serif;font-weight:500;font-size:1.7rem;margin-top:52px}
.about-card p{color:#949087;line-height:1.7;margin-top:12px}
.opportunity{background:linear-gradient(180deg,#050505,#090909)}
.opportunity__panel{max-width:1450px;margin:auto;padding:clamp(30px,5vw,65px);border:1px solid var(--line);border-radius:34px;background:radial-gradient(circle at 80% 30%,rgba(212,175,55,.15),transparent 33%),linear-gradient(120deg,rgba(212,175,55,.06),rgba(255,255,255,.015));display:grid;grid-template-columns:1.4fr .6fr;gap:45px;align-items:center}
.opportunity h2{font-family:Georgia,serif;font-size:clamp(2.7rem,5vw,5.2rem);font-weight:500;line-height:1.02}
.opportunity p{color:#a5a198;line-height:1.75;margin-top:20px;max-width:750px}
.opportunity__actions{display:flex;flex-direction:column;gap:12px}
@media(max-width:1100px){.header-actions{display:none}}
@media(max-width:760px){.about-grid,.opportunity__panel{grid-template-columns:1fr}.opportunity__actions{margin-top:10px}}
