:root {
  --ink: #101820;
  --muted: #5f7287;
  --line: #d5e2ec;
  --panel: #ffffff;
  --wash: #eef5fb;
  --green: #008ccf;
  --green-dark: #005f96;
  --deep: #13212c;
  --sun: #ffb000;
  --shadow: 0 20px 50px rgba(16, 24, 32, 0.14);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f8fb;
  color: var(--ink);
  margin: 0;
}

a,
button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(14px);
  background: rgba(245, 248, 251, 0.92);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 0;
  padding: 14px 24px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-dark);
  outline: none;
}

.header-actions,
.hero-actions,
.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: white;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-dark);
  outline: none;
}

.button.ghost {
  background: white;
  border-color: var(--line);
  color: var(--ink);
}

.button.dark {
  background: var(--deep);
  color: white;
}

.button.light {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.hero {
  min-height: 88vh;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-overlay {
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(16, 24, 32, 0.82) 0%, rgba(16, 24, 32, 0.48) 46%, rgba(16, 24, 32, 0.2) 100%);
}

.hero-content {
  color: white;
  display: grid;
  gap: 18px;
  max-width: 720px;
  min-height: 88vh;
  padding: 112px 24px 96px;
  position: relative;
  width: min(100%, 720px);
}

.eyebrow {
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.split-copy h2,
.image-band-copy h2,
.launch-copy h2 {
  font-size: clamp(2.2rem, 4.6vw, 4.5rem);
  line-height: 1.02;
  margin: 0;
}

.hero-copy,
.section-head p,
.split-copy p,
.image-band-copy p,
.launch-copy p {
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
}

.hero-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.hero-points li {
  font-size: 0.98rem;
  font-weight: 700;
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.hero-points li::before {
  background: var(--sun);
  border-radius: 999px;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 0.62em;
  width: 8px;
}

.hero-live-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding: 16px;
}

.hero-live-card strong {
  font-size: 1.12rem;
}

.hero-live-card p:last-child,
.hero-live-card .eyebrow {
  margin: 0;
}

.band,
.split-band,
.launch-band {
  padding: 84px 24px;
}

.band > *,
.split-band > *,
.launch-band > * {
  margin-inline: auto;
  max-width: 1180px;
}

.intro-band,
.muted-band {
  background: white;
}

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  max-width: 860px;
}

.feature-grid,
.security-grid,
.team-grid,
.ai-layout {
  display: grid;
  gap: 18px;
}

.feature-grid,
.security-grid,
.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.feature-tile,
.security-item,
.team-use,
.ai-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.feature-tile h3,
.security-item h3,
.team-use h3,
.ai-panel h3 {
  font-size: 1.18rem;
  margin: 0 0 10px;
}

.feature-tile p,
.security-item p,
.team-use p,
.ai-panel p,
.ai-panel li,
.flow-list li {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.split-band {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
}

.split-copy {
  display: grid;
  gap: 16px;
}

.split-visual img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  width: 100%;
}

.flow-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.bullet-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.blu-capability-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capability-tab {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 40px;
  padding: 0 14px;
}

.capability-tab.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.blu-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  padding: 20px;
}

.blu-panel strong {
  font-size: 1.12rem;
}

.blu-panel p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.blu-visual {
  align-self: stretch;
}

.blu-console {
  background: linear-gradient(180deg, #16232d 0%, #0f1820 100%);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: white;
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 22px;
}

.blu-signal {
  align-items: center;
  color: #d1e4f3;
  display: inline-flex;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
}

.signal-dot {
  animation: pulse 1.8s infinite;
  background: #29d391;
  border-radius: 999px;
  height: 10px;
  width: 10px;
}

.blu-feed {
  display: grid;
  gap: 12px;
}

.blu-feed-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  opacity: 0.56;
  padding: 14px;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.blu-feed-item.active {
  border-color: rgba(41, 211, 145, 0.45);
  opacity: 1;
  transform: translateY(-2px);
}

.blu-feed-item strong,
.blu-feed-item p {
  margin: 0;
}

.blu-feed-item p {
  color: #c8dae8;
  line-height: 1.6;
  margin-top: 6px;
}

.metric-row {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 14px;
}

.metric-card span {
  color: #b7cbda;
  font-size: 0.82rem;
  font-weight: 700;
}

.metric-card strong {
  font-size: 1.7rem;
  line-height: 1;
}

.workspace-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workspace-card-live {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
  padding: 22px;
}

.workspace-card-live strong {
  font-size: 1.14rem;
}

.workspace-card-live .bullet-list {
  margin: 0;
}

.image-band {
  position: relative;
}

.image-band img {
  height: 72vh;
  object-fit: cover;
  width: 100%;
}

.image-band-copy {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 24, 32, 0.08);
  border-radius: 8px;
  bottom: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  left: 24px;
  max-width: 660px;
  padding: 22px;
  position: absolute;
}

.launch-band {
  background: var(--deep);
  color: white;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.launch-copy {
  display: grid;
  gap: 16px;
}

@keyframes pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.55;
    transform: scale(0.9);
  }
}

.site-footer {
  align-items: center;
  background: white;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.92rem;
  font-weight: 700;
  gap: 10px 18px;
  justify-content: space-between;
  padding: 20px 24px 28px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .feature-grid,
  .security-grid,
  .team-grid,
  .ai-layout,
  .workspace-showcase,
  .split-band,
  .launch-band {
    grid-template-columns: 1fr;
  }

  .split-visual img {
    min-height: 320px;
  }

  .image-band img {
    height: 420px;
  }

  .image-band-copy {
    inset: auto 16px 16px 16px;
    max-width: none;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero-content,
  .band,
  .split-band,
  .launch-band,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: 76vh;
    padding-top: 96px;
    padding-bottom: 80px;
  }

  .hero h1,
  .section-head h2,
  .split-copy h2,
  .image-band-copy h2,
  .launch-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .feature-tile,
  .security-item,
  .team-use,
  .ai-panel,
  .workspace-card-live,
  .image-band-copy {
    padding: 18px;
  }
}
