:root {
  --bg: #050608;
  --bg-elevated: #0c0f14;
  --bg-card: rgba(12, 15, 20, 0.82);
  --text: #f4f6f8;
  --text-muted: #9aa3ad;
  --accent: #39ff14;
  --accent-dim: rgba(57, 255, 20, 0.14);
  --accent-glow: rgba(57, 255, 20, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(57, 255, 20, 0.35);
  --danger: #ff5c5c;
  --success: #39ff14;
  --radius: 14px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(57, 255, 20, 0.08), transparent 42%),
    radial-gradient(circle at 80% 70%, rgba(57, 255, 20, 0.04), transparent 35%),
    linear-gradient(180deg, #050608 0%, #070a0d 100%);
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 85%);
  transform: perspective(500px) rotateX(58deg) scale(1.4);
  transform-origin: center top;
  opacity: 0.45;
}

.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(57, 255, 20, 0.55) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.12;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 0.65rem;
  background: var(--accent-dim);
  color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
  font-weight: 800;
}

.brand small {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}

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

.btn-primary {
  background: var(--accent);
  color: #041004;
  box-shadow: 0 0 28px var(--accent-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(57, 255, 20, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--border-accent);
  box-shadow: 0 0 14px rgba(57, 255, 20, 0.1);
}

.btn-secondary:hover {
  background: var(--accent-dim);
  border-color: rgba(57, 255, 20, 0.55);
  box-shadow: 0 0 22px rgba(57, 255, 20, 0.2);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-danger {
  background: rgba(255, 92, 92, 0.12);
  color: #ffb4b4;
  border-color: rgba(255, 92, 92, 0.35);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-accent);
  color: var(--accent);
  background: var(--accent-dim);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  padding: 4.5rem 0 3rem;
  text-align: center;
}

.hero-glow-x {
  width: 5.5rem;
  height: 5.5rem;
  margin: 0 auto 1.5rem;
  display: grid;
  place-items: center;
  border-radius: 1.25rem;
  background: rgba(57, 255, 20, 0.08);
  color: var(--accent);
  font-size: 2.75rem;
  font-weight: 800;
  box-shadow:
    0 0 60px rgba(57, 255, 20, 0.25),
    inset 0 0 24px rgba(57, 255, 20, 0.08);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.section {
  padding: 3rem 0;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head .badge {
  margin-bottom: 0.75rem;
}

.section-head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  max-width: 42rem;
}

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

.card {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card-num {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.demo-link {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px dashed var(--border-accent);
  background: rgba(57, 255, 20, 0.04);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.demo-link code {
  font-size: 1.05rem;
  color: var(--accent);
}

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.92rem;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-shell {
  padding: 2rem 0 3rem;
}

.admin-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.panel {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}

.panel + .panel {
  margin-top: 1rem;
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--border-accent);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.12);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  padding: 0.85rem 0.65rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.status-pill.ok {
  color: #9dff8a;
  background: rgba(57, 255, 20, 0.12);
}

.status-pill.warn {
  color: #ffd38a;
  background: rgba(255, 211, 138, 0.12);
}

.status-pill.off {
  color: #ffb4b4;
  background: rgba(255, 92, 92, 0.12);
}

.flash {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.flash.error {
  color: #ffb4b4;
  border-color: rgba(255, 92, 92, 0.35);
  background: rgba(255, 92, 92, 0.08);
}

.flash.success {
  color: #9dff8a;
  border-color: rgba(57, 255, 20, 0.35);
  background: rgba(57, 255, 20, 0.08);
}

.login-wrap {
  min-height: calc(100vh - 4rem);
  display: grid;
  place-items: center;
}

.login-card {
  width: min(420px, 100%);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* —— Landing (exth.us home) —— */

.landing-page {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing-bg {
  background:
    radial-gradient(ellipse 90% 45% at 50% 100%, rgba(57, 255, 20, 0.12), transparent 55%),
    radial-gradient(circle at 70% 35%, rgba(57, 255, 20, 0.06), transparent 40%),
    linear-gradient(180deg, #030405 0%, #050608 45%, #06090c 100%);
}

.landing-bg::before,
.landing-bg::after {
  opacity: 0.22;
}

.landing-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='480' height='480' viewBox='0 0 480 480'%3E%3Cg fill='none' stroke='%2339FF14' stroke-opacity='0.22' stroke-width='0.75'%3E%3Cpath d='M40 120 L160 80 L280 140 L400 60'/%3E%3Cpath d='M80 280 L200 220 L320 300 L440 200'/%3E%3Cpath d='M120 400 L240 340 L360 380'/%3E%3Cpath d='M160 80 L200 220 M280 140 L320 300 M400 60 L440 200'/%3E%3Cpath d='M200 220 L240 340 M320 300 L360 380'/%3E%3C/g%3E%3Cg fill='%2339FF14' fill-opacity='0.55'%3E%3Ccircle cx='40' cy='120' r='2.5'/%3E%3Ccircle cx='160' cy='80' r='2.5'/%3E%3Ccircle cx='280' cy='140' r='2.5'/%3E%3Ccircle cx='400' cy='60' r='2.5'/%3E%3Ccircle cx='80' cy='280' r='2.5'/%3E%3Ccircle cx='200' cy='220' r='2.5'/%3E%3Ccircle cx='320' cy='300' r='2.5'/%3E%3Ccircle cx='440' cy='200' r='2.5'/%3E%3Ccircle cx='120' cy='400' r='2.5'/%3E%3Ccircle cx='240' cy='340' r='2.5'/%3E%3Ccircle cx='360' cy='380' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 520px 520px;
  background-position: 85% 25%;
  mask-image: radial-gradient(ellipse 70% 60% at 75% 30%, #000 15%, transparent 72%);
  opacity: 0.85;
  pointer-events: none;
}

/* Interactive hero layers (exthus.com-style, over existing mesh/grid) */
.landing-grid-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-out;
}

.landing-bg--ready .landing-grid-canvas,
.landing-bg--static .landing-grid-canvas {
  opacity: 0.78;
}

.landing-aurora {
  position: absolute;
  inset: -20% -10%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(57, 255, 20, 0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 25%, rgba(57, 255, 20, 0.05), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 90%, rgba(57, 255, 20, 0.04), transparent 55%);
  animation: landing-aurora-shift 20s ease-in-out infinite alternate;
  opacity: 0.75;
}

.landing-spotlight {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(
    ellipse 42% 38% at var(--landing-mx, 50%) var(--landing-my, 38%),
    rgba(57, 255, 20, 0.12),
    transparent 72%
  );
  opacity: 0.5;
  transition: opacity 0.45s ease;
}

.landing-bg--active .landing-spotlight {
  opacity: 0.95;
}

.landing-glow {
  position: absolute;
  top: -15%;
  left: 50%;
  z-index: 3;
  width: min(900px, 120vw);
  height: 55%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.1), transparent 65%);
  transform: translate3d(calc(-50% + (var(--landing-mx, 50%) - 50%) * 0.07), 0, 0);
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.landing-bg--interactive .landing-glow {
  transition: none;
}

.landing-noise {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.landing-bg--static .landing-aurora {
  animation: none;
}

.landing-bg--mobile .landing-aurora {
  animation: landing-aurora-shift 26s ease-in-out infinite alternate;
  opacity: 0.65;
}

.landing-bg--interactive .wordmark-x {
  will-change: transform;
}

@keyframes landing-aurora-shift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(2%, -1.5%) scale(1.03); }
}

@media (prefers-reduced-motion: reduce) {
  .landing-aurora {
    animation: none;
  }

  .landing-bg--interactive .wordmark-x {
    transform: none !important;
  }

  .landing-grid-canvas {
    transition: none;
    opacity: 0.65;
  }
}

.landing-main {
  --landing-space-1: clamp(0.75rem, 1.6vh, 1rem);
  --landing-space-2: clamp(1rem, 2.2vh, 1.35rem);
  --landing-space-3: clamp(1.35rem, 2.8vh, 1.75rem);
  --landing-space-4: clamp(1.75rem, 3.4vh, 2.25rem);
  --landing-space-5: clamp(2rem, 4vh, 2.75rem);
  position: relative;
  z-index: 1;
  flex: 1;
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 3.5vh, 2.5rem) 1rem clamp(1.5rem, 3vh, 2.25rem);
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.landing-main--compact {
  min-height: 100vh;
  padding-top: 2rem;
}

.landing-domain {
  margin: 0 0 var(--landing-space-2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(57, 255, 20, 0.55);
}

.landing-wordmark {
  margin: 0 0 var(--landing-space-3);
  font-size: clamp(2.75rem, 10vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}

.landing-wordmark--sm {
  font-size: clamp(2.4rem, 8vw, 3.5rem);
  margin-bottom: 1rem;
}

.wordmark-x {
  color: var(--accent);
  text-shadow: 0 0 48px var(--accent-glow);
}

.landing-headline {
  margin: 0 0 var(--landing-space-3);
  font-size: clamp(1.25rem, 3.5vw, 1.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(244, 246, 248, 0.92);
  line-height: 1.35;
}

.landing-headline strong {
  display: block;
  margin-top: 0.15rem;
  font-weight: 700;
  color: var(--accent);
}

.landing-lead {
  width: 100%;
  max-width: 44rem;
  margin: 0 0 var(--landing-space-4);
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.65;
}

.landing-cta-row {
  margin: 0 0 var(--landing-space-5);
  gap: 1rem;
}

.landing-cta {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.landing-cta-row .landing-cta {
  margin-bottom: 0;
}

.landing-services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem 1.5rem;
  width: 100%;
  max-width: 36rem;
  margin: 0 0 var(--landing-space-5);
  padding: 0.25rem 0;
}

.landing-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.landing-service-icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(57, 255, 20, 0.25));
}

.landing-service-icon svg {
  width: 100%;
  height: 100%;
}

.landing-service span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.landing-strip {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: clamp(1.55rem, 3.2vh, 1.85rem) clamp(1.65rem, 3.5vw, 2rem) clamp(1.5rem, 3vh, 1.8rem);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(8, 10, 14, 0.72);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem 2.75rem;
  text-align: left;
  align-items: center;
  justify-items: stretch;
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.04);
}

.landing-strip-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.landing-strip-globe {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--accent);
  opacity: 0.85;
}

.landing-strip-globe svg {
  width: 100%;
  height: 100%;
}

.landing-strip-title {
  margin: 0 0 0.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.landing-strip-tag,
.landing-strip-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.landing-strip-tag {
  color: rgba(244, 246, 248, 0.88);
  font-weight: 500;
}

.landing-strip-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.55;
  justify-self: stretch;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

.landing-strip-list li {
  position: relative;
  padding-left: 1.35rem;
}

.landing-strip-list li + li {
  margin-top: 0.35rem;
}

.landing-strip-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.landing-strip-list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.landing-strip-list a:hover {
  text-decoration: underline;
}

.landing-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin: var(--landing-space-5) 0 0;
  padding-top: var(--landing-space-2);
  font-size: 0.8rem;
  color: rgba(154, 163, 173, 0.75);
}

.landing-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
}

.landing-meta-legal {
  width: 100%;
  max-width: 52rem;
  margin: 0;
  padding-top: var(--landing-space-2);
  font-size: clamp(0.625rem, 1.6vw, 0.68rem);
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(154, 163, 173, 0.4);
  text-align: center;
  text-wrap: pretty;
}

.landing-meta-legal__sep {
  white-space: nowrap;
  opacity: 0.5;
}

.landing-meta-legal__entity {
  color: rgba(154, 163, 173, 0.52);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.landing-meta-legal__entity:hover {
  color: var(--accent);
  text-decoration: none;
  text-shadow: 0 0 12px var(--accent-glow);
}

.landing-meta-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s ease;
}

.landing-meta-links a .brand-x {
  color: inherit;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.landing-meta-links a:hover {
  color: var(--text);
  text-decoration: none;
}

.landing-meta-links a:hover .brand-x {
  color: var(--accent);
  text-shadow: 0 0 12px var(--accent-glow);
}

.landing-main .hero-actions {
  width: 100%;
}

.landing-main > .landing-lead,
.landing-main > .landing-strip,
.landing-main > .landing-services,
.landing-main > .landing-meta {
  width: 100%;
}

@media (min-width: 861px) and (min-height: 640px) {
  .landing-main {
    padding-block: clamp(1.75rem, 3.5vh, 2.75rem);
  }

  .landing-strip-list {
    justify-self: center;
  }
}

@media (min-width: 1200px) {
  .landing-main {
    --landing-space-2: 1.5rem;
    --landing-space-3: 2rem;
    --landing-space-4: 2.5rem;
    --landing-space-5: 2.85rem;
  }

  .landing-wordmark {
    margin-bottom: 2.5rem;
  }

  .landing-headline {
    margin-bottom: var(--landing-space-4);
  }

  .landing-services {
    gap: 1.35rem 1.75rem;
  }
}

@media (max-width: 860px) {
  .grid-3,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .landing-main {
    width: min(920px, calc(100% - 1.5rem));
  }

  .landing-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 18rem;
    gap: 1rem 0.75rem;
  }

  .landing-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
    padding: 1.25rem 1.2rem 1.3rem;
  }

  .landing-strip-brand {
    flex-direction: column;
    align-items: center;
  }

  .landing-strip-list {
    text-align: left;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
    justify-self: center;
  }
}
