:root {
  color-scheme: light;
  --entry-ink: #1d1d1f;
  --entry-muted: #626872;
  --entry-soft: #86868b;
  --entry-blue: #0071e3;
  --entry-line: rgba(29, 29, 31, 0.1);
  --entry-surface: rgba(255, 255, 255, 0.72);
  --entry-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f5f5f7;
}

body.entry-page {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 12% 0, rgba(0, 113, 227, 0.12), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(79, 111, 255, 0.1), transparent 26%),
    linear-gradient(180deg, #f5f5f7 0%, #fff 52%, #f5f5f7 100%);
  color: var(--entry-ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.entry-shell {
  width: min(calc(100% - 40px), var(--entry-max));
  margin-inline: auto;
}

.entry-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(29, 29, 31, 0.08);
  background: rgba(245, 245, 247, 0.78);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.entry-nav {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.entry-brand,
.entry-nav-link {
  display: inline-flex;
  align-items: center;
}

.entry-brand {
  gap: 10px;
  font-size: 15px;
  font-weight: 750;
}

.entry-brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.entry-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.entry-nav-link {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 13px;
  color: #515154;
  font-size: 13px;
  font-weight: 650;
}

.entry-nav-link:last-child {
  border-color: rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: #1d1d1f;
}

.entry-hero {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  padding: clamp(72px, 9vw, 130px) 0 76px;
}

.entry-eyebrow,
.entry-section-kicker,
.entry-card-kicker {
  margin: 0;
  color: var(--entry-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -.02em;
  text-transform: none;
}

.entry-hero h1 {
  max-width: 850px;
  margin: 18px 0 22px;
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 660;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.entry-hero-copy {
  max-width: 760px;
  margin: 0;
  color: var(--entry-muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.58;
  letter-spacing: -0.018em;
}

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

.entry-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--entry-line);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.74);
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.055);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.entry-button.primary {
  border-color: #1d1d1f;
  background: #1d1d1f;
  color: #fff;
}

.entry-button:hover {
  transform: translateY(-1px);
  background: #fff;
}

.entry-button.primary:hover {
  background: #000;
}

.entry-visual {
  position: relative;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background:
    radial-gradient(circle at var(--spot-x, 30%) var(--spot-y, 20%), rgba(0, 113, 227, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 243, 250, 0.72));
  box-shadow: 0 38px 90px rgba(42, 57, 82, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
  transform: translateZ(0);
}

.entry-visual::before,
.entry-visual::after {
  position: absolute;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 50%;
  content: "";
}

.entry-visual::before {
  inset: 46px;
}

.entry-visual::after {
  inset: 112px;
  background: rgba(255, 255, 255, 0.48);
}

.entry-visual-panel {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.entry-visual-panel span {
  display: block;
  color: var(--entry-blue);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-visual-panel strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.entry-nodes {
  position: absolute;
  inset: 34px;
  z-index: 1;
}

.entry-node {
  position: absolute;
  display: grid;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
  color: var(--entry-blue);
  font-size: 13px;
  font-weight: 800;
  place-items: center;
  animation: entryFloat 7s ease-in-out infinite;
}

.entry-node:nth-child(1) { top: 18px; left: 18px; }
.entry-node:nth-child(2) { top: 66px; right: 24px; animation-delay: -1.5s; color: #1d1d1f; }
.entry-node:nth-child(3) { bottom: 142px; left: 58px; animation-delay: -2.8s; color: #36a269; }
.entry-node:nth-child(4) { right: 92px; bottom: 166px; animation-delay: -4s; color: #8664ff; }

@keyframes entryFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

.entry-section {
  padding: clamp(72px, 8vw, 118px) 0;
}

.entry-section.alt {
  background: #fff;
}

.entry-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}

.entry-section-head h2 {
  max-width: 840px;
  margin: 12px 0 0;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 660;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.entry-section-head p:last-child {
  margin: 0;
  color: var(--entry-muted);
  font-size: 16px;
  line-height: 1.58;
}

.entry-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.entry-chip-row span,
.entry-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid var(--entry-line);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.72);
  color: #515154;
  font-size: 13px;
  font-weight: 700;
}

.entry-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.entry-card {
  min-height: 300px;
  border: 1px solid var(--entry-line);
  border-radius: 24px;
  padding: 26px;
  background:
    radial-gradient(circle at 88% 0, rgba(0, 113, 227, 0.1), transparent 28%),
    var(--entry-surface);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.compare-page .entry-hero {
  min-height: 760px;
}

.compare-page .entry-hero h1 {
  max-width: 920px;
}

.compare-visual {
  display: grid;
  min-height: 530px;
  align-content: end;
  padding: 26px;
  background:
    radial-gradient(circle at 30% 18%, rgba(0, 113, 227, 0.2), transparent 28%),
    radial-gradient(circle at 76% 30%, rgba(20, 184, 166, 0.13), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 241, 251, 0.78));
}

.compare-visual::before {
  inset: 42px;
  border-style: dashed;
}

.compare-visual::after {
  inset: 112px;
}

.compare-radar {
  position: absolute;
  inset: 32px;
  z-index: 2;
}

.compare-radar span {
  position: absolute;
  display: inline-flex;
  max-width: 150px;
  min-height: 42px;
  align-items: center;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.74);
  color: #334155;
  font-size: 12px;
  font-weight: 760;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.compare-radar span:nth-child(1) {
  top: 22px;
  left: 16px;
}

.compare-radar span:nth-child(2) {
  top: 92px;
  right: 12px;
}

.compare-radar span:nth-child(3) {
  right: 72px;
  bottom: 170px;
}

.compare-radar span:nth-child(4) {
  bottom: 112px;
  left: 38px;
}

.compare-score-card {
  position: relative;
  z-index: 3;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.compare-score-card span {
  display: block;
  color: var(--entry-blue);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-score-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.compare-score-card p {
  max-width: 360px;
  margin: 14px 0 0;
  color: var(--entry-muted);
  line-height: 1.55;
}

.compare-decision {
  padding-top: clamp(24px, 4vw, 48px);
}

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

.compare-matrix article {
  min-height: 270px;
  border: 1px solid var(--entry-line);
  border-radius: 28px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.64));
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07), inset 0 1px rgba(255, 255, 255, 0.92);
}

.compare-matrix article:nth-child(2) {
  background:
    radial-gradient(circle at 90% 0, rgba(0, 113, 227, 0.16), transparent 36%),
    #111827;
  color: #fff;
}

.compare-matrix article span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #1d1d1f;
  color: #fff;
  font-size: 12px;
  font-weight: 820;
  place-items: center;
}

.compare-matrix article:nth-child(2) span {
  background: #fff;
  color: #111827;
}

.compare-matrix h3 {
  margin: 52px 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.compare-matrix p {
  margin: 0;
  color: var(--entry-muted);
  line-height: 1.58;
}

.compare-matrix article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.72);
}

.compare-page .entry-card.featured {
  min-height: 340px;
  background:
    radial-gradient(circle at 88% 0, rgba(0, 113, 227, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 255, 0.76));
}

.compare-goals {
  background:
    linear-gradient(180deg, rgba(245, 245, 247, 0), rgba(235, 241, 249, 0.82));
}

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

.compare-goal-grid a {
  display: flex;
  min-height: 180px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(29, 29, 31, 0.1);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.compare-goal-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 113, 227, 0.28);
  background: #fff;
}

.compare-goal-grid span {
  color: var(--entry-muted);
  line-height: 1.5;
}

.compare-goal-grid strong {
  display: block;
  margin-top: 28px;
  color: #1d1d1f;
  font-size: 24px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.compare-page [data-entry-reveal] {
  opacity: 1;
  transform: none;
}

.usecase-page .entry-hero {
  min-height: 740px;
}

.usecase-page .entry-hero h1 {
  max-width: 900px;
}

.usecase-visual {
  background:
    radial-gradient(circle at 20% 12%, rgba(20, 184, 166, 0.16), transparent 30%),
    radial-gradient(circle at 80% 18%, rgba(0, 113, 227, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(236, 244, 250, 0.78));
}

.usecase-paths {
  padding-top: clamp(24px, 4vw, 48px);
}

.usecase-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.usecase-path-grid article {
  min-height: 250px;
  border: 1px solid var(--entry-line);
  border-radius: 28px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07), inset 0 1px rgba(255, 255, 255, 0.9);
}

.usecase-path-grid article:nth-child(2) {
  background:
    radial-gradient(circle at 92% 0, rgba(20, 184, 166, 0.18), transparent 34%),
    #111827;
  color: #fff;
}

.usecase-path-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #1d1d1f;
  color: #fff;
  font-size: 12px;
  font-weight: 820;
  place-items: center;
}

.usecase-path-grid article:nth-child(2) span {
  background: #fff;
  color: #111827;
}

.usecase-path-grid h3 {
  margin: 48px 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.usecase-path-grid p {
  margin: 0;
  color: var(--entry-muted);
  line-height: 1.58;
}

.usecase-path-grid article:nth-child(2) p {
  color: rgba(255, 255, 255, 0.72);
}

.usecase-page .entry-card.featured {
  min-height: 340px;
  background:
    radial-gradient(circle at 88% 0, rgba(20, 184, 166, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 249, 247, 0.78));
}

.usecase-page [data-entry-reveal] {
  opacity: 1;
  transform: none;
}

.entry-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.entry-card p {
  margin: 0;
  color: var(--entry-muted);
  font-size: 15px;
  line-height: 1.56;
}

.entry-card ul,
.entry-faq-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.entry-card li {
  color: #414852;
  font-size: 14px;
  line-height: 1.42;
}

.entry-card li::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--entry-blue);
  content: "";
  vertical-align: 1px;
}

.entry-workflow {
  display: grid;
  gap: 14px;
}

.entry-workflow-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) minmax(220px, 0.38fr);
  gap: 18px;
  align-items: center;
  border: 1px solid var(--entry-line);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.045);
}

