:root{
  --bg:#01070f;
  --surface:#071320;
  --surface-alt:#0d2233;
  --panel:#0b1825;
  --panel-soft:rgba(9,24,37,.82);
  --ink:#eef6ff;
  --ink-soft:rgba(224,237,248,.84);
  --ink-muted:rgba(179,199,216,.62);
  --line:rgba(163,196,221,.14);
  --line-strong:rgba(163,196,221,.24);
  --teal-900:#07121e;
  --teal-800:#0f2435;
  --teal-700:#1a4462;
  --teal-200:#b8d4ea;
  --gold:#e3b45d;
  --gold-strong:#b97e24;
  --tech:#82d6ff;
  --tech-strong:#2f99dd;
  --tech-glow:rgba(47,153,221,.24);
  --white:#ffffff;
  --shadow-lg:0 28px 68px rgba(0,0,0,.34);
  --shadow-md:0 18px 42px rgba(0,0,0,.24);
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
  --header-offset:96px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  width:100%;
  overflow-x:hidden;
}
body{
  position:relative;
  margin:0;
  width:100%;
  overflow-x:hidden;
  min-height:100%;
  font-family:"Plus Jakarta Sans",system-ui,-apple-system,"Segoe UI",sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 50% -12%, rgba(130,214,255,.16), transparent 30%),
    radial-gradient(circle at 86% 24%, rgba(47,153,221,.18), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(227,180,93,.10), transparent 22%),
    linear-gradient(180deg, #01070f 0%, #081320 46%, #0b1a2a 100%);
}
img,video{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

.molecule-bg{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:0;
  opacity:1;
  filter:saturate(1.22) brightness(.92) contrast(1.08);
}

.about-bg-logo{
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  z-index:2;
  pointer-events:none;
  opacity:.16;
  filter:grayscale(.02) brightness(1.08);
  mix-blend-mode:screen;
}
.about-bg-logo img{
  width:min(52vw, 620px);
  height:auto;
}

.site-header,
main,
.footer{
  position:relative;
  z-index:1;
}

main{
  padding-top:0;
}

.container{max-width:1180px;margin:0 auto;padding:0 24px}

.site-header{
  position:fixed;
  left:0;
  right:0;
  top:0;
  z-index:50;
  backdrop-filter:blur(18px);
  background:
    linear-gradient(180deg, rgba(3,8,16,.94) 0%, rgba(8,20,33,.92) 100%);
  border-bottom:none;
  box-shadow:none;
}
.site-header::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-3px;
  height:4px;
  background:linear-gradient(90deg, rgba(47,153,221,.8) 0%, rgba(130,214,255,.5) 58%, rgba(227,180,93,.55) 100%);
  pointer-events:none;
}
.header-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:rgba(255,255,255,.94);
  min-width:0;
}
.brand-logo{width:54px;height:auto;flex:0 0 auto}
.brand-text{display:block;font-size:13px;line-height:1.2}
.brand-line{display:block}

.nav{
  display:flex;
  align-items:center;
  gap:8px;
  color:rgba(238,246,255,.78);
  font-size:13px;
}
.nav a{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid transparent;
  transition:background-color 180ms ease,color 180ms ease,border-color 180ms ease,transform 180ms ease;
}
.nav a:hover{
  background:rgba(130,214,255,.12);
  border-color:rgba(130,214,255,.24);
  color:var(--white);
  transform:translateY(-1px);
}

