@charset "UTF-8";
/* Accessibility Suite Pro — Trending 2026 marketing theme
   Bootstrap 5.3 companion. prefers-reduced-motion respected. */
:root {
  --asp-ink: #07141c;
  --asp-ink-soft: #122636;
  --asp-muted: #5a6b78;
  --asp-surface: #f3f7f6;
  --asp-surface-2: #e7efed;
  --asp-white: #ffffff;
  --asp-accent: #0f9f8a;
  --asp-accent-2: #14c4a8;
  --asp-accent-deep: #0a5c52;
  --asp-lime: #c8f542;
  --asp-focus: #e8b923;
  --asp-border: rgba(7, 20, 28, 0.1);
  --asp-glass: rgba(255, 255, 255, 0.72);
  --asp-radius: 1.25rem;
  --asp-radius-lg: 1.75rem;
  --asp-shadow: 0 20px 50px rgba(7, 20, 28, 0.08);
  --asp-shadow-lg: 0 32px 64px rgba(15, 159, 138, 0.16);
  --asp-font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --asp-font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --asp-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --asp-transition: 0.35s var(--asp-ease);
  --asp-header-h: 4.25rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--asp-header-h) + 1rem);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  font-family: var(--asp-font-body);
  color: var(--asp-ink);
  background: var(--asp-surface);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

:focus-visible {
  outline: 3px solid var(--asp-focus);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100%;
  z-index: 2000;
  padding: 0.75rem 1.25rem;
  background: var(--asp-ink);
  color: var(--asp-white);
  text-decoration: none;
  border-radius: 0 0 0.5rem 0.5rem;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* —— Brand —— */
.asp-brand {
  font-family: var(--asp-font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--asp-ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
}

.asp-brand:hover,
.asp-brand:focus {
  color: var(--asp-accent-deep);
}

.asp-brand__mark {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 0.65rem;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--asp-glass);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color var(--asp-transition), box-shadow var(--asp-transition);
}

.site-header.is-scrolled {
  border-bottom-color: var(--asp-border);
  box-shadow: 0 8px 30px rgba(7, 20, 28, 0.06);
}

.site-header .navbar {
  min-height: var(--asp-header-h);
}

.site-header .nav-link {
  color: var(--asp-ink-soft);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.45rem 0.85rem !important;
  border-radius: 999px;
  transition: background var(--asp-transition), color var(--asp-transition);
}

.site-header .nav-link:hover,
.site-header .nav-link:focus {
  color: var(--asp-accent-deep);
  background: rgba(15, 159, 138, 0.1);
}

.site-header .nav-link[aria-current=page] {
  color: var(--asp-accent-deep);
  background: rgba(15, 159, 138, 0.12);
}

.navbar-toggler {
  border: 1px solid var(--asp-border);
  border-radius: 0.65rem;
  padding: 0.4rem 0.55rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(232, 185, 35, 0.35);
}

.navbar-toggler-icon {
  width: 1.35rem;
  height: 1.35rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(7, 20, 28, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.25' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-header .navbar-collapse {
  padding-top: 0.5rem;
}

@media (max-width: 991.98px) {
  .site-header .navbar-nav {
    padding: 0.5rem 0 1rem;
    gap: 0.25rem;
  }
  .site-header .nav-link {
    padding: 0.65rem 0.9rem !important;
  }
  .site-header .nav-item.ms-lg-2 {
    margin-top: 0.5rem;
  }
  .site-header .nav-item.ms-lg-2 .btn {
    width: 100%;
  }
}
/* —— Buttons —— */
.btn-asp-primary {
  --bs-btn-bg: var(--asp-ink);
  --bs-btn-border-color: var(--asp-ink);
  --bs-btn-hover-bg: var(--asp-accent-deep);
  --bs-btn-hover-border-color: var(--asp-accent-deep);
  --bs-btn-active-bg: var(--asp-ink-soft);
  --bs-btn-active-border-color: var(--asp-ink-soft);
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  transition: transform var(--asp-transition), box-shadow var(--asp-transition);
  box-shadow: 0 10px 28px rgba(7, 20, 28, 0.18);
}

.btn-asp-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(10, 92, 82, 0.28);
}

.btn-asp-outline {
  --bs-btn-color: var(--asp-ink);
  --bs-btn-border-color: rgba(7, 20, 28, 0.22);
  --bs-btn-hover-bg: var(--asp-white);
  --bs-btn-hover-border-color: var(--asp-ink);
  --bs-btn-hover-color: var(--asp-ink);
  font-weight: 600;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  background: transparent;
}

.btn-asp-lime {
  --bs-btn-bg: var(--asp-lime);
  --bs-btn-border-color: var(--asp-lime);
  --bs-btn-hover-bg: #d6ff5c;
  --bs-btn-hover-border-color: #d6ff5c;
  --bs-btn-color: var(--asp-ink);
  --bs-btn-hover-color: var(--asp-ink);
  font-weight: 700;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
}

h1, h2, h3, h4, .display-font {
  font-family: var(--asp-font-display);
  letter-spacing: -0.035em;
  color: var(--asp-ink);
  line-height: 1.12;
  font-weight: 700;
}

.section-pad {
  padding-block: clamp(3.75rem, 8vw, 6.5rem);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--asp-accent-deep);
  background: rgba(15, 159, 138, 0.12);
  border: 1px solid rgba(15, 159, 138, 0.22);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  margin-bottom: 0.85rem;
}

