:root {
  --ink: #171513;
  --graphite: #24211e;
  --rack: #302c27;
  --paper: #f5f4ef;
  --paper-strong: #fffdf7;
  --steel: #d7d0c3;
  --steel-dark: #9d9588;
  --muted: #6f685f;
  --orange: #ff5a00;
  --orange-dark: #d64b00;
  --green: #587a54;
  --line: rgba(23, 21, 19, 0.14);
  --line-dark: rgba(245, 244, 239, 0.18);
  --shadow: 0 18px 44px rgba(28, 24, 20, 0.12);
  --radius: 6px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.035) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(180deg, rgba(23, 21, 19, 0.03) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--paper);
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  color: var(--paper);
  background: var(--orange);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(830px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line-dark);
  color: var(--paper);
  background: rgba(23, 21, 19, 0.96);
  backdrop-filter: blur(12px);
}

.nav-bar {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  line-height: 1;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.brand-name {
  font-size: 1.15rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border-radius: var(--radius);
  padding: 0 12px;
  color: rgba(245, 244, 239, 0.76);
  font-size: 0.91rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.nav-cta {
  margin-left: 8px;
  color: var(--ink) !important;
  background: var(--orange) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: #ff6d1f !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: var(--paper);
  background: transparent;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 58px 0;
}

.section.dark {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--ink);
}

.section-title {
  max-width: 780px;
  margin: 0 0 34px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-family: "JetBrains Mono", "Cascadia Code", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: 5rem;
  line-height: 0.95;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.45rem;
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.dark p,
.hero p,
.page-hero p,
.cta-band p {
  color: rgba(245, 244, 239, 0.74);
}

.lead {
  max-width: 700px;
  font-size: 1.18rem;
}

.mono {
  font-family: "JetBrains Mono", "Cascadia Code", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 90, 0, 0.34);
  outline-offset: 3px;
}

.btn-primary {
  color: var(--ink);
  background: var(--orange);
}

.btn-primary:hover {
  background: #ff701f;
}

.btn-dark {
  color: var(--paper);
  background: var(--ink);
}

.btn-dark:hover {
  background: var(--graphite);
}

.btn-ghost {
  color: var(--paper);
  border-color: rgba(245, 244, 239, 0.28);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--ink);
  background: rgba(23, 21, 19, 0.04);
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 21, 19, 0.98) 0%, rgba(23, 21, 19, 0.82) 44%, rgba(23, 21, 19, 0.2) 100%),
    linear-gradient(180deg, rgba(23, 21, 19, 0.04), rgba(23, 21, 19, 0.74));
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  padding: 86px 0 74px;
}

.hero-copy {
  width: min(760px, 100%);
  max-width: 760px;
  min-width: 0;
}

.hero-kicker {
  max-width: 100%;
  color: rgba(245, 244, 239, 0.74);
  font-family: "JetBrains Mono", "Cascadia Code", ui-monospace, monospace;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero-statement {
  margin: 0 0 28px;
  max-width: 640px;
  font-size: 1.34rem;
}

.hero-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-specs span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(245, 244, 239, 0.18);
  border-radius: var(--radius);
  padding: 0 12px;
  color: rgba(245, 244, 239, 0.82);
  background: rgba(255, 255, 255, 0.05);
  font-family: "JetBrains Mono", "Cascadia Code", ui-monospace, monospace;
  font-size: 0.82rem;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: auto;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  opacity: 0.95;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 42px 42px,
    var(--ink);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto -12% -58% 30%;
  height: 260px;
  border: 1px solid rgba(255, 90, 0, 0.28);
  transform: rotate(-5deg);
}

.page-hero .container {
  position: relative;
  z-index: 1;
  padding: 86px 0 68px;
}

.page-hero h1 {
  margin-bottom: 14px;
  font-size: 3.6rem;
}

.page-hero p {
  max-width: 690px;
  font-size: 1.12rem;
}

.stat-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.82);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  min-height: 142px;
  border-left: 1px solid var(--line);
  padding: 26px 22px;
}

