:root {
  --stk-link: #0066cc;
  --stk-button: #0891b2;
  --stk-button-light: #06b6d4;
  --stk-header-bg: #0c4a6e;
  --stk-header-height: 52px;
  --page-gutter: clamp(24px, 5vw, 40px);

  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
}

html.dark {
  color-scheme: dark;
  --stk-button: #22d3ee;
  --stk-button-light: #67e8f9;
  --stk-header-bg: #082f49;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-color: #334155;
}

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

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

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
}

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

#pillars,
#more,
#demo,
#demo-full,
#contacts {
  scroll-margin-top: calc(var(--stk-header-height) + 16px);
}

/* ── Header ── */

.hub-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--stk-header-bg) 96%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, #000 12%, var(--stk-header-bg));
}

.hub-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--stk-header-height);
}

.hub-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
  color: #fff;
}

.hub-header__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.hub-header__brand-text {
  display: flex;
  flex-direction: column;
}

.hub-header__brand-title {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
  opacity: 0.82;
}

.hub-header__brand-subtitle {
  margin-top: 1px;
  font-size: 14px;
  font-weight: 700;
  opacity: 1;
  white-space: nowrap;
}

.hub-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: flex-end;
  padding-right: 8px;
}

.hub-header__nav-link {
  padding: 6px 12px;
  font: inherit;
  font-size: 13px;
  color: color-mix(in srgb, #fff 88%, transparent);
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.hub-header__nav-link:hover {
  color: #fff;
  background: color-mix(in srgb, #fff 12%, transparent);
}

.hub-header__actions {
  display: flex;
  align-items: center;
}

.hub-header__theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.hub-header__theme:hover {
  background: color-mix(in srgb, #fff 12%, transparent);
}

/* ── Buttons ── */

.hub-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.hub-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--stk-button-light), var(--stk-button));
  box-shadow: 0 4px 14px color-mix(in srgb, var(--stk-button) 35%, transparent);
}

.hub-btn--primary:hover {
  transform: translateY(-1px);
}

.hub-btn--ghost {
  color: var(--text-primary);
  background-color: var(--bg-tertiary);
  border: 1px solid var(--border-color);
}

.hub-btn--ghost:hover { background-color: var(--bg-secondary); }

a.hub-btn--ghost {
  background-color: var(--bg-tertiary);
}

/* ── Hero (укрупнённо) ── */

.hero {
  max-width: none;
  margin: 0;
  padding: 48px 0 32px;
}

.hero__content {
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
  box-sizing: border-box;
}

/* ── Scroll progress + affordance ── */

.scroll-progress {
  position: fixed;
  top: var(--stk-header-height);
  left: 0;
  z-index: 55;
  width: 0;
  height: 2px;
  background: var(--stk-button);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.scroll-progress.is-visible {
  opacity: 1;
}

.scroll-sentinel {
  display: block;
  width: 100%;
  height: 1px;
  pointer-events: none;
}

.scroll-affordance {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.scroll-affordance.is-visible {
  opacity: 1;
}

.scroll-affordance__fade {
  height: 88px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    color-mix(in srgb, var(--bg-secondary) 40%, transparent) 50%,
    color-mix(in srgb, var(--bg-secondary) 92%, transparent) 100%
  );
}

.scroll-affordance__chevron {
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 36px;
  height: 36px;
  transform: translateX(-50%);
  color: var(--stk-button);
  filter: drop-shadow(0 1px 2px color-mix(in srgb, var(--bg-primary) 80%, transparent));
  animation: scroll-affordance-bounce 2.4s ease-in-out infinite;
}

@keyframes scroll-affordance-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50% { transform: translateX(-50%) translateY(4px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-affordance__chevron { animation: none; opacity: 0.75; }
}

.hero__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-bottom: 12px;
}

.hero__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__kicker {
  margin: 0;
  margin-left: auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.35;
  text-wrap: balance;
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-align: center;
}

.hero__title-phrase {
  white-space: nowrap;
}

.hero__title-line1 {
  white-space: nowrap;
}

.hero__title-sub {
  display: block;
  margin-top: 0.2em;
  font-weight: 700;
  font-size: clamp(0.85rem, 1.8vw, 1.35rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero__details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 28px;
}

.hero__accent {
  margin: 0;
  max-width: none;
  flex: 0 1 auto;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--stk-button);
}

.hero__modules {
  margin: 0;
  max-width: none;
  flex: 0 1 auto;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  overflow: visible;
}

.hero__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  overflow: visible;
}

.hero__cta-note {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  flex: 0 1 auto;
}

@media (min-width: 721px) {
  .hero__details {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 20px;
  }

  .hero__accent,
  .hero__modules {
    white-space: nowrap;
  }

  .hero__cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 20px;
  }

  .hero__cta-note {
    white-space: nowrap;
  }
}

