:root {
  --bg: #050505;
  --bg-soft: #080808;
  --surface: #0f0f10;
  --surface-2: #151515;
  --surface-3: #1d1d1f;
  --ink: #f7f7f7;
  --ink-strong: #ffffff;
  --muted: #a7a7ad;
  --muted-2: #74747c;
  --line: #2a2a2d;
  --line-soft: rgba(255, 255, 255, .08);
  --accent: #dfe7ef;
  --accent-blue: #a9c7df;
  --danger: #ff7373;
  --success: #9ee6bd;
  --shadow: 0 22px 70px rgba(0, 0, 0, .42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(169, 199, 223, .12), transparent 34rem),
    linear-gradient(180deg, #050505 0%, #080808 46%, #050505 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header,
.app-header {
  align-items: center;
  background: rgba(5, 5, 5, .88);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 30;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex-shrink: 0;
  gap: 11px;
  font-weight: 800;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  height: 42px;
  width: auto;
}

.brand-logo-word {
  height: auto;
  max-height: 50px;
  width: min(260px, 62vw);
}

.site-nav,
.footer-links,
.app-user,
.hero-actions,
.bot-frame-head,
.bot-actions,
.actions,
.bulk-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

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

.nav-link {
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 14px;
  padding: 8px 10px;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, .06);
  border-color: var(--line-soft);
  color: var(--ink-strong);
}

.hero {
  align-items: center;
  display: flex;
  min-height: min(760px, calc(100vh - 74px));
  padding: clamp(58px, 9vw, 120px) clamp(20px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .96), rgba(5, 5, 5, .72), rgba(5, 5, 5, .2)),
    url("/static/hero-small-business.png") center / cover no-repeat;
  content: "";
  inset: 0;
  opacity: .58;
  position: absolute;
  z-index: -2;
}

.hero::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, .16), transparent 38%, rgba(169, 199, 223, .12));
  content: "";
  inset: auto -10% 0 46%;
  height: 1px;
  position: absolute;
  transform: rotate(-12deg);
  z-index: -1;
}

.hero-content,
.page-head,
.section,
.band > .section-grid,
.cta {
  animation: fadeUp .55s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  max-width: 780px;
}

.hero h1,
.page-head h1,
.demo-site-hero h1 {
  color: var(--ink-strong);
  font-size: clamp(42px, 7vw, 82px);
  letter-spacing: 0;
  line-height: .98;
  margin: 0 0 20px;
}

.hero p,
.page-head p,
.demo-site-hero p {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  max-width: 730px;
}

.eyebrow {
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.button,
button {
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 11px 15px;
  text-decoration: none;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

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

.button.primary,
button.primary {
  background: var(--ink-strong);
  color: #050505;
}

.button.ghost,
button.ghost,
.button.secondary,
button.secondary {
  background: rgba(255, 255, 255, .07);
  border-color: var(--line-soft);
  color: var(--ink-strong);
}

.button.danger,
button.danger {
  background: rgba(255, 115, 115, .12);
  border-color: rgba(255, 115, 115, .35);
  color: var(--danger);
}

.link-button {
  background: transparent;
  border: 0;
  color: var(--ink);
  min-height: auto;
  padding: 0;
}

.band,
.section,
.page-head,
.cta {
  padding: clamp(44px, 7vw, 92px) clamp(20px, 6vw, 72px);
}

.section,
.page-head {
  margin: 0 auto;
  max-width: 1180px;
}

.section-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(230px, .82fr) minmax(280px, 1.18fr);
}

.section-grid h2,
.section > h2,
.cta h2,
.contact-layout h2 {
  color: var(--ink-strong);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  margin: 0;
}

.section-grid p,
.section > p,
.cta p,
.note {
  color: var(--muted);
  font-size: 18px;
}

.muted-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .018));
  border-block: 1px solid var(--line-soft);
  max-width: none;
}

.muted-section > h2,
.muted-section > p,
.muted-section > .eyebrow,
.muted-section > .note,
.muted-section > .price-grid,
.muted-section > .demo-gallery {
  margin-left: auto;
  margin-right: auto;
  max-width: 1180px;
}

