:root {
  --bg: #070912;
  --bg-soft: #0b1020;
  --panel: rgba(17, 19, 30, 0.76);
  --panel-strong: rgba(22, 25, 39, 0.92);
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(168, 85, 247, 0.35);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --muted-soft: #94a3b8;
  --accent: #8b5cf6;
  --accent-2: #38bdf8;
  --accent-3: #d946ef;
  --green: #34d399;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(139, 92, 246, 0.28), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(56, 189, 248, 0.18), transparent 28%),
    radial-gradient(circle at 65% 90%, rgba(217, 70, 239, 0.16), transparent 34%),
    var(--bg);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

.site-shell {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.35);
}

.brand-title {
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: var(--muted-soft);
  font-size: 0.88rem;
}

.brand-mark-image {
  background: none;
  box-shadow: none;
  overflow: hidden;
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,0.04);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  align-items: center;
  min-height: auto;
  padding: 56px 0 28px;
}

.hero-content h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.4rem, 4.8vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hero-text {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: #c4b5fd;
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: 180ms ease;
}

.button.primary,
.button.secondary {
  color: #ddd6fe;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.13);
  box-shadow: none;
}

.button.primary:hover,
.button.secondary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.9);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.45), rgba(56, 189, 248, 0.28)),
    rgba(139, 92, 246, 0.18);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.12),
    0 16px 36px rgba(139, 92, 246, 0.28);
}

.glass-panel {
  border: 1px solid var(--border);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}

.status-dot-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.9);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.metric-grid div {
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.035);
}

.metric-grid strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.metric-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted-soft);
}

.section {
  padding: 48px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 28px;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.section-heading p,
.final-cta p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 18px;
  min-height: 190px;
  padding: 22px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(139,92,246,0.22), transparent 70%);
  opacity: 0;
  transition: 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background:
    linear-gradient(145deg, rgba(139,92,246,0.16), rgba(56,189,248,0.06)),
    var(--panel-strong);
}

.service-card:hover::after {
  opacity: 1;
}

.logo-placeholder {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.18), transparent 38%),
    linear-gradient(135deg, rgba(139,92,246,0.45), rgba(56,189,248,0.18));
  color: white;
  font-weight: 900;
  font-size: 0.95rem;
  overflow: hidden;
}

.logo-placeholder img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.service-content {
  min-width: 0;
}

.service-content h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
}

.service-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #ddd6fe;
  background: rgba(139,92,246,0.13);
  border: 1px solid rgba(139,92,246,0.25);
  font-size: 0.78rem;
  font-weight: 800;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  border-radius: var(--radius-xl);
  margin-bottom: 64px;
}

.final-cta > div {
  max-width: 760px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 44px;
  color: var(--muted-soft);
  border-top: 1px solid var(--border);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

  .feature-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 24px, var(--max-width));
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 42px;
  }

  .feature-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 64px 1fr;
    min-height: auto;
  }

  .logo-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 0.8rem;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

.logo-image-only {
  padding: 0;
  background: none;
  border: none;
}

.logo-image-only img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Permanent service logo styling */
.service-logo {
  padding: 10px;
  background: #000000;
  border: 1px solid rgba(139, 92, 246, 0.65);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.28);
}

.service-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.service-card:hover .service-logo {
  border-color: rgba(168, 85, 247, 0.95);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.18),
    0 16px 36px rgba(139, 92, 246, 0.25);
}

/* XDC */
.xdc-logo {
  padding: 10px;
}

/* Acurast */
.acurast-logo {
  padding: 10px;
}

/* 0G */
.zerogravity-logo {
  padding: 8px;
}

/* Beam */
.beam-logo {
  padding: 8px;
}

/* Lava */
.lava-logo {
  padding: 8px;
}

/* Akash */
.akash-logo {
  padding: 8px;
}

/* OctaSpace */
.octaspace-logo {
  padding: 8px;
}

/* Service subpages */
.service-hero {
  min-height: auto;
  padding-top: 88px;
}

.service-title-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.service-page-logo {
  width: 112px;
  height: 112px;
  border-radius: 28px;
}

.inline-link {
  color: #93c5fd;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(147, 197, 253, 0.45);
  text-underline-offset: 4px;
}

.inline-link:hover {
  color: #c4b5fd;
  text-decoration-color: rgba(196, 181, 253, 0.75);
}

.credential-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.credential-box div {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.11);
}

.credential-box span {
  display: block;
  color: var(--muted-soft);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.credential-box strong {
  display: block;
  color: var(--text);
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

@media (max-width: 680px) {
  .service-title-row {
    grid-template-columns: 1fr;
  }

  .service-page-logo {
    width: 96px;
    height: 96px;
  }

  .credential-box {
    grid-template-columns: 1fr;
  }
}

/* OctaSpace deployment guide */
.octa-node-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.octa-node-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(52, 211, 153, 0.13), rgba(139, 92, 246, 0.05)),
    var(--panel);
}

.octa-node-card span {
  display: block;
  color: #91e8c4;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.octa-node-card strong {
  display: block;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.octa-steps {
  display: grid;
  gap: 16px;
}

.octa-step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.octa-step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 14px 30px rgba(139, 92, 246, 0.28);
}

.octa-step h3,
.octa-image-head h3 {
  margin: 0 0 10px;
}

.octa-step p {
  color: var(--muted);
  line-height: 1.65;
}

.octa-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.octa-field {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.22);
}

