:root {
  --page-bg: #fcfaf7;
  --surface: #ffffff;
  --surface-alt: #f3ede3;
  --text: #171717;
  --muted: #655f56;
  --line: #ddd1c2;
  --primary: #c7852d;
  --primary-ink: #1e1202;
  --secondary: #153b3b;
  --accent: #ead7b3;
  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);
  --shadow-deep: 0 28px 70px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(180deg, var(--page-bg) 0%, var(--surface-alt) 100%);
}

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

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

code {
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-alt) 86%, transparent);
  font-family: "Space Grotesk", monospace;
  font-size: 0.92em;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  border-bottom: 1px solid var(--line);
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.header-grid {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 82px;
}

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

.brand-logo,
.brand-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
}

.brand-logo {
  object-fit: cover;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--primary-ink);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
}

.nav-link:hover,
.nav-link.is-active {
  background: var(--surface-alt);
  color: var(--secondary);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.site-main {
  flex: 1;
  padding: 2rem 0 3rem;
}

.page-stack {
  display: grid;
  gap: 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.2rem 0 2rem;
  align-items: center;
}

.footer-grid p {
  margin: 0.4rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

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

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

.button-secondary {
  background: var(--secondary);
  color: #fff;
}

.button-ghost {
  background: transparent;
  color: var(--secondary);
  border-color: var(--line);
}

.hero {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface) 88%, transparent) 0%, color-mix(in srgb, var(--surface-alt) 92%, transparent) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.marketing-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 1.5rem;
  align-items: center;
  padding: 0.4rem 0 1rem;
}

.marketing-copy {
  display: grid;
  gap: 1rem;
}

.marketing-copy h1,
.section-intro h2,
.feature-media-copy h3,
.showcase-copy h2,
.brand-example-body h3,
.closing-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.marketing-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.3rem, 8vw, 6.1rem);
  line-height: 0.92;
}

.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.mini-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.46rem 0.82rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.marketing-visual {
  position: relative;
  min-height: 540px;
}

.visual-shell {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface) 96%, transparent) 0%, color-mix(in srgb, var(--surface-alt) 88%, transparent) 100%);
  box-shadow: var(--shadow-deep);
}

.visual-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-main {
  position: absolute;
  inset: 28px 34px 12px 20px;
}

.visual-float {
  position: absolute;
  width: min(46%, 290px);
}

.visual-float-top {
  top: 0;
  right: 0;
  transform: rotate(4deg);
}

.visual-float-bottom {
  bottom: 12px;
  left: 0;
  width: min(42%, 250px);
  transform: rotate(-5deg);
}

.ticker-strip {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow-soft);
}

.ticker-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.6rem;
  padding: 1rem 1.3rem;
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-intro {
  display: grid;
  gap: 0.5rem;
  max-width: 760px;
}

.section-intro h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.94;
}

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

.feature-media-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-media-image {
  aspect-ratio: 16 / 11;
  background: color-mix(in srgb, var(--surface-alt) 92%, transparent);
}

.feature-media-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-media-copy {
  display: grid;
  gap: 0.75rem;
  padding: 1.2rem;
}

.feature-media-copy h3 {
  font-size: 1.45rem;
  line-height: 1.05;
}

.feature-media-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1.35rem;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 40%, var(--surface)) 0%, color-mix(in srgb, var(--surface-alt) 74%, var(--surface)) 100%);
  box-shadow: var(--shadow-soft);
}

.showcase-copy {
  display: grid;
  gap: 0.85rem;
  padding: 0.25rem;
}

.showcase-copy h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.94;
}

.showcase-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.46fr);
  gap: 1rem;
  align-items: end;
}

.showcase-large,
.showcase-small {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-deep);
}

.showcase-large img,
.showcase-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.brand-example-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.brand-example-card.is-dark {
  background: #111111;
  border-color: #2b241d;
  color: #f4ebdc;
}

.brand-example-media {
  aspect-ratio: 16 / 10;
  padding: 1rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 18%, var(--brand-surface)) 0%, color-mix(in srgb, var(--brand-secondary) 18%, var(--brand-surface)) 100%);
}

.brand-example-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.brand-example-body {
  display: grid;
  gap: 0.78rem;
  padding: 1.2rem;
}

.brand-example-body h3 {
  font-size: 1.85rem;
  line-height: 0.98;
}

.brand-example-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.brand-example-card.is-dark .brand-example-body p {
  color: #ccbfae;
}

.brand-swatch-row {
  display: flex;
  gap: 0.48rem;
}

.brand-swatch-row span {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.closing-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  padding: 1.5rem 1.6rem;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, color-mix(in srgb, var(--secondary) 16%, var(--surface)) 0%, color-mix(in srgb, var(--accent) 58%, var(--surface)) 100%);
  box-shadow: var(--shadow-soft);
}

.closing-banner h2 {
  max-width: 17ch;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 0.98;
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr);
  gap: 1.4rem;
  align-items: stretch;
}

.hero-split {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
  align-items: start;
}

.compact-hero {
  padding-block: 1.4rem;
}

.hero-copy h1,
.panel-head h2,
.tenant-card h3,
.module-card h3,
.service-card h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 0.96;
}

.panel-head h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

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

.sales-card {
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--surface-alt) 85%, transparent) 0%, color-mix(in srgb, var(--surface) 96%, transparent) 100%);
  box-shadow: var(--shadow-soft);
}

.sales-card h3 {
  margin: 0.85rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.1;
}

