:root {
  --ink: #0c1a24;
  --ink-soft: #3a5163;
  --paper: #eef3f6;
  --paper-2: #e2eaf0;
  --foam: #f7fafc;
  --jade: #0f766e;
  --jade-deep: #115e59;
  --signal: #c2410c;
  --line: rgba(12, 26, 36, 0.12);
  --shadow: 0 20px 50px rgba(12, 26, 36, 0.12);
  --radius: 18px;
  --font-ar: "IBM Plex Sans Arabic", "Outfit", sans-serif;
  --font-display: "Syne", "IBM Plex Sans Arabic", sans-serif;
  --font-en: "Outfit", "IBM Plex Sans Arabic", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-ar);
  font-weight: 400;
  line-height: 1.7;
  background: var(--paper);
  overflow-x: hidden;
}

body[dir="ltr"] {
  font-family: var(--font-en);
  line-height: 1.55;
}

.stage {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.stage-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 90% -5%, rgba(15, 118, 110, 0.18), transparent 55%),
    radial-gradient(700px 420px at 0% 30%, rgba(194, 65, 12, 0.1), transparent 50%),
    linear-gradient(165deg, #f4f8fa 0%, #e8eef3 45%, #dde8e6 100%);
}

.stage-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: floaty 14s var(--ease) infinite alternate;
}

.stage-orb-a {
  width: 42vmax;
  height: 42vmax;
  top: -18vmax;
  inset-inline-end: -12vmax;
  background: rgba(15, 118, 110, 0.22);
}

.stage-orb-b {
  width: 28vmax;
  height: 28vmax;
  bottom: 10%;
  inset-inline-start: -8vmax;
  background: rgba(194, 65, 12, 0.12);
  animation-delay: -4s;
}

@keyframes floaty {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(2%, 3%, 0) scale(1.06); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 252, 0.82);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  background: var(--ink);
  color: var(--foam);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.brand-stack { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.brand-by { font-size: 0.75rem; color: var(--ink-soft); }

.header-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.nav-link {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(15, 118, 110, 0.1);
  color: var(--jade-deep);
  outline: none;
}

main {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 5rem;
}

.hero {
  min-height: min(78vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vh, 4rem) 0 3rem;
  animation: rise 0.8s var(--ease) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.hero-kicker {
  margin: 0 0 1rem;
  color: var(--jade-deep);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero-ar {
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-lede {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.panel {
  margin-top: 1.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(247, 250, 252, 0.88);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  animation: rise 0.7s var(--ease) both;
}

.panel.slim { box-shadow: none; }
.panel.is-hidden { display: none; }

.panel-head { margin-bottom: 1.25rem; }
.panel-head h2 {
  margin: 0.35rem 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}
.panel-head p { margin: 0; color: var(--ink-soft); max-width: 46rem; }

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.12);
  color: var(--jade-deep);
  font-size: 0.78rem;
  font-weight: 700;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

.btn-primary {
  background: var(--ink);
  color: var(--foam);
  box-shadow: 0 10px 28px rgba(12, 26, 36, 0.22);
}
.btn-primary:hover:not(:disabled) { background: #152938; }

.btn-secondary {
  background: rgba(15, 118, 110, 0.12);
  color: var(--jade-deep);
  border-color: rgba(15, 118, 110, 0.2);
}
.btn-secondary:hover { background: rgba(15, 118, 110, 0.18); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { background: rgba(12, 26, 36, 0.05); }

.btn-lg { padding: 0.95rem 1.55rem; font-size: 1.02rem; }

.btn-pulse {
  animation: pulse 2.4s var(--ease) infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(12, 26, 36, 0.22); }
  50% { box-shadow: 0 10px 28px rgba(15, 118, 110, 0.45); }
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guide-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--foam);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.guide-step.is-open {
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.08);
}

.guide-step-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 600;
  text-align: start;
  cursor: pointer;
  color: inherit;
}

.guide-step-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--jade);
  min-width: 2rem;
}

.guide-step-body {
  display: none;
  padding: 0 1.1rem 1.2rem;
  border-top: 1px solid var(--line);
}

.guide-step.is-open .guide-step-body { display: block; animation: rise 0.35s var(--ease); }

.guide-step-body > p {
  margin: 0.9rem 0 1rem;
  color: var(--ink-soft);
}

.studio-mock {
  margin: 0 0 1rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(12, 26, 36, 0.16);
  background: #101820;
  color: #e8eef2;
  box-shadow: 0 16px 40px rgba(12, 26, 36, 0.18);
}

.studio-chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  background: #1a2430;
  font-size: 0.75rem;
  color: #9bb0c0;
}