.nav-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(130,214,255,.22);
  border-radius:14px;
  background:rgba(255,255,255,.05);
  padding:0;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  margin:4px auto;
  background:rgba(255,255,255,.96);
  transition:transform 180ms ease,opacity 180ms ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.nav-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-size:13px;
  font-weight:600;
  letter-spacing:.01em;
  transition:transform 180ms ease,box-shadow 180ms ease,background-color 180ms ease,color 180ms ease,border-color 180ms ease;
}
.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(0,0,0,.24);
}
.btn-gold{
  background:linear-gradient(135deg, #f0c36a 0%, #cf9336 52%, #aa6f1f 100%);
  color:#08111b;
  box-shadow:0 16px 34px rgba(185,126,36,.26);
}
.btn-ghost{
  border-color:rgba(130,214,255,.28);
  color:var(--white);
  background:rgba(130,214,255,.08);
}
.btn-ghost:hover{
  background:rgba(130,214,255,.16);
  color:var(--white);
}
.btn-outline{
  border-color:var(--line-strong);
  background:rgba(255,255,255,.02);
  color:var(--white);
}
.btn-outline:hover{
  border-color:rgba(130,214,255,.34);
  background:rgba(130,214,255,.08);
}

.h1,.h2{
  margin:0;
  font-family:Fraunces,ui-serif,Georgia,serif;
  letter-spacing:-.03em;
  text-align:center;
}
.h1{
  font-size:clamp(30px,3.9vw,52px);
  line-height:.94;
  color:var(--white);
}
.h2{
  font-size:clamp(34px,3.4vw,48px);
  line-height:1.02;
  color:var(--ink);
}
.h2.light{color:var(--white)}
.eyebrow{
  margin:0 0 16px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.64);
}
.eyebrow.muted{color:rgba(21,34,39,.46)}
.lead,.section-intro,.muted-text,.proof-card p,.info-card p,.contact-item .tiny-muted{
  line-height:1.72;
}
.lead{
  margin:0;
  font-size:17px;
  color:rgba(238,246,255,.9);
  max-width:660px;
  text-align:center;
}
.section-intro{
  margin:16px 0 0;
  max-width:760px;
  color:var(--ink-soft);
  text-align:center;
  margin-left:auto;
  margin-right:auto;
  font-size:17px;
  font-weight:500;
  line-height:1.7;
}
.light-copy{color:rgba(238,246,255,.84)}
.tiny-muted{
  font-size:15px;
  color:var(--ink-muted);
  text-align:center;
  font-weight:500;
  line-height:1.65;
}

.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 74% 20%, rgba(130,214,255,.2), transparent 0, transparent 24%),
    radial-gradient(circle at 18% 80%, rgba(227,180,93,.09), transparent 0, transparent 26%),
    linear-gradient(135deg, rgba(1,7,15,.96) 0%, rgba(6,19,31,.92) 48%, rgba(11,33,52,.88) 100%);
  padding:0 0 64px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:auto auto -120px -90px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:rgba(47,153,221,.12);
  filter:blur(18px);
}
.hero-shell{
  position:relative;
  display:grid;
  gap:24px;
  padding-top:calc(var(--header-offset) + 6px);
}
.hero-copy{
  display:grid;
  grid-template-rows:1fr auto;
  gap:22px;
}
.hero-copy-grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:28px 34px;
  align-items:center;
  min-height:360px;
}
.hero-heading,
.hero-details{
  min-width:0;
}
.hero-details{
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.hero-lead{margin-top:0}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:20px;
  justify-content:center;
}
.hero-proof{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:22px;
  align-items:stretch;
}
.proof-card{
  min-height:96px;
  padding:14px 12px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    linear-gradient(180deg, rgba(20,41,61,.94) 0%, rgba(12,28,42,.98) 54%, rgba(6,17,29,1) 100%);
  border:2px solid rgba(163,196,221,.18);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.14), inset 0 -14px 24px rgba(0,0,0,.3), 0 14px 30px rgba(0,0,0,.26);
  position:relative;
  overflow:hidden;
  cursor:default;
  transition:transform 220ms ease,border-color 220ms ease,box-shadow 220ms ease,background-color 220ms ease,filter 220ms ease;
}
.proof-card::before{
  content:"";
  position:absolute;
  inset:0 0 auto 0;
  height:54%;
  background:linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 100%);
  pointer-events:none;
}
.proof-card p{
  margin:0;
  font-size:13px;
  font-family:Fraunces,ui-serif,Georgia,serif;
  font-weight:700;
  letter-spacing:-.015em;
  color:rgba(255,255,255,.98);
  text-align:center;
  line-height:1.35;
  position:relative;
  z-index:1;
}

