:root {
  --bg-dark: #0b2a4a;
  --bg-dark-deep: #081f36;
  --bg-light: #f7fafc;
  --surface-light: rgba(255, 255, 255, 0.96);
  --surface-light-soft: rgba(247, 250, 252, 0.88);
  --surface-dark: rgba(11, 42, 74, 0.72);
  --surface-dark-card: rgba(255, 255, 255, 0.05);
  --text-light: #e6edf3;
  --text-dark: #14283b;
  --text-muted: #9aa4af;
  --text-muted-dark: #607285;
  --line-dark: rgba(230, 237, 243, 0.12);
  --line-light: rgba(20, 40, 59, 0.08);
  --brand-blue: #1e88e5;
  --brand-cyan: #4fc3f7;
  --brand-gradient: linear-gradient(135deg, #4fc3f7, #1e88e5);
  --shadow-dark: 0 28px 70px rgba(3, 14, 24, 0.3);
  --shadow-light: 0 20px 50px rgba(15, 36, 64, 0.12);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(79, 195, 247, 0.15), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(30, 136, 229, 0.16), transparent 22%),
    linear-gradient(180deg, #071c31 0%, #0b2a4a 100%);
  color: var(--text-light);
  font-family: "Poppins", sans-serif;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 16px 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(11, 42, 74, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-dark);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {`r`n  display: inline-flex;`r`n  align-items: center;`r`n  justify-content: center;`r`n}`r`n`r`n.brand-mark-logo {`r`n  width: auto;`r`n  height: 46px;`r`n  object-fit: contain;`r`n  display: block;`r`n}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title,
.footer-title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
}

.brand-tec {
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-software {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-tagline,
.footer-tagline {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 400;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.hero,
.section,
.site-footer {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero,
.section-dark,
.site-footer {
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-dark);
}

.hero,
.section-dark {
  background:
    radial-gradient(circle at 16% 14%, rgba(79, 195, 247, 0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(30, 136, 229, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(12, 40, 69, 0.98), rgba(8, 31, 54, 0.98));
}

.hero {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 28px;
  padding: 44px;
}

.hero::after,
.section-dark::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.14), transparent 70%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-cyan);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 680px;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.03;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.lede {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand-gradient);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(30, 136, 229, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 44px rgba(30, 136, 229, 0.34);
}

.button-secondary {
  border-color: rgba(230, 237, 243, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-light);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(79, 195, 247, 0.4);
  background: rgba(79, 195, 247, 0.08);
}

.nav-cta {
  min-height: 42px;
  padding: 0 16px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.highlight-card,
.statement-card,
.contact-card,
.about-quote {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.highlight-card {
  padding: 18px;
}

.metric {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.highlight-card p,
.dashboard-card-copy p,
.statement-card p,
.about-copy-dark,
.contact-card-dark p,
.section-intro-dark,
.footer-links a,
.footer-tagline {
  color: var(--text-muted);
}

.highlight-card p,
.dashboard-card-copy p,
.statement-card p,
.about-copy-dark,
.contact-card-dark p {
  margin: 0;
  line-height: 1.75;
}

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

.hero-visual-shell {
  position: relative;
  min-height: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero-glow-a {
  top: 20px;
  right: 24px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(79, 195, 247, 0.28), transparent 68%);
}

.hero-glow-b {
  left: -20px;
  bottom: 8px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(30, 136, 229, 0.22), transparent 72%);
}

.dashboard-frame {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.dashboard-topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79, 195, 247, 0.14);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 500;
}

.dashboard-pill-muted {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.dashboard-main,
.dashboard-card {
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.dashboard-main {
  min-height: 360px;
  padding: 12px;
}

.dashboard-side {
  display: grid;
  gap: 14px;
}

.dashboard-card {
  padding: 12px;
}

.dashboard-card-copy {
  padding: 18px;
}

.panel-image,
.feature-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.section {
  margin-top: 22px;
  padding: 34px;
}

.section-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text-light);
}

.section-intro {
  max-width: 680px;
  margin: 14px 0 0;
  font-size: 0.98rem;
  line-height: 1.8;
}

.cards {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.statement-card,
.contact-card {
  padding: 24px;
}

.info-card {
  border: 1px solid rgba(30, 136, 229, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 50px rgba(2, 14, 24, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card:hover,
.info-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(2, 14, 24, 0.24);
  border-color: rgba(79, 195, 247, 0.28);
}

.info-card-featured {
  overflow: hidden;
}

.info-card-featured .feature-image {
  margin: -24px -24px 20px;
  width: calc(100% + 48px);
}

.info-card-accent {
  border-color: rgba(30, 136, 229, 0.22);
  background:
    linear-gradient(180deg, rgba(79, 195, 247, 0.08), rgba(255, 255, 255, 0.98) 26%),
    rgba(255, 255, 255, 0.98);
}

.info-card h3,
.statement-card h3 {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.info-card h3 {
  color: var(--text-dark);
}

.info-card p {
  margin: 0;
  color: var(--text-muted-dark);
  line-height: 1.8;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 18px;
  align-items: start;
}

.about-copy-dark {
  font-size: 1rem;
}

.about-quote-dark {
  padding: 26px;
}

.about-quote-dark p {
  margin: 0;
  color: var(--text-light);
  font-size: 1.7rem;
  line-height: 1.18;
  font-weight: 500;
}

.contact-section {
  margin-bottom: 20px;
}

.contact-card-dark {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-card-dark p {
  max-width: 720px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 26px 30px;
  background: linear-gradient(180deg, rgba(9, 31, 53, 0.98), rgba(11, 42, 74, 0.98));
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
  font-size: 0.95rem;
}

@media (max-width: 1080px) {
  .hero,
  .three-up,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-main {
    min-height: 280px;
  }
}

@media (max-width: 820px) {
  .site-header,
  .site-footer,
  .contact-card-dark,
  .two-up {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer,
  .contact-card-dark {
    display: grid;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 16px;
  }

  .site-header,
  .hero,
  .section,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-header {
    top: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .brand-mark {`r`n  display: inline-flex;`r`n  align-items: center;`r`n  justify-content: center;`r`n}`r`n`r`n.brand-mark-logo {`r`n  width: auto;`r`n  height: 46px;`r`n  object-fit: contain;`r`n  display: block;`r`n}

