:root{
  --midnight:#08111D;
  --deep:#03070D;
  --ivory:#F7F5F0;
  --muted:#B8C0CC;
  --gold:#C8A46A;
  --border:rgba(255,255,255,.13);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--deep);
  color:var(--ivory);
  font-family:Manrope,Arial,sans-serif;
}

a{color:inherit;text-decoration:none}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:24px 44px;
  background:linear-gradient(to bottom,rgba(3,7,13,.9),rgba(3,7,13,.25),transparent);
  backdrop-filter:blur(10px);
}

.brand{
  font-weight:800;
  letter-spacing:.24em;
  font-size:18px;
}

nav{
  display:flex;
  gap:30px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:#DDE4EA;
}

.header-cta{
  background:var(--gold);
  color:#111;
  padding:13px 20px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}

.hero{
  min-height:100vh;
  display:grid;
  grid-template-rows:auto 1fr;
  background:radial-gradient(circle at top left,#10263f 0%,#03070D 42%);
}

.hero-copy{
  padding:140px 44px 46px;
  max-width:1120px;
}

.eyebrow{
  color:var(--gold);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:800;
  margin:0 0 18px;
}

h1,h2{
  font-family:"Playfair Display",serif;
  margin:0;
  line-height:.98;
}

h1{
  font-size:clamp(48px,7vw,112px);
  max-width:980px;
}

.hero-copy p:not(.eyebrow){
  max-width:720px;
  color:var(--muted);
  font-size:20px;
  line-height:1.65;
  margin:28px 0 0;
}

.hero-actions{
  display:flex;
  gap:16px;
  margin-top:34px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 24px;
  border:1px solid var(--border);
  font-weight:800;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.btn.primary{
  background:var(--gold);
  color:#111;
  border-color:var(--gold);
}

.btn.secondary{
  color:var(--ivory);
}

.hero-panels{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid var(--border);
}

.panel{
  min-height:430px;
  padding:44px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  border-right:1px solid var(--border);
  transition:.45s ease;
}

.panel:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,.25),rgba(0,0,0,.82));
  z-index:0;
}

.panel > *{position:relative;z-index:1}

.panel:hover{transform:translateY(-8px)}

.panel span{
  color:var(--accent);
  font-size:26px;
  font-weight:800;
  margin-bottom:22px;
}

.panel h2{
  font-family:Manrope,Arial,sans-serif;
  text-transform:uppercase;
  font-size:34px;
  letter-spacing:.02em;
  margin-bottom:18px;
}

.panel p{
  color:#E7EAF0;
  line-height:1.6;
  max-width:340px;
}

.panel a{
  margin-top:20px;
  color:var(--accent);
  font-weight:800;
  text-transform:uppercase;
  font-size:13px;
}

.about{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  padding:120px 44px;
  background:var(--ivory);
  color:#0B1018;
  align-items:center;
}

.about-image img{
  width:100%;
  max-width:420px;
  border-radius:28px;
  display:block;
  box-shadow:0 30px 80px rgba(0,0,0,.25);
}

.about-copy h2,
.network h2,
.contact h2{
  font-size:clamp(40px,5vw,74px);
}

.about-copy p:not(.eyebrow){
  color:#354050;
  font-size:18px;
  line-height:1.75;
  max-width:780px;
}

.network{
  padding:80px 44px 120px;
  background:#08111D;
}

.network h2{
  max-width:950px;
}

.metrics{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  margin-top:56px;
  background:var(--border);
  border:1px solid var(--border);
}

.metrics div{
  background:#0B1522;
  padding:34px;
}

.metrics strong{
  display:block;
  font-size:42px;
  color:var(--gold);
  margin-bottom:12px;
}

.metrics span{
  color:var(--muted);
  line-height:1.5;
}

.small-note{
  color:#7F8B99;
  font-size:13px;
  margin-top:22px;
}

.contact{
  padding:120px 44px;
  background:linear-gradient(135deg,#03070D,#101C2B);
  text-align:center;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  max-width:1000px;
  margin:48px auto 32px;
}

.contact-grid a{
  border:1px solid var(--border);
  padding:28px 20px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.05em;
  background:rgba(255,255,255,.04);
}

.btn.big{
  margin-top:16px;
}

footer{
  display:flex;
  justify-content:space-between;
  padding:34px 44px;
  background:#03070D;
  color:#8E98A6;
  border-top:1px solid var(--border);
}

footer strong{
  color:var(--ivory);
  letter-spacing:.24em;
}

footer div{
  display:flex;
  gap:24px;
}

@media(max-width:900px){
  .site-header{
    padding:20px;
  }

  nav{display:none}

  .header-cta{
    display:none;
  }

  .hero-copy{
    padding:110px 22px 36px;
  }

  .hero-copy p:not(.eyebrow){
    font-size:17px;
  }

  .hero-panels{
    grid-template-columns:1fr;
  }

  .panel{
    min-height:360px;
    padding:30px 22px;
  }

  .about{
    grid-template-columns:1fr;
    padding:80px 22px;
  }

  .network,
  .contact{
    padding:80px 22px;
  }

  .metrics,
  .contact-grid{
    grid-template-columns:1fr;
  }

  footer{
    flex-direction:column;
    gap:18px;
    padding:28px 22px;
  }
}


.panel:before{
  background:
    linear-gradient(to bottom, rgba(0,0,0,.16), rgba(0,0,0,.86)),
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--accent) 40%, transparent), transparent 45%);
}

.panel-blue:before{
  background:
    linear-gradient(to bottom, rgba(4,15,28,.22), rgba(3,8,16,.9)),
    linear-gradient(135deg, rgba(35,125,255,.48), transparent 58%);
}