.hero-video-card{
  position:relative;
  overflow:hidden;
  padding:14px;
  border-radius:var(--radius-xl);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border:2px solid rgba(130,214,255,.28);
  box-shadow:0 0 0 1px rgba(130,214,255,.1), var(--shadow-lg);
}
.hero-video{
  width:100%;
  min-height:280px;
  max-height:520px;
  border-radius:24px;
  background:#040b14;
  object-fit:contain;
  border:2px solid rgba(255,255,255,.1);
  box-shadow:0 24px 60px rgba(0,0,0,.34);
}
.hero-banner{
  overflow:hidden;
  padding:2px 0;
}
.hero-banner-track{
  display:flex;
  gap:18px;
  width:max-content;
  animation:hero-banner-scroll 52s linear infinite;
}
.hero-banner:hover .hero-banner-track,
.hero-banner.is-paused .hero-banner-track{
  animation-play-state:paused;
}
.hero-banner-card{
  flex:0 0 212px;
  height:128px;
  overflow:hidden;
  border-radius:22px;
  border:2px solid rgba(130,214,255,.26);
  box-shadow:0 0 0 1px rgba(130,214,255,.1), 0 18px 38px rgba(0,0,0,.24);
  background:rgba(255,255,255,.04);
}
.hero-banner-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  border:none;
}

.section{padding:58px 0}
.section-light{background:transparent}
.section-cream{background:linear-gradient(180deg, rgba(8,20,31,.44) 0%, rgba(8,20,31,.72) 100%)}
.section-cream2{background:linear-gradient(180deg, rgba(11,27,41,.48) 0%, rgba(7,18,29,.8) 100%)}
.section-dark{
  background:
    radial-gradient(circle at 18% 20%, rgba(130,214,255,.14), transparent 0, transparent 28%),
    linear-gradient(180deg, rgba(3,12,21,.9) 0%, rgba(7,22,35,.82) 100%);
  color:rgba(255,255,255,.92);
}
.section-head{margin-bottom:34px;text-align:center}
.section-head.center{text-align:center;margin-left:auto;margin-right:auto}
.section-head.narrow{
  max-width:820px;
  margin-left:auto;
  margin-right:auto;
}

.grid{
  display:grid;
  gap:16px;
}
.grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.grid-5{grid-template-columns:repeat(5,minmax(0,1fr))}

.info-card{
  padding:18px 16px;
  border-radius:var(--radius-lg);
  background:linear-gradient(180deg, rgba(16,35,52,.82) 0%, rgba(9,22,35,.88) 100%);
  border:2px solid rgba(130,214,255,.16);
  box-shadow:0 14px 28px rgba(0,0,0,.2);
  position:relative;
  overflow:hidden;
  cursor:default;
  transition:transform 220ms ease,border-color 220ms ease,box-shadow 220ms ease,background-color 220ms ease,filter 220ms ease;
}
.info-card-dark{
  background:linear-gradient(180deg, rgba(10,27,40,.9) 0%, rgba(5,17,27,.94) 100%);
  border:2px solid rgba(130,214,255,.24);
  box-shadow:0 14px 30px rgba(0,0,0,.28);
}
.card-title{
  margin:0 0 12px;
  font-family:Fraunces,ui-serif,Georgia,serif;
  font-size:24px;
  line-height:1.1;
  color:var(--ink);
}
.card-title.light{color:var(--white)}
.info-card p{
  margin:0;
  font-size:15px;
  font-family:Fraunces,ui-serif,Georgia,serif;
  font-weight:700;
  letter-spacing:-.012em;
  color:rgba(238,246,255,.96);
  text-align:center;
  line-height:1.4;
}
.info-card-dark p{
  color:rgba(238,246,255,.96);
  text-shadow:none;
}

.split-panel{
  display:grid;
  grid-template-columns:minmax(0, .96fr) minmax(0, 1.04fr);
  gap:34px;
  align-items:center;
}
.split-panel.reverse{grid-template-columns:minmax(0, 1.04fr) minmax(0, .96fr)}
.split-media img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  border-radius:var(--radius-xl);
  border:2px solid rgba(130,214,255,.24);
  box-shadow:0 0 0 1px rgba(130,214,255,.08), var(--shadow-lg);
}
.split-body{
  padding:14px 0;
  text-align:center;
}
.split-dark .split-media img{
  min-height:460px;
}

