:root {
  --black: #020504;
  --ink: #07120d;
  --panel: rgba(9, 22, 15, 0.86);
  --panel-solid: #0b1810;
  --edge: rgba(198, 178, 105, 0.32);
  --edge-strong: rgba(216, 191, 105, 0.58);
  --moss: #86d838;
  --acid: #b7ff25;
  --jade: #20b874;
  --gold: #d8bf69;
  --cream: #f4edca;
  --muted: #a8b7a3;
  --danger: #ff6b4a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 18%, rgba(135, 216, 56, 0.16), transparent 34rem),
    radial-gradient(circle at 82% 8%, rgba(216, 191, 105, 0.12), transparent 28rem),
    linear-gradient(180deg, #010302 0%, #07120d 48%, #020504 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(183, 255, 37, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 255, 37, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 74%);
  z-index: 0;
}

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(2, 5, 4, 0.78);
  border-bottom: 1px solid var(--edge);
  display: grid;
  gap: 1rem;
  grid-template-columns: auto 1fr auto;
  left: 0;
  min-height: 78px;
  padding: 0.7rem clamp(1rem, 4vw, 3.5rem);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  min-width: 0;
}

.brand img {
  border: 1px solid var(--edge-strong);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(183, 255, 37, 0.22);
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.brand strong,
.footer span {
  display: block;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 0.75rem;
  margin-top: 0.12rem;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  justify-content: center;
}

.nav-links a {
  color: #d9e5d0;
  font-size: 0.93rem;
  font-weight: 700;
  opacity: 0.86;
}

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

.top-actions,
.hero-actions {
  align-items: center;
  display: flex;
  gap: 0.75rem;
}

.primary-button,
.ghost-button {
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 42px;
  padding: 0.82rem 1.05rem;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.primary-button {
  background: linear-gradient(135deg, var(--acid), var(--jade));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 34px rgba(95, 255, 69, 0.18);
  color: #031008;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--edge);
  color: var(--cream);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.large {
  min-height: 50px;
  padding: 1rem 1.25rem;
}

.nav-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--edge);
  border-radius: 8px;
  display: none;
  height: 42px;
  padding: 0;
  width: 46px;
}

.nav-toggle span {
  background: var(--cream);
  display: block;
  height: 2px;
  margin: 5px auto;
  width: 20px;
}

.hero {
  align-items: flex-end;
  display: flex;
  isolation: isolate;
  min-height: min(760px, 86vh);
  padding: 9.25rem clamp(1rem, 4vw, 3.5rem) 3.25rem;
  position: relative;
}

.hero-bg,
.hero-shade {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: -2;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(2, 5, 4, 0.95) 0%, rgba(2, 5, 4, 0.72) 34%, rgba(2, 5, 4, 0.24) 62%, rgba(2, 5, 4, 0.64) 100%),
    linear-gradient(180deg, rgba(2, 5, 4, 0.32), rgba(2, 5, 4, 0.26) 62%, #020504 100%);
  z-index: -1;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Orbitron, Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.9rem, 6.8vw, 5.55rem);
  line-height: 0.96;
  margin-bottom: 1.25rem;
  max-width: 780px;
  text-shadow: 0 0 34px rgba(183, 255, 37, 0.14);
}

.hero-copy {
  color: #d8e8d1;
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.7;
  max-width: 680px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.trust-row span {
  background: rgba(8, 25, 14, 0.76);
  border: 1px solid rgba(183, 255, 37, 0.24);
  border-radius: 8px;
  color: #e7f6df;
  font-size: 0.86rem;
  font-weight: 800;
  padding: 0.65rem 0.8rem;
}

.quick-strip,
.section,
.footer {
  margin-inline: auto;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.quick-strip {
  background: rgba(4, 14, 8, 0.84);
  border: 1px solid var(--edge);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -2rem;
  overflow: hidden;
}

.quick-strip div {
  background: rgba(255, 255, 255, 0.025);
  padding: 1.4rem;
}

.quick-strip strong {
  color: var(--gold);
  display: block;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.4rem;
}

.quick-strip span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 3vw, 1.5rem);
}

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

.section-heading h2,
.panel-copy h2,
.status h2,
.support h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
}

.feature-grid,
.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}

