:root {
  --ink: #162326;
  --muted: #5b676a;
  --paper: #f6f7f2;
  --surface: #ffffff;
  --line: #d8dfd9;
  --teal: #117f73;
  --teal-dark: #0c5a55;
  --coral: #e87455;
  --gold: #eeb84b;
  --plum: #51435f;
  --nav: #13292c;
  --shadow: 0 18px 44px rgba(23, 35, 38, 0.14);
  --lift-shadow: 0 26px 70px rgba(23, 35, 38, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(246, 247, 242, 0.9);
  border-bottom: 1px solid rgba(22, 35, 38, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  background: #e3f3ed;
  border: 2px solid rgba(17, 127, 115, 0.24);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand span,
.footer-brand span {
  display: grid;
}

.brand strong,
.footer-brand strong {
  font-size: 0.98rem;
}

.brand small,
.footer-brand small,
.site-header nav a,
footer span {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-header nav a {
  border-radius: 999px;
  padding: 9px 12px;
}

.site-header nav a:hover {
  background: rgba(17, 127, 115, 0.1);
  color: var(--teal-dark);
}

.site-header nav .portal-link {
  background: var(--ink);
  color: #ffffff;
  font-weight: 850;
}

.site-header nav .portal-link:hover {
  background: var(--teal-dark);
  color: #ffffff;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.64fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding: 120px clamp(22px, 6vw, 92px) 92px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(246, 247, 242, 0.99) 0%, rgba(246, 247, 242, 0.93) 40%, rgba(246, 247, 242, 0.34) 68%),
    url("assets/axleaudits-hero-axolotl-truck.png") right -72px center / auto 100% no-repeat,
    linear-gradient(135deg, #cfe9df 0%, #f9d4c6 52%, #f4e8bd 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral), var(--plum));
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17, 127, 115, 0.16) 0 2px, transparent 2px 100%),
    linear-gradient(0deg, rgba(81, 67, 95, 0.12) 0 2px, transparent 2px 100%);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 58%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 710px;
}

.hero-product {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  gap: 14px;
  min-width: 0;
  margin-left: -50px;
}

.beta-ticket {
  width: min(300px, 88%);
  display: grid;
  gap: 4px;
  justify-self: center;
  border: 1px solid rgba(81, 67, 95, 0.18);
  border-radius: 8px;
  padding: 13px 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--plum), var(--coral));
  box-shadow: var(--lift-shadow);
}

.beta-ticket span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.beta-ticket strong {
  font-size: 1rem;
}

.product-window {
  width: min(320px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--lift-shadow);
  backdrop-filter: blur(14px);
}

.product-window header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(22, 35, 38, 0.12);
}

.product-window header span,
.hero-price-card span,
.hero-price-card small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px;
  background: #ffffff;
}

.product-row span {
  color: var(--muted);
  font-weight: 760;
}

.product-row strong {
  color: var(--ink);
}

.product-row.good {
  border-color: rgba(17, 127, 115, 0.28);
  background: #edf8f4;
}

.product-row.warn {
  border-color: rgba(238, 184, 75, 0.4);
  background: #fff8e8;
}

.hero-price-card {
  width: min(250px, 78%);
  display: grid;
  gap: 2px;
  justify-self: start;
  border-radius: 8px;
  padding: 18px;
  color: #ffffff;
  background: var(--nav);
  box-shadow: 0 18px 48px rgba(23, 35, 38, 0.2);
}

.hero-price-card strong {
  font-size: 2.4rem;
  line-height: 1;
}

.hero-price-card span,
.hero-price-card small {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  max-width: 13ch;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 58ch;
  color: #314245;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  text-align: center;
}

