:root {
  color-scheme: light;
  --ink: #061a32;
  --muted: #536174;
  --line: #d9e3ea;
  --surface: #ffffff;
  --soft: #f4f8f7;
  --green: #10975a;
  --green-dark: #057259;
  --lime: #70c52f;
  --blue: #0b3554;
  --shadow: 0 24px 70px rgba(6, 26, 50, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(115deg, rgba(16, 151, 90, 0.08), transparent 32%),
    linear-gradient(245deg, rgba(11, 53, 84, 0.08), transparent 30%),
    #fbfdfc;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  padding: 10px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(6, 26, 50, 0.12);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-header nav a {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 6px;
}

.site-header nav a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: clamp(36px, 7vw, 92px);
  width: min(1180px, calc(100% - 40px));
  min-height: min(720px, calc(100svh - 130px));
  margin: 0 auto;
  padding: clamp(38px, 6vw, 76px) 0 clamp(48px, 7vw, 82px);
}

.hero-copy {
  max-width: 760px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 5.4vw, 5.35rem);
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
}

.lede {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.1vw, 1.35rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.1;
}

.button.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(6, 26, 50, 0.18);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  border-color: rgba(6, 26, 50, 0.18);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.button.secondary:hover {
  border-color: rgba(16, 151, 90, 0.42);
  color: var(--green-dark);
}

.hero-mark {
  display: grid;
  place-items: center;
  min-height: 340px;
  padding: clamp(18px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 247, 0.72)),
    linear-gradient(135deg, rgba(16, 151, 90, 0.11), rgba(11, 53, 84, 0.08));
  box-shadow: var(--shadow);
}

.hero-mark img {
  width: min(100%, 380px);
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 98px) 0;
}

.band {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.75fr);
  gap: 28px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.capabilities article {
  min-height: 250px;
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.76);
}

.capabilities span {
  display: block;
  margin-bottom: 44px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.capabilities p,
.product p,
.release-panel p,
.error-shell p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.product {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.58fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: stretch;
  border-top: 1px solid var(--line);
}

.product-copy p {
  max-width: 640px;
  font-size: 1.08rem;
}

.release-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  min-height: 320px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(6, 26, 50, 0.12);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(140deg, rgba(5, 114, 89, 0.94), rgba(6, 26, 50, 0.97)),
    var(--blue);
  box-shadow: var(--shadow);
}

.status {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #dff9e8;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.download-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.download-slots span {
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

.site-footer a:hover {
  color: var(--green-dark);
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
}

.error-shell {
  width: min(620px, calc(100% - 40px));
  padding: 48px 0;
}

.error-shell h1 {
  margin-top: 36px;
  font-size: clamp(2.8rem, 9vw, 5.4rem);
}

.error-shell .button {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
    padding: 16px 0 8px;
  }

  .site-header nav {
    width: 100%;
    justify-content: space-between;
  }

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

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-mark {
    min-height: 280px;
  }

  .capabilities {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .brand span {
    font-size: 0.96rem;
  }

  .site-header nav {
    gap: 2px;
    font-size: 0.84rem;
  }

  .site-header nav a {
    padding: 9px 7px;
  }

  h1 {
    font-size: clamp(2.45rem, 10.8vw, 3rem);
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-mark {
    display: none;
  }

  .download-slots {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