.entry-step-number {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #1d1d1f;
  color: #fff;
  font-size: 13px;
  font-weight: 780;
  place-items: center;
}

.entry-workflow-step h3 {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.entry-workflow-step p {
  margin: 0;
  color: var(--entry-muted);
  line-height: 1.5;
}

.entry-table {
  overflow: hidden;
  border: 1px solid var(--entry-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.06);
}

.entry-table-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1fr) minmax(0, 1fr);
  border-top: 1px solid var(--entry-line);
}

.entry-table-row:first-child {
  border-top: 0;
  background: #1d1d1f;
  color: #fff;
  font-weight: 760;
}

.entry-table-row > div {
  min-width: 0;
  padding: 18px;
  border-left: 1px solid var(--entry-line);
  color: #4a515d;
  line-height: 1.48;
}

.entry-table-row:first-child > div {
  color: #fff;
}

.entry-table-row > div:first-child {
  border-left: 0;
  color: #1d1d1f;
  font-weight: 760;
}

.entry-table-row:first-child > div:first-child {
  color: #fff;
}

.entry-product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.entry-product {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--entry-line);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.05);
}

.entry-product strong {
  display: block;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.entry-product span {
  display: block;
  margin-top: 9px;
  color: var(--entry-muted);
  font-size: 14px;
  line-height: 1.45;
}

.entry-product a {
  width: fit-content;
  color: var(--entry-blue);
  font-size: 14px;
  font-weight: 750;
}

.entry-faq-list details {
  border: 1px solid var(--entry-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.entry-faq-list summary {
  cursor: pointer;
  padding: 20px;
  font-size: 18px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.entry-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--entry-muted);
  line-height: 1.58;
}

.entry-cta {
  margin: 80px auto;
  border-radius: 30px;
  padding: clamp(34px, 6vw, 70px);
  background: #0a101b;
  color: #fff;
}

.entry-cta p {
  margin: 0;
  color: #80bdff;
}

.entry-cta h2 {
  max-width: 820px;
  margin: 12px 0 26px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.entry-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 46px;
  border-top: 1px solid var(--entry-line);
  color: #777e89;
  font-size: 12px;
}

.entry-footer .abd-footer-bottom,
.abd-footer-bottom {
  display: flex !important;
  width: 100% !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
  color: inherit !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
}

.abd-footer-legacy-bottom-hidden {
  display: none !important;
}

.abd-footer-copy {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  min-width: max-content !important;
  color: inherit !important;
}

.abd-footer-mark {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  flex: 0 0 24px !important;
  border-radius: 0 !important;
  object-fit: contain !important;
}

.abd-footer-right {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.abd-footer-socials {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
}

.abd-social-button {
  display: inline-grid !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  padding: 0 !important;
  border: 1px solid rgba(100, 116, 139, 0.24) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.76) !important;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.9), 0 8px 22px rgba(15, 23, 42, 0.08) !important;
  color: #334155 !important;
  text-decoration: none !important;
  place-items: center !important;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease !important;
}

.abd-social-button:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(37, 99, 235, 0.45) !important;
  background: #fff !important;
  color: #1d4ed8 !important;
}

