:root {
  --bg: #090a10;
  --bg-muted: #11121a;
  --bg-elevated: #141625;
  --bg-panel: #181b2b;
  --text: #f4f6fc;
  --text-muted: rgba(209, 215, 245, 0.74);
  --text-soft: rgba(244, 246, 252, 0.86);
  --accent: #7c5cff;
  --accent-strong: #36d1ff;
  --green: #27d6a1;
  --amber: #ffcc66;
  --red: #ff6b6b;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --font: "Inter", "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  color-scheme: dark;
  font-family: var(--font);
  line-height: 1.5;
}

body {
  min-width: 320px;
}

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

img {
  display: block;
  max-width: 100%;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

p,
li {
  color: var(--text-muted);
}

code {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-strong);
  padding: 0.1rem 0.36rem;
  font-size: 0.92em;
  overflow-wrap: anywhere;
}

.site-header {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 28px max(24px, calc((100% - var(--max-width)) / 2)) 12px;
  background:
    linear-gradient(135deg, rgba(42, 32, 89, 0.96), rgba(14, 62, 86, 0.96)),
    var(--bg);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.brand span {
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.site-header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-header nav a,
.button,
button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 20px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header nav a {
  min-height: 40px;
  padding: 0 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-header nav a.active,
.site-header nav a:hover,
.button:hover,
button:hover {
  transform: translateY(-2px);
  border-color: rgba(54, 209, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(18, 22, 45, 0.35);
  color: var(--text);
}

.button.primary,
button.primary,
.store-button,
.primary-link {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: var(--text);
  box-shadow: 0 16px 40px rgba(90, 78, 255, 0.35);
}

.button.secondary,
button.secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow: none;
}

.button.full {
  width: 100%;
}

main {
  width: 100%;
  overflow: hidden;
}

.hero {
  position: relative;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 60px;
  padding: 66px max(24px, calc((100% - var(--max-width)) / 2)) 92px;
  background:
    linear-gradient(135deg, rgba(32, 24, 74, 0.96) 0%, rgba(9, 16, 31, 0.98) 52%, rgba(7, 53, 64, 0.96) 100%),
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(90deg, rgba(54, 209, 255, 0.08), rgba(124, 92, 255, 0.08), rgba(39, 214, 161, 0.05));
  z-index: 0;
  pointer-events: none;
}

.hero-copy,
.product-shell,
.section,
.trust-strip,
.site-footer {
  min-width: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 22px;
}

.badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-pill.green {
  border-color: rgba(39, 214, 161, 0.24);
  background: rgba(39, 214, 161, 0.12);
  color: var(--green);
}

.status-pill.gold {
  border-color: rgba(255, 204, 102, 0.24);
  background: rgba(255, 204, 102, 0.12);
  color: var(--amber);
}

.status-pill.brick {
  border-color: rgba(255, 107, 107, 0.24);
  background: rgba(255, 107, 107, 0.12);
  color: var(--red);
}

.product-shell {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: rgba(20, 22, 37, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.browser-bar {
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 0 18px;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
}

.browser-bar span:nth-child(2) {
  background: var(--amber);
}

.browser-bar span:nth-child(3) {
  background: var(--green);
}

.browser-bar strong {
  margin-left: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.dashboard-preview {
  min-height: 450px;
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
}

.dashboard-preview aside {
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  padding: 22px 16px;
}

.dashboard-preview aside img {
  border-radius: 50%;
}

.dashboard-preview aside strong {
  display: block;
  margin: 12px 0 20px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.2;
}

.dashboard-preview aside a {
  display: block;
  margin-bottom: 7px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  padding: 9px 10px;
  font-size: 0.88rem;
  font-weight: 730;
}

.dashboard-preview aside a.active {
  background: rgba(54, 209, 255, 0.12);
  color: var(--accent-strong);
}

.dashboard-preview section {
  min-width: 0;
  padding: 24px;
}

.preview-topline,
.section-heading,
.app-topline,
.panel-heading,
.client-status-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.preview-topline h2 {
  margin-bottom: 0;
  font-size: 1.7rem;
}

.metrics-row,
.app-metrics,
.billing-status-grid,
.demo-grid,
.client-status-grid {
  display: grid;
  gap: 12px;
}

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

.metrics-row div,
.app-metrics div,
.billing-status-grid div,
.demo-grid div,
.client-status-grid div,
.onboarding-item,
.case-row,
.status-history-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.metrics-row span,
.app-metrics span,
.billing-status-grid span,
.demo-grid span,
.client-status-grid span,
.case-row span,
.status-history-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 760;
}

.metrics-row strong,
.app-metrics strong,
.demo-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 1.8rem;
}

.case-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(9, 10, 16, 0.28);
}

.case-table > div {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 1.3fr 70px;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 12px 14px;
  color: var(--text-soft);
  font-size: 0.87rem;
}

.case-table > div:first-child {
  border-top: 0;
}

.case-table .table-head {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 820;
  text-transform: uppercase;
}

.case-table button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.8rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max-width);
  margin: 42px auto 36px;
  padding: 0 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.trust-strip div {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  padding: 22px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--text);
}

.trust-strip span {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 66px 20px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: 38px;
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.workflow-panel,
.risk-note,
.demo-band,
.price-card,
.form-card,
.demo-card,
.client-link-card,
.signup-kicker,
.app-panel,
.client-status-panel,
.video-next article {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.workflow-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--border);
}

.step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  background: var(--bg-elevated);
  padding: 18px;
}