.hero__link {
  display: inline;
  padding: 0;
  font: inherit;
  font-weight: 600;
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--text-secondary) 40%, transparent);
  text-underline-offset: 3px;
}

.hero__link:hover {
  color: var(--stk-button);
  text-decoration-color: var(--stk-button);
}

.hero__preview {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}

.hero__preview .demo__preview-wrap {
  width: auto;
  height: 44px;
}

.hero__preview .demo__preview--web img {
  height: 44px;
  width: auto;
  aspect-ratio: 16 / 9;
}

/* ── Pillars (средний уровень) ── */

.pillars {
  background: var(--bg-secondary);
  border-block: 1px solid var(--border-color);
  box-shadow: 0 -6px 20px color-mix(in srgb, #000 5%, transparent);
}

.pillars__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  max-width: 880px;
  margin: 0 auto;
  padding: 28px 20px;
}

.pillar {
  padding: 4px 0 4px 16px;
  border-left: 3px solid color-mix(in srgb, var(--stk-button) 45%, var(--border-color));
}

.pillar__title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pillar__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.pillar--spotlight {
  grid-column: 1 / -1;
  padding-top: 8px;
  padding-bottom: 8px;
  border-left-color: var(--stk-button);
  background: color-mix(in srgb, var(--stk-button) 5%, transparent);
  border-radius: 0 6px 6px 0;
}

.pillar--spotlight .pillar__title {
  color: var(--text-primary);
}

/* ── Details (детально) ── */

.details {
  padding: 56px 20px;
}

.details__inner {
  max-width: 680px;
  margin: 0 auto;
}

.details__heading {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.detail {
  border-bottom: 1px solid var(--border-color);
}

.detail:first-of-type {
  border-top: 1px solid var(--border-color);
}

.detail__summary {
  position: relative;
  padding: 18px 4rem 18px 4px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
  border-radius: 6px;
  transition: background-color 0.15s, color 0.15s;
}

.detail__summary::-webkit-details-marker { display: none; }

.detail__summary::before,
.detail__summary::after {
  content: '';
  position: absolute;
  right: 4px;
  top: 50%;
  width: 3rem;
  height: 2.25rem;
  translate: 0 -50%;
  pointer-events: none;
}

.detail__summary::before {
  border-radius: 8px;
  background: color-mix(in srgb, var(--stk-button) 4%, var(--bg-tertiary));
  transition: background-color 0.15s;
}

.detail__summary::after {
  background-color: var(--stk-button);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h13M14 7l5 5-5 5'/%3E%3C/svg%3E") center / 32px 20px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h13M14 7l5 5-5 5'/%3E%3C/svg%3E") center / 32px 20px no-repeat;
  transition: background-color 0.15s, transform 0.2s ease, -webkit-mask 0.15s, mask 0.15s;
}

.detail[open] .detail__summary {
  background: var(--bg-secondary);
  color: var(--stk-button);
}

.detail[open] .detail__summary::before {
  background: color-mix(in srgb, var(--stk-button) 8%, var(--bg-tertiary));
}

.detail[open] .detail__summary::after {
  background-color: var(--stk-button);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4v13M7 14l5 5 5-5'/%3E%3C/svg%3E") center / 20px 30px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 4v13M7 14l5 5 5-5'/%3E%3C/svg%3E") center / 20px 30px no-repeat;
}

.detail__summary:hover {
  color: var(--stk-button);
  background: var(--bg-secondary);
}

.detail__summary:hover::before {
  background: color-mix(in srgb, var(--stk-button) 6%, var(--bg-tertiary));
}

.detail__summary:hover::after {
  background-color: var(--stk-button-light);
  transform: translateX(3px);
}

.detail[open] .detail__summary:hover::after {
  transform: translateY(3px);
}

.detail__body {
  padding: 0 4px 20px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.detail__body p { margin: 0 0 12px; }
.detail__body p:last-child { margin-bottom: 0; }

.detail__body ul,
.detail__body ol {
  margin: 0 0 12px;
  padding-left: 1.25rem;
}

.detail__body li { margin-bottom: 6px; }
.detail__body li:last-child { margin-bottom: 0; }

.detail__note {
  padding: 12px 14px;
  background: var(--bg-secondary);
  border-left: 3px solid var(--stk-button);
  border-radius: 0 6px 6px 0;
}

/* ── Demo ── */

.demo {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
}

.demo__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 20px;
  align-items: stretch;
}

.demo__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: visible;
}

