:root {
  color-scheme: dark;
  --bg: #05030a;
  --panel: rgba(16, 11, 27, 0.86);
  --panel-strong: rgba(12, 8, 21, 0.96);
  --line: rgba(255, 255, 255, 0.12);
  --line-bright: rgba(255, 255, 255, 0.22);
  --text: #fffaff;
  --muted: #c5bdd1;
  --muted-2: #948aa1;
  --pink: #ff2c9c;
  --pink-soft: #ff73be;
  --purple: #8b5cf6;
  --blue: #2f8cff;
  --cyan: #36d8ff;
  --green: #4be39e;
  --danger: #ff718e;
  --warning: #ffca63;
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.46);
  --radius: 28px;
  --radius-sm: 16px;
  --shell: min(1120px, calc(100vw - 32px));
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -20%, rgba(132, 71, 255, 0.22), transparent 42%),
    linear-gradient(180deg, #08040f 0%, #030206 62%, #05030a 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #08040e;
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.cosmos-canvas,
.cosmos-layer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cosmos-canvas { z-index: -4; opacity: 0.9; }
.cosmos-layer { z-index: -3; overflow: hidden; }
.nebula {
  position: absolute;
  width: 52vw;
  height: 52vw;
  min-width: 520px;
  min-height: 520px;
  border-radius: 50%;
  filter: blur(92px);
  opacity: 0.19;
  transform: translate3d(var(--cosmos-x, 0), var(--cosmos-y, 0), 0);
}
.nebula--pink { top: -24vw; left: -14vw; background: #ff228f; }
.nebula--purple { top: 18vh; right: -22vw; background: #7e42ff; opacity: 0.2; }
.nebula--blue { bottom: -28vw; left: 18vw; background: #1678ff; opacity: 0.13; }
.cosmos-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 3, 10, 0.1), rgba(5, 3, 10, 0.62)),
    radial-gradient(circle at center, transparent 22%, rgba(3, 2, 7, 0.45) 88%);
}

.nexus-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr minmax(180px, 380px) 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 12px max(16px, calc((100vw - 1180px) / 2));
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(5, 3, 10, 0.88), rgba(5, 3, 10, 0.58));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.nexus-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
  color: #fff;
  text-decoration: none;
}
.nexus-brand img {
  width: 39px;
  height: 39px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(129, 82, 255, 0.7));
}
.nexus-brand span {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.member-login {
  justify-self: end;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease;
}
.member-login strong { color: #fff; }
.member-login:hover, .member-login:focus-visible { color: #fff; }

.header-progress { width: 100%; text-align: center; }
.header-progress__label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.header-progress__track {
  display: block;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.header-progress__track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--blue), var(--cyan));
  box-shadow: 0 0 16px rgba(99, 143, 255, 0.6);
  transition: width .45s cubic-bezier(.2,.8,.2,1);
}

.nexus-main {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 58px);
  padding: calc(var(--header-height) + 42px) 16px 76px;
}
.slide-stage {
  width: var(--shell);
  min-height: min(720px, calc(100vh - 170px));
  margin: 0 auto;
  display: grid;
  place-items: center;
}
.app-status {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(8, 5, 14, .88);
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  font-size: 12px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.app-status.is-visible { opacity: 1; transform: translateY(0); }
.app-status.is-error { color: #ffd4de; border-color: rgba(255, 113, 142, .38); }
.app-status.is-success { color: #c9ffe4; border-color: rgba(75, 227, 158, .38); }

.slide-card {
  position: relative;
  isolation: isolate;
  width: min(900px, 100%);
  padding: clamp(28px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(24, 15, 39, .94), rgba(10, 7, 18, .94)),
    rgba(12, 8, 20, .94);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.05);
  animation: slide-in .42s cubic-bezier(.2,.8,.2,1) both;
}
.slide-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: -160px;
  right: -130px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.28), transparent 68%);
}
.slide-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.035) 45%, transparent 65%);
  transform: translateX(-110%);
  animation: sheen 8s ease-in-out infinite;
  pointer-events: none;
}
.slide-card--wide { width: min(1080px, 100%); }
.slide-card--compact { width: min(740px, 100%); }
.slide-card--loading { text-align: center; }
.slide-card--result { width: min(980px, 100%); }
.slide-card--profile { width: min(1060px, 100%); }

.slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: #ebdfff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.slide-kicker::before {
  content: "✦";
  color: var(--cyan);
  text-shadow: 0 0 16px rgba(54,216,255,.65);
}
.slide-title {
  max-width: 850px;
  margin: 0 0 20px;
  font-family: Montserrat, Inter, sans-serif;
  font-size: clamp(34px, 6.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.slide-title--medium { font-size: clamp(31px, 5vw, 54px); }
.slide-title--small { font-size: clamp(27px, 4.5vw, 46px); }
.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #ff64bb, #a979ff 52%, #58c9ff);
  -webkit-background-clip: text;
  background-clip: text;
}
.slide-lead {
  max-width: 750px;
  margin: 0 0 16px;
  color: #e0d9e8;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.6;
}
.slide-copy { max-width: 760px; color: var(--muted); font-size: 16px; }
.slide-copy strong { color: #fff; }
.slide-copy + .slide-copy { margin-top: 12px; }
.personalized-name { color: var(--pink-soft); }

.three-signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 10px;
}
.signal-pill {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.signal-pill strong { display: block; margin-bottom: 7px; color: #fff; font-size: 15px; }
.signal-pill span { color: var(--muted); font-size: 13px; line-height: 1.45; }
.signal-pill:nth-child(1) strong { color: #ff75bd; }
.signal-pill:nth-child(2) strong { color: #b79aff; }
.signal-pill:nth-child(3) strong { color: #64d6ff; }

.form-stack { display: grid; gap: 18px; margin-top: 28px; }
.field-group { display: grid; gap: 9px; }
.field-label { color: #f8f2ff; font-size: 14px; font-weight: 800; }
.field-help { color: var(--muted-2); font-size: 12px; }
.text-input,
.text-area {
  width: 100%;
  border: 1px solid rgba(255,255,255,.16);
  outline: 0;
  color: #fff;
  background: rgba(5, 3, 10, .7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.text-input { min-height: 58px; padding: 0 18px; border-radius: 15px; font-size: 18px; }
.text-area { min-height: 190px; padding: 17px 18px; border-radius: 18px; resize: vertical; font-size: 16px; line-height: 1.55; }
.text-input:focus,
.text-area:focus {
  border-color: rgba(121, 154, 255, .76);
  background: rgba(8, 5, 16, .86);
  box-shadow: 0 0 0 4px rgba(72, 126, 255, .13), 0 0 34px rgba(118, 82, 255, .12);
}
.text-input[aria-invalid="true"], .text-area[aria-invalid="true"] { border-color: var(--danger); }
.character-count { justify-self: end; color: var(--muted-2); font-size: 11px; }
.error-message {
  padding: 11px 13px;
  border: 1px solid rgba(255,113,142,.35);
  border-radius: 12px;
  color: #ffd4df;
  background: rgba(255, 74, 116, .08);
  font-size: 13px;
}
.notice-message {
  padding: 13px 15px;
  border: 1px solid rgba(86, 192, 255, .28);
  border-radius: 14px;
  color: #d8f4ff;
  background: rgba(47, 140, 255, .08);
  font-size: 13px;
}

.slide-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.slide-actions--center { justify-content: center; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s ease, filter .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}
.button:hover:not(:disabled) { transform: translateY(-2px); filter: brightness(1.08); }
.button:active:not(:disabled) { transform: translateY(0); }
.button:focus-visible { outline: 3px solid rgba(85,207,255,.5); outline-offset: 3px; }
.button:disabled { cursor: not-allowed; opacity: .48; }
.button--primary {
  color: #fff;
  background: linear-gradient(105deg, #f72593 0%, #b43fee 47%, #397df6 100%);
  box-shadow: 0 12px 38px rgba(198, 45, 226, .24), inset 0 1px 0 rgba(255,255,255,.25);
}
.button--secondary {
  color: #fff;
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
}
.button--ghost {
  min-height: 44px;
  padding: 0 13px;
  color: var(--muted);
  border-color: transparent;
  background: transparent;
}
.button--danger-soft { color: #ffd9e2; border-color: rgba(255,113,142,.25); background: rgba(255,113,142,.07); }
.button--large { min-height: 58px; padding: 0 29px; font-size: 16px; }
.button-icon { margin-left: 9px; font-size: 18px; }
.save-state { margin-left: auto; color: var(--muted-2); font-size: 12px; }
.save-state[data-state="saving"]::before { content: "◌ "; color: var(--cyan); }
.save-state[data-state="saved"]::before { content: "✓ "; color: var(--green); }
.save-state[data-state="error"]::before { content: "! "; color: var(--danger); }

.reflection-card {
  margin: 30px 0 8px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,44,156,.08), rgba(139,92,246,.08), rgba(47,140,255,.08));
  color: #f7f0fc;
  font-size: clamp(19px, 2.8vw, 27px);
  line-height: 1.5;
}
.quote-answer {
  max-height: 210px;
  overflow: auto;
  margin: 18px 0 24px;
  padding: 16px 18px;
  border-left: 3px solid var(--purple);
  color: #e9e0f2;
  background: rgba(255,255,255,.035);
  font-size: 14px;
  white-space: pre-wrap;
}

.skills-list { display: grid; gap: 12px; margin-top: 22px; }
.skill-row {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(220px, 1.1fr) 42px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
}
.skill-row__name { min-height: 46px; font-size: 15px; }
.skill-rating { display: grid; grid-template-columns: 1fr 44px; align-items: center; gap: 11px; }
.skill-rating input[type="range"] { width: 100%; accent-color: var(--pink); }
.skill-rating output {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 12px;
  color: #fff;
  background: rgba(0,0,0,.25);
  font-weight: 900;
}
.skill-remove {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 11px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}
.skill-remove:hover { color: #fff; background: rgba(255,255,255,.07); }
.skill-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 14px; }
.skill-count { color: var(--muted-2); font-size: 12px; }

.loading-orbit {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 2px auto 28px;
}
.loading-orbit::before,
.loading-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.loading-orbit::before {
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: inset 0 0 35px rgba(132,75,255,.12), 0 0 45px rgba(132,75,255,.14);
}
.loading-orbit::after {
  border: 3px solid transparent;
  border-top-color: var(--pink);
  border-right-color: var(--blue);
  animation: spin 1.4s linear infinite;
}
.loading-core {
  position: absolute;
  inset: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, #fff, #e87cff 18%, #814cff 48%, #0a0611 75%);
  box-shadow: 0 0 38px rgba(194,65,255,.55);
  animation: pulse 2s ease-in-out infinite;
}
.analysis-status { min-height: 24px; margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.turnstile-wrap {
  display: grid;
  justify-content: center;
  min-height: 70px;
  margin: 22px auto 0;
}

.result-shell { display: grid; gap: 22px; }
.result-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.result-type { color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.result-title { margin: 6px 0 0; font-family: Montserrat, Inter, sans-serif; font-size: clamp(30px, 5vw, 54px); line-height: 1.05; }
.result-generation { color: var(--muted-2); font-size: 11px; }
.result-summary {
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  color: #eee7f4;
  background: rgba(255,255,255,.035);
  font-size: 17px;
  line-height: 1.7;
}
.result-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.result-panel {
  padding: 19px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 17px;
  background: rgba(3,2,7,.3);
}
.result-panel h3 { margin: 0 0 12px; color: #fff; font-size: 14px; }
.result-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.result-list li { position: relative; padding-left: 18px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.result-list li::before { content: "✦"; position: absolute; left: 0; color: var(--cyan); font-size: 9px; top: .35em; }
.result-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.result-tag { padding: 8px 10px; border: 1px solid rgba(130,98,255,.25); border-radius: 999px; color: #eadfff; background: rgba(130,98,255,.08); font-size: 12px; font-weight: 750; }
.business-ideas { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.business-idea { padding: 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: linear-gradient(150deg, rgba(255,44,156,.06), rgba(47,140,255,.055)); }
.business-idea strong { display: block; margin-bottom: 7px; color: #fff; }
.business-idea span { color: var(--muted); font-size: 12px; line-height: 1.5; }

.profile-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 9px; justify-content: flex-end; }
.profile-stack { display: grid; gap: 16px; }
.profile-section {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 21px;
  background: rgba(255,255,255,.035);
}
.profile-section--signal { border-color: rgba(255,65,170,.28); background: linear-gradient(135deg, rgba(255,44,156,.08), rgba(119,61,255,.06)); }
.profile-section h2 { margin: 0 0 7px; font-family: Montserrat, Inter, sans-serif; font-size: clamp(22px, 3vw, 32px); }
.profile-section h3 { margin: 0 0 10px; color: var(--muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.profile-section p { margin: 0; color: #ddd5e7; line-height: 1.7; }
.profile-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.profile-disclaimer { padding: 14px 16px; border-left: 3px solid var(--cyan); color: var(--muted); background: rgba(54,216,255,.045); font-size: 13px; }
.edit-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.edit-link { border: 0; padding: 0; color: #bda8ff; background: transparent; cursor: pointer; font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.edit-link:hover { color: #fff; }

.email-security {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(75,227,158,.22);
  border-radius: 16px;
  color: #d8f9e9;
  background: rgba(75,227,158,.055);
  font-size: 13px;
}
.email-security__icon { font-size: 21px; }

.nexus-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  min-height: 58px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--muted-2);
  font-size: 11px;
}
.nexus-footer nav { display: flex; gap: 16px; }
.nexus-footer a { text-decoration: none; }
.nexus-footer a:hover { color: #fff; }

.nexus-dialog {
  width: min(560px, calc(100vw - 28px));
  padding: 0;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  color: #fff;
  background: rgba(12,8,20,.98);
  box-shadow: 0 35px 110px rgba(0,0,0,.65);
}
.nexus-dialog::backdrop { background: rgba(2,1,5,.72); backdrop-filter: blur(10px); }
.dialog-card { position: relative; padding: 30px; }
.dialog-card h2 { margin: 0 42px 12px 0; font-family: Montserrat, Inter, sans-serif; font-size: 24px; }
.dialog-card p { color: var(--muted); }
.dialog-close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border: 0; border-radius: 10px; color: #fff; background: rgba(255,255,255,.06); cursor: pointer; font-size: 22px; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 24px; }
.noscript-card { position: fixed; z-index: 999; inset: 100px 20px auto; max-width: 700px; margin: auto; padding: 24px; border-radius: 18px; color: #fff; background: #181020; text-align: center; }

@keyframes slide-in { from { opacity: 0; transform: translateY(16px) scale(.992); } to { opacity: 1; transform: none; } }
@keyframes sheen { 0%, 65% { transform: translateX(-115%); } 82%, 100% { transform: translateX(115%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 50% { transform: scale(.9); filter: brightness(1.15); } }

@media (max-width: 820px) {
  :root { --header-height: 70px; }
  .nexus-header { grid-template-columns: auto 1fr; gap: 12px; }
  .header-progress { grid-column: 1 / -1; grid-row: 2; padding-bottom: 5px; }
  .nexus-header:has(.header-progress:not([hidden])) { padding-bottom: 9px; }
  .member-login { font-size: 0; }
  .member-login strong { font-size: 12px; }
  .slide-stage { min-height: auto; }
  .nexus-main { padding-top: calc(var(--header-height) + 52px); }
  .three-signals, .business-ideas { grid-template-columns: 1fr; }
  .result-grid { grid-template-columns: 1fr; }
  .profile-header { display: grid; }
  .profile-actions { justify-content: flex-start; }
  .skill-row { grid-template-columns: 1fr 42px; }
  .skill-rating { grid-column: 1 / -1; }
  .skill-remove { grid-column: 2; grid-row: 1; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 20px); --radius: 22px; }
  .nexus-header { padding-inline: 12px; }
  .nexus-brand span { font-size: 14px; }
  .nexus-brand img { width: 34px; height: 34px; }
  .nexus-main { padding-inline: 10px; padding-bottom: 54px; }
  .slide-card { padding: 25px 19px; }
  .slide-title { font-size: clamp(31px, 11vw, 48px); }
  .slide-lead { font-size: 16px; }
  .slide-actions { display: grid; grid-template-columns: 1fr; }
  .slide-actions .button { width: 100%; }
  .save-state { margin-left: 0; text-align: center; }
  .result-heading { align-items: flex-start; display: grid; }
  .result-summary { padding: 18px; font-size: 15px; }
  .nexus-footer { padding: 18px 0; display: grid; gap: 10px; justify-content: center; text-align: center; }
  .nexus-footer nav { justify-content: center; }
  .app-status { right: 10px; bottom: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .cosmos-canvas { opacity: .55; }
}

.result-next-copy { margin-top: 22px; }
.business-ideas--profile { margin-top: 18px; }