.section-lead {
  color: var(--asp-muted);
  max-width: 38rem;
  font-size: 1.05rem;
}

/* —— Hero (full-bleed mesh) —— */
.hero {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(2.5rem, 6vw, 4rem);
  background: radial-gradient(ellipse 70% 60% at 85% 20%, rgba(200, 245, 66, 0.28), transparent 55%), radial-gradient(ellipse 55% 50% at 10% 80%, rgba(15, 159, 138, 0.22), transparent 50%), radial-gradient(ellipse 40% 40% at 50% 0%, rgba(20, 196, 168, 0.12), transparent 60%), linear-gradient(165deg, #f7fbfa 0%, #eef5f3 45%, #e3eeeb 100%);
}

.hero__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: linear-gradient(rgba(7, 20, 28, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(7, 20, 28, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: orb-drift 10s ease-in-out infinite;
}

.hero__orb--1 {
  width: 280px;
  height: 280px;
  top: 8%;
  right: 8%;
  background: rgba(200, 245, 66, 0.35);
}

.hero__orb--2 {
  width: 220px;
  height: 220px;
  bottom: 12%;
  left: 5%;
  background: rgba(15, 159, 138, 0.28);
  animation-delay: -4s;
}

@keyframes orb-drift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -18px) scale(1.06);
  }
}
.hero__content {
  position: relative;
  z-index: 1;
}

.hero__brand {
  font-family: var(--asp-font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 800;
  color: var(--asp-ink);
  margin: 0 0 0.85rem;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.hero__brand span {
  display: inline-block;
  background: linear-gradient(120deg, var(--asp-accent-deep), var(--asp-accent) 55%, #7ab800);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__headline {
  font-family: var(--asp-font-body);
  font-size: clamp(1.1rem, 2.1vw, 1.35rem);
  font-weight: 500;
  color: var(--asp-ink-soft);
  margin: 0 0 1rem;
  max-width: 34rem;
  letter-spacing: -0.01em;
  line-height: 1.45;
}

.hero__support {
  color: var(--asp-muted);
  max-width: 34rem;
  margin-bottom: 1.85rem;
  font-size: 1.02rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 540px;
  margin-inline: auto;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual > img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 50px rgba(7, 20, 28, 0.14));
  animation: float-soft 6.5s ease-in-out infinite;
}

@keyframes float-soft {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* —— Hero stage animation (floating product UI) —— */
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 420px;
  margin-inline: auto;
}

.hero-stage__glow {
  position: absolute;
  inset: 12% 8% 8% 12%;
  background: radial-gradient(circle at 30% 30%, rgba(15, 159, 138, 0.22), transparent 55%), radial-gradient(circle at 78% 70%, rgba(200, 245, 66, 0.18), transparent 50%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.hero-stage__card {
  position: relative;
  z-index: 2;
  width: min(100%, 340px);
  margin: 2.5rem auto 0;
  background: var(--asp-white);
  border: 1px solid var(--asp-border);
  border-radius: 1.35rem;
  box-shadow: 0 28px 60px rgba(7, 20, 28, 0.14);
  overflow: hidden;
  animation: float-soft 6.5s ease-in-out infinite;
}

.hero-stage__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(120deg, #0a5c52, #0f9f8a 55%, #122636);
  color: #fff;
}

.hero-stage__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.hero-stage__dot:nth-child(1) {
  background: #ffbf47;
}

.hero-stage__dot:nth-child(2) {
  background: #c8f542;
}

.hero-stage__dot:nth-child(3) {
  background: #14c4a8;
}

.hero-stage__title {
  margin-left: 0.45rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.95;
}

.hero-stage__screens {
  position: relative;
  min-height: 240px;
  padding: 1.1rem 1.15rem 1.25rem;
}

.hero-screen {
  position: absolute;
  inset: 1.1rem 1.15rem 1.25rem;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  animation: hero-screen-cycle 15s var(--asp-ease) infinite;
}

.hero-screen--1 {
  animation-delay: 0s;
}

.hero-screen--2 {
  animation-delay: 5s;
}

.hero-screen--3 {
  animation-delay: 10s;
}

@keyframes hero-screen-cycle {
  0%, 2% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  6%, 28% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  33%, 100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }
}
.hero-screen__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.hero-screen__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: rgba(15, 159, 138, 0.12);
  color: var(--asp-accent-deep);
}

.hero-screen__badge--scan {
  background: rgba(232, 185, 35, 0.18);
  color: #8a6a00;
}

.hero-screen__badge--gigw {
  background: rgba(10, 37, 64, 0.1);
  color: #0a2540;
}

.hero-screen__muted,
.hero-screen__ok {
  font-size: 0.78rem;
  color: var(--asp-muted);
}

.hero-screen__ok {
  color: var(--asp-accent-deep);
  font-weight: 600;
}

.hero-screen__tools,
.hero-screen__issues,
.hero-screen__check {
  list-style: none;
  margin: 0 0 0.9rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.hero-screen__tools {
  grid-template-columns: 1fr 1fr;
}

.hero-screen__tools li {
  background: var(--asp-surface);
  border: 1px solid var(--asp-border);
  border-radius: 0.7rem;
  padding: 0.55rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--asp-ink-soft);
}

.hero-screen__issues li,
.hero-screen__check li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--asp-ink-soft);
  line-height: 1.35;
}