.bullet-list{
  display:grid;
  gap:14px;
  margin:24px 0 0;
  padding:0;
  list-style:none;
}
.bullet-list li{
  position:relative;
  padding-left:24px;
  color:rgba(231,242,252,.92);
  line-height:1.82;
  font-size:17px;
  font-family:"Plus Jakarta Sans",system-ui,-apple-system,"Segoe UI",sans-serif;
  font-weight:600;
  letter-spacing:.004em;
  transform-origin:left center;
  transition:transform 220ms ease,color 220ms ease,letter-spacing 220ms ease,text-shadow 220ms ease;
}
.bullet-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.72em;
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--tech) 0%, var(--tech-strong) 100%);
  transform:translateY(-50%);
  box-shadow:0 0 0 0 rgba(39,184,211,0);
  transition:transform 220ms ease,box-shadow 220ms ease,background 220ms ease;
}
.bullet-list-light li{color:rgba(255,255,255,.94)}
.bullet-list-light li::before{background:linear-gradient(135deg, var(--tech) 0%, var(--tech-strong) 100%)}
.bullet-list li.is-bullet-highlighted,
.bullet-list-light li.is-bullet-highlighted{
  transform:scale(1.03);
  letter-spacing:.012em;
}
.bullet-list li.is-bullet-highlighted{
  color:rgba(255,255,255,.98);
  text-shadow:0 0 18px rgba(47,153,221,.2);
}
.bullet-list-light li.is-bullet-highlighted{
  color:rgba(255,255,255,1);
  text-shadow:0 0 18px rgba(103,200,218,.18);
}
.bullet-list li.is-bullet-highlighted::before,
.bullet-list-light li.is-bullet-highlighted::before{
  transform:translateY(-50%) scale(1.26);
  box-shadow:0 0 0 6px rgba(39,184,211,.14);
}

.applications-grid{
  grid-template-columns:repeat(5,minmax(0,190px));
  justify-content:center;
}
.industry-card{
  min-height:76px;
  padding:12px 12px 14px;
}

@keyframes hero-banner-scroll{
  from{transform:translateX(0)}
  to{transform:translateX(calc(-50% - 9px))}
}

.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.faq-item{
  padding:22px 24px;
  border-radius:24px;
  border:2px solid rgba(130,214,255,.16);
  background:linear-gradient(180deg, rgba(16,35,52,.8) 0%, rgba(9,22,35,.86) 100%);
  box-shadow:0 14px 28px rgba(0,0,0,.22);
  transition:border-color 180ms ease,transform 180ms ease,box-shadow 180ms ease,background-color 180ms ease,filter 180ms ease;
  position:relative;
  overflow:hidden;
}
.faq-item:hover{
  transform:translateY(-2px);
  border-color:rgba(130,214,255,.42);
}
.faq-item[open]{
  border-color:rgba(130,214,255,.56);
  box-shadow:0 20px 44px rgba(0,0,0,.28);
}
.faq-item-wide{grid-column:1 / -1}
.faq-q{
  position:relative;
  display:block;
  padding-right:36px;
  cursor:pointer;
  list-style:none;
  font-family:Fraunces,ui-serif,Georgia,serif;
  font-size:22px;
  color:var(--white);
}
.faq-q::-webkit-details-marker{display:none}
.faq-q::after{
  content:"+";
  position:absolute;
  right:0;
  top:50%;
  transform:translateY(-50%);
  width:30px;
  height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(130,214,255,.12);
  color:var(--white);
  font-family:"Plus Jakarta Sans",system-ui,-apple-system,"Segoe UI",sans-serif;
  font-size:19px;
  font-weight:700;
}
.faq-item[open] .faq-q::after{
  content:"-";
  background:var(--tech-strong);
  color:var(--white);
}
.faq-item .muted-text{
  margin:14px 0 0;
  color:var(--ink-soft);
  text-align:center;
  font-size:16px;
  line-height:1.7;
}

