:root {
  --bg: #f6f6f2;
  --bg-deep: #111612;
  --surface-solid: #fcfcf8;
  --ink: #111612;
  --muted: #5b625d;
  --line: rgba(17, 22, 18, 0.12);
  --line-inverse: rgba(255, 255, 255, 0.2);
  --pine: #18372b;
  --olive: #6f7a56;
  --champagne: #d8c8a8;
  --shadow: 0 28px 90px rgba(17, 22, 18, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background: var(--bg);
}

body::selection {
  color: #fff;
  background: var(--pine);
}

a {
  color: inherit;
}

.site-shell {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 246, 242, 0) 360px),
    var(--bg);
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  color: #fff;
  background: var(--bg-deep);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-background__video,
.hero-background__wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background__video {
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.82) contrast(1.06) brightness(0.72);
}

.hero-background__wash {
  background:
    linear-gradient(180deg, rgba(12, 17, 14, 0.38) 0%, rgba(12, 17, 14, 0.08) 44%, rgba(12, 17, 14, 0.74) 100%),
    linear-gradient(90deg, rgba(12, 17, 14, 0.86) 0%, rgba(12, 17, 14, 0.44) 46%, rgba(12, 17, 14, 0.1) 100%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 26px 0;
  gap: 24px;
}

.brand-mark,
.topbar-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand-mark {
  gap: 12px;
}

.brand-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--bg-deep);
  font-family: "Instrument Serif", "Iowan Old Style", serif;
  font-size: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
}

.brand-name,
.topbar-nav,
.eyebrow,
.panel-badge,
.stat-label,
.closing-label {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-name {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
}

.topbar-nav {
  gap: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.topbar-nav a {
  text-decoration: none;
  transition: color 160ms ease;
}

.topbar-nav a:hover,
.topbar-nav a:focus-visible {
  color: #fff;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(310px, 0.72fr);
  align-items: end;
  width: min(1180px, calc(100% - 48px));
  min-height: calc(86vh - 92px);
  margin: 0 auto;
  padding: 64px 0 54px;
  gap: 44px;
}

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

.hero-content > *,
.section-intro > *,
.audience-section > * {
  min-width: 0;
}

.eyebrow,
.panel-badge,
.closing-label {
  margin: 0;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Instrument Serif", "Iowan Old Style", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 10.8ch;
  margin-top: 18px;
  font-size: 8.4rem;
  line-height: 0.86;
}

.hero-detail {
  max-width: 52ch;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 178px;
  padding: 13px 20px;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  border: 1px solid rgba(255, 255, 255, 0);
  color: var(--bg-deep);
  background: #fff;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.14);
}

.hero-panel {
  padding: 24px;
  border: 1px solid var(--line-inverse);
  border-radius: 8px;
  background: rgba(12, 17, 14, 0.34);
  backdrop-filter: blur(18px);
}

.panel-grid {
  display: grid;
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
}

.stat-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-label {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.stat-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.58;
}

.product-section,
.audience-section,
.closing-band {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.product-section {
  padding: 56px 0 72px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 0.72fr);
  align-items: start;
  gap: 44px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.product-section .eyebrow,
.audience-section .eyebrow {
  color: var(--olive);
}

.section-intro h2,
.audience-card h2 {
  font-size: 4.8rem;
  line-height: 0.96;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.feature-card {
  min-height: 370px;
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card h3 {
  max-width: 10ch;
  margin-bottom: 96px;
  font-size: 2.35rem;
  line-height: 1;
}

.feature-card p,
.audience-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.audience-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 72px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.audience-card {
  padding: clamp(28px, 4vw, 52px);
  background: var(--surface-solid);
}

.audience-card h2 {
  margin-top: 16px;
  margin-bottom: 28px;
  font-size: 4rem;
}

.closing-band {
  position: relative;
  margin-bottom: 56px;
  padding: clamp(32px, 5vw, 64px);
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--pine);
}

.closing-band::after {
  position: absolute;
  right: clamp(24px, 7vw, 96px);
  bottom: -1px;
  width: min(260px, 32vw);
  height: 1px;
  content: "";
  background: var(--champagne);
}

.closing-text {
  max-width: 17ch;
  margin: 14px 0 0;
  font-family: "Instrument Serif", "Iowan Old Style", serif;
  font-size: 5.6rem;
  line-height: 0.94;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 7rem;
  }

  .section-intro h2,
  .audience-card h2 {
    font-size: 4rem;
  }

  .closing-text {
    font-size: 4.8rem;
  }
}

@media (max-width: 1040px) {
  .hero-content,
  .section-intro,
  .audience-section {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 32px;
  }

  .hero-panel {
    max-width: 620px;
  }

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

  .feature-card:nth-child(2) {
    border-right: 0;
  }

  .feature-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 700px) {
  .topbar,
  .hero-content,
  .product-section,
  .audience-section,
  .closing-band {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .topbar-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
    font-size: 0.62rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 48px 0 24px;
  }

  h1 {
    max-width: 7.6ch;
    font-size: 3.08rem;
    line-height: 0.9;
  }

  h1,
  .section-intro h2,
  .audience-card h2,
  .closing-text {
    overflow-wrap: break-word;
  }

  .hero-detail {
    max-width: 32ch;
    font-size: 1rem;
  }

  .section-intro h2,
  .audience-card h2,
  .closing-text {
    font-size: 2.55rem;
  }

  .feature-card h3 {
    font-size: 2.1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    display: none;
  }

  .product-section {
    padding: 38px 0 48px;
  }

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

  .feature-card,
  .feature-card:nth-child(2),
  .feature-card:nth-child(-n + 2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .feature-card h3 {
    margin-bottom: 44px;
  }

  .audience-section {
    margin-bottom: 48px;
  }

  .closing-band {
    margin-bottom: 28px;
  }
}