.sev {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.sev--high {
  background: #d64545;
}

.sev--med {
  background: #e8b923;
}

.sev--low {
  background: #0f9f8a;
}

.hero-screen__check li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 0.15rem;
  border-radius: 4px;
  border: 2px solid var(--asp-border);
  flex-shrink: 0;
  background: #fff;
}

.hero-screen__check li.is-done::before {
  border-color: var(--asp-accent);
  background: var(--asp-accent);
  box-shadow: inset 0 0 0 2px #fff;
}

.hero-screen__check li.is-active {
  font-weight: 600;
  color: var(--asp-ink);
}

.hero-screen__check li.is-active::before {
  border-color: var(--asp-accent-deep);
  animation: hero-pulse 1.4s ease-in-out infinite;
}

@keyframes hero-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(15, 159, 138, 0.35);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(15, 159, 138, 0);
  }
}
.hero-screen__bar {
  height: 8px;
  border-radius: 999px;
  background: var(--asp-surface-2);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.hero-screen__bar-fill {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--asp-accent-deep), var(--asp-accent-2));
  animation: hero-bar 15s var(--asp-ease) infinite;
}

@keyframes hero-bar {
  0%, 33% {
    width: 28%;
  }
  10%, 28% {
    width: 78%;
  }
  34%, 100% {
    width: 28%;
  }
}
.hero-screen__note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--asp-muted);
  line-height: 1.4;
}

.hero-pill {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem 0.45rem 0.5rem;
  background: var(--asp-white);
  border: 1px solid var(--asp-border);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(7, 20, 28, 0.1);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--asp-ink-soft);
  white-space: nowrap;
  animation: hero-pill-float 5.5s ease-in-out infinite;
}

.hero-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--asp-accent-deep);
}

.hero-pill svg rect {
  fill: rgba(15, 159, 138, 0.12);
}

.hero-pill--1 {
  top: 6%;
  left: 2%;
  animation-delay: 0s;
}

.hero-pill--2 {
  top: 2%;
  right: 4%;
  animation-delay: -0.8s;
}

.hero-pill--3 {
  top: 38%;
  left: 0;
  animation-delay: -1.6s;
}

.hero-pill--4 {
  top: 34%;
  right: 0;
  animation-delay: -2.2s;
}

.hero-pill--5 {
  bottom: 18%;
  left: 4%;
  animation-delay: -2.8s;
}

.hero-pill--6 {
  bottom: 8%;
  left: 28%;
  animation-delay: -3.4s;
}

.hero-pill--7 {
  bottom: 14%;
  right: 2%;
  animation-delay: -4s;
}