.demo__card--custom {
  border-color: color-mix(in srgb, var(--stk-button) 35%, var(--border-color));
}

.demo__title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
}

.demo__title strong {
  color: var(--stk-button);
}

.demo__lead {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.demo__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: auto;
  overflow: visible;
}

.demo__version {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  overflow: visible;
}

.demo__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  align-self: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--stk-button);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--stk-button) 50%, transparent);
  text-underline-offset: 4px;
  transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.demo__link::after {
  content: '→';
  font-weight: 600;
  text-decoration: none;
}

.demo__link:hover {
  color: var(--stk-button-light);
  text-decoration-color: var(--stk-button);
}

.demo__preview-wrap {
  position: relative;
  overflow: visible;
}

.demo__preview-wrap:hover {
  z-index: 20;
}

.demo__preview {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-tertiary);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.demo__preview:hover {
  border-color: color-mix(in srgb, var(--stk-button) 45%, var(--border-color));
  box-shadow: 0 4px 14px color-mix(in srgb, var(--stk-button) 12%, transparent);
}

.demo__preview img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top;
}

.demo__zoom {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--stk-button) 45%, var(--border-color));
  border-radius: 8px;
  background: #ffffff;
  box-sizing: border-box;
  box-shadow: 0 12px 32px color-mix(in srgb, #000 22%, transparent);
  opacity: 0;
  visibility: hidden;
  transform: scale(1);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
  pointer-events: none;
}

/* 10px сверху и по бокам визуально после scale (ПК ×3) */
.demo__zoom.demo__preview--web {
  transform-origin: top left;
  padding: calc(10px / 3) calc(10px / 3) 0;
  border-radius: calc(8px / 3);
}

.demo__zoom.demo__preview--web img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: cover;
  object-position: top;
}

.demo__zoom.demo__preview--mobile {
  transform-origin: top right;
  padding: calc(20px / 1.5);
}

.demo__preview-wrap:hover .demo__zoom {
  opacity: 1;
  visibility: visible;
  box-shadow: 0 16px 40px color-mix(in srgb, #000 28%, transparent);
}

.demo__preview-wrap:hover .demo__zoom.demo__preview--web {
  transform: translateX(calc(var(--zoom-shift, 0px) / 3)) scale(3);
}

.demo__preview-wrap:hover .demo__zoom.demo__preview--mobile {
  transform: translateX(calc(var(--zoom-shift, 0px) / 1.5)) scale(1.5);
}

.demo__zoom img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: top center;
}

.demo__preview--web img {
  aspect-ratio: 16 / 9;
}