.final-cta .section-head{margin-bottom:28px}
.center-actions{justify-content:center}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:16px;
}
.contact-panel{
  align-items:start;
}
.contact-form-wrap,
.contact-process{
  align-self:stretch;
}
.contact-process{
  order:2;
}
.contact-form-card{
  padding:26px;
  border-radius:30px;
  background:linear-gradient(180deg, rgba(14,31,46,.86) 0%, rgba(8,20,31,.92) 100%);
  border:2px solid rgba(130,214,255,.16);
  box-shadow:0 18px 38px rgba(0,0,0,.24);
}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.form-field{
  display:grid;
  gap:8px;
}
.form-field-full{
  grid-column:1 / -1;
}
.form-label{
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:rgba(179,199,216,.78);
}
.form-field input,
.form-field textarea{
  width:100%;
  padding:15px 16px;
  border-radius:18px;
  border:1px solid rgba(130,214,255,.18);
  background:rgba(3,10,17,.72);
  color:var(--white);
  font:inherit;
  outline:none;
  transition:border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.form-field textarea{
  resize:vertical;
  min-height:170px;
}
.form-field input:focus,
.form-field textarea:focus{
  border-color:rgba(130,214,255,.52);
  box-shadow:0 0 0 4px rgba(130,214,255,.12);
  background:rgba(6,15,24,.9);
}
.form-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}
.form-status{
  min-height:24px;
  margin:14px 0 0;
  font-size:14px;
  font-weight:600;
  text-align:center;
  color:var(--ink-soft);
}
.form-status.is-success{
  color:#1d6f59;
}
.form-status.is-error{
  color:#9b3d2e;
}
.form-honeypot{
  position:absolute;
  left:-9999px;
  opacity:0;
  pointer-events:none;
}
.contact-item{
  padding:18px 16px 20px;
  border-radius:var(--radius-lg);
  background:linear-gradient(180deg, rgba(16,35,52,.82) 0%, rgba(9,22,35,.88) 100%);
  border:2px solid rgba(130,214,255,.16);
  box-shadow:0 14px 28px rgba(0,0,0,.2);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:6px;
  text-align:center;
  position:relative;
  overflow:hidden;
  cursor:default;
  transition:transform 220ms ease,border-color 220ms ease,box-shadow 220ms ease,background-color 220ms ease,filter 220ms ease;
}
.contact-title{
  margin-bottom:8px;
  font-family:Fraunces,ui-serif,Georgia,serif;
  font-size:20px;
  font-weight:700;
}
.contact-link{
  display:inline-block;
  margin-top:10px;
  font-family:Fraunces,ui-serif,Georgia,serif;
  color:rgba(238,246,255,.96);
  text-decoration:underline;
  text-underline-offset:4px;
  font-weight:700;
  max-width:100%;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.contact-text{
  text-decoration:none;
}
.contact-links{
  display:grid;
  gap:4px;
  margin-top:10px;
  justify-items:center;
}

.partners-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  margin-top:26px;
  align-items:stretch;
}
.partner-logo-slot{
  min-height:112px;
  display:grid;
  place-items:center;
  padding:18px 14px;
  border-radius:24px;
  border:2px solid rgba(130,214,255,.16);
  background:linear-gradient(180deg, rgba(16,35,52,.82) 0%, rgba(9,22,35,.88) 100%);
  box-shadow:0 14px 28px rgba(0,0,0,.2);
  position:relative;
  overflow:hidden;
  cursor:default;
  transition:transform 220ms ease,border-color 220ms ease,box-shadow 220ms ease,background-color 220ms ease,filter 220ms ease;
}
.partner-logo-slot span{
  font-family:Fraunces,ui-serif,Georgia,serif;
  font-size:21px;
  font-weight:600;
  color:var(--ink-muted);
  text-align:center;
}
.partner-logo-image{
  max-width:78%;
  max-height:56px;
  width:auto;
  height:auto;
  object-fit:contain;
  border:none;
  border-radius:12px;
  box-shadow:none;
  filter:contrast(1.02) saturate(1.01);
}

