:root {
  --ink: #131522;
  --ink-soft: #585d70;
  --paper: #f7f4ee;
  --paper-2: #efebe3;
  --white: #fffefa;
  --orange: #ff7a45;
  --coral: #ef486f;
  --violet: #7655ff;
  --blue: #2949c7;
  --green: #137a63;
  --line: rgba(19, 21, 34, 0.14);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(30, 27, 52, 0.14);
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 122, 69, 0.08), transparent 34%),
    radial-gradient(circle at 88% 62%, rgba(118, 85, 255, 0.07), transparent 32%),
    var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) { overflow: hidden; }

a { color: inherit; }

button, input, select { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #9fd5ff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: white;
  transform: translateY(-150%);
}

.skip-link:focus { transform: none; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.015) 0, rgba(255, 255, 255, 0.015) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(90deg, rgba(14, 16, 28, 0.012) 0, rgba(14, 16, 28, 0.012) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: multiply;
}

.section-shell,
.topbar,
.hero-grid {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  color: white;
  background:
    radial-gradient(circle at 76% 25%, rgba(239, 72, 111, 0.38), transparent 23%),
    radial-gradient(circle at 90% 80%, rgba(41, 73, 199, 0.62), transparent 30%),
    linear-gradient(135deg, #121328 0%, #21133d 48%, #182d6d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(700px) rotateX(60deg) rotateZ(-12deg) translateY(22%);
  transform-origin: center;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  border-bottom: 1px solid var(--line-light);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: white;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #171628;
  background: linear-gradient(135deg, #ffd54a, var(--orange));
  letter-spacing: 0;
}

.brand-dark { color: var(--ink); }

.brand-image {
  position: relative;
  width: 120px;
  height: 66px;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand-logo {
  position: absolute;
  top: -38px;
  left: 50%;
  display: block;
  width: auto;
  height: 120px;
  max-width: none;
  transform: translateX(-50%);
}

.brand-image-footer {
  width: 150px;
  height: 90px;
}

.brand-logo-footer {
  top: -52px;
  height: 165px;
}

.topbar .brand-image {
  width: 60px;
  height: 33px;
}

.topbar .brand-logo {
  top: -19px;
  height: 60px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: center;
  min-height: 680px;
  padding: 72px 0 90px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light { color: #ffcf9a; }

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(3rem, 6.3vw, 6.2rem);
  font-weight: 950;
  letter-spacing: -0.067em;
  line-height: 0.93;
}

.hero h1 > span {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.94);
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 820;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms ease;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--coral));
  box-shadow: 0 15px 36px rgba(239, 72, 111, 0.28);
}

.button-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.07);
}

.button-light {
  color: #22184c;
  background: white;
  box-shadow: 0 15px 32px rgba(9, 12, 30, 0.16);
}

.hero-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}