.studio-chrome span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #4b5563;
}
.studio-chrome span:nth-child(1) { background: #f87171; }
.studio-chrome span:nth-child(2) { background: #fbbf24; }
.studio-chrome span:nth-child(3) { background: #34d399; }
.studio-chrome em {
  margin-inline-start: 0.5rem;
  font-style: normal;
  opacity: 0.85;
}

.studio-screen {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  min-height: 8.5rem;
}

.studio-sidebar {
  width: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.studio-sidebar i {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: #2a3644;
}
.studio-sidebar i.on { background: #14b8a6; }

.studio-main { flex: 1; }
.studio-main strong,
.studio-dialog strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.studio-btn-mock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: #14b8a6;
  color: #042f2e;
  font-weight: 700;
  font-size: 0.85rem;
  width: fit-content;
  animation: glow 2s ease-in-out infinite;
}

.studio-btn-mock.soft { background: #334155; color: #e2e8f0; animation: none; }

@keyframes glow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

.studio-login {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.google-g {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #4285f4;
  font-weight: 800;
  font-family: var(--font-en);
}

.login-lines { width: min(14rem, 70%); }
.login-lines i {
  display: block;
  height: 0.55rem;
  margin: 0.4rem 0;
  border-radius: 999px;
  background: #2a3644;
}
.login-lines i:last-child { width: 70%; margin-inline: auto; }

.studio-dialog {
  margin: auto;
  width: min(18rem, 100%);
  padding: 1rem;
  border-radius: 12px;
  background: #1a2430;
  border: 1px solid #2a3644;
}

.studio-select {
  margin: 0.5rem 0 0.85rem;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: #0f1720;
  border: 1px solid #2a3644;
  font-size: 0.85rem;
  color: #cbd5e1;
}

.key-chip {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: #0f1720;
  border: 1px dashed #14b8a6;
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
}

.api-paste-box {
  margin-top: 0.5rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.06);
  border: 1px solid rgba(15, 118, 110, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.field-block.span-2 { grid-column: 1 / -1; }

.field-block label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.hint {
  margin: 0 0 0.45rem;
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.optional { color: var(--ink-soft); font-weight: 400; font-size: 0.85em; }

input[type="text"],
input[type="url"],
input[type="password"],
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  background: var(--foam);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: rgba(15, 118, 110, 0.55);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

textarea { resize: vertical; }
#cv-text { min-height: 14rem; line-height: 1.55; }

.input-row {
  display: flex;
  gap: 0.55rem;
  align-items: stretch;
}
.input-row input { flex: 1; }

.level-row,
.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.chip {
  border: 1px solid var(--line);
  background: var(--foam);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.chip.is-active,
.chip:hover {
  background: var(--ink);
  color: var(--foam);
  border-color: var(--ink);
}

.readiness {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(12, 26, 36, 0.04);
  border: 1px solid var(--line);
}

.readiness.is-ready {
  background: rgba(15, 118, 110, 0.08);
  border-color: rgba(15, 118, 110, 0.28);
}

.readiness-bar {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(12, 26, 36, 0.08);
  overflow: hidden;
  margin-bottom: 0.55rem;
}

#readiness-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--jade), #0d9488);
  border-radius: inherit;
  transition: width 0.45s var(--ease);
}

#readiness-text {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.build-cta {
  margin-top: 1.5rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--foam);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  bottom: 0.75rem;
  z-index: 20;
  box-shadow: 0 18px 40px rgba(12, 26, 36, 0.28);
}

.build-cta h3 { margin: 0 0 0.25rem; font-family: var(--font-display); }
.build-cta p { margin: 0; opacity: 0.82; font-size: 0.92rem; max-width: 36rem; }
.build-cta .btn-primary {
  background: #14b8a6;
  color: #042f2e;
  box-shadow: none;
}
.build-cta .btn-primary:hover:not(:disabled) { background: #2dd4bf; }
.build-cta.is-locked { opacity: 0.92; }

.key-status { margin: 0; font-size: 0.88rem; font-weight: 600; min-height: 1.2em; }

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

.assistant-card.is-filtered-out { display: none; }

.assistant-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--foam);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.assistant-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 118, 110, 0.35);
  box-shadow: 0 14px 30px rgba(12, 26, 36, 0.08);
}

.assistant-index {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--jade);
  font-size: 0.9rem;
}

.assistant-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.assistant-card p {
  margin: 0;
  flex: 1;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.need-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.need-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(12, 26, 36, 0.06);
  color: var(--ink-soft);
}

.btn-run { margin-top: 0.35rem; width: 100%; }

.steps {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(12, 26, 36, 0.04);
  border: 1px solid transparent;
}

.step.is-active {
  border-color: rgba(15, 118, 110, 0.35);
  background: rgba(15, 118, 110, 0.08);
}

.step.is-done { opacity: 0.75; }
.step-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #94a3b8;
}
.step.is-active .step-dot {
  background: var(--jade);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.2);
  animation: pulse 1.2s ease infinite;
}
.step.is-done .step-dot { background: var(--jade-deep); }
.step-title { font-weight: 600; }
.step-state { font-size: 0.8rem; color: var(--ink-soft); }

.exports {
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(15, 118, 110, 0.05);
}
.exports.is-hidden { display: none; }
.exports-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.exports-head h3 { margin: 0; font-size: 1rem; }
.exports-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.export-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: var(--foam);
  border: 1px solid var(--line);
}
.export-meta { display: block; font-size: 0.78rem; color: var(--ink-soft); }

