:root{
  --ink:#0b1320;
  --navy:#0f1f35;
  --navy-2:#152b48;
  --blue:#2457d6;
  --sky:#eaf1ff;
  --paper:#ffffff;
  --soft:#f5f7fb;
  --line:#dde4ee;
  --muted:#667489;
  --light:#c9d5e6;
  --radius:22px;
  --shadow:0 24px 70px rgba(16,34,58,.12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:Inter,Arial,sans-serif;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit}
img{max-width:100%}
.container{width:min(1160px,calc(100% - 42px));margin:0 auto}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(221,228,238,.85);
}
.navigation{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand-mark{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:white;
  background:linear-gradient(145deg,var(--blue),var(--navy));
  font-family:Manrope,Inter,sans-serif;
  font-weight:800;
  letter-spacing:-.04em;
  box-shadow:0 8px 24px rgba(36,87,214,.22);
}
.brand-name{
  font-family:Manrope,Inter,sans-serif;
  font-weight:800;
  letter-spacing:-.02em;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}
.nav-links a{
  text-decoration:none;
  font-size:.94rem;
  font-weight:600;
  color:#334056;
}
.nav-links a:hover{color:var(--blue)}
.nav-contact{
  padding:11px 17px;
  border-radius:12px;
  color:white!important;
  background:var(--navy);
}
.menu-button{
  display:none;
  border:0;
  background:var(--navy);
  color:white;
  border-radius:10px;
  padding:10px 14px;
  font:inherit;
  font-weight:700;
}

.hero{
  position:relative;
  overflow:hidden;
  padding:105px 0 90px;
  background:
    radial-gradient(circle at 80% 0%,rgba(36,87,214,.12),transparent 33%),
    linear-gradient(180deg,#fbfcff 0%,#f3f6fb 100%);
}
.hero-glow{
  position:absolute;
  border-radius:999px;
  filter:blur(10px);
  pointer-events:none;
}
.hero-glow-one{
  width:360px;height:360px;
  background:rgba(36,87,214,.08);
  top:-180px;right:2%;
}
.hero-glow-two{
  width:260px;height:260px;
  background:rgba(24,112,255,.06);
  bottom:-150px;left:4%;
}
.hero-layout{
  position:relative;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:70px;
}
.eyebrow{
  margin:0 0 16px;
  color:#5a6a80;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.17em;
}
.eyebrow.light{color:#9fb3d0}
.hero h1,
.section-heading h2,
.supply-copy h2,
.about-title h2,
.contact-intro h2{
  font-family:Manrope,Inter,sans-serif;
  letter-spacing:-.045em;
  line-height:1.04;
}
.hero h1{
  margin:0;
  max-width:760px;
  font-size:clamp(3rem,6.5vw,5.9rem);
}
.hero-text{
  max-width:720px;
  margin:26px 0 0;
  color:#506077;
  font-size:1.15rem;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 20px;
  border-radius:13px;
  text-decoration:none;
  font-weight:800;
  transition:transform .2s ease,box-shadow .2s ease;
}
.button:hover{transform:translateY(-2px)}
.button-primary{
  color:white;
  background:var(--blue);
  box-shadow:0 14px 30px rgba(36,87,214,.22);
}
.button-secondary{
  background:white;
  border:1px solid var(--line);
}
.button-light{
  margin-top:22px;
  background:white;
  color:var(--navy);
}
.hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:18px 28px;
  margin-top:34px;
  color:#526176;
  font-size:.9rem;
  font-weight:600;
}
.hero-points span::before{
  content:"";
  display:inline-block;
  width:7px;height:7px;
  border-radius:50%;
  margin-right:9px;
  background:var(--blue);
}
.hero-panel{
  position:relative;
  padding:30px;
  color:white;
  background:linear-gradient(150deg,var(--navy-2),var(--navy));
  border-radius:28px;
  box-shadow:var(--shadow);
}
.panel-topline{
  display:flex;
  justify-content:space-between;
  gap:18px;
  color:#b9c6d8;
  font-size:.76rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.availability{
  color:#d8e5ff;
}
.panel-feature{
  padding:48px 0 34px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.panel-feature p{
  margin:0 0 10px;
  color:#9fb3d0;
}
.panel-feature h2{
  max-width:470px;
  margin:0;
  font-family:Manrope,Inter,sans-serif;
  font-size:2rem;
  line-height:1.15;
  letter-spacing:-.03em;
}
.brand-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:24px;
}
.brand-grid span{
  display:grid;
  place-items:center;
  min-height:58px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.05);
  border-radius:13px;
  font-weight:700;
}
.panel-note{
  margin:22px 0 0;
  color:#aebed3;
  font-size:.82rem;
}

.statement-strip{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:white;
}
.statement-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
}
.statement-grid div{
  padding:30px 24px;
  border-right:1px solid var(--line);
}
.statement-grid div:last-child{border-right:0}
.statement-grid strong,
.statement-grid span{display:block}
.statement-grid strong{
  font-family:Manrope,Inter,sans-serif;
  font-size:1.02rem;
}
.statement-grid span{
  margin-top:3px;
  color:var(--muted);
  font-size:.83rem;
}

.section{padding:104px 0}
.section-heading{
  display:grid;
  grid-template-columns:1fr .75fr;
  gap:70px;
  align-items:end;
}
.section-heading.compact{grid-template-columns:1fr}
.section-heading h2{
  max-width:760px;
  margin:0;
  font-size:clamp(2.3rem,4.5vw,4rem);
}
.section-heading>p{
  margin:0;
  color:var(--muted);
  font-size:1.05rem;
}
.product-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:48px;
}
.product-card{
  min-height:350px;
  display:flex;
  flex-direction:column;
  padding:30px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:white;
}
.featured-card{
  color:white;
  background:linear-gradient(160deg,var(--blue),#173c9d);
  border-color:transparent;
}
.card-index{
  font-size:.78rem;
  font-weight:800;
  opacity:.65;
}
.product-card h3{
  margin:54px 0 14px;
  font-family:Manrope,Inter,sans-serif;
  font-size:1.55rem;
  line-height:1.2;
}
.product-card p{
  margin:0;
  color:var(--muted);
}
.featured-card p{color:#dfe8ff}
.card-line{
  height:1px;
  margin:auto 0 18px;
  background:var(--line);
}
.featured-card .card-line{background:rgba(255,255,255,.2)}
.card-meta{
  font-size:.82rem;
  font-weight:700;
}

.section-dark{
  color:white;
  background:
    linear-gradient(145deg,rgba(36,87,214,.08),transparent 40%),
    var(--navy);
}
.supply-layout{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:80px;
  align-items:start;
}
.supply-copy h2{
  margin:0 0 26px;
  font-size:clamp(2.4rem,4.8vw,4.2rem);
}
.supply-copy p:not(.eyebrow){
  color:#b9c6d8;
  font-size:1.02rem;
}
.process-list{
  display:grid;
  gap:14px;
}
.process-list article{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:18px;
  padding:24px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.process-list article>span{
  width:48px;height:48px;
  display:grid;
  place-items:center;
  border-radius:13px;
  background:white;
  color:var(--navy);
  font-weight:800;
}
.process-list h3{
  margin:0 0 6px;
  font-family:Manrope,Inter,sans-serif;
}
.process-list p{
  margin:0;
  color:#b9c6d8;
  font-size:.94rem;
}

.values-section{background:var(--soft)}
.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:46px;
}
.values-grid article{
  padding:27px;
  border:1px solid var(--line);
  border-radius:19px;
  background:white;
}
.value-icon{
  width:42px;height:42px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:var(--sky);
  color:var(--blue);
  font-weight:800;
}
.values-grid h3{
  margin:30px 0 10px;
  font-family:Manrope,Inter,sans-serif;
}
.values-grid p{
  margin:0;
  color:var(--muted);
  font-size:.92rem;
}

.about-section{background:white}
.about-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:100px;
  align-items:start;
}
.about-title h2{
  margin:0;
  font-size:clamp(2.4rem,4.8vw,4.1rem);
}
.about-content{
  padding-left:34px;
  border-left:2px solid var(--blue);
}
.about-content p{
  color:#59687c;
  font-size:1.03rem;
}
.about-content .lead{
  margin-top:0;
  color:var(--ink);
  font-size:1.3rem;
  font-weight:600;
}

.contact-section{
  padding:96px 0;
  color:white;
  background:linear-gradient(135deg,#173b98,var(--blue));
}
.contact-layout{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:70px;
  align-items:center;
}
.contact-intro h2{
  margin:0 0 20px;
  font-size:clamp(2.6rem,5vw,4.5rem);
}
.contact-intro p:not(.eyebrow){
  max-width:540px;
  color:#dce6ff;
  font-size:1.04rem;
}
.contact-card{
  overflow:hidden;
  border-radius:24px;
  background:white;
  color:var(--ink);
  box-shadow:0 28px 70px rgba(6,26,76,.28);
}
.contact-row{
  display:grid;
  grid-template-columns:170px 1fr;
  gap:24px;
  padding:22px 26px;
  border-bottom:1px solid var(--line);
}
.contact-row:last-child{border-bottom:0}
.contact-row span{
  color:var(--muted);
  font-size:.86rem;
}
.contact-row strong{
  font-size:.94rem;
}
.contact-row a{text-decoration:none}
.contact-row a:hover{color:var(--blue)}

footer{
  color:#d3dceb;
  background:#09111e;
}
.footer-top{
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand{color:white}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:26px;
}
.footer-links a{
  text-decoration:none;
  font-size:.9rem;
}
.footer-bottom{
  display:grid;
  grid-template-columns:.65fr 1.35fr;
  gap:50px;
  padding:28px 0 38px;
  color:#8fa0b7;
  font-size:.78rem;
}
.footer-bottom p{margin:0}

.legal-page{
  min-height:70vh;
  padding:90px 0;
}
.legal-page .legal-content{
  max-width:830px;
}
.legal-page h1{
  margin:0 0 16px;
  font-family:Manrope,Inter,sans-serif;
  font-size:clamp(2.7rem,5vw,4.7rem);
  letter-spacing:-.04em;
}
.legal-page h2{
  margin-top:38px;
  font-family:Manrope,Inter,sans-serif;
}
.legal-page p{color:#59687c}

@media(max-width:950px){
  .hero-layout,
  .section-heading,
  .supply-layout,
  .about-layout,
  .contact-layout{
    grid-template-columns:1fr;
    gap:46px;
  }
  .statement-grid{grid-template-columns:repeat(2,1fr)}
  .statement-grid div:nth-child(2){border-right:0}
  .statement-grid div:nth-child(-n+2){border-bottom:1px solid var(--line)}
  .product-cards{grid-template-columns:1fr}
  .product-card{min-height:300px}
  .values-grid{grid-template-columns:repeat(2,1fr)}
  .about-content{padding-left:24px}
}

@media(max-width:720px){
  .container{width:min(100% - 28px,1160px)}
  .menu-button{display:block}
  .nav-links{
    position:absolute;
    top:76px;
    left:14px;
    right:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:12px;
    border:1px solid var(--line);
    border-radius:16px;
    background:white;
    box-shadow:var(--shadow);
  }
  .nav-links.open{display:flex}
  .nav-links a{
    padding:13px 12px;
    border-radius:10px;
  }
  .nav-contact{text-align:center}
  .hero{padding:74px 0 64px}
  .hero h1{font-size:clamp(2.7rem,14vw,4.2rem)}
  .hero-panel{padding:22px}
  .brand-grid{grid-template-columns:repeat(2,1fr)}
  .statement-grid{grid-template-columns:1fr}
  .statement-grid div{
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .statement-grid div:last-child{border-bottom:0}
  .section{padding:76px 0}
  .values-grid{grid-template-columns:1fr}
  .contact-row{
    grid-template-columns:1fr;
    gap:6px;
  }
  .footer-top{
    align-items:flex-start;
    flex-direction:column;
    padding:38px 0;
  }
  .footer-bottom{grid-template-columns:1fr;gap:14px}
}
