:root {
  --bg-dark: #020617;
  --bg-darker: #020617;
  --bg-light: #f9fafb;
  --bg-section: #f3f4f6;
  --accent: #ef4444;
  --accent-soft: #fee2e2;
  --accent-dark: #b91c1c;
  --text-main: #0f172a;
  --text-muted: #6b7280;
  --border-subtle: #e5e7eb;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.2);
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-pill: 999px;
  --transition-fast: 180ms ease-out;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #0f172a 0, #020617 46%, #020617 100%);
}

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

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

.site-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
}

@media (min-width: 1024px) {
  .shell {
    padding: 1.75rem 0;
  }
}

/* Header / nav */

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.88),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 46px;
  height: 46px;
  border-radius: 1.35rem;
  background: radial-gradient(circle at 25% 0, #fecaca 0, #b91c1c 40%, #111827 85%);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(248, 113, 113, 0.45);
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-title-main {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.nav-title-sub {
  font-size: 0.8rem;
  color: #9ca3af;
}

.nav-links {
  display: none;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #d1d5db;
}

.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast), transform var(--transition-fast);
}

.nav-links a:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(248, 113, 113, 0.35);
  color: #f9fafb;
  transform: translateY(-1px);
}

.nav-links a.primary {
  background: #ef4444;
  color: white;
  box-shadow: 0 14px 35px rgba(239, 68, 68, 0.5);
  border-radius: var(--radius-pill);
  padding-inline: 1.1rem;
  border-color: transparent;
}

.nav-links a.primary:hover {
  background: #f97373;
  border-color: transparent;
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.55);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: radial-gradient(circle at 20% 0, #0f172a 0, #020617 70%);
  color: #e5e7eb;
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--transition-fast), opacity var(--transition-fast),
    top var(--transition-fast), bottom var(--transition-fast);
}

.nav-toggle span::before {
  top: -0.35rem;
}

.nav-toggle span::after {
  bottom: -0.35rem;
}

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav-toggle:hover {
  border-color: rgba(248, 250, 252, 0.6);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.6);
  transform: translateY(-1px);
}

.nav-menu-mobile {
  display: none;
  flex-direction: column;
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: radial-gradient(circle at top, #020617 0, #020617 60%, #020617 100%);
  border-radius: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
}

.nav-menu-mobile a {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: #e5e7eb;
  border: 1px solid transparent;
  margin-bottom: 0.15rem;
  transition: background var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast);
}

.nav-menu-mobile a:last-child {
  margin-bottom: 0;
}

.nav-menu-mobile a:hover {
  background: rgba(15, 23, 42, 0.85);
  border-color: rgba(248, 113, 113, 0.45);
  transform: translateY(-1px);
}

.nav-menu-mobile a.primary {
  margin-top: 0.25rem;
  background: #ef4444;
  color: white;
  border-color: transparent;
}

.nav-menu-mobile a.primary:hover {
  background: #f97373;
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle,
  .nav-menu-mobile {
    display: none;
  }
}

/* Hero */

.hero {
  padding: 2.25rem 0 3.25rem;
}

@media (min-width: 1024px) {
  .hero {
    padding: 3.5rem 0 4rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr);
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.2rem 0.6rem 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 113, 113, 0.5);
  background: radial-gradient(circle at 0 0, rgba(248, 250, 252, 0.16) 0, #020617 68%);
  color: #fecaca;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.25);
}

.badge-label {
  opacity: 0.9;
}

.hero-title {
  font-size: clamp(1.9rem, 3vw + 1.5rem, 2.65rem);
  line-height: 1.05;
  color: #f9fafb;
  letter-spacing: 0.02em;
  margin: 0;
}

.hero-title span {
  color: #fecaca;
}

.hero-subtitle {
  margin-top: 0.85rem;
  font-size: 0.98rem;
  color: #cbd5f5;
  max-width: 36rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background var(--transition-fast), transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast),
    color var(--transition-fast);
}

.btn-primary {
  background: #ef4444;
  color: white;
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.5);
  border-color: transparent;
}