.output-shell {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--foam);
}

.output-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.65rem;
  border-bottom: 1px solid var(--line);
  background: rgba(12, 26, 36, 0.03);
}

.output-body { padding: 1rem 1.1rem; min-height: 12rem; }
.output-placeholder { color: var(--ink-soft); }
.file-block {
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.file-block-head {
  padding: 0.55rem 0.85rem;
  background: rgba(12, 26, 36, 0.04);
  font-weight: 700;
  font-size: 0.88rem;
}
.file-block-body { padding: 0.85rem 1rem; }

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #0c1a24;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.credit-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.credit-badge {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 1.1rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #99f6e4;
  font-family: var(--font-display);
  font-weight: 800;
}

.credit-eyebrow {
  margin: 0;
  color: var(--jade-deep);
  font-weight: 700;
  font-size: 0.86rem;
}

.credit h2 {
  margin: 0.35rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  align-items: baseline;
  font-family: var(--font-display);
}

.credit-en { font-size: 0.9em; color: var(--ink-soft); font-weight: 600; }
.credit-role { margin: 0; font-weight: 600; }
.credit-role-en { display: block; margin-top: 0.2rem; color: var(--ink-soft); font-weight: 500; font-size: 0.92rem; }
.credit-body { margin: 0.85rem 0; color: var(--ink-soft); max-width: 52rem; }
.credit-note {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-inline-start: 3px solid var(--jade);
  background: rgba(15, 118, 110, 0.06);
  border-radius: 0 10px 10px 0;
  font-weight: 600;
}

body[dir="ltr"] .credit-note {
  border-inline-start: 0;
  border-inline-end: 3px solid var(--jade);
  border-radius: 10px 0 0 10px;
}

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

.insight-card {
  padding: 1rem;
  border-radius: 14px;
  background: var(--foam);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.insight-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
}

.insight-label { color: var(--ink-soft); font-size: 0.86rem; }

.site-footer {
  text-align: center;
  padding: 2rem 1rem 3rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.settings-dialog {
  border: 0;
  border-radius: 18px;
  padding: 0;
  width: min(26rem, calc(100% - 2rem));
  box-shadow: var(--shadow);
}
.settings-dialog::backdrop { background: rgba(12, 26, 36, 0.45); }
.settings-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem;
}
.dialog-actions { display: flex; gap: 0.5rem; margin-top: 0.5rem; }

@media (max-width: 900px) {
  .assistant-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .insight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .header-nav .nav-link { display: none; }
  .setup-grid { grid-template-columns: 1fr; }
  .assistant-grid { grid-template-columns: 1fr; }
  .credit-layout { grid-template-columns: 1fr; }
  .build-cta { position: static; }
  .hero { min-height: auto; padding-top: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