.catalog-layout {
  align-items: start;
  display: grid;
  gap: 1rem;
  grid-template-columns: 240px 1fr;
  margin-top: 2rem;
}

.catalog-sidebar,
.product-category {
  background: linear-gradient(180deg, rgba(15, 35, 22, 0.84), rgba(7, 17, 11, 0.9));
  border: 1px solid var(--edge);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catalog-sidebar {
  display: grid;
  gap: 0.45rem;
  padding: 0.75rem;
  position: sticky;
  top: 96px;
}

.catalog-sidebar button {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid transparent;
  border-radius: 8px;
  color: #dbe8d5;
  cursor: pointer;
  font-weight: 800;
  min-height: 42px;
  padding: 0.72rem 0.8rem;
  text-align: left;
}

.catalog-sidebar button.active,
.catalog-sidebar button:hover {
  background: rgba(183, 255, 37, 0.12);
  border-color: rgba(183, 255, 37, 0.28);
  color: var(--acid);
}

.product-board {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-category {
  overflow: hidden;
}

.product-category.hidden {
  display: none;
}

.category-title {
  align-items: center;
  background: rgba(0, 0, 0, 0.24);
  border-bottom: 1px solid rgba(216, 191, 105, 0.18);
  display: flex;
  justify-content: flex-start;
  padding: 0.95rem 1rem;
}

.category-title span {
  color: #f2f5ee;
  font-size: 0.98rem;
  font-weight: 900;
}

.product-list {
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem;
}

.product-list a {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #cbd5c7;
  display: grid;
  font-weight: 800;
  gap: 0.55rem;
  grid-template-columns: auto 1fr auto;
  min-height: 42px;
  padding: 0.65rem 0.75rem;
}

.product-list a strong {
  background: rgba(183, 255, 37, 0.12);
  border: 1px solid rgba(183, 255, 37, 0.24);
  border-radius: 8px;
  color: var(--acid);
  font-size: 0.76rem;
  padding: 0.42rem 0.55rem;
  white-space: nowrap;
}

.product-list a:hover,
.product-list .featured-product {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.update-channel {
  color: #90988e;
}

.online-dot {
  background: radial-gradient(circle at 35% 30%, #d7ffe3, #48e08c 48%, #15834d 100%);
  border: 1px solid rgba(210, 255, 225, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(72, 224, 140, 0.5);
  flex: 0 0 auto;
  height: 17px;
  width: 17px;
}

.status-dot {
  border-radius: 50%;
  flex: 0 0 auto;
  height: 17px;
  width: 17px;
}

.warning-dot {
  background: radial-gradient(circle at 35% 30%, #fff5d5, #ffbf47 48%, #9d6711 100%);
  box-shadow: 0 0 18px rgba(255, 191, 71, 0.5);
}

.feature-card,
.price-card,
.dashboard-preview,
.status-board,
.support-box {
  background: linear-gradient(180deg, rgba(15, 35, 22, 0.84), rgba(7, 17, 11, 0.9));
  border: 1px solid var(--edge);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card,
.price-card {
  min-height: 100%;
  padding: 1.35rem;
}

.feature-icon {
  align-items: center;
  background: rgba(183, 255, 37, 0.12);
  border: 1px solid rgba(183, 255, 37, 0.32);
  border-radius: 8px;
  color: var(--acid);
  display: inline-flex;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.82rem;
  height: 42px;
  justify-content: center;
  margin-bottom: 1rem;
  width: 42px;
}

.feature-card h3,
.price-card h3 {
  font-size: 1.22rem;
}

.feature-card p,
.price-card p,
.panel-copy p,
.status p,
.support p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.panel-section {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 0.8fr 1.2fr;
}

.product-preview .panel-main {
  background:
    radial-gradient(circle at 80% 8%, rgba(183, 255, 37, 0.12), transparent 18rem),
    rgba(0, 0, 0, 0.1);
}

.check-list {
  color: #dbe8d5;
  display: grid;
  gap: 0.8rem;
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
}

.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.check-list li {
  border-left: 3px solid var(--acid);
  padding-left: 0.8rem;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 470px;
  overflow: hidden;
}

.panel-sidebar {
  background: rgba(0, 0, 0, 0.26);
  border-right: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
}

.panel-sidebar img {
  border-radius: 50%;
  height: 62px;
  margin: 0.2rem auto 0.5rem;
  object-fit: cover;
  width: 62px;
}

.panel-sidebar span {
  color: var(--gold);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.78rem;
  text-align: center;
}

.panel-sidebar button,
.tool-grid button,
.billing-toggle button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  border-radius: 8px;
  color: #dbe8d5;
  cursor: pointer;
  font-weight: 800;
}

.panel-sidebar button {
  padding: 0.78rem 0.7rem;
  text-align: left;
}

.panel-sidebar .active,
.panel-sidebar button:hover,
.tool-grid button:hover,
.billing-toggle button.active {
  background: rgba(183, 255, 37, 0.12);
  border-color: rgba(183, 255, 37, 0.28);
  color: var(--acid);
}

.panel-main {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.panel-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.panel-header small,
.usage-grid span,
.status-item small {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
}

.panel-header strong {
  display: block;
  font-size: 1.05rem;
  margin-top: 0.25rem;
}

.live-pill {
  background: rgba(32, 184, 116, 0.16);
  border: 1px solid rgba(32, 184, 116, 0.42);
  border-radius: 999px;
  color: #8dffc8;
  font-size: 0.82rem;
  font-weight: 900;
  padding: 0.5rem 0.75rem;
}

.usage-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}

.usage-grid div {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1rem;
}

.usage-grid strong {
  display: block;
  font-size: 1.25rem;
  margin: 0.45rem 0;
}

meter {
  height: 9px;
  width: 100%;
}

meter::-webkit-meter-bar {
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 999px;
}

meter::-webkit-meter-optimum-value {
  background: linear-gradient(90deg, var(--jade), var(--acid));
  border-radius: 999px;
}

.tool-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}

.tool-grid button {
  min-height: 76px;
  padding: 0.9rem;
}

.billing-toggle {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--edge);
  border-radius: 8px;
  display: inline-flex;
  gap: 0.35rem;
  margin: 1.4rem 0 0;
  padding: 0.35rem;
}

.billing-toggle button {
  min-width: 104px;
  padding: 0.72rem 0.95rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.price-card.featured {
  border-color: var(--edge-strong);
  box-shadow: 0 28px 90px rgba(135, 216, 56, 0.18);
  transform: translateY(-0.65rem);
}

.plan-name {
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 0;
}

.price-card h3 {
  font-family: Orbitron, Inter, sans-serif;
  font-size: 2.2rem;
  margin: 0;
}

.price-card small {
  color: var(--muted);
  font-family: Inter, sans-serif;
  font-size: 0.95rem;
  margin-left: 0.25rem;
}

.price-card ul {
  color: #dbe8d5;
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.1rem;
}

.price-card a {
  margin-top: auto;
}

.status {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 0.8fr 1fr;
}

.status-board {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.status-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 0.2rem 0.8rem;
  grid-template-columns: auto 1fr;
  padding: 1rem;
}

.status-item span {
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(183, 255, 37, 0.8);
  grid-row: span 2;
  height: 12px;
  width: 12px;
}

.status-item.warning span {
  background: #ffbf47;
  box-shadow: 0 0 18px rgba(255, 191, 71, 0.8);
}

.compact-shell {
  min-height: 100vh;
}

.product-detail-page,
.client-page {
  padding-top: 7rem;
  position: relative;
  z-index: 1;
}

.product-hero-card {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(2, 5, 4, 0.92), rgba(2, 5, 4, 0.62)),
    url("assets/swampware-banner.png") center / cover;
  border: 1px solid var(--edge);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 320px;
  margin: 2rem auto 0;
  max-width: 1180px;
  min-height: 460px;
  padding: clamp(1.2rem, 4vw, 3rem);
}

.product-hero-card h1,
.client-heading h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.purchase-card,
.detail-panel,
.client-sidebar,
.client-main,
.client-panel,
.client-stats article {
  background: linear-gradient(180deg, rgba(15, 35, 22, 0.88), rgba(7, 17, 11, 0.94));
  border: 1px solid var(--edge);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.purchase-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
}

.purchase-card strong {
  color: var(--cream);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 2.5rem;
}

.purchase-card small {
  color: var(--muted);
  font-weight: 800;
}

.status-badge {
  background: rgba(32, 184, 116, 0.16);
  border: 1px solid rgba(32, 184, 116, 0.42);
  border-radius: 999px;
  color: #8dffc8;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  padding: 0.5rem 0.72rem;
  width: max-content;
}

.status-badge.updating,
.status-badge.invite-only {
  background: rgba(255, 191, 71, 0.14);
  border-color: rgba(255, 191, 71, 0.42);
  color: #ffd67a;
}

.detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.detail-panel {
  padding: 1.25rem;
}

.detail-panel h2,
.client-panel h2 {
  font-family: Orbitron, Inter, sans-serif;
  font-size: 1.25rem;
}

.flow-list {
  color: #dbe8d5;
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.2rem;
}

.detail-muted {
  color: var(--muted);
  line-height: 1.65;
}

.client-heading {
  max-width: 920px;
}

.client-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 230px 1fr;
  margin-top: 2rem;
}

.client-sidebar {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
}

.client-sidebar img {
  border-radius: 50%;
  height: 72px;
  object-fit: cover;
  width: 72px;
}

.client-sidebar strong {
  color: var(--gold);
  font-family: Orbitron, Inter, sans-serif;
  font-size: 0.82rem;
}

.client-sidebar button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  border-radius: 8px;
  color: #dbe8d5;
  cursor: pointer;
  font-weight: 800;
  padding: 0.75rem;
  text-align: left;
}

.client-sidebar button.active,
.client-sidebar button:hover {
  background: rgba(183, 255, 37, 0.12);
  border-color: rgba(183, 255, 37, 0.28);
  color: var(--acid);
}

.client-main {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

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

.client-stats article {
  padding: 1rem;
}

.client-stats span,
.client-row small {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
}

.client-stats strong {
  display: block;
  font-family: Orbitron, Inter, sans-serif;
  font-size: 2rem;
  margin-top: 0.45rem;
}

.client-panel {
  padding: 1rem;
}

.client-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: auto 1fr auto auto;
  margin-top: 0.7rem;
  min-height: 58px;
  padding: 0.75rem;
}

.client-row a {
  color: var(--acid);
  font-weight: 900;
}

.support-box {
  align-items: start;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 420px;
  padding: clamp(1.2rem, 4vw, 2rem);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  color: var(--cream);
  display: grid;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 0.45rem;
}

.contact-form input,
.contact-form select {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid var(--edge);
  border-radius: 8px;
  color: var(--cream);
  min-height: 46px;
  padding: 0.8rem;
  width: 100%;
}

.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--acid);
  outline: none;
}

