@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #edf8ff;
  --bg-deep: #d8efff;
  --panel: rgba(255, 255, 255, 0.94);
  --panel-strong: rgba(255, 255, 255, 0.98);
  --panel-soft: rgba(236, 247, 255, 0.92);
  --line: rgba(45, 96, 156, 0.18);
  --line-strong: rgba(29, 74, 132, 0.34);
  --text: #173563;
  --muted: #5c7aa0;
  --muted-strong: #27497e;
  --sky: #7ecff8;
  --sky-deep: #3da8eb;
  --navy: #173a72;
  --navy-soft: #35588f;
  --chrome: #fdfefe;
  --plate-rim: #d2e4f0;
  --shadow: 0 24px 80px rgba(31, 79, 138, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --page-width: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 12% 10%, rgba(126, 207, 248, 0.55), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.86), transparent 30%),
    linear-gradient(180deg, #7acbf7 0%, #d0ecff 16%, #eef8ff 40%, #f9fcff 100%);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.46) 0, rgba(255, 255, 255, 0) 22%),
    repeating-linear-gradient(
      110deg,
      rgba(255, 255, 255, 0.18) 0 1px,
      transparent 1px 18px
    );
  pointer-events: none;
  opacity: 0.22;
}

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

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

button {
  border: 0;
  cursor: pointer;
}

.ambient {
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(92px);
  opacity: 0.34;
  pointer-events: none;
}

.ambient-left {
  top: -10rem;
  left: -10rem;
  background: rgba(126, 207, 248, 0.45);
}

.ambient-right {
  top: 3rem;
  right: -8rem;
  background: rgba(255, 255, 255, 0.7);
}

.construction-page {
  display: grid;
  place-items: center;
}

.construction-main {
  width: min(820px, calc(100% - 2rem));
  padding: 3.4rem 1.5rem 2.6rem;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 34px;
  border: 4px solid var(--plate-rim);
  background:
    linear-gradient(180deg, rgba(125, 208, 248, 0.95) 0%, rgba(212, 239, 255, 0.98) 22%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow:
    inset 0 0 0 2px rgba(24, 58, 109, 0.14),
    inset 0 22px 32px rgba(255, 255, 255, 0.5),
    var(--shadow);
}

.construction-main::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4.9rem;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(180deg, rgba(55, 168, 235, 0.65), rgba(126, 207, 248, 0.12));
}

