:root {
  color-scheme: light;
  --ink: #18211d;
  --muted: #62706a;
  --paper: #f6f7f2;
  --surface: #ffffff;
  --sage: #dfe8de;
  --sage-2: #eef3ea;
  --pine: #142319;
  --pine-2: #21362a;
  --lake: #2d7180;
  --copper: #d96f2a;
  --line: rgba(24, 33, 29, 0.14);
  --shadow: 0 22px 58px rgba(24, 33, 29, 0.13);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 16px clamp(20px, 5vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: 240px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--pine);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  flex: 0 0 42px;
  font-size: 0.9rem;
  font-weight: 850;
  height: 42px;
  justify-content: center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--pine);
  font-size: 1rem;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: flex-end;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"],
.site-footer a:hover {
  color: var(--pine);
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 58%, var(--sage-2) 58%, var(--sage-2) 100%);
  padding: clamp(54px, 8vw, 98px) clamp(20px, 5vw, 72px) clamp(58px, 8vw, 104px);
}

.hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(36px, 7vw, 92px);
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.logo-panel {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(24, 33, 29, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  min-height: clamp(300px, 42vw, 500px);
  padding: clamp(14px, 3vw, 30px);
}

.company-logo {
  height: auto;
  max-height: 460px;
  object-fit: contain;
  width: min(100%, 480px);
}

.hero-statement {
  max-width: 650px;
}

.eyebrow {
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5.8vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 780px;
}

h2 {
  color: var(--pine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.55rem);
  line-height: 1;
  margin-bottom: 20px;
}

h3 {
  color: var(--pine);
  font-size: 1.08rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  max-width: 640px;
}

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

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

.button.primary {
  background: var(--pine);
  color: #ffffff;
}

.button.primary:hover {
  background: var(--pine-2);
}

.button.secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--pine);
}

.button.secondary:hover {
  background: var(--sage-2);
}

.section,
.product-band,
.page-main {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section {
  background: var(--paper);
}

.section-heading {
  max-width: 850px;
}

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

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.feature p,
.product-copy p,
.split p,
.page-hero p,
.content-panel p,
.content-panel li {
  color: var(--muted);
}

.product-band {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(20, 35, 25, 0.92), rgba(33, 54, 42, 0.86)),
    var(--pine);
  color: #ffffff;
  display: grid;
  gap: clamp(34px, 7vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
}

.product-band h2,
.product-band h3 {
  color: #ffffff;
}

.product-band .eyebrow {
  color: #f29a5a;
}

.product-band p {
  color: rgba(255, 255, 255, 0.76);
}

.product-copy {
  max-width: 720px;
}

.product-copy .button {
  margin-top: 12px;
}

.product-band .button.primary {
  background: var(--copper);
  color: #ffffff;
}

.product-band .button.primary:hover {
  background: #bf5f22;
}

.product-visual {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
  padding: clamp(22px, 5vw, 42px);
}

.product-visual img {
  border-radius: 8px;
}

.compact {
  background: #ffffff;
  padding-top: clamp(50px, 7vw, 82px);
}

.split {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
}

.page-main {
  background: var(--paper);
  min-height: calc(100vh - 200px);
}

.page-hero {
  max-width: 850px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
}

.content-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 34px;
  max-width: 900px;
  padding: clamp(24px, 5vw, 46px);
}

.content-panel h2 {
  color: var(--pine);
  font-size: 1.15rem;
  line-height: 1.2;
  margin: 30px 0 8px;
}

.content-panel h2:first-child {
  margin-top: 0;
}

.content-panel a {
  color: var(--lake);
  font-weight: 800;
}

.legal p {
  max-width: 760px;
}

.site-footer {
  align-items: center;
  background: #ffffff;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.site-footer p {
  color: var(--muted);
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

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

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

  .feature-grid,
  .product-band,
  .split,
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .logo-panel {
    min-height: 270px;
  }

  .product-visual {
    max-width: 420px;
  }

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

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav {
    gap: 8px 14px;
  }

  h1 {
    font-size: 2.85rem;
  }

  .company-logo {
    max-height: 320px;
  }

  .button {
    width: 100%;
  }
}