@keyframes hero-pill-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 575.98px) {
  .hero-visual,
  .hero-stage {
    min-height: 360px;
  }
  .hero-pill {
    font-size: 0.7rem;
    padding: 0.35rem 0.55rem 0.35rem 0.4rem;
  }
  .hero-pill svg {
    width: 14px;
    height: 14px;
  }
  .hero-pill--3,
  .hero-pill--4 {
    display: none;
  }
}
/* —— Marquee / trust strip —— */
.marquee-strip {
  background: var(--asp-ink);
  color: rgba(255, 255, 255, 0.78);
  padding-block: 1rem;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee-strip__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
  list-style: none;
  margin: 0;
  padding: 0;
}

.marquee-strip__track li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.marquee-strip__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--asp-lime);
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-strip__track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
  }
}
/* —— Product capabilities (numbered rail) —— */
.capabilities__intro {
  position: sticky;
  top: calc(var(--asp-header-h) + 1.25rem);
}

.capabilities__link {
  color: var(--asp-accent-deep);
  text-decoration: none;
  display: inline-block;
  margin-top: 0.25rem;
}

.capabilities__link:hover,
.capabilities__link:focus {
  color: var(--asp-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cap-rail {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--asp-border);
}

.cap-rail__item {
  border-bottom: 1px solid var(--asp-border);
}

.cap-rail__item > article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  padding: 1.35rem 0.15rem;
  align-items: start;
  transition: background var(--asp-transition), padding-left var(--asp-transition);
}

.cap-rail__item:hover > article,
.cap-rail__item:focus-within > article {
  background: linear-gradient(90deg, rgba(15, 159, 138, 0.06), transparent 70%);
  padding-left: 0.5rem;
}

.cap-rail__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  min-width: 3.25rem;
}

.cap-rail__num {
  font-family: var(--asp-font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--asp-accent-deep);
  line-height: 1;
}

.cap-rail__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: block;
}

.cap-rail__body h3 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
}

.cap-rail__body p {
  margin: 0;
  color: var(--asp-muted);
  font-size: 0.98rem;
  max-width: 40rem;
}

.cap-rail__item--spotlight > article {
  background: linear-gradient(120deg, var(--asp-ink) 0%, #0d3d38 55%, #0a5c52 100%);
  color: #d7ebe7;
  border-radius: var(--asp-radius);
  padding: 1.4rem 1.15rem;
  margin: 1rem 0;
  border: 0;
}

.cap-rail__item--spotlight:hover > article,
.cap-rail__item--spotlight:focus-within > article {
  background: linear-gradient(120deg, var(--asp-ink) 0%, #0d3d38 55%, #0a5c52 100%);
  padding-left: 1.15rem;
  box-shadow: var(--asp-shadow-lg);
}

.cap-rail__item--spotlight .cap-rail__num {
  color: var(--asp-lime);
}

.cap-rail__item--spotlight .cap-rail__body h3 {
  color: #fff;
}

.cap-rail__item--spotlight .cap-rail__body p {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 991.98px) {
  .capabilities__intro {
    position: static;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .cap-rail__item > article {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.15rem 0;
  }
  .cap-rail__meta {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.75rem;
  }
  .cap-rail__item--spotlight > article {
    padding: 1.15rem 1rem;
  }
}
/* Legacy bento kept for safety if reused elsewhere */
.bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(160px, auto);
  }
  .bento__item--wide {
    grid-column: span 4;
  }
  .bento__item--tall {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento__item--mid {
    grid-column: span 3;
  }
  .bento__item--sm {
    grid-column: span 2;
  }
  .bento__item--third {
    grid-column: span 2;
  }
}
.feature-tile,
.bento__item {
  height: 100%;
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--asp-border);
  border-radius: var(--asp-radius-lg);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  transition: transform var(--asp-transition), box-shadow var(--asp-transition), border-color var(--asp-transition);
  position: relative;
  overflow: hidden;
}

.bento__item::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 159, 138, 0.12), transparent 70%);
  pointer-events: none;
}

.feature-tile:hover,
.feature-tile:focus-within,
.bento__item:hover,
.bento__item:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--asp-shadow-lg);
  border-color: rgba(15, 159, 138, 0.35);
}

.bento__item--accent {
  background: linear-gradient(155deg, var(--asp-ink) 0%, #0d3d38 100%);
  color: #d7ebe7;
  border-color: transparent;
}

.bento__item--accent h3 {
  color: #fff;
}

.bento__item--accent p {
  color: rgba(255, 255, 255, 0.72);
}

.bento__item--accent::after {
  background: radial-gradient(circle, rgba(200, 245, 66, 0.25), transparent 70%);
}

.feature-tile__icon,
.bento__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  color: var(--asp-accent);
}

