@font-face {
  font-family: "Cause";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/cause-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Cause";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/cause-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --bg: #1f212b;
  --panel: #262936;
  --panel-hi: #2c3040;
  --line: #343849;
  --line-soft: #2c2f3c;

  --ink: #e9ebf2;
  --body: #b9bdcc;
  --faint: #878ca1;

  --leaf: #bbf0a2;
  --leaf-mid: #7eb454;
  --leaf-dim: #5b8a3c;

  --display:
    "Cause", ui-rounded, "Segoe UI Variable Display", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--leaf);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
p {
  line-height: 1.78;
  color: var(--body);
}

.wrap {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand img {
  width: 2.4rem;
  flex: none;
}
.brand span {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.15;
}

header.site {
  border-bottom: 1px solid var(--line);
  background: rgba(31, 33, 43, 0.86);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
nav a {
  font-size: 0.875rem;
  color: var(--body);
  text-decoration: none;
}
nav a:hover,
nav a[aria-current] {
  color: var(--leaf);
}

.hero {
  padding: 5rem 0 4.5rem;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 52rem) {
  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    padding: 6.5rem 0 5.5rem;
  }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.22;
  margin-bottom: 1.5rem;
}
.hero h1 b {
  font-weight: 600;
  color: var(--leaf);
}
.hero p {
  font-size: 1.0625rem;
  max-width: 46ch;
}
.hero p + p {
  margin-top: 1rem;
}

.hero-solo {
  display: block;
  padding: 4.5rem 0 3.5rem;
}
@media (min-width: 52rem) {
  .hero-solo {
    padding: 5rem 0 3.5rem;
  }
}
.hero-solo h1 {
  max-width: 26ch;
}
.hero-solo p {
  max-width: 54ch;
}

.hero figure {
  position: relative;
  display: grid;
  place-items: center;
  order: -1;
}
@media (min-width: 52rem) {
  .hero figure {
    order: 0;
  }
}
.hero figure::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  width: 118%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(126, 180, 84, 0.3) 0%,
    rgba(126, 180, 84, 0.1) 42%,
    rgba(126, 180, 84, 0) 70%
  );
  pointer-events: none;
}
.hero figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 21rem;
}

section {
  padding: 3.75rem 0;
  border-top: 1px solid var(--line);
}
h2 {
  font:
    600 0.72rem/1 ui-monospace,
    monospace;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1.9rem;
}
h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.012em;
}

.products {
  display: grid;
  gap: 1.25rem;
}

.product {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  transition:
    border-color 0.16s ease,
    background 0.16s ease;
}
.product:hover {
  border-color: var(--leaf-dim);
  background: var(--panel-hi);
}
.product h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
  margin: 0;
}

.product > div:first-child {
  padding: 1.75rem 1.75rem 1.4rem;
}
@media (max-width: 34rem) {
  .product > div:first-child {
    padding: 1.4rem 1.25rem 1.1rem;
  }
}
.product > div:first-child > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.product > div:first-child > div > span {
  font:
    0.64rem/1 ui-monospace,
    monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf-mid);
  border: 1px solid var(--leaf-dim);
  padding: 0.32rem 0.6rem;
  border-radius: 3px;
  white-space: nowrap;
}
.product > div:first-child > p {
  font-size: 1rem;
  max-width: 64ch;
  margin: 0;
}

.product > div:last-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.75rem;
  background: rgba(126, 180, 84, 0.07);
  border-top: 1px solid var(--line);
}
@media (max-width: 34rem) {
  .product > div:last-child {
    padding: 0.9rem 1.25rem;
  }
}
.product > div:last-child > span {
  font-size: 0.9rem;
  color: var(--faint);
}
.product > div:last-child b {
  color: var(--ink);
  font-weight: 600;
}
.product > div:last-child a {
  font-size: 0.88rem;
  text-decoration: none;
  white-space: nowrap;
}
.product > div:last-child a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.product-soon {
  border-style: dashed;
}
.product-soon:hover {
  border-color: var(--line);
  background: var(--panel);
}
.product-soon h3 {
  color: var(--faint);
}
.product-soon p {
  color: var(--faint);
}
.product-soon > div:last-child {
  background: transparent;
}
.product-soon > div:last-child > span {
  font-style: italic;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.89rem;
}
thead th {
  text-align: left;
  font:
    600 0.66rem/1 ui-monospace,
    monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 0 1rem 0.8rem 0;
  border-bottom: 1px solid var(--leaf-dim);
}
td,
tbody th {
  padding: 0.85rem 1rem 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  line-height: 1.7;
  color: var(--body);
  text-align: left;
  font-weight: 400;
}
td:last-child,
th:last-child {
  padding-right: 0;
}
tbody tr:last-child td,
tbody tr:last-child th {
  border-bottom: 0;
}
tbody th {
  color: var(--faint);
  width: 14rem;
}

code {
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  background: #2f3444;
  color: var(--leaf);
  padding: 0.14rem 0.4rem;
  border-radius: 3px;
  white-space: nowrap;
}
mark {
  display: inline-block;
  background: #322c18;
  border: 1px dashed #6f6128;
  color: #e0c874;
  font:
    0.76rem/1.5 ui-monospace,
    monospace;
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
}

.callout {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--leaf-mid);
  border-radius: 4px;
  padding: 1.6rem;
}
.callout h3 {
  margin-bottom: 0.6rem;
  color: var(--leaf);
}
.callout p {
  font-size: 0.95rem;
  max-width: 58ch;
}
.callout p + p {
  margin-top: 0.85rem;
}

.prose {
  max-width: 46rem;
}
.prose h3 {
  margin-top: 2.25rem;
}
.prose p,
.prose li {
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.85;
}
.prose p {
  margin-bottom: 0.9rem;
}
.prose ul {
  padding-left: 1.25rem;
  margin-bottom: 0.9rem;
}
.prose li {
  margin-bottom: 0.35rem;
}
.prose li::marker {
  color: var(--leaf-dim);
}
.prose strong {
  color: var(--ink);
  font-weight: 600;
}
.prose em {
  color: var(--ink);
  font-style: italic;
}

footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 5rem;
  margin-top: 1rem;
}
footer .cols {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}
footer .brand {
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}
footer .brand img {
  width: 1.9rem;
}
footer .brand span {
  font-size: 1.05rem;
}
footer p,
footer li {
  font-size: 0.82rem;
  color: var(--faint);
  line-height: 1.95;
}
footer ul {
  list-style: none;
}
footer a {
  color: var(--body);
  text-decoration: none;
}
footer a:hover {
  color: var(--leaf);
}

footer .wrap > p {
  margin-top: 0.75rem;
  max-width: 46rem;
}
