:root {
  --bone: #f6fbff;
  --bone-deep: #dff3fb;
  --ink: #06283d;
  --charcoal: #0b3142;
  --night: #031622;
  --wine: #0f6f91;
  --rose: #168aad;
  --mint: #2dd4bf;
  --soft: rgba(246, 251, 255, 0.82);
  --line: rgba(246, 251, 255, 0.24);
  --dark-line: rgba(6, 40, 61, 0.16);
  --shadow: 0 28px 68px rgba(3, 22, 34, 0.34);
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  background: var(--night);
  color: var(--bone);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--night);
  color: var(--bone);
  max-width: 100%;
  min-width: 320px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.6) 0 0.5px, transparent 0.75px),
    radial-gradient(circle at 75% 50%, rgba(255, 255, 255, 0.34) 0 0.5px, transparent 0.75px);
  background-size: 4px 4px, 6px 6px;
  mix-blend-mode: overlay;
  content: "";
}

img,
video,
svg {
  display: block;
}

img,
video {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bone);
  color: var(--ink);
  font-weight: 700;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 22, 34, 0.24);
  backdrop-filter: blur(18px);
  transition: background-color 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(3, 22, 34, 0.82);
}

.nav-shell {
  width: min(100%, 1440px);
  min-height: 66px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Serif", Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: var(--bone);
}

.brand-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 9px;
  filter: drop-shadow(0 10px 22px rgba(3, 22, 34, 0.36));
}

.brand-mark img {
  width: 29px;
  height: 29px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 31px;
  color: rgba(246, 251, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
}

.nav-menu a,
.login-link {
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-menu a:hover,
.login-link:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}

.login-link {
  color: rgba(246, 251, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--bone);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--bone);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  background: var(--bone);
  color: var(--ink);
}

.button-primary {
  width: 100%;
  border: 1px solid rgba(45, 212, 191, 0.48);
  background: var(--mint);
  color: #031622;
  box-shadow: 0 16px 34px rgba(14, 116, 144, 0.18);
}

.button-light {
  margin-top: 30px;
  background: var(--bone);
  color: var(--ink);
}

.hero-sequence {
  position: relative;
  min-height: 96svh;
  isolation: isolate;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-backdrop img,
.hero-backdrop video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.01);
}

.hero-backdrop video {
  z-index: 1;
}

.hero-still {
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 52% 24%, rgba(45, 212, 191, 0.16), transparent 40%),
    linear-gradient(90deg, rgba(3, 22, 34, 0.76), rgba(3, 22, 34, 0.38) 46%, rgba(3, 22, 34, 0.82)),
    linear-gradient(180deg, rgba(3, 22, 34, 0.18), rgba(3, 22, 34, 0.46) 56%, rgba(3, 22, 34, 0.94));
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.1;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 8px 8px;
  mix-blend-mode: overlay;
}

.hero-content {
  width: min(100%, 1180px);
  min-height: 96svh;
  margin: 0 auto;
  padding: 116px 24px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-kicker,
.section-label {
  margin: 0;
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 251, 255, 0.7);
}

