:root {
  color-scheme: light;
  --ink: #152018;
  --muted: #637067;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dfe5de;
  --mint: #c9f7df;
  --green: #178a50;
  --teal: #0f766e;
  --coral: #f26d5b;
  --gold: #f6b84b;
  --shadow: 0 24px 70px rgba(24, 39, 30, 0.13);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223, 229, 222, 0.76);
}

.topbar {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-button,
.secondary-button,
.primary-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
}

.primary-button {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 30px rgba(21, 32, 24, 0.16);
}

.secondary-button,
.nav-button {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.primary-button svg,
.secondary-button svg,
.nav-button svg {
  width: 18px;
  height: 18px;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 72px 0 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 52px;
}

.hero h1,
.home-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.8rem, 7vw, 5.75rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lede,
.home-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.3vw, 1.26rem);
  line-height: 1.62;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.assistant-panel,
.home-preview,
.scorecard,
.demo-results,
.demo-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.assistant-panel {
  padding: 18px;
  transform: rotate(1deg);
}

.panel-toolbar,
.scorecard-header,
.result-header,
.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(23, 138, 80, 0.1);
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.candidate-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(23, 138, 80, 0.2);
  background: linear-gradient(135deg, #ecfff5, #fff9ec);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.candidate-card h2,
.candidate-card p {
  margin: 0;
}

.candidate-card h2 {
  margin-top: 6px;
  font-size: 2rem;
}

.candidate-card p {
  color: var(--muted);
}

.candidate-kicker {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.match-score {
  min-width: 82px;
  min-height: 82px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 1.4rem;
}

.ai-note {
  margin-top: 14px;
  padding: 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  border-radius: 8px;
  background: #f5f7f2;
  color: var(--muted);
}

.ai-note p {
  margin: 0;
  line-height: 1.5;
}

.pipeline-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.pipeline-grid span,
.pipeline-grid b {
  min-height: 54px;
  display: grid;
  place-items: center;
  background: #fff;
  text-align: center;
}

.pipeline-grid span {
  color: var(--muted);
  font-size: 0.83rem;
}

.pipeline-grid b {
  font-size: 1.45rem;
}

.trust-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-band div {
  padding: 28px 22px;
  display: grid;
  gap: 6px;
  border-right: 1px solid var(--line);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong {
  font-size: 2rem;
}

.trust-band span {
  color: var(--muted);
}

.section,
.product-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-heading h2,
.insight-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

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

.workflow-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.workflow-grid svg {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.workflow-grid h3 {
  margin: 28px 0 10px;
}

.workflow-grid p,
.insight-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.product-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.scorecard {
  padding: 22px;
}

.scorecard-header {
  margin-bottom: 24px;
}

.scorecard-header span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.85rem;
}

.scorecard-header strong {
  font-size: 1.6rem;
}

.scorecard-header b {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: #0e6037;
  font-size: 1.35rem;
}

.score-line {
  margin: 18px 0;
  display: grid;
  gap: 8px;
}

.score-line span {
  color: var(--muted);
  font-weight: 700;
}

meter {
  width: 100%;
  height: 12px;
}

.score-note {
  margin: 24px 0 0;
  padding: 14px;
  border-radius: 8px;
  background: #fff7e7;
  color: #6b4c0f;
  line-height: 1.5;
}

.demo-section {
  padding-bottom: 72px;
}

.demo-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 18px;
  align-items: start;
}

.demo-form,
.demo-results {
  padding: 22px;
}

.demo-form {
  display: grid;
  gap: 14px;
}

.demo-form label {
  font-weight: 900;
}

textarea {
  width: 100%;
  min-height: 190px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
}

textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(242, 109, 91, 0.45);
  outline-offset: 3px;
}

.result-header {
  margin-bottom: 14px;
}

.result-header span {
  color: var(--muted);
  font-weight: 800;
}

#candidateResults {
  display: grid;
  gap: 12px;
}

.result-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.result-top h3 {
  margin: 0 0 4px;
}

.result-top span {
  color: var(--muted);
}

.result-score {
  min-width: 58px;
  min-height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ecfff5;
  color: var(--green);
  font-weight: 900;
}

.result-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer span {
  color: var(--ink);
  font-weight: 900;
}