.button.primary {
  background: var(--teal);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.button.primary:hover {
  background: var(--teal-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(22, 35, 38, 0.16);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--teal);
}

.button.on-dark {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.hero-note {
  display: inline-grid;
  gap: 3px;
  width: min(520px, 100%);
  max-width: 520px;
  margin-top: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(22, 35, 38, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.hero-note span {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-note strong {
  font-size: 0.9rem;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 24px clamp(22px, 5vw, 70px);
  background: var(--surface);
}

.trust-band strong {
  color: var(--plum);
  font-size: 1.28rem;
}

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

.beta-status-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.76fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  padding: clamp(30px, 5vw, 62px) clamp(22px, 5vw, 84px);
  background:
    linear-gradient(135deg, rgba(17, 127, 115, 0.1), rgba(238, 184, 75, 0.14)),
    #ffffff;
  border-bottom: 1px solid var(--line);
}

.beta-status-strip h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  line-height: 1.08;
}

.beta-status-strip p:not(.eyebrow) {
  max-width: 72ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.beta-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.beta-stat-grid article {
  min-height: 136px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  border: 1px solid rgba(22, 35, 38, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(23, 35, 38, 0.08);
}

.beta-stat-grid strong {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal);
  font-size: 1.2rem;
}

.beta-stat-grid article:nth-child(2) strong {
  background: var(--coral);
}

.beta-stat-grid article:nth-child(3) strong {
  background: var(--plum);
}

.beta-stat-grid span {
  color: var(--ink);
  font-weight: 850;
}

.section {
  padding: 86px clamp(22px, 5vw, 84px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: #ffffff;
}

.section-heading {
  max-width: 780px;
}

.section-heading h2,
.beta-band h2,
.support-strip h2 {
  margin-bottom: 14px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow),
.beta-band p,
.support-strip p,
.readiness-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.readiness-copy {
  display: grid;
  gap: 14px;
}

.readiness-copy p {
  margin: 0;
  max-width: 68ch;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.demo-section {
  background: #ffffff;
}

.demo-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.demo-grid article,
.pricing-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(23, 35, 38, 0.08);
}

.demo-grid article {
  overflow: hidden;
}

.demo-grid article::after {
  content: "";
  position: absolute;
  inset: auto 22px 16px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
  transform: scaleX(0.2);
  transform-origin: left;
}

.pricing-grid article {
  overflow: hidden;
}

.pricing-grid article::before {
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--gold);
}

.pricing-grid article:nth-child(2)::before {
  background: var(--teal);
}

.pricing-grid article:nth-child(3)::before {
  background: var(--coral);
}

.demo-grid article > span,
.pricing-grid article > span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal);
  font-weight: 900;
}

.pricing-grid article > span {
  width: auto;
  height: auto;
  display: inline-block;
  color: var(--teal-dark);
  background: transparent;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.demo-grid h3,
.pricing-grid h3 {
  margin: 0;
  font-size: 1.42rem;
}

.pricing-grid h3 {
  font-size: 2.2rem;
}

.demo-grid p,
.pricing-grid p {
  margin: 0;
  color: var(--muted);
}

.price-note {
  display: block;
  min-height: 38px;
  color: var(--plum);
  font-size: 0.88rem;
  font-weight: 900;
}

.demo-card {
  display: grid;
  gap: 7px;
  min-height: 118px;
  padding: 14px;
  border-radius: 8px;
  background: #f5f8f3;
  border: 1px solid rgba(17, 127, 115, 0.16);
}

.demo-card strong,
.demo-card small {
  display: block;
}

.demo-card small {
  color: var(--muted);
}

.demo-card.fields {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.demo-card.fields small {
  padding: 8px;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.demo-card.report {
  background: #162326;
  color: #ffffff;
}

.demo-card.report small {
  color: rgba(255, 255, 255, 0.76);
}

.featured-price {
  border-color: rgba(17, 127, 115, 0.45) !important;
  background: #f0fbf7 !important;
  transform: translateY(-8px);
}

.featured-price::after {
  content: "Beta favorite";
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 999px;
  padding: 6px 9px;
  color: #ffffff;
  background: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.reminder-section {
  background:
    radial-gradient(circle at top right, rgba(17, 127, 115, 0.14), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f7f4 100%);
}

.reminder-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.reminder-copy,
.reminder-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 28px rgba(23, 35, 38, 0.08);
}

.reminder-copy {
  padding: 24px;
}

.reminder-points {
  display: grid;
  gap: 12px;
}

.reminder-points article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(17, 127, 115, 0.16);
  border-radius: 8px;
  background: #f5f8f3;
}

.reminder-points strong {
  color: var(--teal-dark);
  font-size: 1.08rem;
}

.reminder-points span,
.reminder-note small,
.reminder-preview-card small,
.reminder-preview-card span,
.reminder-preview header span {
  color: var(--muted);
}

.reminder-note {
  display: grid;
  gap: 4px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #162326;
}

.reminder-note span {
  color: #8fe0d3;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reminder-note strong {
  color: #ffffff;
  font-size: 1rem;
}

.reminder-note small {
  color: #cddad8;
}

.reminder-preview {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(180deg, #eef8f5 0%, #ffffff 100%);
}

.reminder-preview header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(22, 35, 38, 0.12);
}

.reminder-preview header strong {
  font-size: 1.2rem;
}

.reminder-preview-card {
  display: grid;
  gap: 4px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.reminder-preview-card.priority {
  border-color: rgba(232, 116, 85, 0.34);
  background: #fff2ee;
}

.service-grid article {
  min-height: 248px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(23, 35, 38, 0.07);
}

.service-grid span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(238, 184, 75, 0.24);
  color: #815409;
  font-weight: 850;
  font-size: 0.82rem;
}

.service-grid h3 {
  margin-bottom: 8px;
  font-size: 1.26rem;
}

.service-grid p {
  color: var(--muted);
}

.workflow {
  padding: 0 clamp(22px, 5vw, 84px) 88px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  padding: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  list-style: none;
}

.workflow-steps li {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: 28px;
  background: #ffffff;
}

.workflow-steps strong {
  color: var(--teal-dark);
  font-size: 1.18rem;
}

.workflow-steps span {
  color: var(--muted);
}

.support-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 0 clamp(22px, 5vw, 84px) 24px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(17, 127, 115, 0.2);
  border-radius: 8px;
  background: #e9f5f1;
}

.support-strip p {
  max-width: 72ch;
}

.beta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(22px, 5vw, 84px) 78px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--nav);
  color: #ffffff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.beta-band .eyebrow {
  color: #8fe0d3;
}

.beta-band p {
  max-width: 66ch;
  color: #cddad8;
}

.beta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px clamp(22px, 5vw, 84px);
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: grid;
  gap: 2px;
  text-align: right;
}

