:root {
  --bg: #080E1E;
  --bg-soft: #0d1529;
  --panel: rgba(18, 29, 53, 0.72);
  --panel-strong: #111c34;
  --text: #FCFDFD;
  --muted: #9aa7be;
  --cyan: #04C4D4;
  --blue: #0497E4;
  --green: #06E9B1;
  --lime: #54FB79;
  --line: rgba(255,255,255,0.10);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(4, 196, 212, 0.08), transparent 28%),
    radial-gradient(circle at 12% 68%, rgba(6, 233, 177, 0.05), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; position: relative; }

.ambient {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.1;
  z-index: -1;
}
.ambient-one { background: var(--cyan); top: 4%; right: -180px; }
.ambient-two { background: var(--green); bottom: 8%; left: -240px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.scrolled {
  background: rgba(8, 14, 30, .78);
  backdrop-filter: blur(18px);
  border-color: var(--line);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark, .mini-logo, .dash-logo, .product-symbol {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--lime), var(--green) 35%, var(--cyan) 68%, var(--blue));
  color: #07111f;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -1.5px;
  box-shadow: 0 0 32px rgba(4, 196, 212, .14);
}
.brand-mark { width: 44px; height: 44px; border-radius: 13px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.04; }
.brand-copy strong { font-family: "Manrope", sans-serif; font-size: 17px; letter-spacing: -0.4px; }
.brand-copy small { color: var(--muted); font-size: 12px; margin-top: 4px; }

