:root {
  --ink: #1b003f;
  --ink-soft: #32125c;
  --violet: #7b35ff;
  --violet-2: #9c63ff;
  --yellow: #ffd12e;
  --paper: #fbfafc;
  --mist: #f3f1f6;
  --line: #ddd8e7;
  --muted: #756987;
  --green: #36b37e;
  --red: #ee6a70;
  --blue: #6088ff;
  --shadow: 0 24px 70px rgba(37, 12, 72, 0.16);
  font-family: Inter, Manrope, 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);
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 30px auto 0;
}

.hero-shell {
  min-height: min(650px, calc(100vh - 84px));
  background: var(--mist);
  border-radius: 42px 42px 0 0;
  padding: 24px 24px 44px;
}

.page-shell {
  background: var(--mist);
  border-radius: 42px 42px 0 0;
  padding: 24px 24px 52px;
}

.topbar {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  font-weight: 800;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  place-content: center;
  gap: 3px;
  transform: rotate(0deg);
}

.brand-mark span {
  display: block;
  background: #fff;
}

.brand-mark span:nth-child(1),
.brand-mark span:nth-child(4) {
  transform: skew(-20deg);
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
  background: var(--violet-2);
  transform: skew(-20deg);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  font-size: 16px;
}

.nav-links a,
.signin {
  padding: 12px 4px;
}

.nav-links a[aria-current="page"],
.signin[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}

.signin {
  justify-self: end;
  font-size: 16px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff;
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(27, 0, 63, 0.12);
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  margin: 4px 0;
}

.hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(42px, 7vh, 72px) 12px 12px;
}

.eyebrow {
  margin: 0;
  display: inline-block;
  background: #e7e2ee;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
  padding: 11px 18px;
  border-radius: 8px;
}

.hero h1 {
  position: relative;
  max-width: 820px;
  margin: 24px 0 12px;
  font-size: clamp(52px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  isolation: isolate;
  z-index: 0;
}

.hero h1 span::after {
  content: "";
  position: absolute;
  left: -7%;
  right: -7%;
  bottom: 6px;
  height: 24px;
  background: var(--yellow);
  transform: rotate(-1deg);
  z-index: -1;
}

.hero-copy {
  max-width: 620px;
  margin: 0 0 32px;
  color: var(--ink);
  font-size: clamp(21px, 2.1vw, 27px);
  line-height: 1.35;
  font-weight: 500;
}

.hero-actions {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.primary-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 950;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(120deg, #6b36ff, #985dff);
  box-shadow: 0 16px 35px rgba(92, 54, 255, 0.28);
}

.outline-btn {
  color: var(--ink);
  border: 2px solid var(--ink);
  background: #fff;
}

.text-link {
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.page-hero {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(54px, 9vh, 104px) 12px 26px;
}

.page-hero h1,
.login-copy h1 {
  max-width: 910px;
  margin: 24px 0 18px;
  font-size: clamp(46px, 6.5vw, 86px);
  line-height: 0.99;
  font-weight: 950;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow),
.login-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.35;
  font-weight: 650;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.page-section,
.workflow-band,
.timeline,
.stat-strip,
.mini-cta,
.login-layout {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.page-section {
  padding: 70px 0;
}

.feature-page-grid,
.help-grid,
.article-grid,
.customer-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.story-card,
.article-card,
.update-card,
.login-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(37, 12, 72, 0.08);
}

.info-card,
.story-card,
.article-card {
  min-height: 260px;
  padding: 28px;
}

.info-card span,
.article-card span,
.update-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 999px;
  background: #eee8f8;
  color: var(--ink);
  padding: 0 13px;
  font-size: 13px;
  font-weight: 950;
}

.info-card h2,
.story-card h2,
.article-card h2,
.update-card h2,
.faq-list h2,
.mini-cta h2,
.login-card h2 {
  margin: 20px 0 12px;
  color: var(--ink);
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.08;
  font-weight: 950;
}

.info-card p,
.story-card p,
.article-card p,
.update-card p,
.workflow-band p,
.faq-list p,
.login-card a {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 700;
}

.workflow-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: center;
  padding: 52px;
  background: var(--mist);
  border-radius: 8px;
}

.workflow-band h2 {
  margin: 22px 0 14px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.03;
  font-weight: 950;
}

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

.kanban-board article {
  min-height: 300px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.kanban-board h3 {
  margin: 0 0 6px;
  font-size: 19px;
}

.kanban-board span {
  display: block;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 900;
}

.kanban-board b {
  display: block;
  height: 54px;
  margin-top: 12px;
  border-radius: 8px;
  background: #f3f1f6;
  border-left: 8px solid var(--yellow);
}

.story-card {
  background: var(--ink);
  color: #fff;
}

.story-card h2,
.story-card p {
  color: #fff;
}

.story-card strong {
  display: block;
  margin-top: 26px;
  color: var(--yellow);
  font-size: 21px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 0 84px;
}

.stat-strip article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  align-content: center;
  justify-items: center;
  border-radius: 8px;
  background: var(--mist);
  text-align: center;
}

.stat-strip strong {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  font-weight: 950;
}

.stat-strip span {
  color: var(--muted);
  font-weight: 900;
}

.timeline {
  display: grid;
  gap: 18px;
  padding: 70px 0 90px;
}

.update-card {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: start;
  padding: 28px;
}

.update-card time {
  color: var(--muted);
  font-weight: 950;
}

.update-card h2 {
  margin: 0 0 10px;
}

.update-card p {
  margin: 0;
}

.help-search {
  width: min(720px, 100%);
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.help-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.help-search input,
.field input {
  min-height: 56px;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 16px;
  font: inherit;
  font-weight: 750;
  outline: none;
}

.help-search input:focus,
.field input:focus {
  border-color: var(--violet);
}

.faq-list {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto 78px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.mini-cta {
  margin-bottom: 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  padding: 42px;
}

.mini-cta h2 {
  margin: 0;
  color: #fff;
  max-width: 720px;
}

.login-shell {
  padding-bottom: 24px;
}

.login-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: 44px;
  align-items: center;
  padding: 70px 0 90px;
}

.login-copy h1 {
  margin-top: 22px;
}

.login-card {
  padding: 32px;
}

.login-card h2 {
  margin-top: 0;
}

.login-form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 950;
}

.field input {
  border-color: var(--line);
  background: var(--paper);
}

.remember-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-weight: 850;
}

