/* Ava Front Desk layout — visual system cloned from the editorial landing pattern */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal[data-d="1"] {
  transition-delay: 80ms;
}

.reveal[data-d="2"] {
  transition-delay: 160ms;
}

.reveal[data-d="3"] {
  transition-delay: 240ms;
}

.reveal[data-d="4"] {
  transition-delay: 320ms;
}

.reveal[data-d="5"] {
  transition-delay: 400ms;
}

/* First-screen load: longer fade, a rest beat, then a slower cascade */
.hero .reveal {
  transition-duration: 1.25s, 1.25s;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1), cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: 120ms;
}

.hero .reveal[data-d="1"] {
  transition-delay: 260ms;
}

.hero .reveal[data-d="2"] {
  transition-delay: 400ms;
}

.hero .reveal[data-d="3"] {
  transition-delay: 540ms;
}

.hero .reveal[data-d="4"] {
  transition-delay: 680ms;
}

.hero .reveal[data-d="5"] {
  transition-delay: 820ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  font-feature-settings: "ss01";
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.serif-i {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
}

.swoosh {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  padding-bottom: 0.32em;
}

.swoosh::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: 0.06em;
  height: 0.08em;
  background: #5fa8e6;
  border-radius: 999px;
  transform: skewX(-12deg) skewY(-1.5deg);
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: var(--inverse-text);
}

.btn-primary:hover {
  background: var(--ink-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-nav {
  padding: 8px 16px;
  font-size: 14px;
}

.icon-cal rect,
.icon-cal line {
  stroke: #f4a27f;
}

.icon-phone path {
  stroke: #e56b6f;
}

.btn-primary .icon-cal rect,
.btn-primary .icon-cal line {
  stroke: #f4c4ad;
}

.btn-primary .icon-phone path {
  stroke: #f4c4c6;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(244, 243, 238, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  line-height: 0;
}

.logo-wordmark {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(240px, 58vw);
  object-fit: contain;
  object-position: left center;
}

.site-header .logo-wordmark {
  height: 60px;
  max-width: min(280px, 62vw);
}

.site-footer .logo-wordmark {
  height: 70px;
  max-width: 320px;
}

.site-footer .brand {
  margin-bottom: 16px;
}

.logo-hero {
  display: block;
  width: 90%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 1;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  padding: 2.5%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(20, 42, 82, 0.1);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted-strong);
}

.nav-links a:hover {
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 16px auto;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 18px;
  z-index: 40;
  box-shadow: 0 20px 50px rgba(20, 42, 82, 0.12);
}

.mobile-nav.open {
  display: grid;
  gap: 14px;
}

.mobile-nav a {
  padding: 8px 4px;
  color: var(--ink);
}

/* Hero */
.hero {
  padding: 28px 0 56px;
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(95, 168, 230, 0.22);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 7px rgba(95, 168, 230, 0);
  }
}

.live-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.lede {
  margin: 0 0 28px;
  max-width: 46ch;
  font-size: 18px;
  color: var(--muted-strong);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.micro {
  margin: 0 0 28px;
  font-size: 13px;
  color: var(--muted);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--muted);
}

.trust-row span + span::before {
  content: "·";
  margin-right: 14px;
  opacity: 0.5;
}

.hero-card {
  background: var(--paper-card);
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(20, 42, 82, 0.06);
  min-height: 500px;
  padding: 12px 12px 16px;
  display: flex;
  flex-direction: column;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
}

.hero-card-mark {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  min-height: 0;
}

.hero-card-mark .logo-hero {
  width: 90%;
  max-width: 360px;
  height: auto;
  aspect-ratio: 1;
}

.hero-card-mark strong {
  display: block;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 650;
}

.hero-card-mark p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.hero-stats div {
  min-width: 0;
}

.hero-stats b {
  display: block;
  font-size: 18px;
  font-weight: 650;
}

/* Marquee */
.marquee {
  overflow: hidden;
  width: 100%;
  border-block: 1px solid var(--line);
  background: rgba(236, 234, 227, 0.55);
  padding: 16px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 18px;
  padding-right: 18px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}

.plus {
  color: var(--accent);
  font-size: 14px;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-33.333333%, 0, 0);
  }
}

/* Sections */
.section {
  padding: 92px 0;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

#top,
#contact,
#features,
#how,
#faq {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

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

.section h2 {
  margin: 0;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink);
}

.section h2 .serif-i {
  color: var(--ink-soft);
  font-weight: 400;
}

.section-head p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 16px;
}

/* Problem */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

.compare-card {
  border-radius: var(--radius-card);
  padding: 22px;
  border: 1px solid var(--line);
}

.compare-card.light {
  background: rgba(236, 234, 227, 0.7);
}

.compare-card.dark {
  background: var(--inverse);
  color: var(--inverse-text);
  border-color: transparent;
}

.compare-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.compare-card.dark .mono {
  color: var(--inverse-muted);
}

.call-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.compare-card.dark .call-row {
  border-top-color: rgba(244, 243, 238, 0.12);
}

.call-row .time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.compare-card.dark .time,
.compare-card.dark .status {
  color: var(--inverse-muted);
}

.status.good {
  color: var(--accent) !important;
}

.revenue {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.compare-card.dark .revenue {
  border-top-color: rgba(244, 243, 238, 0.12);
}

.revenue b {
  font-size: 42px;
  letter-spacing: -0.04em;
}

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

.stats b {
  display: block;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}

.stats p {
  margin: 10px 0 0;
  color: var(--muted);
}

/* Industry cards */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.industry-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  min-height: 180px;
}

.industry-card h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.industry-card p {
  margin: 0;
  color: var(--muted-strong);
}

/* Feature cards */
.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  overflow: hidden;
}

.feature-card.reverse .copy {
  order: 2;
}