.hero-title {
  max-width: 920px;
  margin: 18px 0 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero-title em {
  display: inline-block;
  min-width: 7.2ch;
  font-family: "DM Serif Display", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-align: left;
}

.hero-copy {
  max-width: 665px;
  margin: 36px 0 0;
  color: rgba(246, 251, 255, 0.84);
  font-size: 15.5px;
  line-height: 1.85;
}

.hero-panel {
  width: min(100%, 760px);
  margin-top: 36px;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 22px;
  background: rgba(3, 22, 34, 0.54);
  box-shadow: 0 18px 52px rgba(3, 22, 34, 0.36), inset 0 1px rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.whatsapp-card,
.job-card {
  min-height: 252px;
  border-radius: 17px;
  overflow: hidden;
}

.whatsapp-card {
  display: flex;
  flex-direction: column;
  border: 1px dashed rgba(255, 255, 255, 0.58);
  background: rgba(3, 22, 34, 0.5);
}

.wa-head {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(246, 251, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.wa-head time {
  margin-left: auto;
  color: rgba(246, 251, 255, 0.58);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.wa-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #20b8ac;
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.16);
}

.wa-thread {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding: 15px;
}

.bubble {
  position: relative;
  margin: 0;
  padding: 10px 12px;
  border-radius: 13px;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}

.bubble-in {
  max-width: 82%;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.88);
  color: #06283d;
}

.bubble-out {
  max-width: 88%;
  align-self: flex-end;
  background: rgba(45, 212, 191, 0.2);
  color: #effbff;
}

.attachment {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 9px;
  align-items: center;
  width: 78%;
  margin-left: auto;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 251, 255, 0.88);
  font-size: 11px;
  text-align: left;
}

.attachment small {
  color: rgba(246, 251, 255, 0.54);
  font-size: 10px;
}

.attachment-icon {
  grid-row: span 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: rgba(246, 251, 255, 0.12);
}

.attachment-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--bone);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.job-card {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(246, 251, 255, 0.88);
  color: var(--ink);
  text-align: left;
}

.job-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(6, 40, 61, 0.6);
}

.job-top strong {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.28);
  color: #07566a;
}

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

.job-grid div {
  padding: 10px;
  border: 1px solid rgba(6, 40, 61, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.36);
}

.job-grid dt {
  color: rgba(6, 40, 61, 0.58);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.job-grid dd {
  margin: 3px 0 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 16px;
}

.job-meter {
  height: 9px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(6, 40, 61, 0.12);
}

.job-meter span {
  display: block;
  width: var(--meter);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--mint));
}

.job-card > p {
  margin: 16px 0 0;
  color: rgba(6, 40, 61, 0.7);
  font-size: 11.5px;
  line-height: 1.55;
}

.ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 42px;
  max-width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 22, 34, 0.9);
  backdrop-filter: blur(14px);
  contain: paint;
}

.ticker-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  animation: ticker 34s linear infinite;
}

.ticker span {
  padding: 13px 28px;
  color: rgba(246, 251, 255, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.75);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-dark {
  background: #0b3142;
  color: var(--bone);
}

.section-bone {
  background: var(--bone);
  color: var(--ink);
}

.section-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 96px 24px;
}

.section-heading {
  max-width: 740px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-label.dark {
  color: rgba(6, 40, 61, 0.58);
}

.section-heading h2,
.wall-head h2,
.record-copy h2,
.flow-head h2,
.safety-copy h2,
.founder-copy h2,
.closing-content h2,
.pilot-copy h2 {
  margin: 12px 0 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p:not(.section-label),
.wall-head p:not(.section-label),
.record-copy p,
.safety-copy p,
.founder-copy p,
.closing-content p:not(.section-label) {
  margin: 18px auto 0;
  max-width: 610px;
  color: rgba(246, 251, 255, 0.72);
  font-size: 15px;
  line-height: 1.75;
}

.section-bone .section-heading p:not(.section-label),
.record-copy p,
.founder-copy p {
  color: rgba(6, 40, 61, 0.68);
}

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

.how-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), inset 0 1px rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  text-align: center;
}

.how-visual {
  position: relative;
  height: 172px;
  overflow: hidden;
  border-radius: 14px;
  background: #dff3fb;
}

.how-visual::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, rgba(45, 212, 191, 0.16), transparent 44%), linear-gradient(180deg, transparent, rgba(3, 22, 34, 0.45));
  content: "";
}

.how-visual img,
.how-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05);
}

.how-visual img {
  object-fit: cover;
}

