.hero {
  min-height: auto;
  display: flex;
  align-items: flex-start;
  padding-top: 164px;
  padding-bottom: 88px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 6% 8% auto;
  height: 560px;
  background:
    radial-gradient(circle at 20% 20%, rgba(191, 125, 255, 0.24), transparent 36%),
    radial-gradient(circle at 78% 18%, rgba(97, 210, 255, 0.2), transparent 28%),
    radial-gradient(circle at 58% 90%, rgba(255, 142, 105, 0.18), transparent 28%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
  justify-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 780px;
  text-align: center;
}

.hero-title {
  margin: 24px 0 20px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  max-width: none;
}

.hero-title-line {
  display: block;
  max-width: 100%;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: var(--text);
  -webkit-text-fill-color: currentColor;
}

.hero-title-line-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, #8f63ff 42%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  max-width: 54ch;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0 28px;
  justify-content: center;
}

.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-preview {
  position: relative;
  min-width: 0;
  width: min(100%, 980px);
}

.preview-shell {
  min-height: auto;
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px;
  border-radius: 34px;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(191, 125, 255, 0.08), transparent 46%);
}

.preview-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.03));
  opacity: 1;
  pointer-events: none;
}

.side-card p,
.integration-card p,
.install-card p,
.compare-cell,
.download-step p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.scene-bar span {
  display: block;
  height: 100%;
  width: var(--bar, 70%);
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), #8f63ff, var(--accent-2));
}

.compare-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted-strong);
  font-size: 0.78rem;
}

.app-window {
  min-height: 700px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #1f1f1f;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.app-window-top {
  height: 54px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #262626;
}

.app-window-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.app-window-logo,
.app-welcome-logo {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.app-window-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.app-window-body {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  min-height: 646px;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px 18px;
  background: #202020;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.app-sidebar-add {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 2rem;
  line-height: 1;
}

.app-sidebar-icons,
.app-sidebar-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.app-sidebar-icons span,
.app-sidebar-status span:first-child {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  opacity: 0.55;
}

.app-sidebar-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(191, 125, 255, 0.82);
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
  border: none;
  opacity: 1;
}

.app-canvas {
  position: relative;
  min-height: 646px;
  background: #1f1f1f;
  padding: 46px 34px 180px;
}

.app-canvas::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
}

.app-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 360px;
}

.app-welcome {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.app-welcome h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.92);
}

.app-welcome-logo {
  width: 34px;
  height: 34px;
}

.app-tagline {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.28);
  font-size: 1.02rem;
}

.app-suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.app-suggestions span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.95rem;
}

.app-composer {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(100%, 1100px);
  min-height: 162px;
  padding: 24px 24px 18px;
  border-radius: 34px;
  background: #343132;
  border: 1px solid rgba(191, 125, 255, 0.34);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34), inset 0 0 0 2px rgba(191, 125, 255, 0.08);
}

.app-composer-input {
  color: rgba(255, 255, 255, 0.28);
  font-size: 1.08rem;
}

.app-composer-footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.app-model {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.98rem;
}

.app-composer-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-composer-tools span {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0.48;
}

.app-composer-tools button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  position: relative;
  cursor: default;
}

.app-composer-tools button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(255, 255, 255, 0.72);
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  transform: translate(-62%, -38%) rotate(-45deg);
}

.signal-marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.signal-track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.signal-item {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.story-points {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.story-point {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 24px;
}

.story-point h3,
.story-main h3,
.side-card h3,
.scene-card h3,
.integration-card strong,
.compare-head h3,
.install-card h3,
.download-panel-top strong,
.legal-panel h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  letter-spacing: -0.03em;
}

.story-point h3,
.side-card h3,
.install-card h3 {
  font-size: 1.18rem;
}

.story-point p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.story-point-number,
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "JetBrains Mono", monospace;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.07);
}

.story-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
}

.story-main,
.side-card,
.integration-card,
.compare-card,
.install-card,
.download-panel {
  border-radius: 32px;
}

.story-main {
  padding: 24px;
}

