@charset "UTF-8";

/* Redwood & Gold: assets/css/redwood.config.js and redwood.css. */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/fonts/fraunces.woff2) format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url(/fonts/inter.woff2) format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url(/fonts/jetbrains-mono.woff2) format("woff2");
}

:root {
  color-scheme: light dark;
  --paper: #f3f1ea;
  --ink: #272522;
  --muted: #6c665b;
  --line: #e6e2d7;
  --panel: #faf9f6;
  --subtle: #f3f1ea;
  --brand: #173f2f;
  --accent: #1b4f39;
  --button: #1b4f39;
  --button-hover: #1f6446;
  --gold: #e0a733;
  --display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-family:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #081a13;
    --ink: #f3f1ea;
    --muted: #aca596;
    --line: #143327;
    --panel: #143327;
    --subtle: #081a13;
    --brand: #faf9f6;
    --accent: #79bd99;
    --button: #2d7d59;
    --button-hover: #4b9c76;
  }
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:hover {
  text-decoration: underline;
}
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
}
p {
  line-height: 1.65;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.wrap {
  width: min(1180px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  padding: 12px;
  background: var(--panel);
  z-index: 2;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 30px;
  border-bottom: 1px solid var(--line);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  font-variation-settings:
    "SOFT" 30,
    "WONK" 1,
    "opsz" 40;
  letter-spacing: -0.01em;
  color: var(--brand);
  text-decoration: none;
}
.brand-logo {
  display: block;
}
nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
nav a {
  text-decoration: none;
}
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding-block: 64px;
}
.hero-copy {
  text-align: center;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
h1,
h2 {
  font-family: var(--display);
  font-variation-settings:
    "SOFT" 30,
    "WONK" 1,
    "opsz" 40;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.07;
}
h1 {
  font-size: clamp(48px, 5vw, 72px);
  margin-block: 26px;
}
h1 em {
  color: var(--accent);
  font-style: normal;
}
.intro {
  max-width: 650px;
  margin-inline: auto;
  font-size: 18px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-block: 28px 16px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: var(--button);
  color: #faf9f6;
  padding: 16px 21px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.button:hover {
  background: var(--button-hover);
}
.text-link {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.small-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0;
}
.product-screenshot {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 2px #0000000d;
  overflow: hidden;
}
.product-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}
figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--subtle);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}
.workflow {
  padding-block: 64px 94px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 30px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  column-gap: 100px;
  align-items: end;
}
.section-heading .eyebrow {
  grid-column: 1 / -1;
}
.section-heading h2,
.ownership h2,
.start h2 {
  font-size: 44px;
  margin-bottom: 0;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 0;
  max-width: 350px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.steps article {
  border-top: 1px solid var(--line);
  padding-top: 23px;
}
.step-number {
  font-family: var(--mono);
  color: var(--muted);
  font-size: 11px;
}
.steps h3 {
  font-size: 20px;
  letter-spacing: -0.4px;
  margin-block: 23px 12px;
}
.steps p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}
.ownership {
  background: #143327;
  color: #f3f1ea;
  padding-block: 64px;
}
.ownership-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
}
.ownership .eyebrow {
  color: var(--gold);
}
.ownership h2 {
  font-size: 42px;
  margin-top: 24px;
}
.ownership-details p {
  font-size: 15px;
  color: #e6e2d7;
}
.ownership-details .boundary-note {
  font-size: 12px;
  color: #aca596;
  border-top: 1px solid #1b4f39;
  padding-top: 18px;
  margin-bottom: 0;
}
.start {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
  padding-block: 90px;
  scroll-margin-top: 30px;
}
.start h2 {
  margin-block: 20px;
}
.start > div > p:last-child {
  max-width: 425px;
  font-size: 15px;
  color: var(--muted);
}
.start-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 22px;
}
.start .start-links .small-note {
  font-size: 12px;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-block: 30px;
}
footer .wordmark {
  font-size: 24px;
}
footer > a:last-child {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
footer > a:last-child {
  text-decoration: none;
}

@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .hero {
    gap: 32px;
  }
  .section-heading,
  .ownership-inner,
  .start {
    gap: 40px;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    padding-block: 22px;
  }
  .wordmark {
    font-size: 25px;
  }
  nav {
    gap: 18px;
    font-size: 12px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 48px 42px;
  }
  h1 {
    font-size: clamp(46px, 10vw, 64px);
  }
  .intro {
    font-size: 17px;
  }
  .hero-actions {
    gap: 20px;
  }
  .product-screenshot {
    width: 100%;
    max-width: 500px;
    justify-self: center;
  }
  .workflow {
    padding-block: 52px;
  }
  .section-heading,
  .steps,
  .ownership-inner,
  .start {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .section-heading {
    gap: 18px;
  }
  .section-heading .eyebrow {
    margin-bottom: 0;
  }
  .section-heading h2,
  .ownership h2,
  .start h2 {
    font-size: 37px;
  }
  .steps {
    margin-top: 30px;
  }
  .steps h3 {
    margin-top: 18px;
  }
  .ownership {
    padding-block: 45px;
  }
  .start {
    padding-block: 52px;
  }
  .start-links {
    gap: 20px;
  }
  footer {
    flex-wrap: wrap;
    padding-block: 24px;
  }
}