.how-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(3, 22, 34, 0.78);
  color: var(--bone);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.how-number {
  margin: 15px 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.how-card h3,
.industry-card h3 {
  margin: 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.22;
}

.how-card > p:last-child,
.industry-card p {
  max-width: 33ch;
  margin: 8px auto 0;
  color: rgba(246, 251, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.stats-section {
  overflow: hidden;
  padding: 70px 24px;
  background: #0b3142;
  color: var(--bone);
  text-align: center;
}

.stats-section > p {
  margin: 0 auto 30px;
  max-width: 720px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 31px;
  line-height: 1.18;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 230px));
  justify-content: center;
  gap: 18px;
}

.stat-row article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.stat-row strong {
  font-family: "Noto Serif", Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1;
}

.stat-row span {
  margin-top: 10px;
  color: rgba(246, 251, 255, 0.66);
  font-size: 12px;
  line-height: 1.45;
}

.wall-section {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wall-head {
  max-width: 680px;
}

.wall-rail {
  display: flex;
  gap: 18px;
  margin: 44px calc(50% - 50vw) 0;
  padding: 4px max(24px, calc((100vw - 1200px) / 2)) 28px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: max(24px, calc((100vw - 1200px) / 2));
  scroll-snap-type: x proximity;
}

.wall-rail::-webkit-scrollbar {
  height: 8px;
}

.wall-rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.wall-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.38);
}

.wall-card {
  position: relative;
  flex: 0 0 clamp(284px, 28vw, 340px);
  min-height: 438px;
  margin: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(246, 251, 255, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(246, 251, 255, 0.98), rgba(223, 243, 251, 0.94)),
    radial-gradient(circle at 88% 9%, rgba(45, 212, 191, 0.14), transparent 38%);
  color: var(--ink);
  box-shadow: 0 24px 58px rgba(3, 22, 34, 0.22);
  scroll-snap-align: center;
}

.wall-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 40, 61, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 40, 61, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
}

.wall-card-top,
.wall-fields,
.wall-card figcaption,
.wall-card blockquote {
  position: relative;
  z-index: 1;
}

.wall-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wall-sector,
.wall-state {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wall-sector {
  color: rgba(6, 40, 61, 0.58);
}

.wall-state {
  flex: 0 0 auto;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(6, 40, 61, 0.14);
}

.wall-state.is-live {
  background: rgba(45, 212, 191, 0.16);
  color: #07566a;
}

.wall-state.is-queued {
  background: rgba(22, 138, 173, 0.13);
  color: var(--wine);
}

.wall-state.is-watch {
  background: rgba(14, 116, 144, 0.14);
  color: var(--rose);
}

.wall-state.is-done {
  background: rgba(6, 40, 61, 0.1);
  color: var(--ink);
}

.wall-card blockquote {
  min-height: 104px;
  margin: 24px 0 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.16;
  text-wrap: balance;
}

.wall-fields {
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
}

.wall-fields div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 52px;
  padding: 11px 0;
  border-top: 1px solid rgba(6, 40, 61, 0.12);
}