.btn-primary:hover {
  background: #f97373;
  transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(239, 68, 68, 0.55);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.6);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(248, 113, 113, 0.6);
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.7);
}

.btn-icon {
  font-size: 1.05rem;
  position: relative;
  top: 0.5px;
}

.hero-footnote {
  margin-top: 0.95rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.hero-footnote strong {
  color: #e5e7eb;
  font-weight: 600;
}

.hero-panel {
  background: radial-gradient(circle at 0 0, #fecaca 0, #7f1d1d 41%, #020617 90%);
  border-radius: var(--radius-xl);
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(248, 250, 252, 0.3);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  color: #fef2f2;
}

@media (min-width: 1024px) {
  .hero-panel {
    padding: 1.5rem 1.55rem;
  }
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.7rem;
  margin-bottom: 0.7rem;
}

.pill {
  border-radius: 999px;
  padding: 0.14rem 0.7rem;
  border: 1px solid rgba(254, 242, 242, 0.6);
  background: rgba(15, 23, 42, 0.16);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pill label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.8;
}

.pill span {
  font-weight: 600;
}

.status-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr);
  gap: 0.85rem;
  margin-top: 0.35rem;
}

@media (min-width: 520px) {
  .status-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }
}

.status-card {
  background: rgba(15, 23, 42, 0.5);
  border-radius: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(254, 226, 226, 0.5);
}

.status-label {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fecaca;
  margin-bottom: 0.25rem;
}

.status-level {
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.status-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border-radius: 999px;
  padding: 0.1rem 0.5rem 0.15rem;
  border: 1px solid rgba(34, 197, 94, 0.7);
  background: rgba(21, 128, 61, 0.4);
  color: #dcfce7;
}

.status-body {
  margin-top: 0.3rem;
  font-size: 0.8rem;
  color: #fee2e2;
  line-height: 1.5;
}

.status-meta {
  margin-top: 0.4rem;
  font-size: 0.7rem;
  color: #fecaca;
  opacity: 0.9;
}

.checklist {
  font-size: 0.8rem;
  list-style: none;
  padding-left: 0;
  margin: 0.2rem 0 0;
  display: grid;
  gap: 0.18rem;
  color: #fee2e2;
}

.checklist li::before {
  content: "- ";
  display: inline-block;
  margin-right: 0.1rem;
  opacity: 0.85;
}

.hero-footer-chip {
  margin-top: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px dashed rgba(254, 226, 226, 0.6);
}

.hero-footer-chip span {
  opacity: 0.92;
}

/* Main sections */

main {
  margin-top: 0.25rem;
  background: radial-gradient(circle at top, #020617 0, #020617 30%, #020617 100%);
  border-radius: 2.5rem 2.5rem 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 -10px 40px rgba(15, 23, 42, 0.65);
  overflow: hidden;
}

.section {
  padding: 2.2rem 0 2.6rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.85);
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.96) 0, #020617 65%);
}

.section.alt {
  background: radial-gradient(circle at 0 0, #020617 0, #020617 70%);
}

.section-header {
  margin-bottom: 1.75rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
}

.section-title-block h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #f9fafb;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-title-block p {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
  color: #9ca3af;
  max-width: 24rem;
}

.section-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
  padding: 0.22rem 0.6rem 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.7);
  white-space: nowrap;
}

/* About grid */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr);
  gap: 1.6rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  }
}

.card {
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.65);
  padding: 1.1rem 1.15rem 1.2rem;
  color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: #f9fafb;
}

.card p {
  margin: 0.35rem 0 0.4rem;
  font-size: 0.88rem;
  color: #d1d5db;
  line-height: 1.6;
}

.card small {
  font-size: 0.78rem;
  color: #9ca3af;
}

.list-compact {
  margin: 0.35rem 0 0;
  padding-left: 1rem;
  font-size: 0.85rem;
  color: #d1d5db;
  display: grid;
  gap: 0.18rem;
}

.meta-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.meta-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.18rem 0.55rem 0.2rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #cbd5f5;
  background: rgba(15, 23, 42, 0.8);
}