.remember-row input {
  width: 18px;
  height: 18px;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 900;
}

.feature-showcase {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 84px;
}

.feature-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 auto 28px;
  scrollbar-width: none;
}

.feature-tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  appearance: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  min-width: 160px;
  padding: 18px 20px 17px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 950;
}

.tab.is-active {
  border-color: var(--ink);
}

.product-frame {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.browser-bar {
  min-height: 58px;
  background: #1d2938;
  display: grid;
  grid-template-columns: 95px 1fr 95px;
  align-items: center;
  padding: 0 18px;
  color: #d9dce4;
}

.traffic,
.bar-actions {
  display: flex;
  gap: 9px;
}

.traffic span,
.bar-actions span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #445160;
}

.address-pill {
  justify-self: center;
  width: min(360px, 80%);
  height: 34px;
  display: grid;
  place-items: center;
  color: #eef0f5;
  border-radius: 8px;
  background: #344152;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  padding: 0 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bar-actions {
  justify-content: end;
}

.app-ui {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 560px;
  background: #f9fafc;
}

.sidebar {
  border-right: 1px solid #eef0f4;
  background: #fff;
  padding: 28px 20px;
}

.mini-logo {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background: var(--ink);
  margin: 0 0 26px;
}

.side-item {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: #667085;
  text-align: left;
  padding: 12px 11px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.side-item.is-selected {
  color: #3164cc;
  background: #edf4ff;
}

.order-view {
  padding: 18px;
}

.order-topline {
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #eef0f4;
  background: #fff;
  padding: 0 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.order-actions {
  display: flex;
  gap: 8px;
}

.order-actions button {
  border: 1px solid #cfd6e1;
  background: #fff;
  border-radius: 6px;
  padding: 7px 14px;
  color: #596579;
  font-size: 11px;
  font-weight: 800;
}

.order-actions .solid {
  border-color: #526ef4;
  background: #526ef4;
  color: #fff;
}

.stats-row,
.detail-grid,
.table-wrap {
  margin: 18px 0 0;
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 8px;
  box-shadow: 0 10px 35px rgba(28, 37, 55, 0.05);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 18px;
}

.stats-row span,
.detail-grid span {
  display: block;
  color: #7b8495;
  font-size: 11px;
  margin-bottom: 5px;
}

.stats-row strong,
.detail-grid strong {
  display: block;
  color: #2e3440;
  font-size: 12px;
}

.avatar-stack {
  color: #fff !important;
  background: #5574e8;
  display: inline-flex !important;
  width: 56px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  letter-spacing: 0;
}

.status {
  display: inline-grid !important;
  place-items: center;
  min-width: 80px;
  min-height: 24px;
  color: #fff !important;
  border-radius: 6px;
  padding: 0 10px;
}

.status.danger {
  background: var(--red);
}

.status.info {
  background: #8c9cf7;
  color: var(--ink) !important;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 22px 18px;
}

.detail-grid p {
  margin: 6px 0 0;
  color: #5f6877;
  font-size: 12px;
  line-height: 1.5;
}

.labels {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.labels b {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border-radius: 999px;
  padding: 0 8px;
  background: #edf4ff;
  color: #315fc6;
  font-size: 10px;
}

.table-wrap {
  padding: 10px 18px;
}

.table-row {
  display: grid;
  grid-template-columns: 2fr 0.5fr 1fr 1fr 1fr;
  gap: 12px;
  min-height: 42px;
  align-items: center;
  border-bottom: 1px solid #eef0f4;
  color: #4a5364;
  font-size: 12px;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-head {
  color: #8a93a3;
  font-weight: 900;
}

.feature-card {
  position: absolute;
  left: 48%;
  top: 46%;
  width: min(340px, 42%);
  transform: translate(-10%, -15%);
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 20px 45px rgba(27, 0, 63, 0.28);
}

.feature-card p {
  margin: 0 0 10px;
  font-weight: 900;
  color: #d6c8ff;
}

.feature-card h2 {
  margin: 0 0 22px;
  font-size: 20px;
  line-height: 1.35;
}

.feature-card a {
  width: 62px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
}

.customers-band,
.compare-band,
.confidence-band,
.cta-band,
.footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.customers-band {
  padding: 26px 0 86px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading h2,
.compare-heading h2,
.cta-band h2,
.benefit-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.3vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 950;
}

.section-heading a,
.section-heading p,
.compare-heading p {
  color: var(--muted);
  font-weight: 800;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.logo-grid span {
  min-height: 86px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: #6e607d;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 950;
  text-align: center;
  padding: 12px;
}

.logo-grid span:nth-child(4n) {
  border-right: 0;
}

.quote-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 26px;
}

.quote-strip blockquote {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 950;
}

.quote-strip p {
  margin: 0;
  color: #e8ddff;
  font-weight: 800;
}

.benefits {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 18px 0 96px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 56px;
  align-items: center;
}

.benefit-copy {
  padding: 34px 0;
}

.benefit-copy .eyebrow {
  margin-bottom: 20px;
}

.benefit-copy h2 {
  font-size: clamp(32px, 4vw, 52px);
}

.benefit-copy ul {
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.benefit-copy li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  color: var(--ink-soft);
  font-size: 19px;
  font-weight: 800;
}

.benefit-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 4px var(--ink);
}

.metric-panel,
.testimonial,
.schedule-panel,
.compare-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(37, 12, 72, 0.08);
}

.metric-panel {
  padding: 28px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  min-height: 64px;
  color: var(--muted);
  font-weight: 800;
}

.metric-row strong {
  color: var(--ink);
  font-size: 32px;
}

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

.pipeline span {
  position: relative;
  display: block;
  height: 38px;
  border-radius: 8px;
  background: #eeeaf4;
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  padding: 10px 12px;
}

.pipeline span::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: var(--yellow);
  z-index: 0;
}

.pipeline span {
  isolation: isolate;
}

.pipeline span::after {
  content: attr(data-label);
}

.testimonial {
  padding: 34px;
  background: var(--ink);
  color: #fff;
}

.testimonial p {
  margin: 0 0 30px;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.07;
  font-weight: 950;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial span {
  margin-top: 4px;
  color: #d6c8ff;
}

.schedule-panel {
  padding: 28px;
}

.calendar-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  font-weight: 950;
}

.calendar-track {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  min-height: 66px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 900;
}

.calendar-track b {
  display: block;
  height: 34px;
  border-radius: 8px;
}

.calendar-track .yellow {
  background: var(--yellow);
}

.calendar-track .purple {
  background: var(--violet);
}

.calendar-track .green {
  background: var(--green);
}

.calendar-track .red {
  background: var(--red);
}

.compare-band {
  background: var(--mist);
  border-radius: 8px;
  padding: 56px;
}

.compare-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.compare-grid article {
  padding: 26px;
}

.compare-grid h3 {
  margin: 0 0 20px;
  font-size: 24px;
}

.messy-stack,
.clean-stack {
  display: grid;
  gap: 12px;
}

.messy-stack span,
.clean-stack span {
  display: flex;
  min-height: 50px;
  align-items: center;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 950;
}

.messy-stack span {
  background: #f7e7e7;
  color: #8b2c35;
  transform: translateX(var(--shift, 0));
}

.messy-stack span:nth-child(2) {
  --shift: 18px;
}

.messy-stack span:nth-child(3) {
  --shift: -8px;
}

.clean-stack span {
  background: #eef8f2;
  color: #115d41;
}

.integrations {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.integrations p {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
}

.integrations div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.integrations span,
.press-grid span {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 0 18px;
  font-weight: 950;
  color: var(--ink-soft);
}

.confidence-band {
  padding: 88px 0;
}

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

.press-grid span {
  min-height: 92px;
  text-align: center;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 46px;
}

.cta-band .eyebrow {
  margin-bottom: 18px;
  color: var(--ink);
}

.cta-band h2 {
  color: #fff;
  max-width: 760px;
}

.footer {
  padding: 56px 0 34px;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 34px;
}

.footer .brand {
  font-size: 27px;
}

.footer-brand p,
.copyright {
  color: var(--muted);
  font-weight: 700;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 14px 34px;
  justify-content: end;
  font-weight: 900;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

@media (max-width: 920px) {
  .hero-shell,
  .page-shell,
  .site-shell,
  .feature-showcase,
  .customers-band,
  .page-section,
  .workflow-band,
  .timeline,
  .stat-strip,
  .mini-cta,
  .login-layout,
  .benefits,
  .compare-band,
  .confidence-band,
  .cta-band,
  .footer {
    width: min(100% - 28px, 760px);
  }

  .hero-shell {
    border-radius: 28px 28px 0 0;
    min-height: auto;
    padding-bottom: 54px;
  }

  .topbar {
    grid-template-columns: auto auto;
  }

  .brand {
    font-size: 25px;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links,
  .signin {
    display: none;
  }

  .nav-links.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    background: #fff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 18px 40px rgba(27, 0, 63, 0.12);
  }

  .nav-links.is-open a {
    padding: 14px 16px;
  }

  .hero {
    padding-top: 70px;
  }

  .page-hero {
    padding-top: 64px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 72px);
  }

  .page-hero h1,
  .login-copy h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .hero-copy {
    font-size: 22px;
  }

  .feature-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
  }

  .tab {
    flex: 0 0 auto;
  }

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

  .sidebar {
    display: none;
  }

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

  .feature-card {
    position: static;
    transform: none;
    width: auto;
    margin: 18px;
  }

  .benefits,
  .compare-grid,
  .press-grid,
  .logo-grid,
  .feature-page-grid,
  .help-grid,
  .article-grid,
  .customer-story-grid,
  .workflow-band,
  .kanban-board,
  .stat-strip,
  .login-layout {
    grid-template-columns: 1fr;
  }

  .workflow-band {
    padding: 34px;
  }

  .update-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .logo-grid span,
  .logo-grid span:nth-child(4n) {
    border-right: 0;
  }

  .section-heading,
  .integrations,
  .cta-band,
  .mini-cta,
  .footer {
    display: grid;
    justify-items: start;
  }

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .site-shell,
  .page-shell,
  .feature-showcase,
  .customers-band,
  .page-section,
  .workflow-band,
  .timeline,
  .stat-strip,
  .mini-cta,
  .login-layout,
  .benefits,
  .compare-band,
  .confidence-band,
  .cta-band,
  .footer {
    width: calc(100% - 20px);
  }

  .hero-shell {
    margin-top: 10px;
    padding: 18px 14px 40px;
  }

  .hero {
    padding-top: 56px;
  }

  .page-shell {
    margin-top: 10px;
    padding: 18px 14px 38px;
    border-radius: 28px 28px 0 0;
  }

  .page-hero {
    padding: 50px 0 18px;
  }

  .page-hero p:not(.eyebrow),
  .login-copy p:not(.eyebrow) {
    font-size: 19px;
  }

  .page-actions,
  .help-search {
    grid-template-columns: 1fr;
    display: grid;
    width: 100%;
  }

  .hero h1 span::after {
    bottom: 3px;
    height: 16px;
  }

  .primary-btn,
  .outline-btn {
    width: 100%;
    font-size: 18px;
  }

  .browser-bar {
    grid-template-columns: 52px 1fr 52px;
    padding: 0 10px;
  }

  .address-pill {
    font-size: 11px;
    width: 100%;
    padding: 0 8px;
  }

  .order-topline {
    height: auto;
    min-height: 58px;
    align-items: start;
    flex-direction: column;
    padding: 12px;
  }

  .order-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .order-actions button {
    padding: 7px 6px;
  }

  .stats-row,
  .detail-grid,
  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row {
    gap: 4px;
    padding: 10px 0;
  }

  .quote-strip {
    grid-template-columns: 1fr;
  }

  .compare-band,
  .cta-band,
  .mini-cta {
    padding: 28px;
  }

  .info-card,
  .story-card,
  .article-card,
  .update-card,
  .login-card {
    padding: 24px;
  }

  .kanban-board article {
    min-height: 220px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