.bento__item h3,
.feature-tile h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.bento__item p,
.feature-tile p {
  margin: 0;
  color: var(--asp-muted);
  font-size: 0.975rem;
}

/* —— Steps —— */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 5rem;
  border: 1px solid var(--asp-border);
  border-radius: var(--asp-radius);
  background: var(--asp-white);
  margin-bottom: 1rem;
  transition: transform var(--asp-transition), box-shadow var(--asp-transition);
}

.steps li:hover {
  transform: translateX(4px);
  box-shadow: var(--asp-shadow);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.25rem;
  top: 1.35rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--asp-lime);
  color: var(--asp-ink);
  font-family: var(--asp-font-display);
  font-weight: 800;
  display: grid;
  place-items: center;
}

.steps h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.steps p {
  margin: 0;
  color: var(--asp-muted);
}

/* —— Pricing —— */
.pricing-cards__row--duo {
  max-width: 52rem;
  margin-inline: auto;
}

.pricing-cards-component--duo .pricing-card {
  padding: 2rem 1.75rem 1.65rem;
}

.pricing-cards-component--duo .pricing-card--featured {
  box-shadow: var(--asp-shadow-lg);
}

@media (min-width: 768px) {
  .pricing-cards-component--duo .pricing-card--featured {
    transform: scale(1.02);
  }
  .pricing-cards-component--duo .pricing-card--featured:hover,
  .pricing-cards-component--duo .pricing-card--featured:focus-within {
    transform: scale(1.02) translateY(-6px);
  }
}
.pricing-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.85rem 1.5rem 1.5rem;
  border: 1px solid var(--asp-border);
  border-radius: var(--asp-radius-lg);
  background: var(--asp-white);
  box-shadow: var(--asp-shadow);
  transition: transform var(--asp-transition), box-shadow var(--asp-transition);
}

.pricing-card:hover,
.pricing-card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--asp-shadow-lg);
}

.pricing-card--featured {
  border: 2px solid var(--asp-ink);
  background: linear-gradient(180deg, rgba(200, 245, 66, 0.18) 0%, transparent 38%), var(--asp-white);
}

@media (min-width: 1200px) {
  .pricing-card--featured {
    transform: none;
  }
}
.pricing-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--asp-ink);
  color: var(--asp-lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card__name {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.pricing-card__price {
  font-family: var(--asp-font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--asp-ink);
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
  letter-spacing: -0.04em;
}

.pricing-card__price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--asp-muted);
  letter-spacing: 0;
}

.pricing-card__period {
  margin: -0.15rem 0 0.65rem;
  font-size: 0.875rem;
  color: var(--asp-muted);
  font-weight: 500;
}

.pricing-card__desc {
  color: var(--asp-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  min-height: 2.8em;
}

.cmp-yes {
  color: var(--asp-accent-deep);
  font-weight: 700;
}

.cmp-no {
  color: #9aa5ae;
  font-weight: 500;
}

.asp-table th.plan-col,
.asp-table td.plan-col {
  text-align: center;
  white-space: nowrap;
}

.pricing-card__features {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  flex-grow: 1;
}

.pricing-card__features li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(7, 20, 28, 0.06);
  font-size: 0.94rem;
}

.pricing-card__features li:last-child {
  border-bottom: 0;
}

.pricing-card__features .check {
  color: var(--asp-accent-deep);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.pricing-card .btn {
  width: 100%;
}

/* —— Officials —— */
.official-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid var(--asp-border);
  border-radius: var(--asp-radius);
  background: rgba(255, 255, 255, 0.9);
  height: 100%;
  min-width: 0;
  overflow: hidden;
  transition: transform var(--asp-transition), box-shadow var(--asp-transition);
}

.official-card:hover,
.official-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--asp-shadow);
}

.official-card__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--asp-surface-2);
  border: 2px solid var(--asp-accent);
  overflow: hidden;
}

.official-card__avatar svg {
  width: 100%;
  height: 100%;
  display: block;
}