/* 3-column grid */

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

@media (min-width: 720px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Get involved */

.steps {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

@media (min-width: 720px) {
  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.step {
  position: relative;
  background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 1) 0, #020617 80%);
  border-radius: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.75);
  padding: 0.85rem 0.9rem;
  color: #e5e7eb;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.9);
}

.step-number {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fecaca;
  margin-bottom: 0.3rem;
  background: rgba(15, 23, 42, 0.9);
}

.step h3 {
  margin: 0;
  font-size: 0.9rem;
}

.step p {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: #d1d5db;
}

.step small {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: #9ca3af;
}

/* Nets */

.nets-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  gap: 1.4rem;
}

.table-scroll {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.7);
  overflow: hidden;
  background: rgba(15, 23, 42, 1);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  color: #e5e7eb;
}

thead {
  background: radial-gradient(circle at 0 0, #dc2626 0, #7f1d1d 45%, #020617 100%);
}

th,
td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(31, 41, 55, 1);
  white-space: nowrap;
}

th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fee2e2;
}

tbody tr:nth-child(even) {
  background: rgba(15, 23, 42, 0.85);
}

tbody tr:hover {
  background: rgba(30, 64, 175, 0.35);
}

td span.badge-soft {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.45rem 0.16rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.6);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fee2e2;
  background: rgba(15, 23, 42, 0.9);
}

.table-note {
  padding: 0.55rem 0.75rem;
  font-size: 0.7rem;
  color: #9ca3af;
}

.activation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .activation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.activation-card {
  background: radial-gradient(circle at 0 0, #020617 0, #020617 75%);
  border-radius: 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.75rem 0.8rem 0.85rem;
  color: #e5e7eb;
}

.activation-card h3 {
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.activation-chip {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.08rem 0.45rem 0.14rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: #bfdbfe;
  background: rgba(15, 23, 42, 0.95);
}

.activation-card p {
  margin: 0.3rem 0 0;
  font-size: 0.8rem;
  color: #d1d5db;
}

/* Training */

.training-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr);
  gap: 1.4rem;
}

@media (min-width: 900px) {
  .training-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

.bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 0.35rem 0 0;
  display: grid;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: #d1d5db;
}

.bullet-list li {
  display: flex;
  gap: 0.35rem;
  align-items: flex-start;
}

.bullet-dot {
  margin-top: 0.18rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.9);
  flex-shrink: 0;
}

.callout {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.callout strong {
  color: #e5e7eb;
}

/* Resources */

.resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr);
  gap: 1.4rem;
}

@media (min-width: 900px) {
  .resource-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  }
}

.resource-links {
  list-style: none;
  padding-left: 0;
  margin: 0.35rem 0 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
}

.resource-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.45rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  transition: background var(--transition-fast), transform var(--transition-fast),
    box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.resource-links a span.label {
  font-weight: 500;
}

.resource-links a span.meta {
  font-size: 0.75rem;
  color: #9ca3af;
  white-space: nowrap;
}

.resource-links a:hover {
  background: rgba(30, 64, 175, 0.6);
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 18px 40px rgba(30, 64, 175, 0.7);
  transform: translateY(-1px);
}

.faq {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.7);
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(31, 41, 55, 1);
}

.faq-header {
  padding: 0.55rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: #e5e7eb;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-header span {
  font-weight: 500;
}

.faq-toggle {
  font-size: 1.1rem;
  color: #9ca3af;
  transition: transform var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(180deg);
  color: #f97373;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease-out;
}

.faq-body-inner {
  padding: 0.25rem 0.75rem 0.7rem;
  font-size: 0.8rem;
  color: #d1d5db;
  line-height: 1.6;
}

/* Contact */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr);
  gap: 1.4rem;
}

@media (min-width: 880px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  }
}