.hero-art {
  position: relative;
  min-height: 480px;
  isolation: isolate;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-art::before {
  inset: 8% 5% 8% 8%;
  z-index: -1;
  background: linear-gradient(135deg, rgba(255, 122, 69, 0.95), rgba(239, 72, 111, 0.78) 46%, rgba(118, 85, 255, 0.9));
  box-shadow: 0 50px 100px rgba(2, 4, 20, 0.46), inset 0 0 80px rgba(255, 255, 255, 0.12);
}

.hero-art::after {
  inset: 17%;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-number {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  font-family: "Arial Black", sans-serif;
  font-size: clamp(9rem, 18vw, 15rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  text-shadow: 0 20px 50px rgba(37, 13, 55, 0.25);
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.orbit-one { transform: rotate(18deg) scaleX(0.82); }
.orbit-two { transform: rotate(-23deg) scaleY(0.82); }

.floating-label {
  position: absolute;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: white;
  background: rgba(11, 12, 33, 0.62);
  box-shadow: 0 10px 30px rgba(6, 8, 24, 0.22);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 780;
}

.label-one { top: 12%; left: -4%; }
.label-two { top: 7%; right: 2%; }
.label-three { bottom: 14%; left: -1%; }
.label-four { right: -2%; bottom: 20%; }

.start-section { padding: 105px 0 120px; }

.section-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading .eyebrow { align-self: start; }

.section-heading h2,
.catalog-heading h2,
.final-cta h2 {
  margin: 0;
  font-family: "Arial Black", Inter, sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.start-card {
  position: relative;
  display: flex;
  min-height: 335px;
  padding: 30px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 220ms ease, transform 220ms var(--ease);
}

.start-card:last-child { border-right: 0; }
.start-card:hover { background: #fff9f3; }
.start-card-accent { color: white; background: linear-gradient(145deg, #2d206a, #7448df); }
.start-card-accent:hover { background: linear-gradient(145deg, #392986, #885bed); }

.start-number {
  color: var(--coral);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 900;
}

.start-card-accent .start-number { color: #ffbd87; }

.start-kicker {
  margin-top: 66px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.start-card-accent .start-kicker,
.start-card-accent > span:not(.start-number) { color: rgba(255, 255, 255, 0.67); }

.start-card.start-card-accent > .start-card-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.55;
}

.start-card strong { margin-top: 8px; font-size: 1.42rem; line-height: 1.18; }
.start-card > span:not(.start-number, .start-kicker) { margin-top: 12px; color: var(--ink-soft); font-size: 0.93rem; }
.start-card b { margin-top: auto; color: var(--coral); font-size: 0.86rem; }
.start-card-accent b { color: #fff; }

.start-links {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.start-links a {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid rgba(255, 122, 69, 0.32);
  border-radius: 999px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.start-links a:hover { border-color: var(--coral); background: #fff3e9; }

.catalog-section { padding: 112px 0 130px; }

.catalog-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
  align-items: end;
}

.catalog-intro { margin: 0; color: var(--ink-soft); font-size: 1.05rem; line-height: 1.68; }

.filter-panel {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: 10px;
  margin-top: 46px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.88);
  box-shadow: 0 16px 44px rgba(37, 30, 52, 0.08);
  backdrop-filter: blur(12px);
}

.filter-panel label {
  display: block;
  margin: 0 0 6px 4px;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: white;
}

.filter-panel select { padding: 0 34px 0 12px; cursor: pointer; }
.search-control { position: relative; }
.search-control span { position: absolute; top: 50%; left: 14px; color: var(--ink-soft); transform: translateY(-53%); font-size: 1.3rem; }
.filter-panel input { padding: 0 12px 0 40px; }

.results-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.results-line p { margin: 0; font-size: 0.86rem; font-weight: 830; }

.reset-button,
.link-button {
  padding: 0;
  border: 0;
  color: var(--violet);
  background: none;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.idea-card {
  position: relative;
  display: flex;
  min-height: 360px;
  padding: 22px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 12px 36px rgba(33, 27, 49, 0.055);
  animation: card-in 560ms var(--ease) both;
  animation-delay: var(--delay);
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), border-color 250ms ease;
}

.idea-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.16), transparent 70%);
}

.idea-card:hover { transform: translateY(-5px); border-color: rgba(118, 85, 255, 0.34); box-shadow: 0 25px 55px rgba(33, 27, 49, 0.12); }

.idea-card-agent {
  color: white;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 122, 69, 0.5), transparent 30%),
    linear-gradient(145deg, #241844, #3f2a77 60%, #1f3d78);
}

.card-topline { display: flex; align-items: center; justify-content: space-between; }
.card-number { color: var(--coral); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.78rem; font-weight: 900; }
.idea-card-agent .card-number { color: #ffc49b; }
.card-format { padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); font-size: 0.68rem; font-weight: 800; }
.idea-card-agent .card-format { border-color: rgba(255, 255, 255, 0.18); color: rgba(255, 255, 255, 0.74); }
.card-body { margin-top: 50px; }
.card-category { margin: 0 0 9px; color: var(--coral); font-size: 0.69rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.idea-card-agent .card-category { color: #ffbf94; }
.card-body h3 { margin: 0; font-size: 1.38rem; letter-spacing: -0.025em; line-height: 1.15; }
.card-body > p:last-child { margin: 13px 0 0; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.58; }
.idea-card-agent .card-body > p:last-child { color: rgba(255, 255, 255, 0.68); }
.card-meta { display: flex; gap: 8px; margin-top: auto; padding-top: 24px; }
.card-meta span { padding: 5px 8px; border-radius: 8px; color: var(--ink-soft); background: var(--paper-2); font-size: 0.68rem; font-weight: 750; }
.idea-card-agent .card-meta span { color: rgba(255, 255, 255, 0.72); background: rgba(255, 255, 255, 0.1); }

.card-open {
  display: flex;
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  padding: 0;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid var(--line);
  color: var(--violet);
  background: transparent;
  font-size: 0.83rem;
  font-weight: 850;
  cursor: pointer;
}

.idea-card-agent .card-open { border-color: rgba(255, 255, 255, 0.14); color: white; }

.empty-state {
  padding: 80px 20px;
  border: 1px dashed var(--line);
  border-radius: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
}

.empty-state span { color: var(--paper-2); font-family: "Arial Black", sans-serif; font-size: 6rem; line-height: 0.8; }
.empty-state h3 { margin: 22px 0 6px; font-size: 1.5rem; }
.empty-state p { margin: 0 0 20px; color: var(--ink-soft); }

.final-cta {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(110deg, #ec4d6c, #bd3e85 44%, #694dd9 100%);
}

.final-cta::after {
  content: "30";
  position: absolute;
  right: -1vw;
  bottom: -0.55em;
  color: rgba(255, 255, 255, 0.09);
  font-family: "Arial Black", sans-serif;
  font-size: 24rem;
  line-height: 1;
}

.final-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: 80px;
  align-items: end;
  padding-block: 90px;
}

.final-cta-grid > div:last-child { max-width: 430px; }
.final-cta-grid p:not(.eyebrow) { margin: 0 0 26px; color: rgba(255, 255, 255, 0.74); font-size: 1.05rem; line-height: 1.65; }

.footer { display: flex; min-height: 130px; align-items: center; justify-content: space-between; }
.footer p { color: var(--ink-soft); font-size: 0.8rem; }

@keyframes card-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.catalog-dialog {
  width: min(1120px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 35px 120px rgba(6, 7, 18, 0.5);
}

.catalog-dialog::backdrop { background: rgba(8, 8, 18, 0.78); backdrop-filter: blur(9px); }
.dialog-shell { max-height: calc(100dvh - 32px); overflow-y: auto; border-radius: inherit; }
.dialog-close {
  position: sticky;
  top: 14px;
  z-index: 5;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 14px 14px -56px auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 7px 24px rgba(30, 26, 42, 0.12);
  font-size: 1.55rem;
  cursor: pointer;
}

.dialog-heading { display: grid; grid-template-columns: auto 1fr; gap: 24px; padding: 58px 64px 36px; }
.dialog-number {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--coral), var(--violet));
  font-family: "Arial Black", sans-serif;
  font-size: 1.4rem;
}

.dialog-heading h2 { margin: 0; max-width: 800px; font-family: "Arial Black", sans-serif; font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -0.055em; line-height: 1; }
.dialog-promise { max-width: 750px; margin: 16px 0 0; color: var(--ink-soft); font-size: 1.05rem; }
.dialog-facts { display: grid; grid-template-columns: 0.65fr 0.65fr 1.7fr; margin: 0 64px; border-block: 1px solid var(--line); }
.dialog-facts > div { display: flex; min-height: 78px; padding: 12px 22px; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.dialog-facts > div:first-child { padding-left: 0; }
.dialog-facts > div:last-child { border-right: 0; }
.dialog-facts span { color: var(--ink-soft); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.dialog-facts strong { margin-top: 5px; font-size: 0.89rem; }
.dialog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 42px; padding: 42px 64px 70px; }
.dialog-section + .dialog-section { margin-top: 46px; }
.dialog-label { margin: 0 0 12px; color: var(--coral); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; }
.compact-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 8px 0; padding-left: 25px; color: var(--ink-soft); font-size: 0.9rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--green); font-weight: 950; }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: start; padding: 15px 0; border-bottom: 1px solid var(--line); }
.steps-list li > span { color: var(--coral); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.72rem; font-weight: 900; }
.steps-list p { margin: 0; font-size: 0.94rem; }
.prompt-section { padding: 24px; border-radius: 20px; color: white; background: #151626; }
.prompt-heading { display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.prompt-heading h3 { margin: 0; font-size: 1.15rem; }
.copy-button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 10px;
  color: white;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  font-weight: 850;
  cursor: pointer;
}
.prompt-block { max-height: 500px; margin: 22px 0 0; overflow: auto; white-space: pre-wrap; color: rgba(255, 255, 255, 0.78); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.78rem; line-height: 1.68; }
.dialog-aside { display: flex; flex-direction: column; gap: 12px; }
.aside-card { padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: var(--white); }
.aside-card p:last-child { margin: 0; color: var(--ink-soft); font-size: 0.86rem; line-height: 1.58; }
.aside-money { border-color: rgba(19, 122, 99, 0.23); background: rgba(19, 122, 99, 0.06); }
.aside-safety { border-color: rgba(239, 72, 111, 0.2); background: rgba(239, 72, 111, 0.055); }
.link-button { align-self: flex-start; margin-top: 8px; }
.dialog-cta { display: flex; gap: 30px; align-items: center; justify-content: space-between; padding: 30px 64px; color: white; background: linear-gradient(110deg, #302167, #744adb); }
.dialog-cta span { display: block; color: rgba(255, 255, 255, 0.63); font-size: 0.8rem; }
.dialog-cta strong { display: block; margin-top: 4px; font-size: 1.05rem; }

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 12px;
  color: white;
  background: #171826;
  box-shadow: 0 14px 40px rgba(6, 8, 20, 0.26);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: 220ms var(--ease);
  font-size: 0.84rem;
  font-weight: 780;
}
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width: 1051px) {
  .topbar,
  .hero-grid {
    width: min(1040px, calc(100% - 64px));
  }

  .hero { min-height: 690px; }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    min-height: 590px;
    padding: 54px 0 70px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(3rem, 5.2vw, 5.2rem);
  }

  .hero-art { min-height: 420px; }
}

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 0.72fr; gap: 26px; }
  .filter-panel { grid-template-columns: repeat(2, 1fr); }
  .search-wrap { grid-column: 1 / -1; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 800px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 62px 0 70px; }
  .hero-art { min-height: 330px; max-width: 430px; width: 100%; margin: 0 auto; }
  .hero h1 { font-size: clamp(2.9rem, 12.6vw, 5.4rem); letter-spacing: -0.058em; }
  .section-heading, .catalog-heading, .final-cta-grid { grid-template-columns: 1fr; gap: 22px; }
  .start-grid { grid-template-columns: 1fr; }
  .start-card { min-height: 260px; border-right: 0; border-bottom: 1px solid var(--line); }
  .start-card:last-child { border-bottom: 0; }
  .start-kicker { margin-top: 40px; }
  .dialog-heading { grid-template-columns: 1fr; padding: 58px 24px 28px; }
  .dialog-number { width: 58px; height: 58px; }
  .dialog-facts { margin-inline: 24px; grid-template-columns: 1fr; }
  .dialog-facts > div { padding-inline: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .dialog-facts > div:last-child { border-bottom: 0; }
  .dialog-layout { grid-template-columns: 1fr; padding: 34px 24px 50px; }
  .dialog-cta { padding: 28px 24px; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .section-shell, .topbar, .hero-grid { width: min(100% - 28px, 1180px); }
  .topbar { min-height: 70px; }
  .hero-copy { text-align: left; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-art { min-height: 290px; }
  .floating-label { font-size: 0.68rem; }
  .start-section, .catalog-section { padding-block: 78px; }
  .filter-panel { grid-template-columns: 1fr; }
  .search-wrap { grid-column: auto; }
  .catalog-grid { grid-template-columns: 1fr; }
  .idea-card { min-height: 330px; }
  .catalog-dialog { width: 100%; max-height: 100dvh; margin: 0; border-radius: 0; }
  .dialog-shell { max-height: 100dvh; border-radius: 0; }
  .compact-list { grid-template-columns: 1fr; }
  .prompt-heading { align-items: flex-start; flex-direction: column; }
  .copy-button { width: 100%; }
  .footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@media print {
  .topbar, .hero-art, .hero-actions, .filter-panel, .results-line, .final-cta, .footer, .catalog-dialog, .toast { display: none !important; }
  .hero { min-height: auto; color: #111; background: white; }
  .hero-grid { display: block; min-height: 0; padding: 30px 0; }
  .hero h1 { font-size: 42px; }
  .hero h1 > span { color: #111; -webkit-text-stroke: 0; }
  .hero-lead, .hero-note { color: #333; }
  .start-section, .catalog-section { padding-block: 30px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .idea-card { min-height: 260px; break-inside: avoid; box-shadow: none; }
}
