:root {
  --ink: #172033;
  --muted: #526174;
  --paper: #fbfcf7;
  --line: #d8dfdf;
  --forest: #16483f;
  --blue: #2457a6;
  --coral: #d85f45;
  --mint: #dbeee5;
  --sky: #dceafa;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(23, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", "Trebuchet MS", Verdana, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  color: var(--white);
}

.brand-mark {
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
}

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

.site-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #111827;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 17, 28, 0.86) 0%, rgba(10, 17, 28, 0.52) 54%, rgba(10, 17, 28, 0.24) 100%),
    linear-gradient(0deg, rgba(10, 17, 28, 0.82) 0%, rgba(10, 17, 28, 0.10) 48%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 72px;
}

.hero-kicker {
  margin: 0 0 18px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #c9f0db;
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-size: 4.8rem;
  line-height: 0.95;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  color: var(--ink);
  background: var(--white);
  border-color: transparent;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: var(--mint);
}

.section-blue {
  background: var(--sky);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-label {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin: 0;
  font-size: 2.7rem;
  line-height: 1.08;
}

.section-copy {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.principle {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.principle strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.principle span {
  display: block;
  color: var(--muted);
  line-height: 1.65;
}

.product-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  color: var(--forest);
  background: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-title {
  margin: 0;
  font-size: 1.7rem;
}

.product-copy {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.product-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #f7faf8;
  font-size: 0.86rem;
  font-weight: 700;
}

.product-link {
  white-space: nowrap;
  color: var(--white);
  background: var(--forest);
}

.future-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.brand-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote {
  margin: 0;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1.35;
}

.quote-note {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer {
  padding: 34px 0;
  color: var(--white);
  background: var(--ink);
}

.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.products-page .hero {
  min-height: 56vh;
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

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

  .hero {
    min-height: 84vh;
  }

  .hero-title {
    font-size: 3.4rem;
  }

  .section-heading {
    font-size: 2.1rem;
  }

  .principles-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .product-link {
    width: 100%;
  }
}

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

  .site-header {
    gap: 12px;
  }

  .site-nav {
    gap: 12px;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero-inner {
    padding-bottom: 54px;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }
}