.footer {
  align-items: center;
  border-top: 1px solid var(--edge);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem clamp(1rem, 3vw, 1.5rem);
}

.footer p {
  margin: 0;
}

.footer div {
  display: flex;
  gap: 1rem;
}

.footer a {
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: auto auto;
  }

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

  .nav-links,
  .top-actions {
    display: none;
  }

  .topbar.open .nav-links,
  .topbar.open .top-actions {
    display: flex;
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .topbar.open .nav-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 800px;
  }

  .quick-strip,
  .feature-grid,
  .pricing-grid,
  .product-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-section,
  .status,
  .support-box,
  .catalog-layout,
  .product-hero-card,
  .detail-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .hero {
    align-items: flex-end;
    min-height: 720px;
    padding-bottom: 2.5rem;
  }

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

  .hero-actions a,
  .top-actions a {
    width: 100%;
  }

  .quick-strip,
  .feature-grid,
  .pricing-grid,
  .product-board,
  .usage-grid,
  .tool-grid,
  .client-stats {
    grid-template-columns: 1fr;
  }

  .product-list a,
  .client-row {
    grid-template-columns: auto 1fr;
  }

  .product-list a strong,
  .client-row small,
  .client-row a {
    grid-column: 2;
    justify-self: start;
  }

  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .panel-sidebar {
    border-bottom: 1px solid var(--edge);
    border-right: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .panel-sidebar img,
  .panel-sidebar span {
    display: none;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 460px) {
  .brand small {
    display: none;
  }

  h1 {
    font-size: 2.7rem;
  }

  .trust-row span {
    width: 100%;
  }
}