.home-page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(23, 138, 80, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #f9fbf7 0%, #eef7f0 48%, #fff6ed 100%);
  background-size: 56px 56px, auto;
}

.home-header {
  background: rgba(249, 251, 247, 0.9);
}

.redesigned-hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 64px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 64px;
  padding: 78px 0 70px;
}

.home-copy {
  position: relative;
}

.redesigned-hero h1 {
  max-width: 720px;
  font-size: clamp(3.2rem, 6.5vw, 6.2rem);
  line-height: 0.95;
}

.redesigned-hero .home-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 24px;
  color: #4d5d52;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-showcase {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(21, 32, 24, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 20% 15%, rgba(242, 109, 91, 0.18), transparent 34%),
    radial-gradient(circle at 85% 75%, rgba(23, 138, 80, 0.16), transparent 38%);
  box-shadow: 0 32px 90px rgba(21, 32, 24, 0.15);
  overflow: hidden;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(21, 32, 24, 0.08);
  border-radius: 14px;
  pointer-events: none;
}

.showcase-top {
  position: relative;
  z-index: 1;
  min-height: 120px;
  display: grid;
  align-content: end;
  padding: 18px;
  border-radius: 12px;
  background: #152018;
  color: #fff;
}

.showcase-top span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.showcase-top b {
  display: block;
  margin-top: 8px;
  font-size: 2.2rem;
  line-height: 1;
}

.showcase-product,
.mini-product-row > div {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(21, 32, 24, 0.1);
  border-radius: 12px;
  background: #fff;
}