footer a {
  color: var(--teal-dark);
  font-weight: 850;
}

.site-chat {
  position: fixed;
  z-index: 30;
  right: clamp(18px, 4vw, 38px);
  bottom: clamp(18px, 4vw, 34px);
  width: min(380px, calc(100vw - 36px));
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}

.site-chat summary {
  width: 74px;
  height: 54px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: #ffffff;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.site-chat summary::-webkit-details-marker {
  display: none;
}

.site-chat summary:hover {
  background: var(--teal-dark);
}

.site-chat summary:focus-visible {
  outline: 3px solid rgba(238, 184, 75, 0.72);
  outline-offset: 3px;
}

.site-chat-panel {
  width: 100%;
  max-height: min(604px, calc(100vh - 176px));
  margin-bottom: 10px;
  overflow: auto;
  border: 1px solid rgba(17, 127, 115, 0.24);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(23, 35, 38, 0.2);
}

.site-chat-panel header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #e9f5f1;
  border-bottom: 1px solid var(--line);
}

.site-chat-panel .brand-mark {
  width: 42px;
  height: 42px;
}

.site-chat-panel header div {
  display: grid;
}

.site-chat-panel header small,
.chat-form span {
  color: var(--muted);
  font-size: 0.82rem;
}

.chat-thread {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
}

.chat-thread p {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--paper);
}

.chat-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-topics a {
  border: 1px solid rgba(17, 127, 115, 0.24);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--teal-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.chat-topics a:hover {
  border-color: var(--teal);
  background: rgba(17, 127, 115, 0.08);
}

.chat-form {
  display: grid;
  gap: 8px;
  padding: 0 16px 16px;
}

.chat-form label {
  display: grid;
  gap: 5px;
}

.chat-form input,
.chat-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
  color: var(--ink);
  font: inherit;
}

.chat-form textarea {
  min-height: 76px;
  resize: vertical;
}