.abd-social-button svg {
  display: block !important;
  width: 17px !important;
  height: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
  fill: currentColor !important;
}

.abd-footer-legal {
  display: inline-flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.abd-footer-legal a {
  border-bottom: 1px solid transparent !important;
  color: inherit !important;
  text-decoration: none !important;
}

.abd-footer-legal a:hover {
  border-bottom-color: currentColor !important;
  color: #1d4ed8 !important;
}

[data-entry-reveal] {
  opacity: 1;
  transform: none;
  animation: entry-in .65s cubic-bezier(.2,.7,.2,1) both;
}
[data-entry-reveal].is-visible { opacity: 1; transform: none; }
@keyframes entry-in {
  from { opacity: .2; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 920px) {
  .entry-hero,
  .entry-section-head {
    grid-template-columns: 1fr;
  }

  .entry-hero {
    min-height: auto;
  }

  .entry-visual {
    min-height: 420px;
  }

  .entry-card-grid,
  .entry-product-strip,
  .compare-matrix,
  .compare-goal-grid,
  .usecase-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .entry-workflow-step {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .entry-workflow-step .entry-pill {
    grid-column: 2;
    width: fit-content;
  }
}

@media (max-width: 640px) {
  .entry-shell {
    width: min(calc(100% - 28px), var(--entry-max));
  }

  .entry-nav-actions .entry-nav-link:first-child {
    display: none;
  }

  .entry-hero {
    padding-top: 56px;
  }

  .entry-hero h1 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .entry-visual {
    min-height: 360px;
    border-radius: 26px;
  }

  .entry-node {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .entry-card-grid,
  .entry-product-strip,
  .compare-matrix,
  .compare-goal-grid,
  .usecase-path-grid {
    grid-template-columns: 1fr;
  }

  .compare-page .entry-hero {
    min-height: auto;
  }

  .usecase-page .entry-hero {
    min-height: auto;
  }

  .compare-visual {
    min-height: 430px;
    padding: 20px;
  }

  .compare-radar {
    inset: 22px;
  }

  .compare-radar span {
    min-height: 38px;
    font-size: 11px;
  }

  .compare-radar span:nth-child(1) {
    top: 0;
    left: 0;
  }

  .compare-radar span:nth-child(2) {
    top: 58px;
    right: 0;
  }

  .compare-radar span:nth-child(3) {
    right: 0;
    bottom: 146px;
  }

  .compare-radar span:nth-child(4) {
    bottom: 92px;
    left: 0;
  }

  .compare-matrix article,
  .compare-page .entry-card.featured,
  .compare-goal-grid a,
  .usecase-path-grid article,
  .usecase-page .entry-card.featured {
    min-height: auto;
  }

  .entry-table {
    overflow-x: auto;
  }

  .entry-table-row {
    min-width: 760px;
  }

  .entry-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .abd-footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .abd-footer-right {
    width: 100% !important;
    justify-content: space-between !important;
  }
}

@media (max-width: 480px) {
  .abd-footer-bottom {
    align-items: center !important;
    text-align: center !important;
  }

  .abd-footer-copy,
  .abd-footer-right,
  .abd-footer-legal {
    justify-content: center !important;
  }

  .abd-footer-right {
    flex-direction: column !important;
  }
}

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

  [data-entry-reveal] {
    opacity: 1;
    transform: none;
  }
}