.official-card__body {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.official-card__name {
  font-size: 1.05rem;
  margin: 0 0 0.15rem;
}

.official-card__role {
  color: var(--asp-accent-deep);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

.official-card__meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--asp-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.official-card a {
  color: var(--asp-ink-soft);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.official-card a:hover {
  color: var(--asp-accent-deep);
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  .official-card {
    flex-direction: column;
  }
}
/* —— CTA band —— */
.cta-band {
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(200, 245, 66, 0.2), transparent 55%), linear-gradient(120deg, var(--asp-ink) 0%, #0d3d38 55%, #0a5c52 100%);
  color: #d7ebe7;
  border-radius: calc(var(--asp-radius-lg) + 0.35rem);
  padding: clamp(2.25rem, 5vw, 3.25rem);
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 36rem;
}

/* —— Inner pages —— */
.page-hero-band {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  background: radial-gradient(ellipse 60% 80% at 90% 0%, rgba(200, 245, 66, 0.22), transparent 50%), radial-gradient(ellipse 40% 60% at 0% 100%, rgba(15, 159, 138, 0.15), transparent 50%), linear-gradient(180deg, #f7fbfa, var(--asp-surface));
  border-bottom: 1px solid var(--asp-border);
}

.page-hero-band h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin-bottom: 0.75rem;
}

.surface-panel {
  background: var(--asp-white);
  border: 1px solid var(--asp-border);
  border-radius: var(--asp-radius-lg);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--asp-shadow);
}

.asp-table {
  --bs-table-bg: transparent;
  margin: 0;
}

.asp-table thead th {
  background: var(--asp-ink);
  color: #fff;
  font-weight: 600;
  border: 0;
  padding: 0.9rem 1rem;
}

.asp-table tbody td {
  padding: 0.85rem 1rem;
  vertical-align: middle;
  border-color: rgba(7, 20, 28, 0.06);
}

.asp-table tbody tr:hover {
  background: rgba(15, 159, 138, 0.06);
}

.contact-form {
  background: var(--asp-white);
  border: 1px solid var(--asp-border);
  border-radius: var(--asp-radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--asp-shadow);
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 0.75rem;
  border-color: rgba(7, 20, 28, 0.14);
  padding: 0.7rem 0.9rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--asp-accent);
  box-shadow: 0 0 0 0.2rem rgba(15, 159, 138, 0.18);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--asp-ease), transform 0.7s var(--asp-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-visual > img,
  .hero__orb,
  .hero-stage__card,
  .hero-pill,
  .hero-screen,
  .hero-screen__bar-fill {
    animation: none !important;
  }
  .hero-screen--1 {
    opacity: 1;
    transform: none;
    position: relative;
    inset: auto;
  }
  .hero-screen--2,
  .hero-screen--3 {
    display: none;
  }
  .hero-stage__screens {
    min-height: 0;
  }
}
/* —— Footer —— */
.site-footer {
  background: var(--asp-ink);
  color: rgba(255, 255, 255, 0.68);
  padding-block: 3.25rem 2rem;
  margin-top: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--asp-lime);
  text-decoration: underline;
}

.site-footer h2 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  letter-spacing: 0;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  font-size: 0.875rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--asp-muted);
  border-left: 3px solid var(--asp-accent);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 50%;
  border: 0;
  background: var(--asp-ink);
  color: var(--asp-lime);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(7, 20, 28, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--asp-transition), visibility var(--asp-transition), transform var(--asp-transition);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top:hover {
  background: var(--asp-accent-deep);
  color: #fff;
}