.chat-form .button {
  min-height: 42px;
  padding: 10px 16px;
}

.chat-form input:focus,
.chat-form textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(17, 127, 115, 0.16);
}

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

@keyframes productFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rowScan {
  0%, 100% {
    border-color: var(--line);
  }
  50% {
    border-color: rgba(17, 127, 115, 0.5);
  }
}

@keyframes ticketGlow {
  0%, 100% {
    box-shadow: 0 18px 44px rgba(81, 67, 95, 0.22);
  }
  50% {
    box-shadow: 0 26px 70px rgba(232, 116, 85, 0.28);
  }
}

@keyframes demoProgress {
  from {
    transform: scaleX(0.18);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: heroRise 680ms ease both;
  }

  .hero-product {
    animation: heroRise 760ms 120ms ease both;
  }

  .beta-ticket {
    animation: ticketGlow 3.8s ease-in-out infinite;
  }

  .product-window,
  .hero-price-card {
    animation: productFloat 5s ease-in-out infinite;
  }

  .hero-price-card {
    animation-delay: 600ms;
  }

  .product-row {
    animation: rowScan 4.2s ease-in-out infinite;
  }

  .product-row:nth-child(3) {
    animation-delay: 500ms;
  }

  .product-row:nth-child(4) {
    animation-delay: 1000ms;
  }

  .demo-grid article::after {
    animation: demoProgress 2.8s ease-in-out infinite alternate;
  }

  .demo-grid article:nth-child(2)::after {
    animation-delay: 350ms;
  }

  .demo-grid article:nth-child(3)::after {
    animation-delay: 700ms;
  }

  .demo-grid article,
  .pricing-grid article,
  .reminder-preview-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .demo-grid article:hover,
  .pricing-grid article:hover,
  .reminder-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lift-shadow);
  }

  .featured-price:hover {
    transform: translateY(-12px);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 82vh;
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(246, 247, 242, 0.99) 0%, rgba(246, 247, 242, 0.9) 56%, rgba(246, 247, 242, 0.16) 100%),
      url("assets/axleaudits-hero-axolotl-truck.png") center bottom / auto 62% no-repeat,
      linear-gradient(135deg, #cfe9df 0%, #f9d4c6 52%, #f4e8bd 100%);
  }

  .hero-product {
    justify-items: start;
    margin-left: 0;
  }

  .hero-price-card {
    justify-self: start;
  }

  .trust-band,
  .beta-status-strip,
  .split-section,
  .demo-grid,
  .pricing-grid,
  .reminder-showcase,
  .service-grid,
  .workflow-steps,
  .support-strip,
  .beta-band {
    grid-template-columns: 1fr;
  }

  .beta-stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid article {
    min-height: 210px;
  }

  .featured-price {
    transform: none;
  }

  .featured-price:hover {
    transform: translateY(-5px);
  }

  .support-strip .button,
  .beta-actions {
    justify-content: stretch;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 10px 14px;
  }

  .site-header .brand {
    gap: 8px;
  }

  .site-header .brand-mark {
    width: 38px;
    height: 38px;
  }

  .site-header .brand small {
    display: none;
  }

  .site-header nav {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    width: auto;
    min-width: 0;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-header nav::-webkit-scrollbar {
    display: none;
  }

  .site-header nav a {
    flex: 0 0 auto;
    min-width: 0;
    padding: 8px 9px;
    text-align: center;
    white-space: nowrap;
  }

  .hero {
    min-height: 88vh;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 112px;
  }

  .beta-stat-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-product {
    width: min(100%, 330px);
    max-width: 330px;
  }

  .hero-copy > p:not(.eyebrow),
  .hero-note strong {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .product-window,
  .hero-price-card {
    max-width: 100%;
    width: 100%;
  }

  .product-window header {
    flex-direction: column;
    gap: 4px;
  }

  .product-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 12vw, 3.55rem);
  }

  .hero-actions,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .beta-actions {
    justify-content: stretch;
  }

  .footer-links {
    text-align: left;
  }

  .site-chat {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
  }

  .site-chat summary {
    width: 68px;
    height: 50px;
  }
}