.story-main-top,
.compare-head,
.download-panel-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.story-main h3 {
  margin: 20px 0 22px;
  max-width: 14ch;
  font-size: 2rem;
  line-height: 1;
}

.command-flow {
  display: grid;
  gap: 12px;
}

.command-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.command-row strong {
  display: block;
  margin-bottom: 6px;
}

.command-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.command-row span {
  font-family: "JetBrains Mono", monospace;
  color: var(--accent-2);
}

.command-band,
.side-rail,
.scene-rail,
.connector-cloud,
.download-actions,
.legal-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.command-band {
  margin-top: 20px;
}

.story-side {
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 22px;
}

.side-card h3 {
  margin: 16px 0 0;
}

.side-rail {
  margin-top: 20px;
}

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

.scene-card {
  grid-column: span 4;
  min-height: 320px;
  padding: 28px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.scene-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: translateY(-100%);
  animation: scan 8s linear infinite;
  opacity: 0.4;
  pointer-events: none;
}

.scene-card-wide {
  grid-column: span 8;
}

.scene-card h3 {
  margin: 18px 0 14px;
  max-width: 12ch;
  font-size: 2rem;
  line-height: 1;
}

.scene-card p {
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.78;
}

.scene-chart {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.scene-chart-row {
  display: grid;
  gap: 8px;
}

.scene-chart-row span:first-child {
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.scene-bar {
  height: 12px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.scene-bar span {
  width: var(--bar, 70%);
  animation: metricFill 4.5s ease-in-out infinite alternate;
}

.scene-sunrise {
  background:
    linear-gradient(145deg, rgba(255, 142, 105, 0.22), rgba(10, 14, 28, 0.82) 54%),
    rgba(12, 16, 30, 0.78);
}

.scene-ocean {
  background:
    linear-gradient(145deg, rgba(97, 210, 255, 0.22), rgba(10, 14, 28, 0.82) 58%),
    rgba(12, 16, 30, 0.78);
}

.scene-violet {
  background:
    linear-gradient(145deg, rgba(191, 125, 255, 0.22), rgba(10, 14, 28, 0.82) 58%),
    rgba(12, 16, 30, 0.78);
}

/* Code intelligence — emerald tint */
.scene-emerald {
  background:
    linear-gradient(145deg, rgba(52, 211, 153, 0.2), rgba(10, 14, 28, 0.82) 58%),
    rgba(12, 16, 30, 0.78);
}

/* Usage analytics — sapphire tint */
.scene-sapphire {
  background:
    linear-gradient(145deg, rgba(99, 102, 241, 0.22), rgba(10, 14, 28, 0.82) 58%),
    rgba(12, 16, 30, 0.78);
}

.integrations-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 38px;
  align-items: center;
}

.orbit-stage {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-shell {
  position: relative;
  width: min(540px, 100%);
  aspect-ratio: 1;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.14);
}

.orbit-ring-1 {
  inset: 0;
  animation: spin 30s linear infinite;
}

.orbit-ring-2 {
  inset: 58px;
  animation: spin 24s linear infinite reverse;
}

.orbit-ring-3 {
  inset: 116px;
  animation: spin 18s linear infinite;
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 128px;
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.orbit-core::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(191, 125, 255, 0.24), rgba(97, 210, 255, 0.08) 55%, transparent 78%);
  filter: blur(18px);
  z-index: -1;
}

.orbit-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
}

.provider-node {
  position: absolute;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 21, 0.86);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
  color: var(--muted-strong);
  font-size: 0.84rem;
  white-space: nowrap;
}

.node-openai {
  top: 8%;
  left: 40%;
}

.node-claude {
  top: 18%;
  right: 4%;
}

.node-gemini {
  top: 50%;
  right: -2%;
}

.node-mistral {
  bottom: 17%;
  right: 8%;
}

.node-deepseek {
  bottom: 6%;
  left: 40%;
}

.node-openrouter {
  bottom: 18%;
  left: 2%;
}

.node-ollama {
  top: 50%;
  left: -4%;
}