.sales-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--secondary);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.76rem;
  font-weight: 800;
}

.lede {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.panel {
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.proof-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.proof-bar span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface-alt) 88%, transparent);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-preview {
  display: flex;
}

.preview-window {
  width: 100%;
  padding: 1rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 30%, var(--surface)) 0%, color-mix(in srgb, var(--surface) 95%, transparent) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-deep);
}

.preview-top {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.preview-top span {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 24%, var(--surface));
}

.preview-body {
  display: grid;
  gap: 1rem;
}

.preview-panel {
  padding: 1rem;
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface-alt) 82%, transparent);
  border: 1px solid var(--line);
}

.preview-panel small {
  display: inline-block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
}

.preview-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.1;
}

.preview-panel p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.preview-stats article {
  padding: 0.95rem;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  border: 1px solid var(--line);
}

.preview-stats span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.preview-stats strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

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

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

.metric-card {
  padding: 1rem 1.1rem;
  border-radius: 24px;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.metric-card.tone-primary {
  background: linear-gradient(135deg, var(--primary) 0%, color-mix(in srgb, var(--secondary) 80%, black) 100%);
}

.metric-card.tone-success {
  background: linear-gradient(135deg, #0b8d6e 0%, #14b8a6 100%);
}

.metric-card.tone-warning {
  background: linear-gradient(135deg, #b36a07 0%, #f59e0b 100%);
}

.metric-card.tone-danger {
  background: linear-gradient(135deg, #b4234f 0%, #ef476f 100%);
}

.metric-label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 800;
}

.metric-value {
  font-size: 1.95rem;
  font-family: var(--font-display);
}

.tenant-grid,
.feature-columns,
.service-grid,
.module-grid {
  display: grid;
  gap: 1rem;
}

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

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

.timeline-grid {
  display: grid;
  gap: 1rem;
}

.timeline-grid article {
  padding: 1rem;
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface-alt) 82%, transparent);
  border: 1px solid var(--line);
}

.timeline-grid strong {
  display: block;
  margin-bottom: 0.45rem;
}

.timeline-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.tenant-card,
.module-card,
.service-card,
.quote-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.tenant-card,
.service-card {
  padding: 1.2rem;
}

.tenant-card__head,
.module-card__top,
.tenant-meta,
.service-meta,
.activity-item,
.card-actions,
.table-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

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

.tenant-brand-inline p,
.tenant-card__copy,
.module-card p,
.service-card p,
.quote-card p,
.activity-item p,
.muted {
  color: var(--muted);
}

.tenant-card__copy {
  line-height: 1.65;
}

.swatch-row {
  display: flex;
  gap: 0.45rem;
  margin: 1rem 0;
}

.swatch-row span {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 800;
}

.pill.is-on {
  background: var(--primary);
  color: var(--primary-ink);
}

.module-card {
  padding: 1rem;
}

.module-card.is-disabled {
  opacity: 0.6;
}

.service-meta strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.quote-stack,
.route-list,
.steps-list,
.info-list,
.activity-list {
  display: grid;
  gap: 0.9rem;
}

.quote-card {
  padding: 1rem 1.15rem;
}

.quote-card footer {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.route-list,
.steps-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.info-list > div {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.info-list > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.activity-item {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.activity-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.activity-item time {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.88rem;
}

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

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

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

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

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

.input {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

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

.checkbox-grid {
  display: grid;
  gap: 0.75rem;
}

.checkbox-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  padding: 0.95rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-alt);
}

.checkbox-card input {
  margin-top: 0.3rem;
}

.checkbox-card p {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.table-wrap {
  overflow: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 0.9rem 0.85rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  align-items: center;
  padding: 1.4rem 1.6rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--primary) 24%, var(--surface)) 0%, color-mix(in srgb, var(--secondary) 34%, var(--surface)) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-deep);
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.05;
}

.flash {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 700;
}

.flash-success {
  background: #e8fff7;
  border-color: #a7e7ce;
  color: #0f6b51;
}

.flash-danger {
  background: #fff0f3;
  border-color: #ffc2d1;
  color: #a61e4d;
}

.flash-warning {
  background: #fff7e6;
  border-color: #f6d28f;
  color: #a35f00;
}

@media (max-width: 980px) {
  .header-grid {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-deep);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .hero-split,
  .marketing-stage,
  .sales-hero,
  .feature-columns,
  .tenant-grid,
  .service-grid,
  .module-grid,
  .metric-grid,
  .form-grid,
  .sales-grid,
  .preview-stats,
  .feature-media-grid,
  .showcase-section,
  .showcase-stack,
  .brand-example-grid {
    grid-template-columns: 1fr;
  }

  .marketing-visual {
    display: grid;
    min-height: auto;
    gap: 1rem;
  }

  .visual-main,
  .visual-float {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .closing-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 1rem, 1200px);
  }

  .header-grid {
    gap: 0.65rem;
  }

  .header-actions {
    display: none;
  }

  .hero {
    padding: 1.35rem;
  }

  .marketing-copy h1 {
    font-size: 2.8rem;
  }

  .showcase-section,
  .closing-banner {
    padding: 1.2rem;
  }

  .hero-copy h1 {
    font-size: 2.3rem;
  }

  .footer-grid,
  .tenant-card__head,
  .tenant-meta,
  .service-meta,
  .activity-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-actions,
  .table-actions {
    flex-wrap: wrap;
  }

  .ticker-track {
    justify-content: flex-start;
  }
}