.metrics-strip{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  margin-top:30px;
  border-radius:32px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(13,29,43,.9) 0%, rgba(7,18,29,.94) 100%);
  border:1px solid rgba(130,214,255,.14);
  box-shadow:0 20px 42px rgba(0,0,0,.28);
}
.metric-item{
  padding:28px 18px;
  text-align:center;
}
.metric-item + .metric-item{
  border-left:1px solid rgba(130,214,255,.12);
}
.metric-value{
  font-family:Fraunces,ui-serif,Georgia,serif;
  font-size:clamp(34px,4vw,56px);
  font-weight:600;
  line-height:.96;
  color:var(--ink);
}
.metric-label{
  margin-top:10px;
  font-size:16px;
  color:var(--ink-soft);
}
.metric-monitor{
  margin-top:18px;
  text-align:left;
}
.metric-monitor-title{
  font-family:"Plus Jakarta Sans",system-ui,-apple-system,"Segoe UI",sans-serif;
  font-size:14px;
  font-weight:700;
  color:rgba(238,246,255,.92);
}
.metric-monitor-subtitle{
  margin-top:2px;
  font-size:13px;
  color:var(--ink-muted);
}
.metric-monitor-screen{
  margin-top:10px;
  padding:12px 12px 10px;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(20,29,34,.96) 0%, rgba(11,18,24,.96) 100%);
  border:1px solid rgba(103,200,218,.22);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04), 0 10px 22px rgba(8,19,28,.14);
}
.metric-monitor-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:12px;
  line-height:1.45;
  color:rgba(223,236,241,.76);
}
.metric-monitor-row + .metric-monitor-row{
  margin-top:7px;
}
.metric-monitor-row strong{
  color:var(--gold);
  font-weight:700;
}
.metric-sparkline{
  margin-top:10px;
  height:46px;
  border-radius:12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
    radial-gradient(circle at 12% 78%, rgba(39,184,211,.18), transparent 28%),
    linear-gradient(transparent 0 85%, rgba(255,255,255,.05) 85% 87%, transparent 87%);
  position:relative;
  overflow:hidden;
}
.metric-sparkline::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:-24%;
  width:24%;
  background:linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(103,200,218,.14) 48%, rgba(255,255,255,0) 100%);
  filter:blur(2px);
  animation:metric-scan 3.8s linear infinite;
}
.metric-sparkline::after{
  content:"";
  position:absolute;
  inset:0;
  background-repeat:no-repeat;
  background-size:108% 100%;
  animation:metric-line-shift 2.6s ease-in-out infinite alternate;
}
.spark-a::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 60' preserveAspectRatio='none'%3E%3Cpath d='M0 38 L18 40 L34 24 L50 42 L68 32 L86 18 L104 36 L122 28 L140 22 L158 34 L176 20 L194 26 L212 16 L240 24' fill='none' stroke='%2327b8d3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.spark-b::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 60' preserveAspectRatio='none'%3E%3Cpath d='M0 30 L18 28 L36 32 L54 26 L72 22 L90 20 L108 24 L126 18 L144 16 L162 18 L180 14 L198 16 L216 12 L240 10' fill='none' stroke='%23caa76a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.spark-c::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 60' preserveAspectRatio='none'%3E%3Cpath d='M0 42 L18 44 L36 34 L54 36 L72 30 L90 22 L108 24 L126 18 L144 26 L162 20 L180 14 L198 20 L216 12 L240 16' fill='none' stroke='%2367c8da' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

@keyframes metric-scan{
  from{transform:translateX(0)}
  to{transform:translateX(520%)}
}

@keyframes metric-line-shift{
  from{transform:translateX(-2%) translateY(0)}
  50%{transform:translateX(0) translateY(-2%)}
  to{transform:translateX(2%) translateY(1%)}
}

.proof-card:hover,
.proof-card.is-highlighted{
  transform:translateY(-6px) scale(1.05);
  border-color:rgba(130,214,255,.38);
  background:linear-gradient(180deg, rgba(24,50,73,.98) 0%, rgba(14,34,50,1) 54%, rgba(7,20,33,1) 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.18), inset 0 -14px 22px rgba(0,0,0,.32), 0 20px 36px rgba(0,0,0,.3);
  filter:saturate(1.02) brightness(1.08);
}

.info-card:hover,
.info-card.is-highlighted,
.contact-item:hover,
.contact-item.is-highlighted,
.partner-logo-slot:hover,
.partner-logo-slot.is-highlighted{
  transform:translateY(-6px) scale(1.04);
  border-color:rgba(130,214,255,.5);
  background:linear-gradient(180deg, rgba(22,45,66,.98) 0%, rgba(12,28,43,.98) 100%);
  box-shadow:0 0 0 1px rgba(130,214,255,.12), 0 20px 34px rgba(0,0,0,.26);
  filter:saturate(1.06) brightness(1.03);
}

.faq-item:hover,
.faq-item.is-highlighted{
  transform:translateY(-5px) scale(1.03);
  border-color:rgba(130,214,255,.5);
  background:linear-gradient(180deg, rgba(22,45,66,.98) 0%, rgba(12,28,43,.98) 100%);
  box-shadow:0 0 0 1px rgba(130,214,255,.12), 0 20px 34px rgba(0,0,0,.26);
  filter:saturate(1.06) brightness(1.03);
}