.demo__preview--mobile img {
  aspect-ratio: 9 / 16;
  max-height: 300px;
  object-fit: cover;
}

.demo__zoom.demo__preview--mobile img {
  aspect-ratio: auto;
  max-height: none;
  object-fit: contain;
}

.demo__highlights {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.demo__highlights li {
  position: relative;
  padding-left: 20px;
}

.demo__highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--stk-button);
  font-weight: 700;
}

.demo__modules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.demo__module {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

.demo__module--on {
  border-color: color-mix(in srgb, var(--stk-button) 40%, var(--border-color));
  color: var(--text-primary);
}

.demo__module--off {
  opacity: 0.65;
}

.demo__module-mark {
  font-size: 11px;
  font-weight: 700;
  color: var(--stk-button);
}

.demo__module--off .demo__module-mark {
  color: var(--text-muted);
}

.demo__cta-area {
  margin-top: auto;
  width: 100%;
}

.demo__cta {
  justify-content: center;
  width: 100%;
}

.hub-btn--primary.demo__cta--done {
  color: var(--stk-button);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  box-shadow: none;
  font-weight: 700;
}

.demo__cta--done {
  height: auto;
  min-height: 44px;
  padding: 10px 16px;
  white-space: normal;
  cursor: default;
  transform: none;
  font-weight: 600;
}

.demo__cta--done:hover {
  transform: none;
}

.demo__cta--done:disabled {
  opacity: 1;
}

.demo__offline {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.demo__offline code {
  padding: 2px 6px;
  font-size: 13px;
  background: var(--bg-tertiary);
  border-radius: 4px;
}

/* ── Contacts ── */

.contacts {
  padding: 56px 20px;
  border-top: 1px solid var(--border-color);
}

.contacts__inner {
  max-width: 880px;
  margin: 0 auto;
}

.contacts__heading {
  margin: 0 0 28px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contacts__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
  padding: 22px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.contacts__phone {
  margin: 0;
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.contacts__icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contacts__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  color: var(--stk-button);
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.contacts__icon-btn:hover {
  color: var(--stk-button-light);
  border-color: color-mix(in srgb, var(--stk-button) 35%, var(--border-color));
  background: color-mix(in srgb, var(--stk-button) 8%, var(--bg-primary));
}

.contacts__icon-btn--telegram {
  color: #229ed9;
}

.contacts__icon-btn--telegram:hover {
  color: #1a8bc4;
}

.contacts__icon-img {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

/* ── Footer ── */

.hub-footer {
  margin-top: auto;
  padding: 24px 20px;
  background: var(--stk-header-bg);
  color: color-mix(in srgb, #fff 75%, transparent);
}

.hub-footer__inner {
  max-width: 880px;
  margin: 0 auto;
}

.hub-footer__copy {
  margin: 0;
  font-size: 13px;
}

/* ── Responsive ── */

@media (max-width: 720px) {
  .hero__meta {
    align-items: flex-start;
    gap: 12px;
  }

  .hero__eyebrow {
    flex-shrink: 0;
  }

  .hero__kicker {
    flex: 1;
    min-width: 0;
    max-width: 62%;
    margin-left: auto;
    text-align: right;
  }

  .hero__title {
    text-wrap: pretty;
    text-align: center;
  }

  .hero__title-line1 {
    display: block;
    white-space: nowrap;
    font-size: clamp(1.35rem, 6.5vw, 2.5rem);
  }

  .hero__title-phrase {
    white-space: nowrap;
  }

  .hero__title-sub {
    font-size: clamp(0.85rem, 4.5vw, 1.15rem);
  }

  .hero__actions {
    display: flex;
  }

  .pillars__inner {
    grid-template-columns: 1fr;
  }

  .pillar {
    padding: 4px 0 4px 14px;
  }

  .demo__inner {
    grid-template-columns: 1fr;
  }

  .hub-header__brand-subtitle { display: none; }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 40px;
  }

  .hub-header__brand-text { display: none; }
}
