:root {
  --bg: #08111a;
  --bg-soft: rgba(8, 17, 26, 0.84);
  --surface: rgba(10, 21, 33, 0.78);
  --surface-strong: rgba(14, 28, 43, 0.92);
  --surface-muted: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --text: #ecf3fb;
  --text-muted: #98aabf;
  --accent: #ff8446;
  --accent-2: #3dd6c6;
  --accent-3: #ffe082;
  --success: #7af0b7;
  --warning: #ffbf69;
  --danger: #ff8f8f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 132, 70, 0.18), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(61, 214, 198, 0.15), transparent 18%),
    linear-gradient(180deg, #08111a 0%, #0b1320 48%, #071019 100%);
}

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

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

button {
  cursor: pointer;
}

.theme-core {
  position: relative;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  width: 42rem;
  height: 42rem;
  border-radius: 999px;
  filter: blur(64px);
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.ambient-a {
  top: -16rem;
  left: -12rem;
  background: rgba(255, 132, 70, 0.34);
}

.ambient-b {
  top: 16rem;
  right: -18rem;
  background: rgba(61, 214, 198, 0.26);
}

.ambient-c {
  bottom: -16rem;
  left: 20%;
  background: rgba(255, 224, 130, 0.16);
}

.topbar,
.site-footer,
.page-home,
.workspace-page,
.admin-page {
  width: min(calc(100% - 32px), var(--max-width));
  margin-inline: auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 26px 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--text-muted);
}

.brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 0 24px rgba(255, 132, 70, 0.5);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topnav a,
.ghost-button {
  color: var(--text-muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.topnav a:hover,
.ghost-button:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.ghost-button {
  background: transparent;
  border: none;
  padding: 0;
}

.page-home,
.workspace-page,
.admin-page {
  padding-bottom: 80px;
}

.panel {
  background: linear-gradient(180deg, rgba(15, 28, 42, 0.88), rgba(8, 18, 28, 0.78));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
}

.hero {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  padding: 44px;
  min-height: 74vh;
}

.hero-v2 {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: auto;
  padding: 56px;
}

.hero-backdrop {
  position: absolute;
  inset: auto -12% -18% 38%;
  height: 26rem;
  background:
    radial-gradient(circle at center, rgba(61, 214, 198, 0.2), transparent 48%),
    radial-gradient(circle at 40% 40%, rgba(255, 132, 70, 0.2), transparent 38%);
  filter: blur(24px);
  pointer-events: none;
}

.hero h1,
.section-heading h2,
.workspace-hero h1,
.admin-login h1 {
  font-family: "Sora", sans-serif;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
}

.hero-v2 h1 {
  max-width: 7ch;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 0.92;
}

.hero-v2 h1 span {
  display: block;
  color: var(--accent-3);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-3);
  font-size: 0.74rem;
  margin: 0 0 14px;
}

.lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 56ch;
}

.hero-subline {
  margin-top: 24px;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.85;
}

.hero-actions,
.trust-row,
.feature-grid,
.stack-cards,
.metrics-bar,
.timeline,
.offer-grid,
.workspace-grid,
.admin-overview,
.admin-grid,
.success-grid,
.field-grid {
  display: grid;
}

.hero-tags,
.statement-grid,
.offer-strip,
.lookup-mini-grid {
  display: grid;
}

.hero-actions {
  grid-template-columns: repeat(2, max-content);
  gap: 14px;
  margin-top: 28px;
}

.hero-tags {
  grid-template-columns: repeat(4, max-content);
  gap: 12px;
  margin-top: 28px;
}

.hero-tags span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #ffa15e 52%, #ffd36e 100%);
  color: #09111a;
  box-shadow: 0 18px 40px rgba(255, 132, 70, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(61, 214, 198, 0.24);
  color: var(--text);
}

.btn.mini {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.92rem;
}

.full {
  width: 100%;
}

.trust-row {
  grid-template-columns: repeat(4, max-content);
  gap: 12px;
  margin-top: 28px;
}

.trust-row span,
.chip-button,
.meta-badge,
.status-badge {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.trust-row span {
  padding: 11px 16px;
  color: var(--text-muted);
}

.hero-stage {
  position: relative;
  min-height: 480px;
}

.hero-visual {
  position: relative;
  min-height: 34rem;
}

.hero-frame,
.hero-chip {
  position: absolute;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-frame-main {
  inset: 28px 0 auto 28px;
  padding: 34px;
}

.hero-frame-main h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-family: "Sora", sans-serif;
}

.hero-frame-main p {
  max-width: 26rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.frame-kicker {
  margin: 0;
  color: var(--accent-2);
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}

.hero-chip {
  padding: 18px 20px;
  width: 16rem;
}

.hero-chip span {
  display: block;
  color: var(--accent-2);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-chip strong {
  display: block;
  margin-top: 10px;
  line-height: 1.5;
}

.chip-one {
  right: 6px;
  top: 258px;
}

.chip-two {
  left: 10px;
  bottom: 76px;
}

.chip-three {
  right: 34px;
  bottom: 10px;
}

.glass-card,
.floating-metric {
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.stage-main {
  top: 20px;
  left: 0;
  right: 38px;
  padding: 30px;
}

.stage-label,
.floating-metric span {
  color: var(--accent-2);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stage-main h2 {
  margin: 10px 0 18px;
  font-family: "Sora", sans-serif;
  font-size: 1.9rem;
  line-height: 1.2;
}

.stage-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.floating-metric {
  padding: 18px 20px;
  width: 250px;
}

.floating-metric strong {
  display: block;
  margin-top: 9px;
  line-height: 1.5;
}

.metric-a {
  right: 0;
  top: 210px;
}

.metric-b {
  left: 36px;
  bottom: 46px;
}

.metric-c {
  right: 24px;
  bottom: 4px;
}

.section {
  margin-top: 28px;
}

.section-tight {
  margin-top: 22px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 18px;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.section-heading.compact h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
}

.section-heading p:last-child {
  color: var(--text-muted);
}

.feature-grid,
.offer-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.statement-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.statement-card {
  padding: 28px;
  min-height: 230px;
}

.statement-no {
  display: inline-flex;
  margin-bottom: 54px;
  font-size: 0.9rem;
  color: var(--accent-2);
  font-weight: 800;
}

.statement-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
  font-family: "Sora", sans-serif;
}

.statement-card p {
  color: var(--text-muted);
  line-height: 1.8;
}

.offer-strip {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.offer-tile {
  min-height: 210px;
  padding: 26px;
}

.offer-tile h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.offer-tile p {
  color: var(--text-muted);
  line-height: 1.8;
}

.manifesto {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(135deg, rgba(255, 132, 70, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(61, 214, 198, 0.08), rgba(255, 255, 255, 0.02));
}

.manifesto-copy h2 {
  margin: 0 0 14px;
  max-width: 16ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.12;
}

.manifesto-copy p:last-child {
  max-width: 40rem;
  color: var(--text-muted);
  line-height: 1.85;
}

.manifesto-badges {
  align-content: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.manifesto-badges span {
  display: grid;
  place-items: center;
  min-height: 108px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
  text-align: center;
}

.feature-card,
.offer-card {
  padding: 28px;
  min-height: 220px;
}

.feature-card h3,
.mini-stack h3,
.offer-card h3,
.info-card h2,
.delivery-card h2,
.admin-request-list strong,
.admin-block h3,
.overview-card strong {
  font-family: "Sora", sans-serif;
}

.feature-index {
  color: var(--accent-2);
  margin: 0 0 40px;
  font-weight: 700;
}

.feature-card p:last-child,
.mini-stack p,
.offer-card p,
.timeline-step p,
.lookup-footnotes,
.success-note,
.info-card p,
.multi-line,
.deliverable-item p,
.message-bubble p,
.overview-card span,
.request-row p,
.request-row span {
  color: var(--text-muted);
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}

.split-copy,
.stack-cards,
.action-grid {
  min-height: 100%;
}

.split-copy {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 132, 70, 0.12), rgba(61, 214, 198, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.split-copy h2 {
  margin: 0 0 14px;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.stack-cards {
  gap: 18px;
}

.mini-stack {
  padding: 24px 26px;
}

.metrics-bar {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.metric-pill {
  padding: 24px 26px;
}

.metric-pill strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
}

.metric-pill span {
  display: block;
  margin-top: 8px;
  color: var(--text-muted);
}

.timeline {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.timeline-step {
  padding: 28px;
}

.timeline-no {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-3);
  font-weight: 800;
}

.spotlight {
  padding-top: 10px;
}

.action-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  gap: 18px;
}

.action-grid-v2 {
  align-items: start;
}

.request-panel,
.lookup-panel,
.workspace-hero,
.info-card,
.delivery-card,
.admin-login,
.overview-card,
.admin-list-panel,
.admin-detail-panel,
.admin-thread-panel {
  padding: 30px;
}

.lookup-panel-v2 {
  position: sticky;
  top: 18px;
}

.lookup-hero h2 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.lookup-hero p:last-child {
  color: var(--text-muted);
}

.lookup-mini-grid {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 22px;
}

.lookup-mini-card {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.lookup-mini-card strong {
  display: block;
  margin-bottom: 6px;
}

.lookup-mini-card span {
  color: var(--text-muted);
}

.request-form,
.lookup-form,
.narrow,
.compact-form {
  display: grid;
  gap: 16px;
}

.field-grid.two {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field span {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.field input,
.field textarea,
.field select,
.admin-filters input,
.admin-filters select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus,
.admin-filters input:focus,
.admin-filters select:focus {
  border-color: rgba(61, 214, 198, 0.44);
  background: rgba(255, 255, 255, 0.06);
}

.field textarea {
  resize: vertical;
}

.success-panel {
  margin-top: 22px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(122, 240, 183, 0.12), rgba(122, 240, 183, 0.04));
  border: 1px solid rgba(122, 240, 183, 0.2);
}

.success-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.success-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-card span {
  display: block;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.success-card strong {
  font-size: 1.05rem;
  word-break: break-all;
}

.lookup-footnotes {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0 32px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.workspace-hero {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
  margin-top: 10px;
}

.workspace-hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.workspace-meta {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.meta-badge {
  padding: 14px 18px;
  min-width: 220px;
}

.meta-badge span {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.workspace-grid {
  margin-top: 18px;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 18px;
}

.workspace-sidebar,
.workspace-main,
.admin-detail-stack {
  display: grid;
  gap: 18px;
}

.info-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.info-list div {
  display: grid;
  gap: 5px;
}

.info-list dt {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.info-list dd {
  margin: 0;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.chip-button {
  padding: 10px 14px;
  color: var(--text);
}

.deliverables-list,
.messages-list,
.admin-request-list {
  display: grid;
  gap: 14px;
}

.deliverable-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.deliverable-item h3 {
  margin: 6px 0 8px;
}

.deliverable-actions {
  display: grid;
  align-content: space-between;
  justify-items: end;
  gap: 12px;
  color: var(--text-muted);
}

.message-bubble {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-admin {
  background: linear-gradient(180deg, rgba(255, 132, 70, 0.12), rgba(255, 132, 70, 0.04));
}

.message-client {
  background: rgba(255, 255, 255, 0.04);
}

.message-system {
  background: linear-gradient(180deg, rgba(61, 214, 198, 0.12), rgba(61, 214, 198, 0.04));
}

.message-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.admin-page {
  padding-top: 10px;
}

.admin-login {
  max-width: 640px;
  margin: 40px auto 0;
}

.narrow {
  max-width: 480px;
}

.admin-overview {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}

.overview-card strong {
  display: block;
  margin-top: 12px;
  font-size: 2.2rem;
}

.admin-grid {
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

.admin-filters {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.request-row {
  width: 100%;
  text-align: left;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.request-row:hover,
.request-row.active {
  transform: translateY(-1px);
  border-color: rgba(61, 214, 198, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.request-row-top {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 6px;
}

.admin-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.inset {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.admin-block {
  margin-top: 18px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  font-weight: 700;
  font-size: 0.84rem;
}

.status-neutral {
  color: #d8e8f7;
}

.status-warning {
  color: var(--warning);
}

.status-accent {
  color: var(--accent-2);
}

.status-info {
  color: #90caff;
}

.status-success {
  color: var(--success);
}

.status-muted {
  color: var(--text-muted);
}

.empty-state,
.hidden {
  display: none !important;
}

.empty-state {
  display: grid !important;
  min-height: 120px;
  place-items: center;
  text-align: center;
  color: var(--text-muted);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  padding: 22px;
}

.toast-root {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 10px;
  z-index: 20;
}

.toast {
  min-width: 260px;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 18, 28, 0.92);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast-success {
  border-color: rgba(122, 240, 183, 0.34);
}

.toast-warning {
  border-color: rgba(255, 191, 105, 0.34);
}

.toast-out {
  opacity: 0;
  transform: translateY(10px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1140px) {
  .hero,
  .split,
  .action-grid,
  .workspace-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .hero-v2,
  .manifesto {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 420px;
  }

  .feature-grid,
  .offer-grid,
  .offer-strip,
  .statement-grid,
  .timeline,
  .admin-overview,
  .metrics-bar,
  .admin-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar,
  .site-footer,
  .page-home,
  .workspace-page,
  .admin-page {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    padding-top: 18px;
  }

  .topnav {
    gap: 12px;
    font-size: 0.92rem;
  }

  .hero,
  .request-panel,
  .lookup-panel,
  .workspace-hero,
  .info-card,
  .delivery-card,
  .admin-login,
  .overview-card,
  .admin-list-panel,
  .admin-detail-panel,
  .admin-thread-panel {
    padding: 22px;
  }

  .hero-v2 {
    padding: 24px;
  }

  .hero-actions,
  .trust-row,
  .feature-grid,
  .offer-grid,
  .offer-strip,
  .statement-grid,
  .hero-tags,
  .manifesto-badges,
  .timeline,
  .metrics-bar,
  .field-grid.two,
  .success-grid,
  .admin-overview,
  .admin-filters,
  .admin-meta-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-stage {
    min-height: 500px;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .hero-frame,
  .hero-chip {
    position: relative;
    inset: auto;
    width: auto;
  }

  .hero-v2 h1 {
    max-width: 8ch;
    font-size: clamp(3rem, 17vw, 5rem);
  }

  .stage-main {
    position: relative;
    inset: auto;
  }

  .floating-metric {
    position: relative;
    inset: auto;
    width: auto;
    margin-top: 14px;
  }

  .workspace-hero {
    align-items: flex-start;
  }

  .workspace-meta {
    width: 100%;
    justify-items: stretch;
  }

  .deliverable-item,
  .site-footer {
    flex-direction: column;
  }
}
