/* Generated from packages/server/src/public/styles.ts — do not edit by hand. */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/public/fonts/ibm-plex-sans-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/public/fonts/ibm-plex-sans-latin-600-normal.woff2') format('woff2');
}

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

:root {
  color-scheme: light;
  --ink: #1C2B33;
  --muted: #5E6B73;
  --paper: #F5F5F3;
  --surface: #FFFFFF;
  --line: #E4E7E7;
  --border: #D9DDDE;
  --accent: #20606F;
  --accent-hover: #184C59;
  --accent-tint: #E8F0F2;
  --on-accent: #FFFFFF;
  --focus: #E4EEF0;
}

html { -webkit-text-size-adjust: 100% }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'IBM Plex Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
}

.wrap { max-width: 1040px; margin: 0 auto; padding: 0 16px }

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

a { color: var(--accent) }
a:hover { color: var(--accent-hover) }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ------------------------------------------------------------------ header, footer */

.site-head {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
}
.wordmark {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  min-height: 44px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.site-foot {
  border-top: 1px solid var(--line);
  background: var(--surface);
  margin-top: 48px;
  padding: 28px 0;
  font-size: 15px;
  color: var(--muted);
}
.site-foot ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin: 0 0 12px;
  padding: 0;
}
.site-foot li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 600;
  text-decoration: none;
}
.site-foot p { margin: 0 0 4px }

/* -------------------------------------------------------------------------- hero */

.hero { padding: 36px 0 28px }
.hero h1 {
  font-size: clamp(30px, 6.4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 12px 0 12px;
  /* wide enough that the headline is never narrower than the lead below it */
  max-width: 20ch;
}
.hero .lead {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 58ch;
}

.status {
  display: inline-block;
  background: var(--accent-tint);
  color: var(--accent);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
}

.shot {
  margin: 28px 0 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(28, 43, 51, 0.04);
  overflow: hidden;
  background: var(--surface);
}
.shot img { width: 100% }
.shot figcaption {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 12px;
  border-top: 1px solid var(--line);
}

/* -------------------------------------------------------------------------- form */

.signup { max-width: 30rem }
.signup form { display: flex; flex-wrap: wrap; gap: 8px }
.signup label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  width: 100%;
}
.signup input[type=email] {
  flex: 1 1 14rem;
  min-height: 44px;
  padding: 0 12px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.signup input[type=email]:focus-visible {
  border-color: var(--accent);
  outline: 3px solid var(--focus);
  outline-offset: 0;
}
.signup button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 20px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--on-accent);
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 6px;
  cursor: pointer;
}
.signup button:hover { background: var(--accent-hover); border-color: var(--accent-hover) }
.consent {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin: 12px 0 0;
}
/* the Brevo honeypot: hidden without an inline style, which the CSP forbids */
.trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden }

.banner {
  background: var(--accent-tint);
  border: 1px solid var(--accent);
  border-radius: 8px;
  color: var(--accent);
  font-weight: 600;
  padding: 12px 16px;
  margin: 20px 0 0;
}

/* ---------------------------------------------------------------------- sections */

.section { padding: 28px 0; border-top: 1px solid var(--line) }
.section h2 {
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.section p { margin: 0; max-width: 62ch; color: var(--muted) }
.section .shot { margin-top: 20px }

.close { text-align: left }
.close .signup { margin-top: 16px }

/* ------------------------------------------------------- the FR-715 workshop strip */

.strip { margin: 20px 0 0; overflow-x: auto }
.strip svg { display: block; min-width: 34rem }
.strip figcaption { font-size: 14px; color: var(--muted); margin-top: 8px }

/* -------------------------------------------------------------------- legal pages */

.doc { padding: 28px 0 }
.doc h1 { font-size: clamp(26px, 4.6vw, 36px); font-weight: 600; margin: 0 0 16px }
.doc h2 { font-size: 20px; font-weight: 600; margin: 28px 0 8px }
.doc p, .doc li { max-width: 68ch; color: var(--muted) }
.doc p { margin: 0 0 12px }
.doc ul { margin: 0 0 12px; padding-left: 20px }
.doc li { margin: 0 0 4px }
.doc .placeholder { color: var(--ink); font-weight: 600 }
.doc .note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 0 0 20px;
}

@media (min-width: 768px) {
  .wrap { padding: 0 28px }
  .hero { padding: 48px 0 36px }
  .section { padding: 36px 0 }
}
