:root {
  color-scheme: light;
  --ink: #061410;
  --pine: #123b2f;
  --forest: #163f34;
  --spruce: #0f3028;
  --sage: #78938d;
  --sage-soft: #dce7e2;
  --mist: #f5f8f6;
  --paper: #fffefd;
  --line: rgba(18, 59, 47, 0.16);
  --cedar: #b1833f;
  --shadow: 0 22px 70px rgba(18, 59, 47, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(18, 59, 47, 0.045) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(18, 59, 47, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--mist);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  color: var(--pine);
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header[data-elevated="true"] {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 254, 253, 0.88);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 780;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1;
}

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

.nav-links {
  gap: 30px;
}

.nav-links a,
.site-footer a {
  color: inherit;
  font-size: 0.92rem;
  font-weight: 680;
  text-decoration: none;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--cedar);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper) 0%, #f8faf8 62%, #eef5f1 100%);
  color: var(--ink);
  isolation: isolate;
}

.hero-wash {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 254, 253, 0.24), rgba(255, 254, 253, 0.88) 46%, rgba(255, 254, 253, 0.46)),
    linear-gradient(90deg, rgba(18, 59, 47, 0.06) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(rgba(18, 59, 47, 0.045) 1px, transparent 1px) 0 0 / 72px 72px;
}

.hero-original-mark {
  position: absolute;
  top: 114px;
  right: 7%;
  z-index: 1;
  width: min(38vw, 520px);
  max-height: 58vh;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 34px rgba(18, 59, 47, 0.1));
}

.hero::after {
  position: absolute;
  right: 58px;
  bottom: 146px;
  z-index: 1;
  width: 132px;
  height: 132px;
  border-top: 2px solid rgba(18, 59, 47, 0.32);
  border-left: 2px solid rgba(18, 59, 47, 0.32);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), calc(100% - 96px));
  margin: auto;
  padding: 150px 0 178px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cedar);
  font-size: 0.76rem;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 580px;
  margin: 0;
  color: var(--pine);
  font-size: 7.25rem;
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--pine);
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--spruce);
  font-size: 1.04rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 545px;
  margin: 26px 0 0;
  color: #38544c;
  font-size: 1.32rem;
  line-height: 1.48;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 780;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.social-card:hover,
.feature-card:hover {
  transform: translateY(-2px);
}

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

.button-secondary {
  border: 1px solid rgba(18, 59, 47, 0.24);
  background: rgba(255, 254, 253, 0.64);
  color: var(--pine);
}

.button-secondary:hover {
  border-color: rgba(18, 59, 47, 0.46);
}

.status-strip {
  position: absolute;
  right: 48px;
  bottom: 26px;
  left: 48px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.status-strip div {
  min-height: 76px;
  padding: 18px 18px 12px 0;
}

.status-label {
  display: block;
  margin-bottom: 8px;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.status-strip strong {
  color: var(--pine);
  font-size: 1.28rem;
}

.section,
.connect-section,
.site-footer {
  width: min(var(--max-width), calc(100% - 96px));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.74fr);
  gap: 86px;
  align-items: start;
}

.intro-copy {
  color: #536b64;
  font-size: 1.08rem;
  line-height: 1.72;
}

.intro-copy p {
  margin: 0;
}

.intro-copy p + p {
  margin-top: 20px;
}

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

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

.feature-grid,
.social-grid {
  display: grid;
  gap: 14px;
}

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

.feature-card,
.social-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 254, 253, 0.82);
  box-shadow: 0 1px 0 rgba(255, 254, 253, 0.95) inset;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover,
.social-card:hover {
  border-color: rgba(18, 59, 47, 0.36);
  box-shadow: var(--shadow);
}

.feature-card {
  display: grid;
  min-height: 238px;
  align-content: space-between;
  padding: 22px;
  text-decoration: none;
}

.feature-card p {
  margin: 18px 0 0;
  color: #5a716a;
  line-height: 1.58;
}

.feature-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  color: var(--cedar);
  font-size: 0.84rem;
  font-weight: 780;
}

.feature-index,
.social-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  color: var(--paper);
  font-weight: 840;
}

.feature-index {
  width: 38px;
  height: 38px;
  background: var(--pine);
  font-size: 0.84rem;
}

.connect-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 88px;
  align-items: start;
  padding: 104px 0;
  border-top: 1px solid var(--line);
}

.connect-copy {
  position: sticky;
  top: 106px;
}

.connect-copy p:not(.eyebrow) {
  color: #536b64;
  font-size: 1.06rem;
  line-height: 1.68;
}

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

.social-card {
  display: flex;
  min-height: 118px;
  align-items: center;
  gap: 16px;
  padding: 18px;
  text-decoration: none;
}

.social-icon {
  width: 48px;
  height: 48px;
  background: var(--social-color, var(--pine));
  font-size: 0.9rem;
}

.social-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--spruce);
  font-size: 1.02rem;
}

.social-card span:not(.social-icon) {
  display: block;
  color: #5c736c;
  font-size: 0.9rem;
  line-height: 1.35;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0 38px;
  border-top: 1px solid var(--line);
  color: #5c736c;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero-original-mark {
    right: 3%;
    width: 42vw;
    opacity: 0.76;
  }

  h1 {
    max-width: 520px;
    font-size: 5.8rem;
  }

  h2 {
    font-size: 3.1rem;
  }

  .intro,
  .connect-section {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-text {
    display: none;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.86rem;
  }

  .hero {
    min-height: 860px;
  }

  .hero-original-mark {
    top: 78px;
    right: 50%;
    width: 270px;
    max-height: none;
    opacity: 0.42;
    transform: translateX(50%);
  }

  .hero::after {
    right: 18px;
    bottom: 102px;
    width: 92px;
    height: 92px;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 310px 0 250px;
  }

  h1 {
    max-width: 100%;
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1.08rem;
  }

  .status-strip {
    right: 18px;
    bottom: 20px;
    left: 18px;
    grid-template-columns: 1fr;
  }

  .status-strip div {
    display: flex;
    min-height: 56px;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(18, 59, 47, 0.12);
  }

  .status-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .connect-section,
  .site-footer {
    width: calc(100% - 36px);
  }

  .section,
  .connect-section {
    padding: 68px 0;
  }

  .intro,
  .connect-section {
    grid-template-columns: 1fr;
  }

  .connect-copy {
    position: static;
  }

  .feature-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .nav-links {
    gap: 12px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .button {
    padding: 0 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