.footer{
  background:linear-gradient(180deg, rgba(2,8,16,.98) 0%, rgba(8,20,33,.96) 100%);
  color:rgba(255,255,255,.88);
  border-top:1px solid rgba(130,214,255,.14);
  padding:54px 0 40px;
}
.footer-grid{
  display:grid;
  gap:24px;
  justify-items:center;
  text-align:center;
}
.footer-brand{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.footer-logo{width:84px;height:auto}
.footer-name{
  font-size:24px;
  font-weight:700;
  letter-spacing:.06em;
}
.footer-links-wrap{display:grid;justify-items:center}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px 24px;
  font-size:15px;
}
.footer-links a{color:rgba(255,255,255,.76)}
.footer-links a:hover{color:var(--white)}
.footer-bottom{
  margin-top:28px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:center;
  gap:14px 26px;
  flex-wrap:wrap;
  text-align:center;
}
.footer .tiny-muted{color:rgba(255,255,255,.62)}
.footer .tiny-muted a{
  color:rgba(255,255,255,.86);
  text-decoration:underline;
  text-underline-offset:4px;
}
.footer .tiny-muted a:hover{
  color:var(--white);
}

.cookie-consent{
  position:fixed;
  left:50%;
  top:50%;
  width:min(560px, calc(100vw - 32px));
  padding:22px 22px 20px;
  border-radius:24px;
  background:linear-gradient(180deg, rgba(11,27,41,.98) 0%, rgba(7,18,29,.96) 100%);
  border:2px solid rgba(130,214,255,.22);
  box-shadow:0 24px 64px rgba(0,0,0,.36);
  z-index:120;
  opacity:0;
  visibility:hidden;
  transform:translate(-50%, -50%) scale(.96);
  transition:opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}
.cookie-consent.is-visible{
  opacity:1;
  visibility:visible;
  transform:translate(-50%, -50%) scale(1);
}
.cookie-consent__title{
  font-family:Fraunces,ui-serif,Georgia,serif;
  font-size:28px;
  line-height:1;
  color:var(--white);
}
.cookie-consent__text{
  margin:12px 0 0;
  font-size:15px;
  line-height:1.65;
  color:var(--ink-soft);
}
.cookie-consent__actions{
  display:flex;
  justify-content:flex-end;
  gap:12px;
  margin-top:18px;
}
.cookie-consent__btn{
  min-width:120px;
}
body.cookie-consent-open::after{
  content:"";
  position:fixed;
  inset:0;
  background:rgba(8,19,28,.34);
  backdrop-filter:blur(4px);
  z-index:110;
}

@media (max-width:1080px){
  .hero-copy-grid,
  .split-panel,
  .split-panel.reverse{
    grid-template-columns:1fr;
  }
  .hero-copy-grid{min-height:0}
  .grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .grid-5{grid-template-columns:repeat(3,minmax(0,1fr))}
  .contact-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .form-grid{grid-template-columns:1fr}
}

@media (max-width:980px){
  :root{--header-offset:92px}
  .site-header .btn{display:none}
  .header-inner{justify-content:center;padding:12px 0}
  .brand-logo{width:44px}
  .brand-text{font-size:12px}
  .nav-toggle{
    display:block;
    order:2;
    flex:0 0 auto;
    margin-left:18px;
  }
  .nav{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    right:0;
    z-index:20;
    padding:10px;
    flex-direction:column;
    gap:8px;
    border-radius:24px;
    background:rgba(7,18,29,.98);
    border:1px solid rgba(130,214,255,.16);
    box-shadow:0 20px 40px rgba(0,0,0,.3);
  }
  .nav.is-open{display:flex}
  .nav a{
    width:100%;
    text-align:center;
    color:var(--white);
    background:rgba(130,214,255,.06);
    border-color:rgba(130,214,255,.08);
  }
  .hero{padding:0 0 48px}
  .hero-shell{padding-top:calc(var(--header-offset) + 6px)}
  .section{padding:46px 0}
  .hero-media{margin-top:2px}
  .hero-video{
    min-height:240px;
    object-fit:contain;
  }
  .hero-proof{
    grid-template-columns:1fr;
    padding-bottom:4px;
    margin-top:18px;
  }
  .proof-card{
    min-height:auto;
  }
  .hero-banner-card{
    flex-basis:188px;
    height:116px;
  }
  .industry-card{min-height:auto}
  .applications-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .partners-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:14px;
  }
  .about-bg-logo{
    left:50%;
    top:50%;
    transform:translate(-50%, -50%);
    opacity:.18;
  }
  .about-bg-logo img{
    width:min(58vw, 380px);
  }
}

