/* Sistine — landing. Rectangle-style minimal: one full-screen
   centered hero, a whisper of detail below. No frameworks, no JS. */
:root { --ink: #111114; --dim: #66676e; --faint: #9fa0a6; --hair: #ececea; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #fff; color: var(--ink);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ink); text-decoration: none; }

header {
  position: fixed; inset: 0 0 auto; z-index: 10;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 36px; background: rgba(255,255,255,.8); backdrop-filter: blur(12px);
}
.logo { font-weight: 650; font-size: 15px; letter-spacing: -.01em; display: flex; align-items: center; gap: 9px; }
.logo .mark { height: 22px; width: 22px; border-radius: 6px; }
nav a { color: var(--dim); font-size: 14px; margin-left: 26px; }
nav a:hover { color: var(--ink); }

/* Hero = the page */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 90px 24px 60px;
}
.hero img { height: 190px; width: auto; }
.hero h1 {
  margin-top: 6px; font-size: clamp(38px, 5vw, 62px);
  font-weight: 650; letter-spacing: -.025em; line-height: 1.08;
}
.hero p { color: var(--dim); font-size: 19px; max-width: 560px; margin: 18px 0 0; }
.hero .btn {
  display: inline-block; margin-top: 38px; background: var(--ink); color: #fff;
  padding: 14px 34px; border-radius: 12px; font-size: 16px; font-weight: 600;
}
.hero .btn:hover { background: #2b2b30; }
.hero .fine { margin-top: 16px; color: var(--faint); font-size: 13.5px; }

/* Below the fold: whispers */
section { padding: 110px 24px; text-align: center; }
section h2 { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--faint); margin-bottom: 44px; }

.jobs {
  list-style: none; display: grid; grid-template-columns: repeat(4, minmax(180px, 220px));
  gap: 44px 48px; justify-content: center; text-align: left; max-width: 1100px; margin: 0 auto;
}
.jobs b { display: block; font-weight: 650; font-size: 15.5px; margin-bottom: 4px; }
.jobs span { color: var(--dim); font-size: 14.5px; line-height: 1.5; }
@media (max-width: 980px) { .jobs { grid-template-columns: repeat(2, minmax(200px, 260px)); } }
@media (max-width: 520px) { .jobs { grid-template-columns: 1fr; } }

.privline { color: var(--dim); font-size: 18px; max-width: 620px; margin: 0 auto; }
.privline b { color: var(--ink); font-weight: 650; }
.privline .second { margin-top: 14px; font-size: 15px; color: var(--faint); }

.tiers { list-style: none; max-width: 640px; margin: 0 auto; text-align: left; }
.tiers li { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; padding: 15px 0; border-top: 1px solid var(--hair); }
.tiers li:last-child { border-bottom: 1px solid var(--hair); }
.tiers .n { font-weight: 650; min-width: 84px; }
.tiers .d { color: var(--dim); font-size: 15px; flex: 1; }
.tiers .p { font-weight: 650; font-variant-numeric: tabular-nums; }

footer { padding: 40px 24px 60px; text-align: center; color: var(--faint); font-size: 13.5px; }
footer a { color: var(--dim); margin: 0 10px; }
footer a:hover { color: var(--ink); }
footer .c { margin-top: 10px; }

/* Legal pages */
.legal { max-width: 640px; margin: 0 auto; padding: 110px 28px 90px; text-align: left; }
.legal h1 { font-size: 28px; font-weight: 650; letter-spacing: -.02em; margin-bottom: 4px; }
.legal .updated { color: var(--faint); font-size: 13px; margin-bottom: 30px; }
.legal h2 { font-size: 16px; font-weight: 650; margin: 28px 0 6px; }
.legal p, .legal li { color: var(--dim); font-size: 15px; margin-bottom: 10px; }
.legal ul { margin-left: 20px; }
.legal a { text-decoration: underline; }

/* Launch email capture */
.capture { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.capture input[type="email"] {
  width: min(340px, 80vw); padding: 13px 16px; font-size: 15px;
  border: 1px solid var(--hair); border-radius: 12px; background: #fff; color: var(--ink);
}
.capture input[type="email"]:focus { outline: 2px solid var(--ink); outline-offset: 1px; border-color: transparent; }
.capture input[name="website"] { position: absolute; left: -9999px; height: 0; width: 0; border: 0; padding: 0; }
.capture .btn {
  background: var(--ink); color: #fff; border: 0; cursor: pointer;
  padding: 13px 26px; border-radius: 12px; font-size: 15px; font-weight: 600;
}
.capture .btn:hover { background: #2b2b30; }
#capture-note { margin-top: 14px; color: var(--dim); font-size: 14px; min-height: 1em; }
#launch { text-align: center; }