.panel-pink:before{
  background:
    linear-gradient(to bottom, rgba(18,4,14,.18), rgba(10,3,10,.9)),
    linear-gradient(135deg, rgba(255,65,150,.50), transparent 58%);
}

.panel-green:before{
  background:
    linear-gradient(to bottom, rgba(7,16,8,.16), rgba(5,9,4,.9)),
    linear-gradient(135deg, rgba(170,210,70,.46), transparent 58%);
}

.panel-number{
  color:var(--accent);
  font-size:28px;
  font-weight:800;
  margin-bottom:22px;
}

.panel-features{
  list-style:none;
  padding:0;
  margin:26px 0 0;
  display:grid;
  gap:12px;
}

.panel-features li{
  position:relative;
  padding-left:26px;
  color:#F1F4F7;
  font-size:14px;
  line-height:1.45;
}

.panel-features li:before{
  content:"";
  position:absolute;
  left:0;
  top:.45em;
  width:10px;
  height:10px;
  border:1px solid var(--accent);
  border-radius:50%;
  box-shadow:0 0 18px color-mix(in srgb, var(--accent) 70%, transparent);
}

.panel-btn{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  width:max-content;
  min-width:190px;
  margin-top:34px !important;
  padding:14px 18px;
  border:1px solid color-mix(in srgb, var(--accent) 60%, transparent);
  color:#fff !important;
  font-size:12px !important;
  letter-spacing:.08em;
  background:rgba(0,0,0,.18);
}

.panel-btn span{
  color:var(--accent);
  font-size:18px;
}

.reference-section{
  margin-top:80px;
  text-align:center;
}

.logo-grid{
  margin-top:40px;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;

  align-items:center;
}

.logo-grid img{
  max-height:70px;
  max-width:220px;

  width:auto;
  height:auto;

  margin:auto;

  opacity:.85;
  transition:.25s;
}

.logo-grid img:hover{
  opacity:1;
  transform:translateY(-2px);
}

@media(max-width:900px){

  .logo-grid{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
  }

}

@media(max-width:600px){

  .logo-grid{
    grid-template-columns:1fr;
  }

}

.advisory{
    padding:120px 0 60px;
}

.advisory-grid{
  margin-top:50px;

  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.advisory-grid div{
  padding:30px;

  background:#08111d;

  border:1px solid rgba(255,255,255,.08);

  border-radius:16px;
}

.advisory-grid h3{
  margin-bottom:12px;
}

.advisory-grid p{
  opacity:.8;
}

@media(max-width:900px){

  .advisory-grid{
    grid-template-columns:1fr;
  }

}


.reference-section{
  margin:80px -44px -120px;
  padding:80px 44px 100px;
  background:var(--ivory);
  color:#0B1018;
  text-align:center;
}

.reference-section .eyebrow{
  color:var(--gold);
}

.logo-grid{
  max-width:1180px;
  margin:44px auto 0;
}

.logo-grid img{
  max-height:82px;
  max-width:250px;
  opacity:1;
  filter:none;
}

@media(max-width:900px){
  .reference-section{
    margin:70px -22px -80px;
    padding:70px 22px 80px;
  }

  .logo-grid img{
    max-height:74px;
    max-width:220px;
  }
}

.advisory{
  padding:90px 44px 30px;
  background:
    radial-gradient(circle at 80% 10%, rgba(200,164,106,.16), transparent 34%),
    linear-gradient(135deg,#03070D,#08111D);
  border-top:1px solid rgba(255,255,255,.08);
}

.advisory h2{
  max-width:900px;
  font-size:clamp(42px,5vw,82px);
}

.advisory-grid{
  max-width:1280px;
  margin:58px auto 0;
}

.advisory-grid div{
  min-height:130px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  transition:.25s ease;
}

.advisory-grid div:hover{
  transform:translateY(-4px);
  border-color:rgba(200,164,106,.38);
}

.advisory-grid h3{
  color:var(--ivory);
  font-size:22px;
}

.advisory-grid p{
  color:var(--muted);
  line-height:1.6;
}

.contact-grid a{
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s ease;
}

.contact-grid a:hover{
  transform:translateY(-3px);
  border-color:rgba(200,164,106,.45);
  background:rgba(200,164,106,.08);
}

.panel-features li:before{
  content:"✓";
  width:16px;
  height:16px;
  border:1px solid var(--accent);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:10px;
  color:var(--accent);
  box-shadow:0 0 18px color-mix(in srgb, var(--accent) 70%, transparent);
}

.contact-cards a{
  text-align:left;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:10px;
  min-height:190px;
}

.contact-cards span{
  color:var(--gold);
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.contact-cards strong{
  color:var(--ivory);
  font-size:22px;
  letter-spacing:0;
  text-transform:none;
}

.contact-cards small{
  color:var(--muted);
  line-height:1.55;
  font-size:14px;
  text-transform:none;
  letter-spacing:0;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:24px;
}

.lang-switch{
  display:flex;
  align-items:center;
  gap:8px;
  color:#DDE4EA;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.lang-switch span{
  color:rgba(255,255,255,.35);
}

.lang-switch a{
  opacity:.55;
}

.lang-switch a.active,
.lang-switch a:hover{
  opacity:1;
  color:var(--gold);
}

@media(max-width:900px){
  .header-actions{
    margin-left:auto;
  }

  .lang-switch{
    display:none;
  }
}

.brand-stack{
  display:flex;
  flex-direction:column;
  gap:3px;
  letter-spacing:0;
}

.brand-stack strong{
  font-size:18px;
  letter-spacing:.24em;
}

.brand-stack span{
  font-size:10px;
  letter-spacing:.16em;
  color:rgba(255,255,255,.62);
  text-transform:uppercase;
  font-weight:700;
}

.contact-subline{
  max-width:640px;
  margin:24px auto 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.6;
}