@media (max-width:720px){
  .container{padding:0 18px}
  .header-inner{padding:10px 0}
  .brand{gap:10px}
  .brand-logo{width:40px}
  .brand-text{font-size:11px;line-height:1.1}
  .nav-toggle{
    width:40px;
    height:40px;
    border-radius:12px;
  }
  .h1{
    font-size:clamp(28px,9vw,38px);
    line-height:.98;
  }
  .h2{
    font-size:clamp(22px,8vw,34px);
    line-height:1.02;
    letter-spacing:-.025em;
  }
  .lead{
    font-size:15px;
    line-height:1.62;
  }
  .hero-shell{padding-top:calc(var(--header-offset) + 7px)}
  .hero-media{margin-top:3px}
  .section{padding:38px 0}
  .section-head{margin-bottom:18px}
  .section-intro{
    margin-top:12px;
    font-size:15px;
    line-height:1.62;
  }
  .proof-card p,
  .info-card p,
  .faq-q,
  .faq-item .muted-text,
  .tiny-muted{
    line-height:1.45;
  }
  .hero-copy{gap:20px}
  .hero-copy-grid{gap:18px}
  .split-body,
  .bullet-list li{
    text-align:center;
  }
  .hero-actions,
  .center-actions{
    flex-direction:column;
  }
  .hero-actions .btn,
  .center-actions .btn{
    width:100%;
    padding:13px 16px;
  }
  .grid-4,
  .grid-5{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
  .faq-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }
  .contact-form-card{
    padding:20px;
    border-radius:24px;
  }
  .contact-process{
    margin-top:4px;
  }
  .form-actions{
    flex-direction:column;
  }
  .form-actions .btn{
    width:100%;
  }
  .info-card,
  .faq-item,
  .contact-item{
    padding:16px 16px 18px;
    border-radius:20px;
  }
  .info-card p{
    font-size:14px;
    line-height:1.4;
  }
  .info-card-dark p{
    font-size:14px;
    line-height:1.45;
  }
  .proof-card{
    padding:12px 12px 14px;
    border-radius:18px;
  }
  .proof-card p{
    font-size:12px;
    line-height:1.32;
  }
  .hero-video-card{padding:14px}
  .hero-video{
    min-height:190px;
    max-height:260px;
    object-fit:contain;
  }
  .hero-banner-track{
    gap:12px;
    animation-duration:34s;
  }
  .hero-banner-card{
    flex-basis:132px;
    height:84px;
    border-radius:18px;
  }
  .industry-card{min-height:auto}
  .industry-card p{
    font-size:13.5px;
    line-height:1.35;
  }
  .applications-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .partners-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
  .metrics-strip{grid-template-columns:1fr}
  .partner-logo-slot{
    min-height:88px;
    padding:14px 10px;
    border-radius:18px;
  }
  .partner-logo-slot span{
    font-size:16px;
  }
  .metric-item + .metric-item{border-left:0;border-top:1px solid rgba(130,214,255,.12)}
  .split-media img,
  .split-dark .split-media img{
    min-height:280px;
  }
  .footer-name{font-size:18px}
  .footer-links{font-size:14px}
  .about-bg-logo{
    left:50%;
    top:50%;
    bottom:auto;
    transform:translate(-50%, -50%);
    opacity:.14;
  }
  .about-bg-logo img{
    width:min(72vw, 280px);
  }
  .cookie-consent{
    width:min(94vw, 520px);
    padding:18px 18px 16px;
    border-radius:20px;
  }
  .cookie-consent__title{font-size:24px}
  .cookie-consent__actions{
    flex-direction:column-reverse;
  }
  .cookie-consent__btn{
    width:100%;
  }
}
