:root {
  --purple: #7132f5;
  --purple-dark: #5741d8;
  --purple-subtle: rgba(133, 91, 251, 0.16);
  --near-black: #101114;
  --panel: #171820;
  --panel-2: #1f202a;
  --cool-gray: #686b82;
  --silver-blue: #9497a9;
  --border: rgba(222, 222, 229, 0.16);
  --white: #ffffff;
  --green: #149e61;
  --green-dark: #8de3b8;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--near-black);
  font-family: "Kraken-Product", "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px 40px;
  background: rgba(16, 17, 20, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--purple);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 24px;
  color: var(--silver-blue);
  font-size: 14px;
  font-weight: 500;
}

.nav a:hover {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--white);
  background: var(--purple);
  border: 1px solid var(--purple);
  font-size: 16px;
  font-weight: 600;
}

.page-hero {
  min-height: calc(82svh - 76px);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
  padding: 58px 40px 72px;
}

.hero-copy {
  width: min(650px, 100%);
}

.hero-media {
  margin: 0;
  min-height: 470px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.badge {
  display: inline-flex;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(20, 158, 97, 0.16);
  font-size: 14px;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Kraken-Brand", "IBM Plex Sans", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.17;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.22;
}

h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

p,
li {
  color: var(--silver-blue);
  font-size: 16px;
  line-height: 1.58;
}

.hero-copy p {
  max-width: 590px;
  margin: 18px 0 26px;
  font-size: 17px;
}

.section {
  padding: 72px 40px;
  background: var(--near-black);
}

.section.alt {
  background: #0c0d10;
}

.inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 34px;
}

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

.card {
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: 0 1px 4px rgba(16, 24, 40, 0.12);
}

.card .mini {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 9px;
  border-radius: 8px;
  color: #cdbdff;
  background: var(--purple-subtle);
  font-size: 12px;
  font-weight: 700;
}

.card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.metric {
  padding: 22px;
  border-radius: 16px;
  background: var(--panel-2);
  border: 1px solid var(--border);
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: 22px;
  line-height: 1.2;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--silver-blue);
  font-size: 15px;
  line-height: 1.45;
}

.footer {
  padding: 32px 40px 44px;
  color: var(--silver-blue);
  background: #0c0d10;
}

.footer .inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .site-header {
    padding: 16px 20px;
    gap: 12px;
  }

  .site-header .button {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .brand {
    gap: 10px;
    font-size: 16px;
  }

  .brand span:last-child {
    white-space: nowrap;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .nav {
    display: none;
  }

  .page-hero,
  .section-heading {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .card-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }
}