.octa-field span {
  display: block;
  color: var(--muted-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 9px;
}

.octa-field code,
.octa-note code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  color: #eeeeff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 2px 6px;
  overflow-wrap: anywhere;
}

.octa-field p {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.octa-note {
  margin-top: 14px;
  padding: 15px 16px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  background: rgba(139, 92, 246, 0.10);
  border-radius: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.octa-wide-note {
  margin-top: 18px;
}

.octa-image-card {
  margin-top: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.octa-image-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}

.octa-image-head span {
  color: var(--muted-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.octa-image-card a {
  display: block;
  background: #08080b;
}

.octa-image-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

.octa-danger {
  padding: 34px;
  border-color: rgba(251, 113, 133, 0.28);
  background:
    linear-gradient(180deg, rgba(251, 113, 133, 0.09), rgba(17, 19, 30, 0.76)),
    var(--panel);
}

.octa-legal-list {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  padding-left: 1.25rem;
}

.octa-legal-list li {
  margin: 10px 0;
}

.octa-legal-final {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 760px) {
  .octa-step {
    grid-template-columns: 1fr;
  }

  .octa-field-grid {
    grid-template-columns: 1fr;
  }

  .octa-image-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

body.octaspace-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 92, 246, 0.20), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(56, 189, 248, 0.10), transparent 28%),
    radial-gradient(circle at 60% 86%, rgba(217, 70, 239, 0.08), transparent 34%),
    #050711;
}

body.octaspace-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 7, 17, 0.10),
      rgba(5, 7, 17, 0.58) 42%,
      rgba(5, 7, 17, 0.86) 100%
    );
}

body.octaspace-page .site-shell {
  position: relative;
  z-index: 1;
}

body.octaspace-page .glass-panel,
body.octaspace-page .feature-card,
body.octaspace-page .hero-card,
body.octaspace-page .octa-step,
body.octaspace-page .octa-image-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.018)),
    rgba(14, 16, 27, 0.82);
}

body.octaspace-page .section {
  padding-top: 22px;
  padding-bottom: 22px;
}

body.octaspace-page .section + .section {
  padding-top: 10px;
}

body.octaspace-page .section-heading {
  margin-bottom: 18px;
}

body.octaspace-page .section-heading p:last-child {
  margin-bottom: 0;
}

/* OctaSpace override */

body.octaspace-page .service-hero + .section {
  padding-bottom: 8px;
}

body.octaspace-page #authorized {
  padding-top: 6px;
}

body.octaspace-page .section-heading {
  max-width: none;
  width: 100%;
  margin-bottom: 18px;
}

body.octaspace-page .section-heading > p:not(.eyebrow) {
  max-width: 980px;
}

body.octaspace-page .section-heading h2 {
  max-width: 1100px;
  font-size: clamp(1.9rem, 3vw, 3.8rem);
}

/* Machine availability */

.availability-box {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.availability-button {
  min-height: 46px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.78), rgba(217, 70, 239, 0.56)),
    rgba(139, 92, 246, 0.18);
  border-color: rgba(168, 85, 247, 0.75);
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.08),
    0 16px 36px rgba(139, 92, 246, 0.26);
}

.availability-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
}

.availability-note {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Lava provider page */
.lava-provider-grid {
  grid-template-columns: repeat(3, 1fr);
}

.lava-network-card {
  min-height: 220px;
}

/* Network logo variants used on Lava provider page */
.axelar-logo,
.starknet-logo {
  padding: 8px;
  background: #000000;
}

.axelar-logo img,
.starknet-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 980px) {
  .lava-provider-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .lava-provider-grid {
    grid-template-columns: 1fr;
  }
}

/* Compact reusable legal disclaimer */
.legal-note {
  margin-top: 42px;
  padding: 18px 20px;
  border-radius: 18px;
  border-color: rgba(251, 113, 133, 0.22);
  background:
    linear-gradient(180deg, rgba(251, 113, 133, 0.055), rgba(17, 19, 30, 0.72)),
    var(--panel);
}

.legal-note .eyebrow {
  margin-bottom: 8px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.legal-note h2 {
  margin: 0 0 10px;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  letter-spacing: -0.035em;
}

.legal-note p {
  margin: 0 0 8px;
  color: var(--muted-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.legal-note p:last-child {
  margin-bottom: 0;
}

/* Akash provider live status page */

.provider-status-wide {
  padding-top: 0;
  padding-bottom: 2rem;
}

.provider-status-banner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(52, 211, 153, 0.45);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(52, 211, 153, 0.13), rgba(56, 189, 248, 0.035)),
    rgba(17, 19, 30, 0.72);
}

.provider-status-banner strong {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.provider-status-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.provider-live-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 0.95rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.provider-live-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.provider-live-meta span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.8);
}

.provider-resource-grid {
  margin-top: 1.5rem;
}

.provider-detail-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.provider-detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 0.5rem;
}

.provider-detail-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.provider-status-label {
  color: var(--muted-soft);
}

.provider-status-value {
  color: var(--text);
  font-weight: 700;
  text-align: right;
  overflow-wrap: anywhere;
}

.provider-muted {
  color: var(--muted-soft);
}

@media (max-width: 680px) {
  .provider-detail-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .provider-status-value {
    text-align: left;
  }
}

/* Akash live resource cards: wider 2 x 2 layout */
.provider-resource-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 760px) {
  .provider-resource-grid {
    grid-template-columns: 1fr;
  }
}