.wall-fields dt {
  color: rgba(6, 40, 61, 0.5);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wall-fields dd {
  margin: 0;
  color: rgba(6, 40, 61, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.wall-card figcaption {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(6, 40, 61, 0.12);
  color: rgba(6, 40, 61, 0.54);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.record-grid,
.safety-grid,
.founder-grid,
.pilot-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  align-items: center;
  gap: 58px;
}

.record-copy {
  max-width: 520px;
}

.founder-grid {
  grid-template-columns: minmax(320px, 1.12fr) minmax(0, 0.88fr);
}

.founder-media {
  position: relative;
  margin: 0;
}

.founder-media::before {
  position: absolute;
  inset: -14px;
  border: 1px solid rgba(6, 40, 61, 0.1);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(22, 138, 173, 0.16), rgba(45, 212, 191, 0.1));
  content: "";
}

.founder-media img {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 853;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 32px 72px rgba(6, 40, 61, 0.16);
}

.founder-copy {
  max-width: 520px;
}

.record-stack {
  position: relative;
  min-height: 520px;
}

.record-phone,
.record-ledger,
.record-invoice,
.safety-panel,
.pilot-form {
  border: 1px solid rgba(6, 40, 61, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 32px 72px rgba(6, 40, 61, 0.16);
}

.record-phone {
  position: absolute;
  top: 22px;
  left: 0;
  width: 52%;
  min-height: 360px;
  padding: 22px 16px;
  background: #052335;
  color: var(--bone);
  transform: rotate(-2.2deg);
}

.mini-top {
  width: 58px;
  height: 5px;
  margin: 0 auto 28px;
  border-radius: 999px;
  background: rgba(246, 251, 255, 0.28);
}

.record-ledger {
  position: absolute;
  top: 86px;
  right: 0;
  width: 62%;
  padding: 22px;
  background: rgba(246, 251, 255, 0.94);
  transform: rotate(1.5deg);
}

.ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(6, 40, 61, 0.12);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ledger-head strong {
  color: var(--rose);
}

.ledger-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.ledger-list p,
.rule-grid p {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  margin: 0;
  align-items: baseline;
}

.ledger-list b,
.rule-grid b {
  color: rgba(6, 40, 61, 0.52);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.ledger-list span,
.rule-grid span {
  color: rgba(6, 40, 61, 0.82);
  font-size: 13px;
}

.record-invoice {
  position: absolute;
  right: 46px;
  bottom: 20px;
  width: 58%;
  padding: 20px;
  background: #0f6f91;
  color: var(--bone);
  transform: rotate(-1.1deg);
}

.record-invoice > span {
  display: block;
  color: rgba(246, 251, 255, 0.64);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.money-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.money-row p {
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.money-row small {
  display: block;
  color: rgba(246, 251, 255, 0.58);
  font-size: 10px;
}

.money-row strong {
  display: block;
  margin-top: 2px;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 20px;
  font-weight: 400;
}

.held {
  margin: 14px 0 0;
  color: var(--mint);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-head {
  max-width: 680px;
}

.flow-board {
  min-width: 0;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  margin-top: 38px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.flow-tabs {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.flow-tabs button {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(3, 22, 34, 0.58);
  color: rgba(246, 251, 255, 0.68);
  text-align: left;
  cursor: pointer;
}

.flow-tabs button.is-active {
  border-color: rgba(45, 212, 191, 0.55);
  background: rgba(45, 212, 191, 0.14);
  color: var(--bone);
}

.stage-card {
  min-width: 0;
  min-height: 320px;
  padding: 32px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(15, 111, 145, 0.82), rgba(3, 22, 34, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stage-kicker {
  margin: 0;
  color: var(--mint);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-card h3 {
  max-width: 640px;
  margin: 14px 0 0;
  font-family: "Noto Serif", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.16;
}

.stage-card p {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(246, 251, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

.stage-card pre {
  max-width: 100%;
  overflow: auto;
  margin: 28px 0 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(246, 251, 255, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.8;
}

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

.industry-card {
  overflow: hidden;
  border: 1px solid rgba(6, 40, 61, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 42px rgba(6, 40, 61, 0.1);
}

.industry-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: #0b3142;
  filter: saturate(0.86) contrast(1.02);
}

.industry-card h3 {
  padding: 22px 22px 0;
}

.industry-card p {
  max-width: none;
  padding: 0 22px 24px;
  color: rgba(6, 40, 61, 0.66);
}

.safety-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
}

.safety-panel {
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--bone);
  box-shadow: var(--shadow);
}

.safety-path {
  display: grid;
  gap: 10px;
}

.safety-path span {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(3, 22, 34, 0.45);
  color: rgba(246, 251, 255, 0.82);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.safety-path span:first-child {
  border-color: rgba(22, 138, 173, 0.65);
  background: rgba(22, 138, 173, 0.18);
}

.rule-grid {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.rule-grid p {
  grid-template-columns: 92px 1fr;
}

.rule-grid b {
  color: rgba(246, 251, 255, 0.52);
}

.rule-grid span {
  color: rgba(246, 251, 255, 0.76);
}

.closing-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--night);
}

.closing-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.74) contrast(1.05);
}

.closing-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(45, 212, 191, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(3, 22, 34, 0.1), rgba(3, 22, 34, 0.94));
}

.closing-content {
  position: relative;
  z-index: 1;
  width: min(100%, 850px);
  padding: 90px 24px 96px;
  text-align: center;
}

.closing-content h2 {
  font-size: 68px;
  line-height: 0.98;
}

.closing-content p:not(.section-label) {
  color: rgba(246, 251, 255, 0.78);
}

.pilot-grid {
  align-items: start;
}

.pilot-copy {
  max-width: 560px;
}

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

.pilot-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(6, 40, 61, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(6, 40, 61, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.pilot-list span {
  color: var(--rose);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
}

.pilot-form {
  display: grid;
  gap: 13px;
  padding: 28px;
  background: #06283d;
  color: var(--bone);
}

.form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.form-head span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(45, 212, 191, 0.12);
}

.form-head p {
  margin: 0;
  color: rgba(246, 251, 255, 0.75);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pilot-form label {
  color: rgba(246, 251, 255, 0.65);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pilot-form input,
.pilot-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--bone);
}

.pilot-form input::placeholder {
  color: rgba(246, 251, 255, 0.34);
}

.pilot-form option {
  background: #06283d;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: rgba(246, 251, 255, 0.5);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--night);
}

.footer-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 46px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(246, 251, 255, 0.62);
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner > a:last-child {
  color: var(--bone);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: grid;
    justify-self: end;
    order: 3;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    grid-column: 1 / -1;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(3, 22, 34, 0.94);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: grid;
  }

  .nav-menu a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 10px;
  }

  .hero-title {
    font-size: 56px;
  }

  .how-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .how-card {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 18px;
    text-align: left;
  }

  .how-card > p:last-child {
    max-width: none;
    margin-left: 0;
  }

  .how-number {
    margin-top: 8px;
  }

  .record-grid,
  .safety-grid,
  .founder-grid,
  .pilot-grid {
    grid-template-columns: 1fr;
  }

  .record-copy,
  .founder-copy,
  .pilot-copy {
    max-width: 720px;
  }

  .record-stack {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    padding: 0 16px;
  }

  .brand {
    font-size: 20px;
  }

  .hero-content {
    justify-content: flex-start;
    padding: 104px 18px 76px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-title em {
    min-width: 0;
    text-align: center;
  }

  .hero-copy {
    margin-top: 30px;
    font-size: 14px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 30px;
    border-radius: 18px;
  }

  .whatsapp-card,
  .job-card {
    min-height: 220px;
  }

  .ticker span {
    padding-inline: 18px;
  }

  .ticker-track {
    position: static;
    width: 100%;
    justify-content: center;
    animation: none;
  }

  .ticker-track span:nth-of-type(n + 3),
  .ticker-track i:nth-of-type(n + 3) {
    display: none;
  }

  .section-inner {
    padding: 72px 18px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .wall-head h2,
  .record-copy h2,
  .flow-head h2,
  .safety-copy h2,
  .founder-copy h2,
  .pilot-copy h2 {
    font-size: 34px;
  }

  .how-card {
    display: block;
    text-align: center;
  }

  .how-card > p:last-child {
    margin-right: auto;
    margin-left: auto;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

  .stat-row article {
    min-height: 138px;
  }

  .wall-head {
    max-width: 620px;
  }

  .wall-rail {
    margin-inline: -18px;
    padding-inline: 18px;
    scroll-padding-inline: 18px;
  }

  .wall-card {
    flex-basis: min(322px, calc(100vw - 54px));
    min-height: 468px;
  }

  .record-stack {
    min-height: 0;
    display: grid;
    gap: 14px;
  }

  .record-phone,
  .record-ledger,
  .record-invoice {
    position: static;
    width: 100%;
    transform: none;
  }

  .flow-board {
    grid-template-columns: 1fr;
  }

  .flow-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stage-card {
    padding: 24px;
  }

  .stage-card pre {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
  }

  .stage-card h3 {
    font-size: 28px;
  }

  .industry-card img {
    height: 190px;
  }

  .founder-media::before {
    inset: -8px;
    border-radius: 20px;
  }

  .closing-hero {
    min-height: 590px;
  }

  .closing-content {
    padding-bottom: 76px;
  }

  .closing-content h2 {
    font-size: 44px;
  }

  .footer-inner {
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 430px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-panel {
    padding: 8px;
  }

  .job-grid,
  .money-row,
  .flow-tabs {
    grid-template-columns: 1fr;
  }

  .ledger-list p,
  .rule-grid p {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