.contact-card {
  background: radial-gradient(circle at 0 0, #020617 0, #020617 75%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 1rem 1.05rem 1.2rem;
  color: #e5e7eb;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.contact-card h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
}

.contact-meta {
  font-size: 0.8rem;
  color: #d1d5db;
  margin-top: 0.3rem;
}

.contact-meta strong {
  color: #f9fafb;
}

.contact-grid {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.4rem;
  font-size: 0.8rem;
}

.contact-item {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(31, 41, 55, 1);
  padding: 0.4rem 0.55rem;
}

.contact-label {
  color: #9ca3af;
}

.contact-value {
  font-weight: 500;
  color: #e5e7eb;
  text-align: right;
  max-width: 60%;
}

.contact-note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.contact-form {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.35rem;
  font-size: 0.82rem;
}

.field {
  display: grid;
  gap: 0.2rem;
}

.field label {
  color: #e5e7eb;
  font-size: 0.78rem;
}

.field span.sub {
  font-size: 0.72rem;
  color: #9ca3af;
}

.input,
textarea {
  border-radius: 0.75rem;
  border: 1px solid rgba(31, 41, 55, 1);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  padding: 0.45rem 0.55rem;
  font: inherit;
  resize: vertical;
  min-height: 2.4rem;
}

textarea {
  min-height: 4.2rem;
}

.input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(129, 140, 248, 0.9);
  box-shadow: 0 0 0 1px rgba(129, 140, 248, 0.9);
}

.contact-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.contact-disclaimer {
  font-size: 0.7rem;
  color: #9ca3af;
  max-width: 14rem;
}

/* Contact form status */

.contact-status {
  margin-top: 0.4rem;
  font-size: 0.75rem;
  color: #9ca3af;
}

.contact-status.is-pending {
  color: #e5e7eb;
}

.contact-status.is-success {
  color: #bbf7d0;
}

.contact-status.is-error {
  color: #fecaca;
}

/* Footer */

footer {
  padding: 1.8rem 0 2.4rem;
  font-size: 0.78rem;
  color: #9ca3af;
  background: #020617;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-links a {
  color: #9ca3af;
  padding: 0.18rem 0;
}

.footer-links a:hover {
  color: #e5e7eb;
}

@media (max-width: 480px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-tag {
    align-self: flex-start;
  }
}

/* =========================================================
   Mobile UX: Nets table wraps + collapses into stacked cards
   ========================================================= */

/* Allow wrapping of Nets table cells on small screens */
@media (max-width: 640px) {
  .nets-layout .table-scroll {
    /* Table becomes cards; allow content to flow naturally */
    overflow: visible;
  }

  .nets-layout table thead {
    display: none;
  }

  .nets-layout table,
  .nets-layout table tbody,
  .nets-layout table tr,
  .nets-layout table td {
    display: block;
    width: 100%;
  }

  .nets-layout table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .nets-layout table tbody tr {
    margin: 0 0 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.7);
    border-radius: 1.1rem;
    overflow: hidden;
    background: rgba(15, 23, 42, 0.92);
  }

  .nets-layout table tbody tr:last-child {
    margin-bottom: 0;
  }

  .nets-layout table tbody td {
    /* Override the global nowrap table rule on mobile */
    white-space: normal;
    word-break: break-word;

    border-bottom: 1px solid rgba(31, 41, 55, 1);

    /* "Key : Value" layout without changing HTML */
    position: relative;
    padding: 0.55rem 0.85rem 0.55rem 8.1rem;
    min-height: 2.2rem;
  }

  .nets-layout table tbody td:last-child {
    border-bottom: none;
  }

  .nets-layout table tbody td::before {
    position: absolute;
    left: 0.85rem;
    top: 0.55rem;

    width: 7rem;
    content: "";
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #9ca3af;
    white-space: nowrap;
  }

  /* Column labels (matches your table column order) */
  .nets-layout table tbody td:nth-child(1)::before { content: "Net"; }
  .nets-layout table tbody td:nth-child(2)::before { content: "Day / Time"; }
  .nets-layout table tbody td:nth-child(3)::before { content: "Frequency"; }
  .nets-layout table tbody td:nth-child(4)::before { content: "Notes"; }

  /* Make badge fit nicely in card rows */
  .nets-layout table tbody td span.badge-soft {
    display: inline-flex;
    margin-top: 0.15rem;
  }
}