.step span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  font-weight: 820;
}

.step strong {
  color: var(--text);
}

.step p {
  margin-bottom: 0;
}

.demo-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding: 30px;
}

.demo-band p {
  max-width: 720px;
  margin-bottom: 0;
}

.demo-band-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

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

.section-heading p {
  max-width: 560px;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 22px;
}

.price-card.muted {
  background: rgba(255, 255, 255, 0.035);
}

.price-card h3 {
  color: var(--text);
  font-size: 2.15rem;
}

.price-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 22px;
  padding-left: 20px;
}

.price-card .button {
  margin-top: auto;
}

.risk-note {
  margin-bottom: 50px;
  padding: 30px;
}

.risk-note p {
  max-width: 920px;
  margin-bottom: 0;
}

.signup-layout,
.demo-layout,
.app-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 62px 20px;
}

.app-login {
  display: contents;
}

.firm-app {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 640px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
}

.firm-app[hidden],
.app-login[hidden],
.app-panel[hidden] {
  display: none;
}

.app-sidebar {
  border-right: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  padding: 22px;
}

.app-sidebar img {
  border-radius: 50%;
}

.app-sidebar strong {
  display: block;
  margin: 14px 0 22px;
  color: var(--text);
  line-height: 1.2;
}

.nav-button {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 8px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.nav-button.active {
  background: rgba(54, 209, 255, 0.12);
  color: var(--accent-strong);
}

.app-main {
  min-width: 0;
  padding: 24px;
}

.app-topline {
  margin-bottom: 18px;
}

.app-topline h1 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
}

.app-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.billing-status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 16px 0;
}

.billing-status-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 1.08rem;
}

.app-panel {
  padding: 18px;
}

.panel-heading p {
  max-width: 720px;
}

.inline-case-form {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.6fr 0.65fr auto;
  gap: 10px;
  align-items: end;
  margin: 18px 0 0;
}

.import-case-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.import-case-form label,
.field-grid label {
  display: grid;
  gap: 7px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 760;
}

.case-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.case-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) auto;
  gap: 14px;
  align-items: start;
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.button.compact,
.case-actions button {
  min-height: 38px;
  padding: 8px 12px;
}

.case-message {
  margin-top: 6px;
  color: var(--text-muted);
}

.case-message.error {
  color: var(--red);
}

.onboarding-list {
  display: grid;
  gap: 10px;
}