.feature-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.num {
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-size: 13px;
}

.arrow {
  color: var(--muted);
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 32px;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted-strong);
  max-width: 42ch;
}

.widget {
  background: var(--accent-wash);
  border-radius: 18px;
  padding: 18px;
  min-height: 240px;
}

.widget.alt {
  background: #eef1f6;
}

.widget-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.slot {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
}

.slot.new {
  background: rgba(95, 168, 230, 0.28);
}

.tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  padding: 3px 6px;
}

.qa {
  display: grid;
}

.qa div {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.qa b {
  display: block;
  margin-bottom: 4px;
}

.lead {
  background: var(--paper-card);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.lead-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}

.lead-row span:first-child {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 140px;
  padding: 8px 4px 0;
}

.bars i {
  flex: 1;
  display: block;
  background: var(--accent);
  border-radius: 4px 4px 0 0;
  opacity: 0.85;
}

.logged {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
}

.also {
  margin: 36px 0 16px;
}

.also h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mini-card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
}

.mini-card h3 {
  margin: 12px 0 10px;
  font-size: 22px;
}

.mini-card p {
  margin: 0;
  color: var(--muted-strong);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 24px;
  min-height: 230px;
}

.step h3 {
  margin: 16px 0 10px;
  font-size: 26px;
}

.step .num {
  display: block;
  margin-bottom: 10px;
}

.step .mono {
  display: block;
}

.step p {
  margin: 0;
  color: var(--muted-strong);
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}

.text-link {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.text-link:hover {
  color: var(--ink-soft);
}

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

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 18px 8px;
  font-size: 16px;
  font-weight: 500;
}

.faq-item .icon {
  color: var(--muted);
  font-size: 20px;
  line-height: 1;
}

.faq-item .answer {
  display: none;
  padding: 0 8px 18px;
  color: var(--muted-strong);
  max-width: 56ch;
}

.faq-item.open .answer {
  display: block;
}

.faq-item.open .icon {
  transform: rotate(45deg);
}

/* Contact */
.contact-cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 120px 0;
}

.contact-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}

.contact-glow-sky {
  top: -160px;
  right: -160px;
  width: 500px;
  height: 500px;
  background: rgba(95, 168, 230, 0.3);
}

.contact-glow-navy {
  bottom: -160px;
  left: -160px;
  width: 400px;
  height: 400px;
  background: #21407a;
}

.contact-cta .wrap {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: end;
}

.contact-cta .eyebrow,
.contact-cta .mono {
  color: rgba(244, 243, 238, 0.55);
}

.contact-cta h2 {
  color: var(--paper);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
}

.contact-cta h2 .serif-i {
  color: #a0cdef;
}

.contact-cta .lede {
  color: rgba(244, 243, 238, 0.75);
  font-size: 18px;
  max-width: 36ch;
}

.btn-cream {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.25);
}

.btn-cream:hover {
  background: #fff;
}

.btn-cream .icon-cal rect,
.btn-cream .icon-cal line {
  stroke: #e56b6f;
}

.btn-outline-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(244, 243, 238, 0.4);
}

.btn-outline-light:hover {
  background: rgba(244, 243, 238, 0.1);
  border-color: rgba(244, 243, 238, 0.7);
}

.btn-outline-light .icon-phone path {
  stroke: #f4c4c6;
}

.live-card {
  background: rgba(244, 243, 238, 0.05);
  color: var(--paper);
  border-radius: 16px;
  border: 1px solid rgba(244, 243, 238, 0.15);
  padding: 24px;
  min-height: 0;
}

.live-now {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.live-now .mono {
  color: rgba(244, 243, 238, 0.7);
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.45;
  animation: live-pulse 2s ease-out infinite;
}

@keyframes live-pulse {
  0% {
    transform: scale(0.7);
    opacity: 0.55;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.live-card h3 {
  margin: 0 0 6px;
  font-size: 24px;
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.live-phone {
  color: inherit;
  display: inline-block;
}

.live-phone:hover h3 {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.live-card p {
  margin: 0;
  color: rgba(244, 243, 238, 0.55);
  font-size: 14px;
}

.wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 40px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 243, 238, 0.12);
  box-sizing: content-box;
}

.wave-bar {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  border-radius: 999px;
  background: #7cb8e8;
  transform-origin: center center;
  animation: wave 1.1s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.25);
  }
  50% {
    transform: scaleY(1);
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 32px;
  margin-bottom: 36px;
}

.site-footer p {
  color: var(--muted-strong);
  max-width: 40ch;
}

.site-footer h4 {
  margin: 0 0 12px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: var(--ink-soft);
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav-links,
  .header-cta .btn-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header .wrap {
    grid-template-columns: 1fr auto;
  }

  .hero-grid,
  .compare,
  .section-head,
  .industry-grid,
  .feature-card,
  .feature-card.reverse .copy,
  .mini-grid,
  .steps,
  .faq-layout,
  .contact-grid,
  .footer-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .feature-card.reverse .copy {
    order: 0;
  }

  .hero-card {
    min-height: 320px;
  }

  .section {
    padding: 64px 0;
  }

  .contact-cta {
    padding: 80px 0;
  }

  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    border-top: 1px solid var(--line);
    background: rgba(244, 243, 238, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 16px max(0.75rem, env(safe-area-inset-bottom, 0px));
  }

  .mobile-cta-inner {
    display: flex;
    gap: 8px;
    max-width: 512px;
    margin: 0 auto;
  }

  .mobile-cta .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
  }

  .site-footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
  }

  .logo-wordmark {
    height: 40px;
  }

  .site-header .logo-wordmark {
    height: 52px;
  }

  .site-footer .logo-wordmark {
    height: 60px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .compare,
  .stats {
    grid-template-columns: 1fr;
  }
}