.steps,
.price-grid,
.example-grid,
.cards-3,
.dashboard-grid,
.record-grid,
.demo-gallery {
  display: grid;
  gap: 16px;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.steps article,
.price-card,
.cards-3 article,
.metric-card,
.panel,
.example-card,
.demo-notice,
.demo-gallery article {
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps article,
.price-card,
.cards-3 article,
.metric-card,
.panel,
.demo-notice,
.demo-gallery article {
  padding: 22px;
}

.steps b {
  color: var(--accent-blue);
  display: block;
  margin-bottom: 16px;
}

.steps h3,
.price-card h3,
.example-card h3,
.cards-3 h2,
.cards-3 h3,
.panel h2 {
  color: var(--ink-strong);
  margin: 0 0 8px;
}

.steps p,
.price-card li,
.example-card p,
.cards-3 p,
.panel p,
.empty {
  color: var(--muted);
}

.price-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 28px;
}

.price-card {
  min-height: 270px;
}

.price {
  color: var(--ink-strong);
  font-size: 28px;
  font-weight: 850;
  margin: 10px 0 18px;
}

.price-card ul {
  margin: 0;
  padding-left: 18px;
}

.example-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

.example-card {
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  text-decoration: none;
}

.example-media {
  background: #111;
  margin: 0;
  overflow: hidden;
}

.example-media img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.example-content {
  display: grid;
  flex: 1;
  gap: 10px;
  padding: 22px;
}

.example-card span {
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.example-card h3,
.example-card p {
  margin: 0;
}

.example-card em {
  color: var(--ink-strong);
  font-style: normal;
  font-weight: 800;
  margin-top: auto;
}

.cta {
  background: #f7f7f7;
  color: #080808;
  margin-top: 24px;
  text-align: center;
}

.cta h2 {
  color: #080808;
}

.cta p {
  color: #3d3d42;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.page-head {
  padding-bottom: 32px;
}

.narrow {
  max-width: 860px;
}

.legal-text {
  background: linear-gradient(180deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .03));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--muted);
  padding: clamp(22px, 4vw, 34px);
}

.legal-text h2 {
  color: var(--ink-strong);
  margin-top: 30px;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text p {
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(260px, .82fr) minmax(300px, 1.18fr);
}

.contact-data {
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
}

.contact-data strong,
.contact-data span,
.contact-data a {
  display: block;
}

.contact-data a {
  color: var(--ink-strong);
  text-decoration: none;
}

.contact-primary {
  gap: 12px;
}

.contact-mail {
  color: var(--ink-strong);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.contact-small,
.contact-small a {
  color: var(--muted);
}

.contact-form,
.auth-card,
.form-grid {
  display: grid;
  gap: 14px;
}

.contact-form,
.auth-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .04));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 34px);
}

label {
  color: var(--muted);
  display: grid;
  font-size: 14px;
  gap: 7px;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, .065);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

option {
  background: #0f0f10;
  color: #f7f7f7;
}

option:checked,
option:hover {
  background: #1d1d1f;
  color: #ffffff;
}

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

input:focus,
select:focus,
textarea:focus,
button:focus {
  border-color: rgba(169, 199, 223, .7);
  outline: 2px solid rgba(169, 199, 223, .12);
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}

label small,
.help-text {
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.45;
}

.help-text {
  margin: 0;
}

.wide {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 22px;
}

.login-section {
  align-items: center;
  display: grid;
  min-height: calc(100vh - 74px);
  padding: 28px;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.login-section::before {
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .08) 48%, transparent 49%),
    radial-gradient(circle at 30% 15%, rgba(169, 199, 223, .14), transparent 28rem);
  content: "";
  inset: 0;
  opacity: .72;
  pointer-events: none;
  position: absolute;
}

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

.auth-card {
  max-width: 430px;
  width: min(100%, 430px);
}

.auth-card h1 {
  color: var(--ink-strong);
  font-size: 42px;
  line-height: 1;
  margin: 0;
}

.auth-logo {
  margin-bottom: 4px;
}

.auth-logo .brand-logo-word {
  width: min(270px, 72vw);
}

.demo-site {
  padding: clamp(28px, 5vw, 64px) clamp(20px, 6vw, 72px) 0;
}

.demo-disclaimer {
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  margin: 0 auto 18px;
  max-width: 1180px;
  padding: 10px 12px;
  text-align: center;
}

.demo-site-hero {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025)),
    #080808;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: clamp(24px, 5vw, 52px);
  grid-template-columns: minmax(280px, .9fr) minmax(300px, 1.1fr);
  margin: 0 auto;
  max-width: 1180px;
  overflow: hidden;
  padding: clamp(24px, 5vw, 58px);
}

.demo-site-hero figure {
  margin: 0;
  position: relative;
}

.demo-site-hero figure::after {
  border: 1px solid rgba(255, 255, 255, .18);
  content: "";
  inset: 14px;
  pointer-events: none;
  position: absolute;
}

.demo-site-hero img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.demo-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 0;
}

.demo-stats div {
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 12px;
}

.demo-stats dt {
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
}

.demo-stats dd {
  color: var(--ink-strong);
  font-weight: 850;
  margin: 2px 0 0;
}

.demo-mini-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 18px auto 0;
  max-width: 1180px;
}

.demo-mini-nav a {
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  padding: 8px 12px;
  text-decoration: none;
}

.demo-feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.demo-feature-grid article,
.demo-info-card,
.demo-contact-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.demo-feature-grid h3,
.demo-info-card h2,
.demo-contact-card h2 {
  color: var(--ink-strong);
  margin: 0 0 8px;
}

.demo-feature-grid p,
.demo-contact-card p {
  color: var(--muted);
  margin: 0;
}

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