.node-lmstudio {
  top: 18%;
  left: 6%;
}

.connector-cloud {
  margin-top: 28px;
}

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

.integration-card {
  padding: 22px;
}

.integration-card strong {
  display: block;
  font-size: 1.12rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.8fr);
  gap: 18px;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.support-card {
  padding: 28px;
}

.support-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.support-github {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.support-card h3 {
  margin: 18px 0 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.support-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.82;
}

.support-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.support-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted-strong);
  font-size: 0.84rem;
}

.compare-card {
  grid-row: span 2;
  padding: 28px;
}

.compare-head h3 {
  margin-top: 10px;
  font-size: 1.9rem;
  line-height: 1;
}

.compare-table {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.compare-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compare-cell {
  padding: 18px;
  border-radius: 22px;
}

.compare-cell-bad {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--dim);
}

.compare-cell-good {
  border: 1px solid rgba(97, 210, 255, 0.24);
  background: rgba(97, 210, 255, 0.12);
}

.install-card {
  padding: 24px;
}

.install-card h3 {
  margin: 14px 0 0;
}

.step-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step {
  display: flex;
  align-items: start;
  gap: 14px;
}

.step p {
  margin: 8px 0 0;
}

.download-section {
  overflow: hidden;
  padding-bottom: 146px;
}

.download-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.download-aurora-a {
  width: 460px;
  height: 460px;
  top: 10%;
  right: -8%;
  background: rgba(191, 125, 255, 0.2);
}

.download-aurora-b {
  width: 420px;
  height: 420px;
  bottom: 0;
  left: -6%;
  background: rgba(97, 210, 255, 0.14);
}

.download-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 32px;
  align-items: center;
}

.download-word {
  margin: 22px 0 16px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(4.6rem, 10vw, 8.8rem);
  line-height: 0.84;
  letter-spacing: -0.08em;
}

.download-copy {
  max-width: 44ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.88;
}

.download-actions {
  margin-top: 32px;
}

.download-panel {
  padding: 28px;
}

.download-checks {
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.download-checks li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.72;
}

.download-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

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

.download-step {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.download-step p {
  margin-top: 10px;
}

@keyframes metricFill {
  from {
    transform: scaleX(0.88);
    transform-origin: left;
  }

  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@media (max-width: 1080px) {

  .hero-grid,
  .story-layout,
  .integrations-layout,
  .download-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

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

  .preview-grid,
  .story-stage {
    grid-template-columns: 1fr;
  }

  .compare-card {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 820px) {

  .scene-card,
  .scene-card-wide {
    grid-column: span 12;
  }

  .integration-grid,
  .download-steps {
    grid-template-columns: 1fr;
  }

  .orbit-stage {
    min-height: 460px;
  }

  .provider-node {
    position: static;
    display: inline-flex;
    margin: 8px 8px 0 0;
  }

  .orbit-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 34px 0 0;
  }

  .orbit-ring {
    display: none;
  }

  .orbit-core {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 16px;
  }

  .app-window-body {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .app-canvas {
    padding: 34px 20px 180px;
  }

  .app-composer {
    width: calc(100% - 32px);
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 126px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 15vw, 4.6rem);
  }

  .download-steps,
  .integration-grid,
  .proof-grid,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .preview-shell,
  .story-main,
  .download-panel,
  .scene-card {
    padding: 22px;
    border-radius: 28px;
  }

  .compare-card {
    grid-column: auto;
  }

  .app-window {
    min-height: auto;
  }

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

  .app-sidebar {
    display: none;
  }

  .app-canvas {
    min-height: auto;
    padding: 28px 16px 20px;
  }

  .app-center {
    min-height: auto;
  }

  .app-welcome {
    flex-direction: column;
    gap: 12px;
  }

  .app-welcome h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .app-suggestions span {
    width: 100%;
  }

  .app-composer {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    min-height: 150px;
    margin-top: 32px;
    padding: 20px 18px 16px;
  }

  .app-composer-footer {
    position: static;
    margin-top: 34px;
    flex-direction: column;
    align-items: flex-start;
  }