.construction-plate-top {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.construction-mark {
  width: 3.15rem;
  height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(180deg, #7fd1f9 0%, #ecf8ff 58%, #ffffff 100%);
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(23, 58, 114, 0.18),
    0 12px 28px rgba(32, 83, 145, 0.12);
  color: var(--navy);
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.construction-kicker,
.kicker,
.section-tag {
  margin: 0;
  color: var(--navy-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.construction-title,
.hero-title,
.section-title,
h2,
h3 {
  margin: 0;
  font-family: 'Barlow Semi Condensed', sans-serif;
  letter-spacing: 0.01em;
}

.construction-title {
  margin-top: 1.15rem;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.94;
  color: var(--navy);
  position: relative;
  z-index: 1;
}

.construction-note {
  margin: 1rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

.construction-rule {
  position: relative;
  z-index: 1;
  width: min(11rem, 34%);
  height: 2px;
  margin: 1.5rem auto 1.15rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(23, 58, 114, 0.52), transparent);
}

.construction-meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.construction-meta span {
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.beta-shell {
  position: relative;
}

.site-header,
.page-frame {
  width: var(--page-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  padding: 1.15rem 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(180deg, #7fd1f9 0%, #ecf8ff 58%, #ffffff 100%);
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(23, 58, 114, 0.18),
    0 18px 40px rgba(32, 83, 145, 0.14);
  color: var(--navy);
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.02rem;
  color: var(--navy);
}

.brand-copy small,
.hero-summary,
.section-copy p,
.service-item p,
.form-intro p,
.helper-text,
.page-footer,
.record-meta,
.empty-state {
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.beta-nav {
  justify-content: flex-end;
}

.private-pill,
.header-link,
.hero-metadata span,
.stat-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.78);
}

.private-pill,
.header-link {
  padding: 0.7rem 1rem;
  color: var(--muted-strong);
}

.page-frame {
  padding: 1.35rem 0 4rem;
}

.beta-home {
  display: grid;
  gap: 0;
}

.hero-panel,
.content-strip,
.split-band,
.callout-band,
.form-shell,
.auth-shell,
.record-panel {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--plate-rim);
  background:
    linear-gradient(180deg, rgba(127, 209, 249, 0.46) 0%, rgba(239, 249, 255, 0.94) 20%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(23, 58, 114, 0.12),
    inset 0 22px 30px rgba(255, 255, 255, 0.5),
    var(--shadow);
}

.hero-panel::before,
.content-strip::before,
.split-band::before,
.callout-band::before,
.form-shell::before,
.auth-shell::before,
.record-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3.4rem;
  background: linear-gradient(180deg, rgba(61, 168, 235, 0.58), rgba(126, 207, 248, 0.06));
  pointer-events: none;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  gap: 2rem;
  padding: 2.2rem;
  border-radius: var(--radius-xl);
}

.hero-copy,
.visual-stage,
.section-lead,
.section-copy,
.service-item,
.form-intro,
.field-stack,
.panel-head,
.record-list {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 1rem;
  max-width: 39rem;
}

.hero-copy-home {
  padding-top: 0.25rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 0.96;
  max-width: 14ch;
  color: var(--navy);
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-note {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.96rem;
  line-height: 1.6;
}

.hero-summary,
.section-copy p,
.service-item p,
.form-intro p,
.field span,
.status-banner,
.record-meta {
  line-height: 1.72;
}

.hero-actions,
.support-actions,
.dashboard-actions,
.submit-row {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.82rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.header-link:hover {
  transform: translateY(-2px);
}

.button-solid {
  background: linear-gradient(180deg, #204886, #173a72);
  color: #ffffff;
  border: 1px solid rgba(23, 58, 114, 0.6);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line-strong);
  color: var(--navy);
}

.hero-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-metadata span,
.stat-chip {
  padding: 0.55rem 0.8rem;
  color: var(--muted-strong);
  font-size: 0.92rem;
}

.visual-stage {
  display: grid;
  align-items: stretch;
}

.pilot-board {
  min-height: 100%;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 3px solid rgba(218, 231, 242, 0.95);
  background:
    linear-gradient(180deg, rgba(127, 209, 249, 0.94) 0%, rgba(231, 246, 255, 0.98) 24%, rgba(255, 255, 255, 0.99) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(21, 60, 118, 0.12),
    inset 0 16px 24px rgba(255, 255, 255, 0.52);
  padding: 1.35rem;
  position: relative;
  overflow: hidden;
}

.pilot-board::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.36) 0%, transparent 34%),
    linear-gradient(rgba(35, 73, 125, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 73, 125, 0.06) 1px, transparent 1px);
  background-size:
    auto,
    78px 78px,
    78px 78px;
  pointer-events: none;
}

.pilot-board-header,
.pilot-board-grid,
.story-panel {
  position: relative;
  z-index: 1;
}

.pilot-board-header {
  max-width: 29rem;
}

.board-title {
  margin: 0.45rem 0 0;
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  line-height: 1.02;
  color: var(--navy);
}

.board-copy {
  margin: 0.8rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.pilot-board-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.pilot-card,
.story-panel,
.faq-item {
  border-radius: 22px;
  border: 2px solid rgba(216, 229, 239, 0.92);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(28, 69, 123, 0.07);
}

.pilot-card {
  padding: 1rem 1rem 1.05rem;
  backdrop-filter: blur(12px);
}

.pilot-card-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  height: 2.2rem;
  padding: 0 0.65rem;
  border-radius: 999px;
  background: rgba(231, 244, 255, 0.9);
  color: var(--navy);
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pilot-card h3,
.faq-item h3 {
  margin: 0.85rem 0 0;
  font-size: 1.18rem;
  line-height: 1.15;
  color: var(--navy);
}

.pilot-card p,
.faq-item p,
.story-panel li {
  color: var(--muted);
  line-height: 1.7;
}

.route-surface {
  position: relative;
  min-height: 23rem;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
  border: 3px solid rgba(218, 231, 242, 0.95);
  background:
    linear-gradient(180deg, rgba(127, 209, 249, 0.96) 0%, rgba(234, 247, 255, 0.98) 23%, rgba(255, 255, 255, 0.99) 68%, rgba(241, 248, 255, 0.98) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(21, 60, 118, 0.12),
    inset 0 16px 24px rgba(255, 255, 255, 0.5);
}

.route-surface::after {
  content: '';
  position: absolute;
  inset: -25%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.48) 48%,
    transparent 58%
  );
  animation: sweep 7s linear infinite;
}

.route-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(35, 73, 125, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(35, 73, 125, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.55;
}

.route-line {
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky-deep), var(--navy));
  box-shadow: 0 0 24px rgba(61, 168, 235, 0.18);
}

.route-line-one {
  width: 44%;
  height: 4px;
  left: 14%;
  top: 35%;
  transform: rotate(17deg);
}

.route-line-two {
  width: 31%;
  height: 4px;
  left: 48%;
  top: 56%;
  transform: rotate(-31deg);
}

.route-marker {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 0 8px rgba(62, 130, 189, 0.12);
}

.route-marker-start {
  left: 18%;
  top: 31%;
  background: var(--sky-deep);
}

.route-marker-mid {
  left: 50%;
  top: 47%;
  background: #7fcaf5;
}

.route-marker-end {
  right: 18%;
  bottom: 22%;
  background: var(--navy);
}

.stage-panel {
  position: absolute;
  width: min(17rem, calc(100% - 2rem));
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 2px solid rgba(215, 229, 240, 0.9);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(41, 83, 137, 0.1);
}

.stage-panel strong {
  display: block;
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.06rem;
  color: var(--navy);
}

.stage-panel p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.stage-panel-primary {
  left: 1rem;
  bottom: 1rem;
}

.stage-panel-secondary {
  right: 1rem;
  top: 1rem;
}

.content-strip,
.callout-band,
.auth-shell,
.form-shell,
.record-panel {
  margin-top: 1.35rem;
  padding: 1.85rem 2rem;
  border-radius: var(--radius-lg);
}

.content-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: end;
}

.section-title,
h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  line-height: 1.02;
  color: var(--navy);
}

.section-copy p {
  margin: 0;
}

.split-band {
  margin-top: 1.35rem;
  padding: 1.55rem 2rem;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-item {
  padding-top: 1rem;
  border-top: 1px solid rgba(35, 73, 125, 0.16);
}

.service-item h3,
.record-title {
  margin-top: 0.65rem;
  font-size: 1.24rem;
  line-height: 1.2;
  color: var(--navy);
}

.callout-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto;
  gap: 2rem;
  align-items: center;
}

.story-grid,
.faq-band {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.story-panel,
.faq-item {
  padding: 1.45rem;
}

.story-copy {
  margin: 0.85rem 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.county-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.9rem;
}

.county-pill {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid rgba(29, 74, 132, 0.14);
  background:
    linear-gradient(180deg, rgba(126, 207, 248, 0.18), rgba(255, 255, 255, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.county-pill strong {
  color: var(--navy);
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.18rem;
}

.county-pill span {
  color: var(--muted);
  line-height: 1.65;
}

.journey-list,
.readiness-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.readiness-list {
  padding-left: 1.1rem;
}

.journey-list li::marker,
.readiness-list li::marker {
  color: var(--navy);
  font-weight: 800;
}

.page-footer {
  margin-top: 1rem;
  padding: 0 0.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--navy-soft);
  font-weight: 700;
}

.beta-footer-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-shell,
.auth-shell {
  display: grid;
  gap: 1.5rem;
}

.waitlist-form {
  width: min(34rem, 100%);
  justify-self: end;
  display: grid;
  gap: 1rem;
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.form-intro {
  max-width: 40rem;
}

.field-stack {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.42rem;
}

.field span {
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(55, 88, 143, 0.18);
  border-radius: 16px;
  padding: 0.92rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.68);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7a95b8;
}

.field textarea {
  resize: vertical;
  min-height: 7rem;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: rgba(23, 58, 114, 0.42);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.helper-text {
  margin: 0;
}

.consent-stack {
  display: grid;
  gap: 0.75rem;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(29, 74, 132, 0.14);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted-strong);
}

.consent-row input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
}

.consent-row span {
  color: var(--muted-strong);
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 600;
}

.consent-row-admin {
  grid-template-columns: auto 1fr;
  padding: 0.85rem 0.95rem;
}

.status-banner {
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted-strong);
}

.status-banner.is-hidden,
.dashboard-shell.is-hidden {
  display: none;
}

.status-banner.tone-success {
  border-color: rgba(86, 144, 104, 0.24);
  color: #2b5f3d;
  background: rgba(238, 249, 241, 0.94);
}

.status-banner.tone-error {
  border-color: rgba(184, 96, 87, 0.22);
  color: #87443b;
  background: rgba(255, 244, 243, 0.94);
}

.status-banner.tone-info {
  color: var(--muted-strong);
}

.admin-frame {
  display: grid;
  gap: 1.35rem;
}

.dashboard-shell {
  display: grid;
  gap: 1.35rem;
}

.dashboard-top {
  margin-top: 0;
}

.dashboard-actions {
  justify-content: flex-end;
}

.stats-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.stat-chip strong {
  color: var(--navy);
  margin-right: 0.35rem;
}

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

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

.admin-stack-grid {
  display: grid;
  gap: 1rem;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.record-list {
  margin-top: 1.1rem;
  display: grid;
  gap: 1rem;
}

.record-item {
  padding: 1rem;
  border: 2px solid rgba(217, 230, 240, 0.9);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(28, 69, 123, 0.08);
}

.record-title-row,
.record-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.record-title {
  margin: 0;
}

.record-tag {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted-strong);
  background: rgba(236, 247, 255, 0.86);
  font-size: 0.82rem;
}

.record-meta {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
}

.inline-form {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.8rem;
}

.inline-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
}

.mini-note,
.code-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.code-note {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  word-break: break-word;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@keyframes sweep {
  from {
    transform: translateX(-10%) rotate(0.001deg);
  }

  to {
    transform: translateX(60%) rotate(0.001deg);
  }
}

@media (max-width: 980px) {
  .site-header,
  .hero-panel,
  .content-strip,
  .split-band,
  .callout-band,
  .dashboard-grid,
  .story-grid,
  .faq-band {
    grid-template-columns: 1fr;
  }

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

  .dashboard-actions {
    justify-content: flex-start;
  }

  .waitlist-form {
    width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 760px) {
  .construction-main {
    padding: 2.9rem 1.15rem;
  }

  .construction-plate-top {
    flex-direction: column;
    gap: 0.7rem;
  }

  .site-header {
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
  }

  .hero-panel,
  .content-strip,
  .split-band,
  .callout-band,
  .form-shell,
  .auth-shell,
  .record-panel {
    padding: 1.35rem;
  }

  .field-grid,
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: none;
  }

  .hero-chip-row {
    gap: 0.55rem;
  }

  .story-panel,
  .faq-item,
  .pilot-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