.demo-info-card ul {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.demo-info-card li,
.demo-form-preview span {
  align-items: center;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  padding: 12px;
}

.demo-info-card li span,
.demo-form-preview span {
  color: var(--muted);
}

.demo-form-preview {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

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

.site-footer {
  background: #080808;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 42px clamp(20px, 6vw, 72px);
}

.footer-brand p,
address {
  font-style: normal;
  line-height: 1.85;
  margin: 14px 0 0;
}

.site-footer address a {
  color: var(--ink-strong);
  text-decoration: none;
}

.footer-brand > a[href^="mailto"] {
  color: var(--ink-strong);
  display: inline-block;
  margin-top: 8px;
  text-decoration: none;
}

.site-footer .brand-logo-word {
  width: min(250px, 70vw);
}

.footer-links {
  align-content: start;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
}

.app-body {
  background: #050505;
}

.role-pill,
.status-pill,
.import-tag {
  background: rgba(255, 255, 255, .075);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  padding: 4px 8px;
}

.crm-shell {
  display: grid;
  gap: 18px;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: calc(100vh - 74px);
  padding: 18px;
}

.sidebar,
.workspace {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.sidebar {
  align-self: start;
  background: rgba(255, 255, 255, .045);
  display: grid;
  gap: 6px;
  padding: 12px;
  position: sticky;
  top: 92px;
}

.sidebar button {
  background: transparent;
  color: var(--muted);
  justify-content: flex-start;
}

.sidebar button.active,
.sidebar button:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--ink);
}

.workspace {
  background: rgba(255, 255, 255, .025);
  min-width: 0;
  padding: 22px;
}

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

.workspace-head h1 {
  color: var(--ink-strong);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  margin: 0;
}

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

.dashboard-grid.compact {
  margin: 18px 0;
}

.metric-card strong {
  color: var(--ink-strong);
  display: block;
  font-size: 34px;
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
}

.panel {
  margin-bottom: 18px;
}

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

.toolbar,
.import-toolbar {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 16px;
}

.table-wrap {
  overflow-x: auto;
}

.table-wrap a {
  color: var(--ink-strong);
  text-decoration: none;
}

table {
  border-collapse: collapse;
  min-width: 820px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line-soft);
  padding: 13px 10px;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

td span {
  color: var(--muted);
}

.lead-check {
  width: auto;
}

.import-box {
  display: grid;
  gap: 14px;
}

.import-results {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.import-results article {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 14px;
}

.stats-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.stats-grid h3 {
  color: var(--ink-strong);
  margin: 0 0 10px;
}

.stats-grid table {
  min-width: 0;
}

.optional-details {
  background: rgba(255, 255, 255, .035);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 14px;
}

.optional-details summary {
  color: var(--ink-strong);
  cursor: pointer;
  font-weight: 850;
  margin-bottom: 12px;
}

.optional-details[open] summary {
  margin-bottom: 14px;
}

.bot-shell {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: calc(100vh - 74px);
  padding: 14px;
}

.bot-frame-head {
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius) var(--radius) 0 0;
  justify-content: space-between;
  padding: 14px 16px;
}

.bot-frame-head h1 {
  color: var(--ink-strong);
  margin: 0;
}

.bot-frame {
  background: #050505;
  border: 1px solid var(--line-soft);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
  height: 100%;
  min-height: 620px;
  width: 100%;
}

.preview-wrap {
  min-height: 100vh;
}

.preview-top {
  align-items: center;
  background: rgba(5, 5, 5, .9);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  padding: 14px clamp(18px, 4vw, 56px);
}

.preview-frame {
  border: 0;
  min-height: calc(100vh - 74px);
  width: 100%;
}

.generated-preview {
  margin: clamp(28px, 6vw, 70px) auto;
  max-width: 980px;
  padding: 0 20px;
}

.generated-preview h1 {
  color: var(--ink-strong);
  font-size: clamp(42px, 7vw, 80px);
  margin: 0 0 14px;
}

.demo-sections {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.demo-sections article {
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px;
}

.loading {
  color: var(--muted);
  padding: 28px;
}

@media (max-width: 1120px) {
  .price-grid,
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header,
  .app-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 14px;
    padding-top: 14px;
    position: static;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .section-grid,
  .contact-layout,
  .demo-site-hero,
  .demo-split,
  .site-footer,
  .crm-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .form-grid,
  .toolbar,
  .import-toolbar,
  .example-grid,
  .demo-gallery,
  .demo-stats,
  .import-results,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .workspace-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .price-grid,
  .steps,
  .dashboard-grid,
  .demo-feature-grid,
  .demo-sections {
    grid-template-columns: 1fr;
  }

  .site-nav .nav-link {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero h1,
  .page-head h1,
  .demo-site-hero h1 {
    font-size: 40px;
  }

  .brand-logo-word,
  .site-footer .brand-logo-word,
  .auth-logo .brand-logo-word {
    width: min(230px, 82vw);
  }

  .bot-shell {
    height: auto;
  }

  .bot-frame {
    min-height: 680px;
  }
}