.stat:last-child {
  border-right: 1px solid var(--line);
}

.stat strong {
  display: block;
  color: var(--orange);
  font-size: 2.35rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

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

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

.feature,
.quote,
.pricing-card,
.spec-card,
.founder-card,
.number-card,
.process-step,
.note-panel,
.form-panel,
.calc-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.84);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}

.feature,
.quote,
.spec-card,
.founder-card,
.number-card,
.note-panel {
  padding: 24px;
}

.feature {
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
}

.feature p,
.spec-card p,
.founder-card p,
.number-card p,
.note-panel p,
.calc-panel p,
.form-panel p {
  color: var(--muted);
}

.feature p,
.spec-card p,
.founder-card p,
.note-panel p {
  margin-bottom: 0;
}

.feature h2,
.feature h3,
.pricing-card h2,
.pricing-card h3,
.spec-card h2,
.spec-card h3,
.founder-card h2,
.founder-card h3,
.number-card h2,
.number-card h3,
.process-step h2,
.process-step h3,
.note-panel h2,
.note-panel h3,
.calc-panel h2,
.calc-panel h3,
.form-panel h2,
.form-panel h3 {
  color: var(--ink);
}

.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--muted);
  font-family: "JetBrains Mono", "Cascadia Code", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mini-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
}

.quote {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  min-height: 100%;
  padding: 30px;
  background: var(--paper-strong);
}