/* —— Responsive —— */
@media (max-width: 1199.98px) {
  .pricing-card__desc {
    min-height: 0;
  }
  .pricing-card__price {
    font-size: clamp(1.85rem, 4vw, 2.35rem);
  }
}
@media (max-width: 991.98px) {
  .hero {
    min-height: 0;
    padding-block: 2.5rem 2rem;
  }
  .hero__orb--1,
  .hero__orb--2 {
    width: 160px;
    height: 160px;
    filter: blur(28px);
  }
  .hero-visual {
    max-width: 420px;
    margin-top: 0.5rem;
  }
  .bento {
    grid-template-columns: 1fr;
  }
  .bento__item--wide,
  .bento__item--tall,
  .bento__item--mid,
  .bento__item--sm,
  .bento__item--third {
    grid-column: auto;
    grid-row: auto;
  }
  .cta-band .text-lg-end {
    text-align: left !important;
    margin-top: 0.75rem;
  }
  .cta-band .btn {
    width: 100%;
    max-width: 20rem;
  }
  .steps li:hover {
    transform: none;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento__item--wide,
  .bento__item--tall,
  .bento__item--mid,
  .bento__item--third {
    grid-column: span 1;
    grid-row: auto;
  }
}
@media (max-width: 767.98px) {
  .section-pad {
    padding-block: 2.75rem;
  }
  .hero__brand {
    font-size: clamp(2.1rem, 10vw, 2.75rem);
  }
  .hero__headline {
    font-size: 1.05rem;
  }
  .asp-brand span {
    font-size: 0.95rem;
    max-width: 11.5rem;
    line-height: 1.15;
  }
  .pricing-card {
    padding: 1.5rem 1.15rem 1.25rem;
    overflow: visible;
  }
  .pricing-card__badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
    max-width: calc(100% - 1rem);
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .pricing-card__features li {
    font-size: 0.9rem;
  }
  .steps li {
    padding: 1.25rem 1.1rem 1.25rem 4.25rem;
  }
  .steps li::before {
    left: 0.9rem;
    top: 1.15rem;
    width: 2.15rem;
    height: 2.15rem;
    font-size: 0.95rem;
  }
  .surface-panel {
    padding: 1rem;
    border-radius: var(--asp-radius);
  }
  .asp-table {
    font-size: 0.85rem;
  }
  .asp-table thead th,
  .asp-table tbody td {
    padding: 0.65rem 0.7rem;
  }
  /* Sticky first column for wide comparison tables on small screens */
  .table-responsive {
    -webkit-overflow-scrolling: touch;
  }
  #compare .asp-table th:first-child,
  #compare .asp-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: var(--asp-white);
    min-width: 10.5rem;
    box-shadow: 4px 0 8px rgba(7, 20, 28, 0.06);
  }
  #compare .asp-table thead th:first-child {
    background: var(--asp-ink);
    z-index: 2;
  }
  .cta-band {
    border-radius: var(--asp-radius);
    padding: 1.5rem 1.25rem;
  }
  .cta-band .d-flex.justify-content-center {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-band .d-flex.justify-content-center .btn {
    max-width: none;
  }
  .official-card {
    flex-direction: row;
  }
  .back-to-top {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 2.55rem;
    height: 2.55rem;
  }
  .marquee-strip__track {
    gap: 1.5rem;
  }
  .marquee-strip__track li {
    font-size: 0.82rem;
  }
  .page-hero-band {
    padding-block: 2rem 1.5rem;
  }
  .contact-form {
    padding: 1.25rem;
  }
  .site-footer .col-6 {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 399.98px) {
  .hero__brand {
    font-size: 1.85rem;
  }
  .asp-brand span {
    max-width: 9.5rem;
    font-size: 0.88rem;
  }
  .pricing-card__price {
    font-size: 1.65rem;
  }
  .btn-asp-primary,
  .btn-asp-outline,
  .btn-asp-lime {
    width: 100%;
    text-align: center;
  }
  .hero__content .d-flex {
    flex-direction: column;
    align-items: stretch;
  }
}
@media print {
  .site-header, .back-to-top, .skip-link, .btn, .marquee-strip, .hero__orb {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
}
/* —— WooCommerce cart / checkout / account —— */
.asp-wc-page {
  background: var(--asp-surface);
}

.asp-wc-page__inner {
  max-width: 1140px;
  margin-inline: auto;
  width: 100%;
}

.asp-wc-page .alignwide,
.asp-wc-page .alignfull {
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.asp-wc-page .wp-block-woocommerce-checkout,
.asp-wc-page .wp-block-woocommerce-cart,
.asp-wc-page .wc-block-checkout,
.asp-wc-page .wc-block-cart {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  container-type: inline-size;
}

/* Two-column checkout: fields left, order summary right */
.asp-wc-page .wp-block-woocommerce-checkout,
.asp-wc-page .wp-block-woocommerce-checkout.is-loading,
.asp-wc-page .wc-block-components-sidebar-layout {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.asp-wc-page .wp-block-woocommerce-checkout-fields-block,
.asp-wc-page .wc-block-components-main,
.asp-wc-page .wc-block-checkout__main {
  flex: 1 1 0 !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  padding-right: 0 !important;
  box-sizing: border-box;
}

.asp-wc-page .wp-block-woocommerce-checkout-totals-block,
.asp-wc-page .wc-block-components-sidebar,
.asp-wc-page .wc-block-checkout__sidebar {
  flex: 0 0 min(38%, 22rem) !important;
  width: min(38%, 22rem) !important;
  max-width: min(38%, 22rem) !important;
  padding-left: 0 !important;
  box-sizing: border-box;
  position: sticky;
  top: calc(var(--asp-header-h) + 1rem);
}

.asp-wc-page .wp-block-woocommerce-checkout-order-summary-block {
  background: var(--asp-white);
  border: 1px solid var(--asp-border);
  border-radius: var(--asp-radius);
  box-shadow: var(--asp-shadow);
  padding: 0.25rem 0 0.5rem;
  overflow: hidden;
}

.asp-wc-page .wc-block-components-checkout-order-summary__title-text,
.asp-wc-page .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-title {
  padding-inline: 1rem;
}

@media (max-width: 991.98px) {
  .asp-wc-page .wp-block-woocommerce-checkout,
  .asp-wc-page .wp-block-woocommerce-checkout.is-loading,
  .asp-wc-page .wc-block-components-sidebar-layout {
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }
  .asp-wc-page .wp-block-woocommerce-checkout-fields-block,
  .asp-wc-page .wp-block-woocommerce-checkout-totals-block,
  .asp-wc-page .wc-block-components-main,
  .asp-wc-page .wc-block-components-sidebar,
  .asp-wc-page .wc-block-checkout__main,
  .asp-wc-page .wc-block-checkout__sidebar {
    flex: 1 1 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    position: static;
  }
  /* Keep summary after fields on mobile */
  .asp-wc-page .wp-block-woocommerce-checkout-totals-block {
    order: 2;
  }
  .asp-wc-page .wp-block-woocommerce-checkout-fields-block {
    order: 1;
  }
}
body.woocommerce-checkout .site-header .container,
body.woocommerce-cart .site-header .container,
body.woocommerce-account .site-header .container,
.site-header .container {
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

body.woocommerce-checkout #main-content,
body.woocommerce-cart #main-content,
body.woocommerce-account #main-content {
  overflow-x: hidden;
}

/* —— WooCommerce My Account (orders / details) —— */
.asp-wc-page.woocommerce-account,
body.woocommerce-account .asp-wc-page {
  padding-block: 0;
}

body.woocommerce-account .asp-wc-page__inner {
  padding-block: clamp(1.5rem, 4vw, 2.75rem);
}

body.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: minmax(12rem, 15rem) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
  position: sticky;
  top: calc(var(--asp-header-h) + 1rem);
  margin: 0;
  padding: 0.85rem;
  background: var(--asp-white);
  border: 1px solid var(--asp-border);
  border-radius: var(--asp-radius);
  box-shadow: var(--asp-shadow);
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--asp-ink-soft);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s ease, color 0.2s ease;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
  background: rgba(15, 159, 138, 0.08);
  color: var(--asp-accent-deep);
}

body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  background: var(--asp-ink);
  color: #fff;
}

body.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout a {
  margin-top: 0.35rem;
  border: 1px dashed rgba(7, 20, 28, 0.18);
  color: var(--asp-muted);
}

body.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
  background: transparent;
  border-color: var(--asp-ink);
  color: var(--asp-ink);
}