.main-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 600; }
.main-nav > a:not(.nav-cta) { color: #d6dbea; transition: color .2s ease; }
.main-nav > a:not(.nav-cta):hover { color: var(--green); }
.nav-cta { padding: 11px 17px; border: 1px solid rgba(6,233,177,.32); border-radius: 999px; color: var(--green); background: rgba(6,233,177,.06); }
.menu-toggle { display: none; background: none; border: 0; padding: 7px; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 2px; background: white; margin: 5px 0; transition: .25s ease; }

.hero { min-height: 820px; padding-top: 165px; display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 60px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--cyan); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; }
.eyebrow i { width: 26px; height: 1px; background: linear-gradient(90deg, var(--green), var(--cyan)); }
.hero h1, .section-heading h2, .about-copy h2, .contact-copy h2 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.055em;
  line-height: 1.03;
  margin: 22px 0 24px;
}
.hero h1 { font-size: clamp(48px, 6vw, 78px); max-width: 820px; }
.gradient-text {
  background: linear-gradient(90deg, var(--lime), var(--green), var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p { max-width: 660px; color: #abb6ca; font-size: 18px; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; justify-content: center; align-items: center; gap: 10px; min-height: 52px; padding: 0 22px; border-radius: 14px; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--lime), var(--green) 42%, var(--cyan)); color: #06111b; box-shadow: 0 16px 42px rgba(6,233,177,.15); }
.btn-primary:hover { box-shadow: 0 20px 48px rgba(6,233,177,.24); }
.btn-secondary { border: 1px solid var(--line); color: white; background: rgba(255,255,255,.025); }
.btn-secondary:hover { border-color: rgba(4,196,212,.42); }
.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 11px; margin-top: 32px; color: #78869e; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.hero-proof b { color: var(--cyan); font-size: 10px; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.main-glass-card {
  width: min(470px, 100%);
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(19, 33, 59, .92), rgba(10, 17, 35, .88));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.main-glass-card::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(4,196,212,.10); filter: blur(50px); right: -90px; top: -90px; }
.card-topline { display: flex; align-items: center; justify-content: space-between; position: relative; z-index: 2; }
.mini-logo { width: 42px; height: 42px; border-radius: 12px; }
.status { display: inline-flex; align-items: center; gap: 7px; color: #aeb9cb; font-size: 11px; font-weight: 700; }
.status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px rgba(6,233,177,.7); }
.visual-title { position: relative; z-index: 2; font-family: "Manrope", sans-serif; font-weight: 700; letter-spacing: -0.04em; line-height: 1.2; font-size: 31px; margin: 38px 0 32px; }
.visual-title span { color: var(--cyan); }
.visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; z-index: 2; }
.mini-card { min-height: 118px; padding: 17px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; background: rgba(255,255,255,.025); color: #b8c2d4; }
.mini-card.featured { background: linear-gradient(145deg, rgba(6,233,177,.10), rgba(4,196,212,.05)); border-color: rgba(6,233,177,.24); color: white; }
.mini-icon { font-size: 24px; color: var(--green); }
.mini-card small { font-weight: 700; }
.visual-orbit { position: absolute; border: 1px solid rgba(4,196,212,.11); border-radius: 50%; }
.orbit-one { width: 530px; height: 530px; }
.orbit-two { width: 390px; height: 390px; border-color: rgba(6,233,177,.10); }
.floating-chip { position: absolute; z-index: 3; padding: 9px 13px; border-radius: 999px; background: rgba(11,20,39,.92); border: 1px solid rgba(255,255,255,.1); color: #c6cedd; font-size: 11px; font-weight: 800; box-shadow: 0 14px 40px rgba(0,0,0,.26); }
.chip-one { top: 15%; right: -2%; }
.chip-two { bottom: 15%; left: -3%; }
.chip-three { bottom: 2%; right: 13%; }

.services { background: rgba(255,255,255,.015); border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .contact-copy h2 { font-size: clamp(38px, 5vw, 58px); }
.section-heading p { color: var(--muted); font-size: 16px; margin: 0 0 6px; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-card { position: relative; min-height: 330px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); overflow: hidden; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(4,196,212,.28); background: linear-gradient(145deg, rgba(4,196,212,.07), rgba(255,255,255,.012)); }
.service-number { position: absolute; right: 24px; top: 19px; font-family: "Manrope", sans-serif; color: rgba(255,255,255,.07); font-size: 52px; font-weight: 800; }
.service-icon { width: 47px; height: 47px; border-radius: 14px; display: grid; place-items: center; background: rgba(6,233,177,.09); border: 1px solid rgba(6,233,177,.15); color: var(--green); font-size: 21px; }
.service-card h3 { font-family: "Manrope", sans-serif; font-size: 24px; letter-spacing: -0.035em; margin: 28px 0 13px; }
.service-card p { color: var(--muted); margin: 0 0 22px; max-width: 520px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span { font-size: 11px; font-weight: 700; color: #aeb8ca; border: 1px solid var(--line); border-radius: 999px; padding: 7px 10px; }

.product-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
  min-height: 650px;
  padding: 62px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 83% 15%, rgba(84,251,121,.16), transparent 27%),
    radial-gradient(circle at 63% 83%, rgba(4,151,228,.15), transparent 28%),
    linear-gradient(135deg, #0e1a31, #0a1123 56%, #0b1428);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--green); text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 800; }
.product-kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px rgba(6,233,177,.8); }
.product-brandline { display: flex; align-items: center; gap: 15px; margin: 30px 0 20px; }
.product-symbol { width: 57px; height: 57px; border-radius: 16px; font-size: 17px; }
.product-brandline small { display: block; color: #8290aa; font-size: 11px; margin-bottom: 2px; }
.product-brandline h2 { margin: 0; font-family: "Manrope", sans-serif; font-size: 36px; letter-spacing: -0.045em; }
.product-lead { color: #aab5c9; font-size: 17px; max-width: 560px; margin: 0 0 30px; }
.product-flow { display: flex; align-items: stretch; gap: 10px; margin-bottom: 34px; }
.product-flow > div { flex: 1; min-width: 0; padding: 13px; border: 1px solid rgba(255,255,255,.08); border-radius: 15px; background: rgba(255,255,255,.025); }
.product-flow > div span { display: block; color: var(--cyan); font-size: 10px; font-weight: 800; }
.product-flow > div strong { display: block; margin: 5px 0 2px; font-size: 13px; }
.product-flow > div small { color: #7f8ca4; font-size: 10px; }
.product-flow > b { align-self: center; color: rgba(6,233,177,.55); }
.product-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.text-link { color: #dce3ef; font-size: 13px; font-weight: 700; }
.text-link span { color: var(--green); margin-left: 5px; }

.product-dashboard { min-width: 0; position: relative; }
.dash-window { position: relative; z-index: 2; transform: perspective(1100px) rotateY(-7deg) rotateX(2deg); border-radius: 22px; overflow: hidden; background: #eef3f8; box-shadow: 0 34px 80px rgba(0,0,0,.42); border: 1px solid rgba(255,255,255,.3); }
.dash-topbar { height: 42px; display: flex; align-items: center; gap: 24px; padding: 0 13px; background: #dfe8ef; }
.dash-dots { display: flex; gap: 5px; }
.dash-dots i { width: 7px; height: 7px; border-radius: 50%; background: #92a4b5; }
.dash-pill { flex: 1; background: white; color: #7b8998; text-align: center; padding: 5px 12px; border-radius: 999px; font-size: 8px; }
.dash-body { min-height: 390px; display: grid; grid-template-columns: 58px 1fr; background: #f7fafc; }
.dash-side { background: #0b1325; display: flex; flex-direction: column; align-items: center; gap: 20px; padding-top: 14px; }
.dash-logo { width: 30px; height: 30px; border-radius: 9px; font-size: 9px; }
.dash-side i { width: 17px; height: 5px; border-radius: 99px; background: #3c4962; }
.dash-side i.active { background: var(--green); box-shadow: 0 0 12px rgba(6,233,177,.5); }
.dash-main { padding: 24px; color: #172139; }
.dash-title-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.dash-title-row span { padding: 5px 8px; border-radius: 999px; background: #d9fff0; color: #07925d; font-size: 8px; font-weight: 800; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 18px 0; }
.stats-row > div { padding: 14px; border-radius: 13px; background: white; box-shadow: 0 7px 20px rgba(28, 49, 77, .06); }
.stats-row small { display: block; color: #8793a5; font-size: 8px; }
.stats-row strong { display: block; font-size: 21px; margin-top: 2px; }
.orders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.order-card { padding: 14px; min-height: 98px; border-radius: 13px; background: white; border-left: 3px solid var(--green); box-shadow: 0 7px 20px rgba(28,49,77,.05); }
.order-card span, .order-card small { display: block; color: #8e99a9; font-size: 8px; }
.order-card strong { display: block; margin: 12px 0 4px; font-size: 11px; }
.order-card.muted { border-left-color: var(--cyan); }
.dashboard-glow { position: absolute; width: 260px; height: 260px; right: -50px; bottom: -50px; background: rgba(6,233,177,.2); filter: blur(70px); border-radius: 50%; }

.about { padding-top: 130px; }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.about-copy p { color: var(--muted); font-size: 16px; }
.principles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.principle-card { min-height: 190px; padding: 24px; border-radius: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.principle-card span { color: var(--cyan); font-size: 11px; font-weight: 800; }
.principle-card h3 { font-family: "Manrope", sans-serif; margin: 28px 0 7px; font-size: 22px; }
.principle-card p { color: var(--muted); margin: 0; font-size: 13px; }

.contact-section { padding-top: 50px; }
.contact-panel { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; padding: 58px; border-radius: var(--radius-lg); background: linear-gradient(120deg, var(--green), var(--cyan) 58%, var(--blue)); color: #071321; box-shadow: 0 30px 80px rgba(4,196,212,.15); }
.eyebrow.light { color: #092438; }
.eyebrow.light i { background: #092438; }
.contact-copy h2 { margin-top: 18px; }
.contact-copy p { margin: 0; max-width: 650px; color: rgba(7,19,33,.76); font-weight: 500; }
.contact-actions { display: flex; flex-direction: column; align-items: stretch; gap: 13px; }
.btn-dark { background: #08111f; color: white; box-shadow: 0 15px 35px rgba(0,0,0,.18); }
.contact-social { text-align: center; color: #0a2130; font-size: 13px; }

.site-footer { padding: 34px 0 38px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; color: #76839a; font-size: 12px; }
.footer-grid p { margin: 0; text-align: center; }
.footer-grid > span { text-align: right; }
.footer-brand .brand-mark { width: 38px; height: 38px; font-size: 14px; }
.footer-brand .brand-copy strong { font-size: 14px; }
.footer-brand .brand-copy small { font-size: 10px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .product-showcase, .about-grid, .contact-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-visual { margin-top: 30px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .product-showcase { padding: 46px; }
  .product-dashboard { max-width: 650px; margin: 0 auto; width: 100%; }
  .about-grid { gap: 44px; }
  .contact-panel { text-align: center; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 82px 0; }
  .site-header { background: rgba(8,14,30,.84); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
  .nav-wrap { height: 70px; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 70px 0 0; background: #080e1ef5; flex-direction: column; justify-content: center; gap: 28px; transform: translateX(100%); transition: transform .3s ease; font-size: 18px; }
  .main-nav.open { transform: translateX(0); }
  .hero { padding-top: 125px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-copy > p { font-size: 16px; }
  .hero-visual { min-height: 440px; }
  .orbit-one { width: 420px; height: 420px; }
  .orbit-two { width: 310px; height: 310px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .product-showcase { padding: 30px 22px; border-radius: 24px; }
  .product-flow { flex-direction: column; }
  .product-flow > b { transform: rotate(90deg); }
  .dash-window { transform: none; }
  .dash-body { min-height: 310px; grid-template-columns: 45px 1fr; }
  .dash-main { padding: 15px; }
  .stats-row > div { padding: 10px; }
  .orders-grid { grid-template-columns: 1fr; }
  .order-card:nth-child(n+3) { display: none; }
  .principles-grid { grid-template-columns: 1fr; }
  .contact-panel { padding: 36px 22px; }
  .footer-grid { grid-template-columns: 1fr; justify-items: center; }
  .footer-grid > span { text-align: center; }
}

@media (max-width: 460px) {
  .hero h1 { font-size: 42px; }
  .main-glass-card { padding: 21px; }
  .visual-title { font-size: 26px; }
  .floating-chip { display: none; }
  .product-brandline h2 { font-size: 31px; }
  .product-actions .btn { width: 100%; }
  .contact-copy h2, .section-heading h2, .about-copy h2 { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