.quote blockquote {
  position: relative;
  margin: 0;
  padding-top: 34px;
  color: var(--ink);
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.quote blockquote::before {
  content: "“";
  position: absolute;
  top: -2px;
  left: 0;
  color: var(--orange);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.quote cite {
  display: block;
  margin-top: 0;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.quote cite span {
  display: block;
  margin-top: 4px;
  color: var(--steel-dark);
  font-weight: 600;
}

.beta-page {
  color: var(--beta-ink, #ecfffa);
  background:
    linear-gradient(90deg, rgba(87, 241, 197, 0.045) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(180deg, rgba(87, 241, 197, 0.045) 1px, transparent 1px) 0 0 / 36px 36px,
    #071110;
}

.beta-page .site-header {
  color: var(--beta-ink, #ecfffa);
  border-bottom-color: rgba(87, 241, 197, 0.16);
  background: rgba(7, 17, 16, 0.96);
}

.beta-page .site-nav a {
  color: rgba(236, 255, 250, 0.78);
}

.beta-page .site-nav a:hover,
.beta-page .site-nav a:focus-visible,
.beta-page .site-nav a[aria-current="page"] {
  color: var(--beta-ink, #ecfffa);
  background: rgba(87, 241, 197, 0.08);
}

.beta-page .nav-cta {
  color: #071110 !important;
  background: var(--beta-accent, #57f1c5) !important;
}

.beta-page .nav-cta:hover,
.beta-page .nav-cta:focus-visible {
  background: #86f7d0 !important;
}

.beta-hero {
  padding: 88px 0 74px;
}

.beta-hero .container,
.beta-login-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.beta-hero h1,
.beta-login-page h1 {
  margin-bottom: 18px;
  color: var(--beta-ink, #ecfffa);
  font-size: 4.15rem;
}

.beta-page p {
  color: rgba(236, 255, 250, 0.72);
}

.beta-lead {
  max-width: 720px;
  color: rgba(236, 255, 250, 0.84);
  font-size: 1.16rem;
}

.beta-story {
  max-width: 680px;
  color: rgba(236, 255, 250, 0.66);
}

.beta-panel {
  border: 1px solid rgba(87, 241, 197, 0.18);
  border-radius: var(--radius);
  padding: 26px;
  background: rgba(10, 20, 19, 0.88);
  box-shadow: var(--shadow);
}

.beta-panel p {
  margin-bottom: 0;
  color: rgba(236, 255, 250, 0.68);
}

.beta-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.beta-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  color: var(--beta-ink, #ecfffa);
}

.beta-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--beta-accent, #57f1c5);
  box-shadow: 0 0 0 4px rgba(87, 241, 197, 0.08);
}

.beta-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.beta-chip-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(87, 241, 197, 0.18);
  border-radius: 999px;
  color: var(--beta-ink, #ecfffa);
  background: rgba(87, 241, 197, 0.06);
  font-size: 0.84rem;
  font-weight: 700;
}

.beta-page .section.dark {
  color: var(--beta-ink, #ecfffa);
  background:
    linear-gradient(90deg, rgba(87, 241, 197, 0.05) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(180deg, rgba(87, 241, 197, 0.04) 1px, transparent 1px) 0 0 / 36px 36px,
    #091412;
}

.beta-page .section.dark .split {
  align-items: stretch;
}

.beta-page .section.dark .split > * {
  height: 100%;
}

.beta-page .section.dark p,
.beta-page .section.dark .lead {
  color: rgba(236, 255, 250, 0.72);
}

.beta-page .beta-section {
  color: var(--beta-ink, #ecfffa);
  background: rgba(7, 17, 16, 0.72);
}

.beta-page .beta-section p,
.beta-page .beta-section .lead {
  color: rgba(236, 255, 250, 0.72);
}

.beta-page .feature,
.beta-page .note-panel {
  color: var(--beta-ink, #ecfffa);
  border-color: rgba(87, 241, 197, 0.16);
  background: rgba(10, 20, 19, 0.78);
}

.beta-page .feature::before {
  background: linear-gradient(180deg, var(--beta-accent, #57f1c5), #89d9ff);
}

.beta-page .feature h2,
.beta-page .feature h3,
.beta-page .note-panel h2,
.beta-page .note-panel h3 {
  color: var(--beta-ink, #ecfffa);
}

.beta-page .feature p,
.beta-page .note-panel p {
  color: rgba(236, 255, 250, 0.68);
}

.beta-page .mini-label {
  color: rgba(236, 255, 250, 0.68);
}

.beta-page .mini-label::before {
  background: var(--beta-accent, #57f1c5);
}

.beta-page .field label {
  color: var(--beta-ink, #ecfffa);
}

.beta-page .field input,
.beta-page .field textarea,
.beta-page .field select {
  border-color: rgba(87, 241, 197, 0.18);
  color: var(--beta-ink, #ecfffa);
  background: rgba(7, 17, 16, 0.9);
}

.beta-page .field input::placeholder,
.beta-page .field textarea::placeholder {
  color: rgba(236, 255, 250, 0.42);
}

.beta-page .field small,
.beta-page .form-status {
  color: rgba(236, 255, 250, 0.62);
}

.beta-page .field input:focus,
.beta-page .field textarea:focus,
.beta-page .field select:focus {
  border-color: var(--beta-accent, #57f1c5);
  outline: 3px solid rgba(87, 241, 197, 0.18);
}

.beta-page .form-status strong {
  color: var(--beta-ink, #ecfffa);
}

.beta-page .full-width {
  width: 100%;
}

.beta-page .button-row .btn-ghost {
  color: var(--beta-ink, #ecfffa);
  border-color: rgba(236, 255, 250, 0.18);
}

.beta-page .button-row .btn-ghost:hover,
.beta-page .button-row .btn-ghost:focus-visible {
  border-color: var(--beta-ink, #ecfffa);
  background: rgba(255, 255, 255, 0.05);
}

.beta-page .beta-login-form {
  align-self: start;
}

.beta-login-page .beta-hero {
  padding-top: 96px;
  padding-bottom: 54px;
}

.beta-login-page .beta-login-grid {
  align-items: center;
}

.beta-login-page .beta-panel {
  max-width: 640px;
}

.beta-invite-page .beta-hero {
  padding-bottom: 52px;
}

.beta-invite-page .invite-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 30px;
  align-items: start;
}

.beta-invite-page .invite-layout > * {
  min-width: 0;
}

.beta-invite-page .beta-lead,
.beta-invite-page .beta-story {
  max-width: 62ch;
}

.beta-invite-page .invite-panel {
  margin-top: 22px;
  background: linear-gradient(180deg, rgba(87, 241, 197, 0.07), rgba(10, 20, 19, 0.92));
}

.beta-invite-page .invite-form {
  align-self: start;
}

.beta-invite-page .form-panel {
  border-color: rgba(87, 241, 197, 0.16);
  color: var(--beta-ink, #ecfffa);
  background: rgba(10, 20, 19, 0.9);
  box-shadow: var(--shadow);
}

.beta-invite-page .form-panel h2,
.beta-invite-page .form-panel h3 {
  color: var(--beta-ink, #ecfffa);
}

.beta-invite-page .invite-form p {
  max-width: 56ch;
}

.beta-invite-page .invite-form .form-status {
  max-width: 46ch;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

.faq-list summary:focus-visible {
  outline: 3px solid rgba(255, 90, 0, 0.24);
  outline-offset: 3px;
}

.faq-list p {
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 0 20px 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split > * {
  min-width: 0;
}

.image-frame {
  position: relative;
  display: block;
  width: 100%;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 21, 19, 0.16);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(23, 21, 19, 0.02), rgba(23, 21, 19, 0.12)),
    linear-gradient(90deg, rgba(255, 90, 0, 0.08), transparent 28%);
  mix-blend-mode: multiply;
}

.site-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

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

.photo-grid .image-frame {
  min-height: 300px;
  aspect-ratio: 4 / 3;
}

.receiving-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
  max-width: 100%;
}

.receiving-media .image-frame {
  min-width: 0;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.receiving-media .image-frame + .image-frame {
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.cta-band {
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(255, 90, 0, 0.92), rgba(255, 90, 0, 0.74)),
    var(--orange);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px 0;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 8px;
  color: var(--ink);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(23, 21, 19, 0.76);
}

.cta-band .btn {
  flex: 0 0 auto;
}

.site-footer {
  color: rgba(245, 244, 239, 0.72);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 28px;
  padding: 48px 0;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(245, 244, 239, 0.64);
}

.footer-copy {
  margin-top: 16px;
}

.note-gap {
  margin-top: 18px;
}

.top-gap {
  margin-top: 22px;
}

.full-width {
  width: 100%;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange);
  outline: none;
}

.footer-title {
  margin-bottom: 12px;
  color: var(--paper);
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 18px 0;
  color: rgba(245, 244, 239, 0.48);
  font-size: 0.85rem;
}

.process-list {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 24px;
}

.step-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--orange);
  font-family: "JetBrains Mono", "Cascadia Code", ui-monospace, monospace;
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--green);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 28px;
}

.pricing-card.featured {
  border-color: rgba(255, 90, 0, 0.68);
  box-shadow: var(--shadow);
}

.pricing-card .price {
  margin: 16px 0 8px;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-card .price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(23, 21, 19, 0.08);
  padding-bottom: 9px;
  color: var(--muted);
  font-size: 0.94rem;
}

.pricing-card li strong {
  color: var(--ink);
}

.pricing-card .btn {
  margin-top: auto;
}

.offer-banner {
  margin-top: 26px;
  border: 1px solid rgba(255, 90, 0, 0.38);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--paper);
  background: var(--ink);
}

.offer-banner h3 {
  color: var(--paper);
}

.offer-banner p {
  margin-bottom: 0;
  color: rgba(245, 244, 239, 0.76);
}

.calc-panel,
.form-panel {
  padding: 28px;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.calc-controls {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 800;
}

.field small {
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(23, 21, 19, 0.18);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper-strong);
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 90, 0, 0.18);
}

.range-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

input[type="range"] {
  accent-color: var(--orange);
}

.calc-total {
  border-radius: var(--radius);
  padding: 24px;
  color: var(--paper);
  background: var(--ink);
}

.calc-total strong {
  display: block;
  color: var(--orange);
  font-size: 3.2rem;
  line-height: 1;
}

.calc-breakdown {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.calc-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line-dark);
  padding-top: 10px;
  color: rgba(245, 244, 239, 0.72);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.spec-card {
  min-height: 230px;
}

.spec-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-family: "JetBrains Mono", "Cascadia Code", ui-monospace, monospace;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.number-card {
  min-height: 158px;
}

.number-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 2.1rem;
  line-height: 1;
}

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

.founder-card {
  padding: 0;
  overflow: hidden;
}

.founder-card .image-frame {
  min-height: 260px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.founder-body {
  padding: 24px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.timeline-item time {
  color: var(--orange);
  font-family: "JetBrains Mono", "Cascadia Code", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline-item p {
  margin-bottom: 0;
}

.address-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper-strong);
}

.address-panel address {
  color: var(--ink);
  font-style: normal;
  line-height: 1.7;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-status {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status strong {
  color: var(--ink);
}

.terminal {
  border: 1px solid rgba(245, 244, 239, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--paper);
  background: #0f0e0d;
}

.terminal-bar {
  display: flex;
  gap: 7px;
  border-bottom: 1px solid rgba(245, 244, 239, 0.12);
  padding: 12px;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--steel-dark);
}

.terminal-dot:first-child {
  background: var(--orange);
}

.terminal pre {
  overflow-x: auto;
  margin: 0;
  padding: 18px;
  color: rgba(245, 244, 239, 0.82);
  font-size: 0.88rem;
}

@media (max-width: 1060px) {
  h1 {
    font-size: 4.1rem;
  }

  .spec-grid,
  .facility-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-grid,
  .founder-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 880px) {
  body.nav-open .site-nav {
    display: grid;
  }

  .nav-toggle {
    display: inline-flex !important;
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 220;
    flex: 0 0 auto;
    color: var(--ink);
    border-color: var(--orange);
    background: var(--orange);
  }

  .nav-bar {
    position: relative;
    padding-right: 58px;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto 0;
    display: none;
    gap: 0;
    border-bottom: 1px solid var(--line-dark);
    padding: 14px 20px 22px;
    background: var(--ink);
  }

  .site-nav a {
    min-height: 48px;
    border-radius: 0;
    border-bottom: 1px solid rgba(245, 244, 239, 0.09);
  }

  .nav-cta {
    margin: 14px 0 0;
    justify-content: center;
    border-radius: var(--radius) !important;
  }

  .hero {
    min-height: 610px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(23, 21, 19, 0.88), rgba(23, 21, 19, 0.62));
  }

  .hero .container {
    align-items: end;
  }

  .hero-copy,
  .hero-statement,
  .hero-kicker {
    max-width: 100%;
  }

  h1 {
    font-size: 3.45rem;
  }

  .page-hero h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .stats-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .split.reverse,
  .beta-invite-page .invite-layout,
  .beta-hero .container,
  .beta-login-grid,
  .calc-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .beta-invite-page .beta-lead,
  .beta-invite-page .beta-story {
    max-width: 100%;
  }

  .stats-grid {
    border-top: 1px solid var(--line);
  }

  .stat,
  .stat:last-child {
    min-height: 118px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .cta-band .container {
    display: grid;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(var(--max), calc(100% - 28px));
  }

  .section {
    padding: 64px 0;
  }

  .nav-bar {
    min-height: 66px;
  }

  .site-nav {
    inset: 66px 0 auto 0;
  }

  .brand-name {
    font-size: 1.02rem;
  }

  h1 {
    font-size: 2.72rem;
  }

  .page-hero h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .lead,
  .hero-statement {
    font-size: 1.04rem;
  }

  .hero {
    min-height: 580px;
  }

  .hero .container,
  .page-hero .container {
    padding: 58px 0;
  }

  .hero-kicker {
    max-width: 320px;
  }

  .hero-statement {
    max-width: 340px;
  }

  .hero-specs {
    max-width: 340px;
  }

  .beta-hero {
    padding: 58px 0 60px;
  }

  .beta-hero h1,
  .beta-login-page h1 {
    font-size: 2.75rem;
  }

  .stat strong {
    font-size: 2rem;
  }

  .facility-metrics,
  .spec-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .image-frame {
    min-height: 310px;
  }

  .quote blockquote {
    font-size: 1.17rem;
  }

  .calc-total strong {
    font-size: 2.55rem;
  }
}