.showcase-product {
  margin-top: 12px;
  padding: 16px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.showcase-product svg,
.mini-product-row svg {
  width: 26px;
  height: 26px;
  color: var(--green);
}

.showcase-product strong,
.showcase-product span,
.mini-product-row strong,
.mini-product-row span {
  display: block;
}

.showcase-product span,
.mini-product-row span {
  color: var(--muted);
  line-height: 1.45;
}

.showcase-product em {
  color: var(--teal);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.active-product {
  box-shadow: 0 14px 34px rgba(23, 138, 80, 0.14);
}

.onboarding-product {
  transform: translateX(18px);
}

.mini-product-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.mini-product-row > div {
  min-height: 150px;
  padding: 16px;
  display: grid;
  align-content: space-between;
}

.intro-band,
.product-family,
.why-section,
.route-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-band {
  padding: 44px 0;
  border-top: 1px solid rgba(21, 32, 24, 0.1);
  border-bottom: 1px solid rgba(21, 32, 24, 0.1);
}

.intro-band p {
  max-width: 980px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3.2vw, 2.45rem);
  font-weight: 850;
  line-height: 1.16;
}

.intro-band a {
  color: var(--green);
}

.product-family,
.why-section,
.route-section {
  padding: 86px 0;
}

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

.family-card {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
  border: 1px solid rgba(21, 32, 24, 0.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 40px rgba(21, 32, 24, 0.06);
}

.family-card svg {
  width: 34px;
  height: 34px;
  margin-top: 26px;
  color: var(--green);
}

.family-card h3 {
  margin: 24px 0 10px;
  font-size: 1.45rem;
  line-height: 1.08;
}

.family-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.family-card b {
  margin-top: auto;
}

.product-label {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 11px;
  background: #f5f7f2;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
}

.live-label {
  background: var(--mint);
  color: #0f6840;
}

.onboarding-card {
  background: linear-gradient(160deg, #ffffff 0%, #eef7f0 100%);
}

.recruiting-card {
  border-color: rgba(23, 138, 80, 0.28);
  background: linear-gradient(160deg, #ecfff5 0%, #ffffff 62%, #fff7e7 100%);
}

.buddy-card {
  background: linear-gradient(160deg, #ffffff 0%, #f7f4ff 100%);
}

.clean-card {
  background: linear-gradient(160deg, #ffffff 0%, #f3fbff 100%);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: 64px;
  align-items: center;
  border-top: 1px solid rgba(21, 32, 24, 0.1);
  border-bottom: 1px solid rgba(21, 32, 24, 0.1);
}

.why-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.96;
}

.why-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.principle-list {
  display: grid;
  gap: 12px;
}

.principle-list div {
  padding: 20px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 8px 14px;
  border: 1px solid rgba(21, 32, 24, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
}

.principle-list svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  grid-row: span 2;
}

.principle-list span {
  color: var(--muted);
  line-height: 1.48;
}

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

.route-list div {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(21, 32, 24, 0.1);
  border-radius: 14px;
  background: #fff;
}

.route-list span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.route-list strong {
  overflow-wrap: anywhere;
  font-size: 1.28rem;
  line-height: 1.22;
}

.hq-dashboard {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.dashboard-top span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.dashboard-top strong {
  display: block;
  margin-top: 5px;
  font-size: 1.55rem;
}

.live-pill,
.extension-status {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--mint);
  color: #0f6840;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.metric-card.accent {
  background: #fff7e7;
}

.flow-card {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.flow-card.wide {
  grid-column: 1 / -1;
}

.flow-card svg,
.platform-grid svg,
.extension-card svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.flow-card b,
.flow-card span {
  display: block;
}

.flow-card span {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.45;
}

.flow-card em {
  color: var(--teal);
  font-style: normal;
  font-weight: 900;
  font-size: 0.82rem;
}

.brand-statement {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-statement p {
  max-width: 900px;
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  line-height: 1.22;
  font-weight: 800;
}

.brand-statement a {
  color: var(--green);
}

.platform-section {
  padding-bottom: 56px;
}

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

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

.platform-grid article,
.extension-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.platform-grid h3,
.extension-card h3 {
  margin: 28px 0 10px;
}

.platform-grid p,
.extension-card p,
.workflow-copy p {
  color: var(--muted);
  line-height: 1.6;
}

.extensions-band {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.extension-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.extension-card.live {
  border-color: rgba(23, 138, 80, 0.28);
  background: linear-gradient(135deg, #ecfff5, #ffffff 58%, #fff7e7);
}

.extension-card.core-product {
  background: linear-gradient(135deg, #ffffff, #eef7f0);
}

.extension-card b {
  margin-top: auto;
  color: var(--ink);
}

.muted-status {
  background: #f5f7f2;
  color: var(--muted);
}

.hq-workflow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: center;
  gap: 52px;
}

.workflow-copy h2,
.home-cta h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.route-map {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.route-map div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.route-map span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.route-map strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 1.25rem;
}

.route-map svg {
  display: block;
  width: 24px;
  height: 24px;
  margin: 14px auto;
  color: var(--green);
}

.home-cta {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0 96px;
  text-align: center;
}

.home-cta .primary-button {
  margin-top: 26px;
}

.home-preview {
  overflow: hidden;
}

.preview-header {
  padding: 14px;
  justify-content: flex-start;
  background: var(--ink);
}

.preview-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.6;
}

.preview-body {
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric-card,
.candidate-row {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.metric-card span,
.candidate-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
}

.candidate-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.candidate-row.top {
  border-color: rgba(23, 138, 80, 0.28);
  background: #ecfff5;
}

@media (max-width: 920px) {
  .hero,
  .home-hero,
  .product-band,
  .demo-shell,
  .hq-workflow,
  .redesigned-hero,
  .why-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .assistant-panel {
    transform: none;
  }

  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-grid,
  .extension-grid,
  .family-grid,
  .route-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .redesigned-hero {
    padding-top: 48px;
  }

  .onboarding-product {
    transform: none;
  }
}

@media (max-width: 700px) {
  .topbar {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-button {
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero h1,
  .home-hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .hero-actions {
    flex-direction: column;
  }

  .trust-band,
  .workflow-grid,
  .dashboard-grid,
  .platform-grid,
  .extension-grid,
  .family-grid,
  .route-list,
  .mini-product-row {
    grid-template-columns: 1fr;
  }

  .redesigned-hero h1 {
    font-size: 3.55rem;
  }

  .redesigned-hero {
    gap: 34px;
    padding: 42px 0 50px;
  }

  .showcase-product {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .showcase-product em {
    grid-column: 2;
  }

  .family-card {
    min-height: 300px;
  }

  .trust-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-band div:last-child {
    border-bottom: 0;
  }

  .section,
  .product-band,
  .extensions-band {
    padding: 64px 0;
  }

  .site-footer,
  .candidate-row,
  .result-top,
  .dashboard-top,
  .flow-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .flow-card {
    display: flex;
  }
}
