:root {
  color-scheme: light;
  --ink: #111915;
  --muted: #5f6d66;
  --paper: #f7f2e8;
  --paper-deep: #ebe4d7;
  --card: rgba(255, 253, 248, 0.88);
  --card-solid: #fffdf8;
  --line: rgba(24, 34, 29, 0.12);
  --green: #0f6c4e;
  --green-deep: #083b2f;
  --green-soft: rgba(15, 108, 78, 0.12);
  --gold: #d98a29;
  --gold-soft: rgba(217, 138, 41, 0.16);
  --shadow-lg: 0 36px 90px rgba(29, 40, 35, 0.16);
  --shadow-md: 0 18px 45px rgba(29, 40, 35, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 12%, rgba(217, 138, 41, 0.18), transparent 22rem),
    radial-gradient(circle at 84% 16%, rgba(15, 108, 78, 0.18), transparent 24rem),
    radial-gradient(circle at 50% 100%, rgba(15, 108, 78, 0.08), transparent 18rem),
    linear-gradient(180deg, #faf6ef 0%, var(--paper) 55%, var(--paper-deep) 100%);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before,
body::after {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
  content: "";
  filter: blur(4px);
}

body::before {
  top: -10rem;
  left: -8rem;
  width: 26rem;
  height: 26rem;
  background: radial-gradient(circle, rgba(15, 108, 78, 0.14), transparent 72%);
}

body::after {
  right: -10rem;
  bottom: -12rem;
  width: 30rem;
  height: 30rem;
  background: radial-gradient(circle, rgba(217, 138, 41, 0.16), transparent 70%);
}

a {
  color: inherit;
}

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

p,
li {
  line-height: 1.7;
}

main {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(24, 34, 29, 0.08);
  background: rgba(249, 244, 235, 0.84);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.company-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, var(--green) 0%, #0e7e60 100%);
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.14), 0 16px 30px rgba(15, 108, 78, 0.2);
}

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

.wordmark strong {
  font-size: 1rem;
}

.wordmark small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-deep);
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}

.site-nav a:hover,
.site-nav .active {
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(15, 108, 78, 0.18);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

.hero,
.benchboss-hero {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
  padding: clamp(4rem, 10vw, 8rem) 0;
}

.hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 78vh;
}

.hero-home .lede,
.benchboss-hero .lede {
  max-width: 700px;
}

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

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.3rem, 8vw, 7.2rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.3rem;
}

.lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.15rem;
  border: 1px solid rgba(15, 108, 78, 0.28);
  border-radius: 14px;
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 25px rgba(29, 40, 35, 0.06);
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.button.primary {
  color: #fff;
  background: linear-gradient(145deg, var(--green) 0%, #137a5a 100%);
  box-shadow: 0 18px 36px rgba(15, 108, 78, 0.24);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(29, 40, 35, 0.1);
}

.hero-badges,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-badges span,
.feature-list li,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 34px;
  padding: 0.5rem 0.78rem;
  border: 1px solid rgba(15, 108, 78, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-deep);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(29, 40, 35, 0.05);
}

.feature-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.feature-list li {
  width: fit-content;
}

.feature-list li::before {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold) 0%, #f1b34a 100%);
  content: "";
}

.brand-console,
.phone-mock,
.screenshot-card,
.content-panel,
.card,
.metric {
  box-shadow: var(--shadow-md);
}

.brand-console {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3.8vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(160deg, var(--green-deep) 0%, #0d4f3d 55%, #173f34 100%);
}

.brand-console::after {
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 138, 41, 0.72), rgba(217, 138, 41, 0));
  opacity: 0.8;
  content: "";
}

.brand-console strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
}

.brand-console p {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.82);
}

.console-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.console-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.console-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.console-card span,
.console-card small {
  display: block;
}

.console-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.console-card strong {
  margin: 0.35rem 0 0;
  font-family: inherit;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.console-card small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
}

.status-pill {
  color: var(--green-deep);
  background: rgba(255, 255, 255, 0.92);
}

.section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading .lede {
  max-width: 720px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  padding: 1.5rem;
  border: 1px solid rgba(24, 34, 29, 0.1);
  border-radius: 22px;
  background: var(--card);
  backdrop-filter: blur(10px);
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.metric {
  padding: 1.25rem;
  border-top: 5px solid var(--gold);
  border-radius: 18px;
  background: var(--card-solid);
}

.metric strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: Georgia, serif;
  font-size: 1.45rem;
}

.metric span {
  color: var(--muted);
}

.benchboss-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
}

.phone-mock {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(15, 108, 78, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.5), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(249, 245, 236, 0.96) 100%);
}

.phone-mock::before {
  position: absolute;
  inset: 0;
  border: 10px solid rgba(17, 25, 21, 0.08);
  border-radius: 34px;
  pointer-events: none;
  content: "";
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin: 0.4rem 0 1rem;
  color: var(--green-deep);
  font-weight: 800;
}

.phone-screen {
  padding: 1rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 108, 78, 0.12), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #faf7f1 100%);
}

.phone-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.phone-row {
  padding: 1rem;
  border: 1px solid rgba(24, 34, 29, 0.08);
  border-radius: 20px;
  background: rgba(15, 108, 78, 0.03);
}

.phone-row strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: Georgia, serif;
  font-size: 1.55rem;
}

.phone-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.phone-stack {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.phone-stack .console-card {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f0 100%);
}

.phone-stack .console-card span {
  color: var(--gold);
}

.phone-stack .console-card strong {
  color: var(--ink);
}

.phone-stack .console-card small {
  color: var(--muted);
}

.screenshot-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(15, 108, 78, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 12%, rgba(15, 108, 78, 0.12), transparent 18rem),
    rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.screenshot-card img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(29, 40, 35, 0.14);
}

.screenshot-card-hero {
  align-self: center;
  max-width: 520px;
  margin-left: auto;
}

.screenshot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.screenshot-thumb {
  margin: 0;
  padding: 0.8rem;
  border: 1px solid rgba(24, 34, 29, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
}

.screenshot-thumb img {
  width: 100%;
  border-radius: 18px;
}

.screenshot-thumb figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.screenshot-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.screenshot-section-label {
  margin-top: 2rem;
}

.content-panel {
  max-width: 920px;
  margin: 3rem auto 5rem;
  padding: clamp(1.6rem, 5vw, 3rem);
  border: 1px solid rgba(24, 34, 29, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(217, 138, 41, 0.08), transparent 18rem),
    rgba(255, 253, 248, 0.86);
  backdrop-filter: blur(10px);
}

.content-panel h2 {
  margin-top: 2.2rem;
  font-size: 1.8rem;
}

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

.content-panel h1 {
  max-width: none;
  margin-bottom: 0.9rem;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
}

.contact-list {
  padding-left: 1.25rem;
}

.legal {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 2rem max(1rem, calc((100% - 1180px) / 2));
  border-top: 1px solid rgba(24, 34, 29, 0.1);
  color: var(--muted);
  background: rgba(236, 229, 216, 0.72);
  font-size: 0.88rem;
}

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

@media (max-width: 920px) {
  .hero,
  .benchboss-hero,
  .grid,
  .metrics,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-card-hero {
    margin-left: 0;
    max-width: none;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 5.3rem);
  }
}

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

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero,
  .benchboss-hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .console-grid,
  .phone-rows {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