.onboarding-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.onboarding-item span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 204, 102, 0.12);
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 800;
}

.onboarding-item.complete span {
  background: rgba(39, 214, 161, 0.12);
  color: var(--green);
}

.empty-state {
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 16px;
}

.client-status-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 58px 20px 74px;
}

.client-status-panel {
  padding: 24px;
}

.client-status-top {
  margin-bottom: 18px;
}

.client-status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.status-history {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.form-card,
.demo-card,
.client-link-card,
.signup-kicker {
  padding: 22px;
}

.signup-kicker {
  margin-top: 24px;
}

.signup-kicker strong,
.status-history-item strong,
.client-status-grid strong {
  color: var(--text);
}

.field-grid {
  display: grid;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  padding: 10px 12px;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(209, 215, 245, 0.46);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(54, 209, 255, 0.18);
  border-color: rgba(54, 209, 255, 0.7);
}

.form-status {
  min-height: 44px;
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text-muted);
  padding: 11px 12px;
  font-weight: 700;
}

.form-status.success {
  border-color: rgba(39, 214, 161, 0.24);
  background: rgba(39, 214, 161, 0.12);
  color: var(--green);
}

.form-status.error {
  border-color: rgba(255, 107, 107, 0.24);
  background: rgba(255, 107, 107, 0.12);
  color: var(--red);
}

.small-note {
  color: var(--text-muted);
  font-size: 0.86rem;
}

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

.demo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 16px;
}

.demo-cases {
  display: grid;
  gap: 10px;
}

.demo-case {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.demo-case strong,
.demo-case span {
  display: block;
}

.demo-case strong {
  color: var(--text);
}

.demo-case span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.client-link-card {
  position: sticky;
  top: 24px;
}

.masked-link {
  display: block;
  margin: 12px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  padding: 11px;
  color: var(--accent-strong);
  font-weight: 780;
  overflow-wrap: anywhere;
}

.phone-preview {
  overflow: hidden;
  width: min(280px, 100%);
  margin: 20px auto 0;
  border: 9px solid #20232c;
  border-radius: 28px;
  background: #101214;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.phone-preview img {
  width: 100%;
  height: auto;
}

.video-hero h1 {
  margin-bottom: 0;
}

.video-shell {
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: #05060a;
  box-shadow: var(--shadow);
}

.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #05060a;
}

.video-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 0;
}

.video-next article {
  padding: 24px;
}

.video-next p {
  margin-bottom: 22px;
}

.legal-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 54px 20px 70px;
}

.legal-page section {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  margin-top: 26px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px 20px 50px;
  border-top: 1px solid var(--border);
}

.site-footer p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.site-footer strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  color: var(--accent-strong);
  font-weight: 760;
}

@media (max-width: 1100px) {
  .hero,
  .signup-layout,
  .demo-layout,
  .app-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .product-shell {
    max-width: 720px;
  }

  .pricing-grid,
  .trust-strip,
  .video-next {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 32px;
  }

  .firm-app {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .app-metrics,
  .billing-status-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inline-case-form {
    grid-template-columns: 1fr;
  }

  .demo-band,
  .section-heading,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-band-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 24px;
  }

  .site-header nav {
    justify-content: flex-start;
    gap: 10px;
  }

  .site-header nav a {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero {
    padding-top: 42px;
    padding-bottom: 66px;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .dashboard-preview aside {
    display: none;
  }

  .metrics-row,
  .demo-grid,
  .app-metrics,
  .billing-status-grid,
  .client-status-grid {
    grid-template-columns: 1fr;
  }

  .case-table > div {
    grid-template-columns: 1fr;
  }

  .case-table .table-head {
    display: none;
  }

  .trust-strip {
    margin-top: 28px;
  }

  .demo-case,
  .case-row,
  .onboarding-item {
    grid-template-columns: 1fr;
  }

  .case-actions {
    justify-content: stretch;
  }

  .case-actions button,
  .hero-actions .button,
  .demo-band-actions .button {
    width: 100%;
  }
}