body.woocommerce-account .woocommerce-MyAccount-content {
  margin: 0;
  padding: clamp(1.15rem, 2.5vw, 1.6rem);
  background: var(--asp-white);
  border: 1px solid var(--asp-border);
  border-radius: var(--asp-radius-lg);
  box-shadow: var(--asp-shadow);
  min-width: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content > h2,
body.woocommerce-account .woocommerce-MyAccount-content > h3 {
  font-family: var(--asp-font-display);
  margin-top: 0;
}

body.woocommerce-account .woocommerce-orders-table,
body.woocommerce-account .shop_table {
  width: 100%;
  border-collapse: collapse;
}

body.woocommerce-account .woocommerce-orders-table th,
body.woocommerce-account .shop_table th {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--asp-muted);
  border-bottom: 1px solid var(--asp-border);
  padding: 0.65rem 0.5rem;
  text-align: left;
}

body.woocommerce-account .woocommerce-orders-table td,
body.woocommerce-account .shop_table td {
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid rgba(7, 20, 28, 0.06);
  vertical-align: middle;
}

body.woocommerce-account .woocommerce-button,
body.woocommerce-account .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--asp-ink);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none !important;
}

body.woocommerce-account .woocommerce-button:hover,
body.woocommerce-account .button:hover {
  background: var(--asp-accent-deep);
}

body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-error {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--asp-radius);
  border: 1px solid var(--asp-border);
  background: var(--asp-surface);
}

body.woocommerce-account .woocommerce-error {
  background: #fff5f4;
  border-color: rgba(163, 51, 51, 0.25);
  color: #7a2424;
}

body.woocommerce-account .woocommerce-error li {
  margin: 0.35rem 0;
}

body.woocommerce-account .woocommerce-error .button {
  margin-left: 0.5rem;
}

@media (max-width: 767.98px) {
  body.woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation {
    position: static;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
  }
  body.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link--customer-logout {
    grid-column: 1 / -1;
  }
}

.asp-account-page__wrap {
  max-width: 72rem;
}
