:root {
  color-scheme: dark;
  --bg: #080812;
  --bg-lift: #121127;
  --panel: #111225;
  --panel-strong: #181938;
  --text: #f7f8ff;
  --muted: #b8bed8;
  --line: rgba(247, 248, 255, 0.14);
  --blue: #7292cb;
  --violet: #715ea9;
  --blue-soft: #9eb8ee;
  --violet-soft: #9b86dc;
  --red: #ff6b6b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --site-max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 22% 16%, rgba(114, 146, 203, 0.28), transparent 32rem),
    radial-gradient(circle at 82% 10%, rgba(113, 94, 169, 0.22), transparent 30rem),
    linear-gradient(135deg, #080812 0%, #111225 54%, #080812 100%);
  overflow-x: hidden;
}

body.signup-modal-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(247, 248, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 255, 0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 76%);
}

.noscript-content {
  width: min(920px, calc(100% - 48px));
  margin: 48px auto;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 18, 37, 0.9);
}

.noscript-content nav {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 24px 0;
}

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

button,
input,
select {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(247, 248, 255, 0.62);
  outline-offset: 4px;
}

button,
.button,
.signup-link,
.plan-action {
  cursor: pointer;
}

img,
video {
  max-width: 100%;
}

main,
.plans-page,
.about-page,
.reviews-page,
.help-page,
.document-page,
.landing-page,
.careers-page,
.trial-page,
.resources-page,
.resource-article-page,
.status-page,
.not-found-page {
  background: transparent;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 92px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  background: rgba(8, 8, 18, 0.82);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(100%, var(--site-max-width));
  margin: 0 auto;
}

.brand img {
  display: block;
  width: 174px;
  max-height: 66px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(114, 146, 203, 0.34));
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2.8vw, 34px);
  font-size: 0.9rem;
  font-weight: 900;
}

nav a,
nav summary,
.signup-link,
.button,
.address-row button,
.plan-card button,
.text-button,
.faq-tabs button,
.faq-list article > button,
.plan-action {
  transition: transform 160ms ease, color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

nav a {
  position: relative;
  padding: 8px 0;
  color: var(--muted);
}

nav summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
}

nav summary::-webkit-details-marker {
  display: none;
}

nav summary::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  order: 2;
  transition: transform 160ms ease;
}

.tools-menu[open] summary::before {
  transform: rotate(180deg);
}

nav a::after,
nav summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--violet-soft));
  opacity: 0;
  transform: scaleX(0.42);
  transition: opacity 160ms ease, transform 160ms ease;
}

nav a.active,
nav a:hover,
nav summary:hover,
.tools-menu.active summary,
footer a:hover,
.advanced-link:hover,
.text-button:hover {
  color: var(--blue-soft);
}

nav a.active::after,
nav a:hover::after,
nav summary:hover::after,
.tools-menu.active summary::after,
.tools-menu[open] summary::after {
  opacity: 1;
  transform: scaleX(1);
}

.tools-menu {
  position: relative;
}

.tools-menu-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 18, 0.94);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.tools-menu:not([open]) .tools-menu-panel {
  display: none;
}

.tools-menu-panel a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
}

.tools-menu-panel a::after {
  display: none;
}

.tools-menu-panel a:hover,
.tools-menu-panel a.active {
  color: var(--text);
  background: rgba(158, 184, 238, 0.12);
}

.signup-link,
.button,
.address-row button,
.signup-actions button,
.signup-success button,
.plan-card button,
.plan-action {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  color: #080812;
  background: linear-gradient(135deg, var(--blue), var(--violet-soft));
  font-size: 0.94rem;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(247, 248, 255, 0.5);
  box-shadow: 0 12px 34px rgba(114, 146, 203, 0.28);
}

.signup-link::before,
.button::before,
.address-row button::before,
.signup-actions button::before,
.signup-success button::before,
.plan-card button::before,
.plan-action::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(247, 248, 255, 0.22);
  opacity: 0;
  transition: opacity 160ms ease;
}

.signup-link {
  min-width: 158px;
}

.button:hover,
.address-row button:hover,
.signup-actions button:hover,
.signup-success button:hover,
.plan-card button:hover,
.signup-link:hover,
.plan-action:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(158, 184, 238, 0.22),
    0 18px 44px rgba(114, 146, 203, 0.34);
}

.button:hover::before,
.address-row button:hover::before,
.signup-actions button:hover::before,
.signup-success button:hover::before,
.plan-card button:hover::before,
.signup-link:hover::before,
.plan-action:hover::before {
  opacity: 1;
}

.secondary-button {
  color: var(--text);
  background: rgba(17, 18, 37, 0.9);
  border: 1px solid var(--line);
}

.shadow {
  box-shadow:
    0 0 0 1px rgba(158, 184, 238, 0.22),
    0 14px 38px rgba(114, 146, 203, 0.24);
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  color: var(--text);
  font-size: clamp(2.25rem, 5.4vw, 4.6rem);
  line-height: 0.98;
  text-shadow:
    0 0 18px rgba(247, 248, 255, 0.42),
    0 0 46px rgba(158, 184, 238, 0.24);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.04rem;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-soft);
  font-size: 0.9rem;
  font-weight: 900;
  text-align: inherit;
  text-transform: uppercase;
}

.hero,
.plans-hero,
.about-hero,
.reviews-hero,
.help-hero,
.landing-hero {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background-size: cover;
  background-position: center;
}

.hero {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding: 44px clamp(16px, 4vw, 56px);
  background: var(--bg);
}

.hero::before,
.plans-hero::before,
.about-hero::before,
.reviews-hero::before,
.help-hero::before,
.landing-hero::before,
.tech-section::before,
.dark-feature-stack::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 12%, rgba(114, 146, 203, 0.26), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(113, 94, 169, 0.22), transparent 30rem),
    linear-gradient(90deg, rgba(8, 8, 18, 0.82), rgba(8, 8, 18, 0.48) 54%, rgba(8, 8, 18, 0.72));
}

.hero::after,
.plans-hero::after,
.about-hero::after,
.reviews-hero::after,
.help-hero::after,
.landing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero::before {
  z-index: 1;
  background:
    radial-gradient(circle at 18% 12%, rgba(114, 146, 203, 0.12), transparent 30rem),
    linear-gradient(90deg, rgba(8, 8, 18, 0.48), rgba(8, 8, 18, 0.2) 56%, rgba(8, 8, 18, 0.42));
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  min-height: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
  padding: clamp(26px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 18, 37, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-card::before,
.about-hero-card::before,
.landing-hero > div::before,
.signup-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(247, 248, 255, 0.11), transparent 36%, rgba(158, 184, 238, 0.06));
  mask-image: linear-gradient(#000, transparent 72%);
}

.hero p {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
}

.community,
.testimonial,
.install-process,
.support-split,
.tech-section,
.split-section,
.image-feature,
.job-card,
footer {
  display: grid;
}

.community {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 18, 37, 0.48);
}

.community,
.promise-band,
.testimonial,
.feature-grid,
.reviews-grid,
.status-callout,
.tech-section,
footer {
  display: block;
}

.community-inner,
.promise-band-inner,
.testimonial-inner,
.feature-grid-inner,
.reviews-grid-inner,
.status-callout-inner,
.tech-section-inner,
.footer-inner {
  width: min(100%, var(--site-max-width));
  margin: 0 auto;
}

.community-inner {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.copy-block {
  padding: clamp(32px, 5vw, 58px) clamp(24px, 5vw, 64px);
}

.copy-block p,
.process-copy p,
.support-split p,
.tech-copy p,
.more-reviews p,
.document-body,
.image-feature p,
.job-card p,
.landing-hero p:last-child,
.trial-hero p,
.fine-print p {
  font-size: 1.05rem;
}

.copy-block a,
.advanced-link,
.document-body a {
  color: var(--blue-soft);
  font-weight: 900;
}

.copy-block a,
.advanced-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
}

.community img,
.support-split img,
.gallery-strip img,
.job-card img,
.image-feature img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.community img {
  height: 100%;
  min-height: 354px;
  border-radius: 0;
}

.promise-band {
  background: var(--line);
}

.promise-band-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.promise-band h2 {
  margin: 0;
  padding: clamp(32px, 5vw, 54px) 24px;
  color: var(--text);
  background: rgba(8, 8, 18, 0.68);
  text-align: center;
}

.signup,
.plan-card-section,
.document-hero,
.simple-hero,
.signup-heading,
.more-reviews,
.service-area-section,
.resource-preview,
.resources-hero,
.article-hero,
.related-resources,
.resource-cta {
  padding: clamp(44px, 6vw, 72px) 24px;
}

.signup {
  background:
    radial-gradient(circle at 12% 20%, rgba(114, 146, 203, 0.18), transparent 28rem),
    rgba(8, 8, 18, 0.26);
}

.signup-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(4, 5, 12, 0.72);
  backdrop-filter: blur(16px);
}

.signup-modal {
  position: relative;
  width: min(980px, 100%);
  max-height: min(92vh, 980px);
  overflow: auto;
  border: 1px solid rgba(247, 248, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 0%, rgba(114, 146, 203, 0.22), transparent 28rem),
    rgba(11, 12, 25, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.52);
}

.signup-modal .signup {
  padding: 0;
  background: transparent;
}

.signup-modal .signup-panel {
  width: 100%;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.signup-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(8, 8, 18, 0.78);
  cursor: pointer;
}

.signup-modal-close span {
  transform: translateY(-1px);
  font-size: 1.1rem;
  font-weight: 900;
}

.signup-dock {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  width: min(610px, calc(100% - 32px));
  padding: 14px;
  border: 1px solid rgba(247, 248, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(158, 184, 238, 0.96), rgba(155, 134, 220, 0.94)),
    var(--blue-soft);
  box-shadow:
    0 0 0 1px rgba(8, 8, 18, 0.34),
    0 20px 60px rgba(114, 146, 203, 0.42);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.signup-dock strong,
.signup-dock span {
  display: block;
  color: #080812;
}

.signup-dock strong {
  margin-bottom: 2px;
  font-weight: 900;
}

.signup-dock span {
  font-size: 0.9rem;
  font-weight: 800;
  opacity: 0.78;
}

.signup-dock .button {
  min-height: 40px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(8, 8, 18, 0.9);
  text-shadow: none;
  box-shadow: 0 12px 30px rgba(8, 8, 18, 0.28);
}

.signup-dock-close {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(8, 8, 18, 0.18);
  border-radius: 999px;
  color: #080812;
  background: rgba(247, 248, 255, 0.32);
  cursor: pointer;
}

.signup-dock-close:hover {
  background: rgba(247, 248, 255, 0.48);
}

.signup-dock-close span {
  color: inherit;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  opacity: 1;
}

.signup-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  width: min(980px, calc(100% - 48px));
  margin: clamp(44px, 6vw, 72px) auto;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(114, 146, 203, 0.22), rgba(155, 134, 220, 0.14)),
    rgba(17, 18, 37, 0.78);
  box-shadow: var(--shadow);
}

.signup-cta h2 {
  margin-bottom: 10px;
}

.signup-cta p:last-child {
  margin-bottom: 0;
}

.signup-panel,
.review-card,
.pricing-grid article,
.spec-list,
.router-card,
.about-values article,
.review-tile,
.contact-form,
.copy-panel,
.three-up article,
.quote-band,
.fine-print,
.recent-surface,
.resource-card,
.featured-resource article,
.article-sidebar,
.article-body,
.resource-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 18, 37, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.signup-panel {
  position: relative;
  width: min(920px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
}

.signup-titlebar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.signup-titlebar h2 {
  margin-bottom: 18px;
}

.signup-titlebar span {
  min-width: 54px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(8, 8, 18, 0.42);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: center;
}

.signup-step {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.signup-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.signup-actions .secondary-button {
  color: var(--text);
}

.signup-step button:disabled,
.address-row button:disabled {
  cursor: progress;
  opacity: 0.68;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--muted);
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--blue-soft);
}

.signup-success {
  justify-items: start;
}

.signup h2,
.signup .eyebrow,
.more-reviews,
.trial-hero,
.signup-heading,
.gallery-strip,
.benefit-list h2 {
  text-align: center;
}

.progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(247, 248, 255, 0.08);
  overflow: hidden;
}

.progress span {
  display: block;
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--violet-soft));
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 900;
}

.address-row {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(8, 8, 18, 0.72);
  outline: none;
}

textarea {
  min-height: 150px;
  padding: 14px;
  resize: vertical;
  font: inherit;
  line-height: 1.5;
}

input::placeholder,
textarea::placeholder {
  color: rgba(184, 190, 216, 0.72);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(158, 184, 238, 0.72);
  box-shadow: 0 0 0 3px rgba(114, 146, 203, 0.2);
}

.text-button {
  margin-top: 16px;
  border: 0;
  background: transparent;
  color: var(--blue-soft);
  font-weight: 900;
  cursor: pointer;
}

.notice {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 6px;
  color: var(--text);
  background: rgba(158, 184, 238, 0.12);
}

.more-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.more-reviews .more-actions {
  margin-bottom: 18px;
}

.service-area-section {
  display: grid;
  justify-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 20%, rgba(114, 146, 203, 0.18), transparent 28rem),
    rgba(8, 8, 18, 0.5);
  text-align: center;
}

.service-area-section h2,
.service-area-section p {
  width: min(850px, 100%);
}

.service-area-section p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.service-area-section ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.service-area-section li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(17, 18, 37, 0.78);
  font-size: 0.9rem;
  font-weight: 900;
}

.status-page {
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 78% 12%, rgba(114, 146, 203, 0.08), transparent 30rem),
    #070709;
}

.status-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 104px) 0 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.status-hero.compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 28px 0 26px;
}

.status-page-kicker {
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid rgba(247, 248, 255, 0.16);
  border-radius: 999px;
  background: rgba(8, 8, 18, 0.72);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
}

.status-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.status-hero p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.14rem;
}

.status-summary-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(114, 146, 203, 0.18), rgba(155, 134, 220, 0.12)),
    rgba(17, 18, 37, 0.78);
  box-shadow: var(--shadow);
}

.status-summary-card span,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(247, 248, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-summary-card span::before,
.status-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--muted);
  box-shadow: 0 0 18px rgba(184, 190, 216, 0.42);
}

.status-summary-card h2 {
  margin: 22px 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
}

.status-summary-card p {
  margin-bottom: 0;
}

.status-operational span::before,
.status-operational::before {
  background: #55d488;
  box-shadow: 0 0 18px rgba(85, 212, 136, 0.48);
}

.status-degraded span::before,
.status-degraded::before {
  background: #ffd166;
  box-shadow: 0 0 18px rgba(255, 209, 102, 0.48);
}

.status-maintenance span::before,
.status-maintenance::before {
  background: #56cfe1;
  box-shadow: 0 0 18px rgba(86, 207, 225, 0.48);
}

.status-down span::before,
.status-down::before {
  background: var(--red);
  box-shadow: 0 0 18px rgba(255, 107, 107, 0.48);
}

.status-metrics,
.status-board {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

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

.status-metrics article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 18, 37, 0.72);
}

.status-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-soft);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1;
}

.status-metrics p {
  margin: 0;
  font-weight: 900;
}

.status-board {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 18, 37, 0.78);
}

.status-overview {
  width: min(1180px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border: 1px solid rgba(247, 248, 255, 0.14);
  border-radius: 22px;
  background: rgba(9, 9, 12, 0.92);
}

.status-overview h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.status-overview p {
  grid-column: 2;
  margin: -8px 0 0;
  font-size: 0.95rem;
}

.status-glow {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #6bb69e;
  box-shadow:
    0 0 0 7px rgba(107, 182, 158, 0.14),
    0 0 28px rgba(107, 182, 158, 0.42);
}

.status-overview.status-degraded .status-glow {
  background: #ffd166;
  box-shadow:
    0 0 0 7px rgba(255, 209, 102, 0.14),
    0 0 28px rgba(255, 209, 102, 0.42);
}

.status-overview.status-maintenance .status-glow {
  background: #56cfe1;
  box-shadow:
    0 0 0 7px rgba(86, 207, 225, 0.14),
    0 0 28px rgba(86, 207, 225, 0.42);
}

.status-overview.status-down .status-glow {
  background: var(--red);
  box-shadow:
    0 0 0 7px rgba(255, 107, 107, 0.14),
    0 0 28px rgba(255, 107, 107, 0.42);
}

.status-events {
  width: min(1180px, calc(100% - 48px));
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.status-event-list {
  display: grid;
  gap: 12px;
}

.status-event-list article {
  padding: 16px;
  border: 1px solid rgba(247, 248, 255, 0.14);
  border-radius: 8px;
  background: rgba(247, 248, 255, 0.06);
}

.status-event-list article span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #56cfe1;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.status-event-list article h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.status-event-list article p,
.status-event-list article small {
  margin: 0;
  color: var(--muted);
}

.status-map-card {
  width: min(1180px, calc(100% - 48px));
  margin: 16px auto 0;
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(247, 248, 255, 0.13);
  border-radius: 22px;
  background: rgba(9, 9, 12, 0.92);
}

.status-map-copy {
  display: grid;
  align-content: center;
}

.status-map-copy h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.status-map-copy p:last-child {
  margin-bottom: 0;
}

.status-map-shell {
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 255, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 28%, rgba(107, 182, 158, 0.2), transparent 18rem),
    radial-gradient(circle at 70% 65%, rgba(114, 146, 203, 0.13), transparent 22rem),
    #070709;
}

.status-google-map,
.status-map-fallback {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.status-map-fallback {
  position: relative;
  display: grid;
  place-items: center;
}

.status-map-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background:
    linear-gradient(rgba(247, 248, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.status-map-pin {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--text);
  border-radius: 999px;
  color: #080812;
  background: #6bb69e;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.status-map-pin.status-degraded {
  background: #ffd166;
}

.status-map-pin.status-maintenance {
  background: #56cfe1;
}

.status-map-pin.status-down {
  background: #ff3f57;
  color: var(--text);
}

.status-map-pin.status-unknown {
  background: var(--muted);
}

.status-map-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  padding: 10px 12px;
  border: 1px solid rgba(247, 248, 255, 0.14);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(8, 8, 18, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.status-board.modern {
  margin-top: 16px;
  padding: 0;
  overflow: hidden;
  border-color: rgba(247, 248, 255, 0.13);
  border-radius: 22px;
  background: rgba(9, 9, 12, 0.92);
}

.status-board.modern .status-board-heading {
  margin: 0;
  padding: 28px 28px 8px;
}

.status-monitor-list {
  display: grid;
}

.status-monitor-card {
  display: grid;
  gap: 22px;
  width: 100%;
  padding: 28px 16px 26px;
  border: 0;
  border-top: 1px solid rgba(247, 248, 255, 0.12);
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.status-monitor-card:hover {
  background: rgba(247, 248, 255, 0.035);
}

.status-monitor-top {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 0 0;
}

.status-monitor-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--text);
  background: rgba(247, 248, 255, 0.12);
  font-size: 0.84rem;
  font-weight: 900;
}

.status-monitor-card h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 1rem;
}

.status-monitor-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.status-monitor-score {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: end;
  align-items: center;
  gap: 4px 10px;
  color: var(--text);
}

.status-monitor-score strong {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1;
}

.status-monitor-score small {
  grid-column: 2;
  justify-self: end;
  color: var(--muted);
  font-weight: 900;
}

.status-check-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid #6bb69e;
  border-radius: 999px;
}

.status-check-icon::before {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid #6bb69e;
  border-bottom: 2px solid #6bb69e;
  transform: rotate(45deg) translate(-1px, -1px);
}

.status-check-icon.status-degraded {
  border-color: #ffd166;
}

.status-check-icon.status-degraded::before {
  width: 8px;
  height: 2px;
  border: 0;
  background: #ffd166;
  transform: none;
}

.status-check-icon.status-maintenance {
  border-color: #56cfe1;
}

.status-check-icon.status-maintenance::before {
  width: 8px;
  height: 8px;
  border: 2px solid #56cfe1;
  border-radius: 999px;
  background: transparent;
  transform: none;
}

.status-check-icon.status-down {
  border-color: var(--red);
}

.status-check-icon.status-down::before {
  width: 9px;
  height: 2px;
  border: 0;
  background: var(--red);
  transform: rotate(45deg);
  box-shadow: 0 0 0 0 var(--red);
}

.status-uptime-strip {
  height: 40px;
  margin: 0 0;
  border-radius: 8px;
  background: #6bb69e;
  overflow: hidden;
}

.status-uptime-strip.status-down {
  background: var(--red);
}

.status-uptime-strip.status-degraded {
  background: #ffd166;
}

.status-uptime-strip.status-unknown {
  background: rgba(247, 248, 255, 0.12);
}

.status-uptime-strip.segmented {
  display: grid;
  grid-template-columns: repeat(72, 1fr);
  gap: 1px;
  background: rgba(247, 248, 255, 0.08);
}

.status-uptime-strip.segmented span,
.status-minute-row span,
.status-modal-legend i {
  display: block;
}

.status-uptime-strip .up,
.status-minute-row .up,
.status-modal-legend .up {
  background: #6bb69e;
}

.status-uptime-strip .degraded,
.status-minute-row .degraded,
.status-modal-legend .degraded {
  background: #ffd166;
}

.status-uptime-strip .maintenance,
.status-minute-row .maintenance,
.status-modal-legend .maintenance {
  background: #56cfe1;
}

.status-uptime-strip .down,
.status-minute-row .down,
.status-modal-legend .down {
  background: #ff3f57;
}

.status-uptime-strip .unknown,
.status-minute-row .unknown,
.status-modal-legend .unknown {
  background: rgba(247, 248, 255, 0.16);
}

.status-monitor-dates {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.status-board-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.status-board-heading h2 {
  margin-bottom: 0;
}

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

.status-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.status-table th,
.status-table td {
  padding: 16px 14px;
  border-top: 1px solid rgba(247, 248, 255, 0.1);
  text-align: left;
  vertical-align: middle;
}

.status-table th {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-table td {
  color: var(--text);
}

.status-table td:first-child {
  display: grid;
  gap: 4px;
}

.status-table td span,
.status-table td small {
  color: var(--muted);
  font-size: 0.88rem;
}

.status-table .status-pill {
  color: var(--text);
  cursor: pointer;
}

.status-table button.status-pill {
  font: inherit;
}

.status-table button.status-pill:hover,
.status-table button.status-pill[aria-expanded="true"] {
  border-color: rgba(158, 184, 238, 0.52);
  background: rgba(158, 184, 238, 0.14);
}

.status-history-row td {
  padding: 0 14px 18px;
  border-top: 0;
}

.status-history-panel {
  margin-top: 4px;
  padding: 22px;
  border: 1px solid rgba(247, 248, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 0%, rgba(158, 184, 238, 0.12), transparent 24rem),
    rgba(8, 8, 18, 0.5);
}

.status-history-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.status-history-heading h3 {
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.status-history-stats,
.status-chart-stats,
.status-chart-axis {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.status-history-stats {
  justify-content: flex-end;
}

.status-history-stats span,
.status-chart-stats span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(17, 18, 37, 0.58);
  font-size: 0.82rem;
  font-weight: 900;
}

.status-chart {
  display: grid;
  gap: 12px;
}

.status-chart-note {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
}

.status-chart svg {
  width: 100%;
  height: 260px;
  display: block;
  overflow: visible;
}

.status-chart-grid {
  stroke: rgba(247, 248, 255, 0.08);
  stroke-width: 1;
}

.status-chart-axis-line {
  stroke: rgba(247, 248, 255, 0.2);
  stroke-width: 1.5;
}

.status-chart text {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.status-chart-line {
  fill: none;
  stroke: var(--blue-soft);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(158, 184, 238, 0.28));
}

.status-chart-area {
  fill: rgba(158, 184, 238, 0.12);
  stroke: none;
}

.status-chart circle {
  fill: var(--text);
  stroke: var(--blue);
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(158, 184, 238, 0.32));
}

.status-chart-axis {
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.status-chart-empty {
  padding: 24px;
  border: 1px dashed rgba(247, 248, 255, 0.18);
  border-radius: 8px;
  text-align: center;
}

.status-chart-empty p {
  margin-bottom: 0;
}

.status-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 36px);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.status-modal {
  position: relative;
  width: min(760px, 100%);
  max-height: min(90vh, 760px);
  overflow: auto;
  padding: 30px 24px 24px;
  border: 1px solid rgba(247, 248, 255, 0.16);
  border-radius: 22px;
  color: var(--text);
  background: rgba(9, 9, 12, 0.98);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.62);
}

.status-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 1.35rem;
  cursor: pointer;
}

.status-modal-close:hover {
  color: var(--text);
  background: rgba(247, 248, 255, 0.08);
}

.status-modal-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding-right: 36px;
}

.status-modal-heading h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.status-modal-heading p {
  margin: 0;
  font-size: 0.92rem;
}

.status-modal-heading strong {
  color: var(--text);
  font-size: 1.1rem;
}

.status-modal-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 18px 0;
  padding: 8px;
  border: 1px solid rgba(247, 248, 255, 0.14);
  border-radius: 22px;
}

.status-modal-tabs button {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.status-modal-tabs button.active {
  border-color: rgba(247, 248, 255, 0.42);
  color: var(--text);
  background: rgba(247, 248, 255, 0.06);
}

.status-modal-panel {
  display: grid;
  gap: 18px;
  padding: 18px 16px 10px;
  border: 1px solid rgba(247, 248, 255, 0.12);
  border-radius: 20px;
}

.status-site-map-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(247, 248, 255, 0.1);
  border-radius: 16px;
  background: rgba(247, 248, 255, 0.035);
}

.status-site-map-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
}

.status-site-map-shell {
  min-height: 160px;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 255, 0.1);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 45%, rgba(107, 182, 158, 0.22), transparent 8rem),
    #070709;
}

.status-site-google-map,
.status-site-map-fallback {
  width: 100%;
  height: 100%;
  min-height: 160px;
}

.status-site-map-fallback {
  position: relative;
  display: grid;
  place-items: center;
}

.status-site-map-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    linear-gradient(rgba(247, 248, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.status-site-map-fallback .status-map-pin {
  position: relative;
  left: auto;
  top: auto;
}

.status-site-map-fallback small,
.status-map-missing {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 1;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-align: center;
}

.status-map-missing {
  position: static;
  align-self: center;
  margin: 0;
  padding: 18px;
  border: 1px dashed rgba(247, 248, 255, 0.16);
  border-radius: 12px;
}

.status-modal-subhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.status-modal-subhead h3 {
  margin: 0;
  color: var(--text);
}

.status-modal-subhead span {
  color: var(--text);
  font-weight: 900;
}

.status-minute-grid {
  display: grid;
  gap: 14px;
}

.status-minute-row {
  display: grid;
  gap: 6px;
}

.status-minute-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.status-minute-row div {
  display: grid;
  grid-template-columns: repeat(36, 1fr);
  gap: 2px;
}

.status-minute-row span {
  aspect-ratio: 1;
  min-height: 8px;
}

.status-modal-legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.status-modal-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.status-modal-legend i {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.resource-preview,
.resources-page,
.resource-article-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(114, 146, 203, 0.14), transparent 30rem),
    rgba(8, 8, 18, 0.22);
}

.resource-preview {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.resource-preview-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.resource-preview-heading h2 {
  margin-bottom: 0;
}

.resources-hero,
.article-hero {
  position: relative;
  width: 100%;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(114, 146, 203, 0.18), rgba(155, 134, 220, 0.12)),
    rgba(17, 18, 37, 0.44);
}

.article-hero {
  padding: clamp(44px, 6vw, 72px) 24px;
}

.resources-hero > div {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.article-hero-grid {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
}

.article-hero-inner {
  grid-column: 2;
  width: min(760px, 100%);
}

.article-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.resources-hero p:last-child,
.article-hero-inner > p:not(.eyebrow) {
  max-width: 760px;
  font-size: 1.15rem;
}

.article-hero-inner h1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4vw, 4.2rem);
  line-height: 1.02;
  text-align: center;
}

.article-hero-inner .eyebrow {
  text-align: center;
}

.article-hero-inner > p:not(.eyebrow),
.article-meta {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  text-align: center;
}

.featured-resource {
  width: min(1120px, calc(100% - 48px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
}

.featured-resource article {
  padding: clamp(28px, 4vw, 42px);
}

.featured-resource h2 {
  max-width: 820px;
}

.resource-grid {
  width: min(1120px, calc(100% - 48px));
  margin: 38px auto 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-grid.compact {
  width: 100%;
  margin: 0;
}

.resource-card {
  min-height: 300px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 24px;
}

.resource-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.18;
}

.resource-card p {
  margin-bottom: 0;
}

.resource-card-footer,
.resource-meta,
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 900;
}

.resource-card-footer {
  justify-content: space-between;
}

.resource-card-footer a,
.article-back {
  color: var(--blue-soft);
  font-weight: 900;
}

.resource-cta {
  width: min(960px, calc(100% - 48px));
  margin: 0 auto 72px;
  text-align: center;
}

.resource-cta h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.resource-article {
  display: block;
}

.article-back {
  display: inline-flex;
  margin-bottom: 20px;
}

.article-layout {
  width: min(1180px, calc(100% - 48px));
  margin: 46px auto 70px;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.article-sidebar {
  position: sticky;
  top: 124px;
  padding: 24px;
}

.article-sidebar h2,
.article-body h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.article-sidebar ul,
.article-body ul {
  padding-left: 20px;
}

.sidebar-card {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.article-body {
  padding: clamp(28px, 4vw, 46px);
}

.article-body section + section {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.article-body p,
.article-body li {
  font-size: 1.05rem;
}

.article-faq article {
  padding: 18px 0;
  border-bottom: 1px solid rgba(247, 248, 255, 0.1);
}

.article-faq article:last-child {
  border-bottom: 0;
}

.article-links {
  text-align: center;
}

.related-resources {
  border-top: 1px solid var(--line);
  text-align: center;
}

.related-resources > h2 {
  margin-bottom: 24px;
}

.testimonial {
  background: rgba(17, 18, 37, 0.36);
}

.testimonial-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  padding: clamp(44px, 6vw, 70px) clamp(24px, 5vw, 64px);
}

.quote {
  max-width: 870px;
  color: var(--text);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.32;
}

.review-card {
  align-self: center;
  padding: 26px;
}

.review-card p:last-child,
.copy-panel p:last-child,
.contact-form p:last-child,
.fine-print p:last-child {
  margin-bottom: 0;
}

.feature-grid {
  background: var(--line);
}

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

.feature {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  background: var(--panel);
}

.feature,
.plan-card,
.review-tile,
.about-values article,
.three-up article,
.image-feature,
.router-card,
.pricing-grid article,
.spec-list,
.contact-form,
.copy-panel,
.fine-print,
.resource-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.feature:hover,
.plan-card:hover,
.review-tile:hover,
.about-values article:hover,
.three-up article:hover,
.image-feature:hover,
.router-card:hover,
.pricing-grid article:hover,
.contact-form:hover,
.copy-panel:hover,
.resource-card:hover {
  transform: translateY(-2px);
  border-color: rgba(158, 184, 238, 0.32);
  box-shadow:
    0 0 0 1px rgba(158, 184, 238, 0.1),
    0 28px 90px rgba(0, 0, 0, 0.38);
}

.feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 18, 0.34), rgba(8, 8, 18, 0.82));
}

.feature-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  opacity: 0.42;
  transform: scale(1.12);
}

.feature > *:not(.feature-bg) {
  position: relative;
  z-index: 1;
}

.feature h2,
.feature strong {
  color: var(--text);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.feature p {
  font-size: 1.05rem;
}

.feature strong {
  display: block;
  margin-top: 20px;
  font-size: 1.55rem;
}

.feature-images {
  display: flex;
  gap: 22px;
  align-items: flex-end;
  justify-content: center;
  margin-top: 24px;
}

.feature-images img {
  max-height: 112px;
  max-width: calc(50% - 11px);
  width: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42));
}

.feature-images img:only-child {
  max-width: 100%;
}

footer {
  padding: 48px clamp(24px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 18, 0.78);
  color: var(--text);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
}

footer ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  color: var(--muted);
}

.plans-hero,
.reviews-hero,
.help-hero,
.landing-hero {
  min-height: 360px;
  display: flex;
  align-items: center;
  padding: 48px clamp(24px, 6vw, 80px);
}

.plans-hero-copy,
.landing-hero > div,
.reviews-hero-copy,
.reviews-hero h1,
.help-hero h1 {
  position: relative;
  z-index: 1;
}

.plans-hero-copy {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.reviews-hero-copy {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.plans-hero h1,
.reviews-hero h1,
.help-hero h1 {
  color: var(--text);
}

.plan-cards,
.pricing-grid,
.router-grid,
.transition-grid,
.about-values,
.reviews-grid,
.selectors,
.three-up,
.tech-grid {
  display: grid;
  gap: 18px;
}

.plan-cards {
  width: min(980px, 100%);
  margin: -82px auto 0;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  position: relative;
  z-index: 2;
}

.preview-plans .plan-cards {
  margin-top: 0;
}

.plan-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 380px;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(114, 146, 203, 0.24), rgba(17, 18, 37, 0.78) 38%),
    rgba(17, 18, 37, 0.78);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(158, 184, 238, 0.2), transparent 48%);
  opacity: 0.75;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card.selected {
  border-color: rgba(158, 184, 238, 0.76);
  box-shadow:
    0 0 0 1px rgba(158, 184, 238, 0.2),
    var(--shadow);
}

.plan-card h2 {
  margin: 0;
  color: var(--text);
}

.plan-kicker,
.up-to {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.plan-price {
  display: inline-block;
  min-width: 104px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(8, 8, 18, 0.42);
  font-weight: 900;
}

.plan-price:hover {
  border-color: rgba(158, 184, 238, 0.54);
  color: var(--text);
}

.plan-card strong {
  color: var(--text);
  font-size: 1.65rem;
}

.plan-card img {
  height: 82px;
  width: auto;
  align-self: end;
  object-fit: contain;
}

.plan-card ul {
  width: 100%;
  margin: 4px 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
}

.plan-card li {
  padding: 7px 0;
  border-top: 1px solid rgba(247, 248, 255, 0.1);
}

.transition-plan {
  width: min(980px, calc(100% - 48px));
  margin: 36px auto 52px;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(114, 146, 203, 0.24), rgba(155, 134, 220, 0.18));
  box-shadow: var(--shadow);
  text-align: center;
}

.transition-plan h2 {
  max-width: 760px;
  margin: 0 auto 28px;
}

.transition-grid {
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
}

.transition-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 18, 0.32);
}

.transition-grid article,
.install-process li {
  box-shadow: inset 0 1px 0 rgba(247, 248, 255, 0.05);
}

.selectors,
.pricing-grid {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  margin: 24px 0 6px;
}

.pricing-grid {
  margin-top: 30px;
}

.pricing-grid article,
.spec-list,
.router-card {
  padding: 22px;
}

.pricing-grid h3,
.router-card h3,
.install-process h3,
.document-section h2,
.contact-form h2,
.copy-panel h2,
.three-up h3,
.job-card h2,
.fine-print h2 {
  color: var(--blue-soft);
}

.line-item {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid rgba(247, 248, 255, 0.1);
}

.line-item span:last-child {
  color: var(--text);
  font-weight: 900;
  text-align: right;
}

.line-item.total {
  border-bottom: 0;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 900;
}

.spec-section,
.router-specs,
.install-process,
.support-split,
.faq-section,
.split-section,
.three-up,
.job-card,
.quote-band,
.document-body,
.trial-hero,
.email-capture,
.gallery-strip,
.fine-print {
  width: min(1120px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.spec-section,
.router-specs,
.install-process {
  padding: 54px 0;
}

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

.router-card {
  grid-template-columns: 130px 1fr;
  align-items: start;
}

.router-card img {
  max-width: 120px;
  max-height: 178px;
  justify-self: center;
  object-fit: contain;
}

.advanced-link {
  display: inline-flex;
  margin-top: 22px;
}

.install-process {
  grid-template-columns: 0.74fr 1.26fr;
  gap: 42px;
}

.process-copy {
  position: sticky;
  top: 124px;
  align-self: start;
}

.install-process ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: install-step;
}

.install-process li {
  position: relative;
  padding: 22px 22px 22px 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 18, 37, 0.78);
  counter-increment: install-step;
}

.install-process li::before {
  content: counter(install-step);
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #080812;
  background: linear-gradient(135deg, var(--blue), var(--violet-soft));
  font-weight: 900;
}

.about-hero {
  min-height: 464px;
  padding: 32px clamp(16px, 4vw, 52px);
  display: flex;
  align-items: center;
}

.about-hero-card,
.landing-hero > div {
  position: relative;
  z-index: 1;
  width: min(1140px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 18, 37, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.about-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.12;
}

.risk-free {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.risk-free p {
  margin-bottom: 0;
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  line-height: 1.4;
}

.about-values {
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 32px));
  margin: 20px auto 0;
}

.about-values article {
  min-height: 224px;
  padding: 28px 24px;
  text-align: center;
}

.value-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 999px;
  color: #080812;
  background: linear-gradient(135deg, var(--blue), var(--violet-soft));
  font-weight: 900;
}

.about-values h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.28;
}

.support-split {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 46px;
  align-items: center;
  margin-top: 44px;
  margin-bottom: 58px;
}

.support-split img {
  min-height: 420px;
  box-shadow: var(--shadow);
}

.tech-section {
  position: relative;
  padding: 64px clamp(24px, 6vw, 80px);
  background-size: cover;
  background-position: center;
}

.tech-section-inner {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: center;
}

.tech-section > *,
.dark-feature-stack > * {
  position: relative;
  z-index: 1;
}

.tech-grid {
  grid-template-columns: repeat(3, minmax(120px, 1fr));
}

.tech-grid figure {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 160px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 18, 37, 0.82);
  text-align: center;
  backdrop-filter: blur(18px);
}

.tech-grid img {
  max-width: 100%;
  max-height: 95px;
  object-fit: contain;
}

.tech-grid figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
}

.about-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px 24px;
}

.about-cta p {
  margin: 0;
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 900;
}

.review-proof {
  width: min(1040px, calc(100% - 48px));
  margin: -54px auto 42px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-proof article {
  min-height: 132px;
  padding: 22px;
  border: 1px solid rgba(247, 248, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(114, 146, 203, 0.32), rgba(155, 134, 220, 0.18)),
    rgba(17, 18, 37, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.review-proof strong,
.review-proof span {
  display: block;
}

.review-proof strong {
  margin-bottom: 8px;
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.review-proof span {
  color: var(--muted);
  font-weight: 900;
  line-height: 1.45;
}

.reviews-grid {
  padding: 24px 32px 44px;
}

.reviews-section-heading {
  width: min(1040px, 100%);
  margin: 0 auto 24px;
}

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

.reviews-grid-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 18px;
}

.review-tile {
  min-height: 235px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 34px;
  border-left: 5px solid var(--blue);
}

.review-theme {
  justify-self: start;
  margin: 0;
  padding: 7px 11px;
  border: 1px solid rgba(158, 184, 238, 0.24);
  border-radius: 999px;
  color: var(--blue-soft);
  background: rgba(158, 184, 238, 0.1);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.review-quote {
  color: var(--text);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.45;
}

.review-meta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.review-meta strong,
.review-meta span {
  display: block;
}

.review-meta span {
  color: var(--muted);
  font-style: italic;
  font-weight: 800;
}

.review-feature,
.review-themes {
  width: min(1040px, calc(100% - 48px));
  margin: 28px auto 54px;
}

.feedback-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(114, 146, 203, 0.15), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(155, 134, 220, 0.14), transparent 30rem);
}

.feedback-hero {
  text-align: center;
}

.feedback-hero p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.feedback-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
  gap: 24px;
  width: min(1040px, calc(100% - 48px));
  margin: -18px auto 64px;
  align-items: start;
}

.feedback-form,
.feedback-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 18, 37, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.feedback-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
}

.feedback-form label {
  margin-bottom: 0;
}

.feedback-form .button {
  justify-self: start;
}

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

.survey-fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.survey-fieldset legend {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.4;
}

.nps-scale {
  display: grid;
  grid-template-columns: repeat(11, minmax(0, 1fr));
  gap: 6px;
}

.nps-scale label {
  position: relative;
  display: grid;
  min-width: 0;
  aspect-ratio: 1;
  margin: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 18, 0.72);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.nps-scale label.selected,
.nps-scale label:focus-within {
  border-color: rgba(158, 184, 238, 0.9);
  background: linear-gradient(135deg, rgba(114, 146, 203, 0.9), rgba(155, 134, 220, 0.86));
  color: #080812;
}

.nps-scale input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nps-labels {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.choice-row input {
  width: 18px;
  height: 18px;
  accent-color: #9eb8ee;
}

.feedback-aside {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.feedback-aside p {
  margin-bottom: 4px;
}

.feedback-aside .button,
.feedback-aside .text-button {
  justify-self: start;
  margin-top: 0;
}

.review-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0%, rgba(158, 184, 238, 0.16), transparent 28rem),
    rgba(17, 18, 37, 0.78);
  box-shadow: var(--shadow);
}

.review-feature p:last-child {
  margin-bottom: 0;
}

.review-feature blockquote {
  display: grid;
  align-content: center;
  gap: 18px;
  margin: 0;
  padding: clamp(24px, 4vw, 38px);
  border-left: 5px solid var(--blue-soft);
  border-radius: 8px;
  color: var(--text);
  background: rgba(8, 8, 18, 0.42);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  font-weight: 900;
  line-height: 1.25;
}

.review-feature cite {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 900;
}

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

.review-theme-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 18, 37, 0.72);
  box-shadow: var(--shadow);
}

.review-theme-grid h3 {
  color: var(--text);
  font-size: 1.25rem;
}

.review-theme-grid p {
  margin-bottom: 0;
}

.status-callout {
  background: linear-gradient(90deg, rgba(114, 146, 203, 0.14), rgba(17, 18, 37, 0.2) 52%, rgba(155, 134, 220, 0.14));
  text-align: center;
}

.status-callout-inner {
  padding: clamp(44px, 6vw, 72px) 24px;
}

.status-callout h2 {
  margin-bottom: 44px;
}

.status-callout p {
  max-width: 560px;
  margin: 0 auto 16px;
}

.faq-section {
  padding: 44px 0 68px;
}

.faq-section h2 {
  margin-bottom: 34px;
  color: var(--text);
  text-align: center;
}

.faq-tabs {
  display: flex;
  gap: 28px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.faq-tabs button {
  min-width: 112px;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.faq-tabs button.active {
  border-bottom-color: var(--blue-soft);
  color: var(--blue-soft);
}

.faq-list article {
  border-bottom: 1px solid var(--line);
}

.faq-list article.open {
  border-radius: 8px 8px 0 0;
  background: rgba(17, 18, 37, 0.6);
}

.faq-list article > button {
  width: 100%;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  font-weight: 900;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  max-width: 820px;
  padding: 0 48px 26px 0;
}

.document-hero,
.simple-hero {
  background: rgba(17, 18, 37, 0.42);
  border-bottom: 1px solid var(--line);
}

.document-hero h1,
.simple-hero h1 {
  max-width: 920px;
  margin-bottom: 0;
}

.document-body {
  padding: 48px 0 70px;
}

.document-section {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.not-found-hero {
  width: min(1120px, calc(100% - 48px));
  min-height: calc(100vh - 92px - 250px);
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.not-found-copy h1 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 6vw, 5rem);
}

.not-found-copy p:not(.eyebrow) {
  max-width: 670px;
  font-size: 1.12rem;
}

.not-found-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.not-found-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(114, 146, 203, 0.22), rgba(155, 134, 220, 0.16)),
    rgba(17, 18, 37, 0.76);
  box-shadow: var(--shadow);
  text-align: center;
  overflow: hidden;
}

.not-found-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(247, 248, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(rgba(247, 248, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.not-found-card > * {
  position: relative;
  z-index: 1;
}

.not-found-card span {
  color: var(--text);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  text-shadow:
    0 0 18px rgba(247, 248, 255, 0.36),
    0 0 46px rgba(158, 184, 238, 0.18);
}

.not-found-card strong {
  margin-top: 18px;
  color: var(--blue-soft);
  font-size: 1rem;
  text-transform: uppercase;
}

.not-found-card p {
  max-width: 210px;
  margin: 10px 0 0;
}

.landing-hero {
  min-height: 420px;
}

.landing-hero > div {
  width: min(840px, 100%);
  margin: 0;
}

.landing-hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.7rem);
}

.split-section {
  margin-top: 56px;
  margin-bottom: 56px;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.contact-form,
.copy-panel,
.job-card,
.quote-band,
.fine-print {
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  margin-bottom: 0;
}

.contact-form .button {
  justify-self: start;
  margin-top: 4px;
}

.check-list,
.job-card ul {
  padding-left: 20px;
}

.three-up {
  margin-top: 44px;
  margin-bottom: 44px;
  grid-template-columns: repeat(3, 1fr);
}

.three-up article {
  padding: 26px;
}

.quote-band {
  width: min(960px, calc(100% - 48px));
  margin-top: 40px;
  margin-bottom: 70px;
  text-align: center;
}

.quote-band p {
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.3;
}

.job-card {
  margin-top: 44px;
  margin-bottom: 76px;
  grid-template-columns: 240px 1fr;
  gap: 28px;
}

.job-card img {
  aspect-ratio: 1.2;
}

.job-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.job-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  color: #080812;
  background: linear-gradient(135deg, var(--blue), var(--violet-soft));
  font-size: 0.86rem;
  font-weight: 900;
}

.dark-feature-stack {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 56px clamp(24px, 6vw, 80px);
  background-size: cover;
  background-position: center;
}

.image-feature {
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 18, 37, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.image-feature img {
  object-fit: contain;
  background: rgba(8, 8, 18, 0.42);
}

.trial-page {
  background:
    radial-gradient(circle at 50% 10%, rgba(114, 146, 203, 0.18), transparent 32rem),
    transparent;
}

.trial-hero {
  padding: 58px 0 24px;
}

.trial-hero img {
  max-width: 230px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 24px rgba(114, 146, 203, 0.24));
}

.trial-hero strong {
  display: inline-block;
  color: var(--blue-soft);
  font-size: 1.2rem;
}

.email-capture {
  width: min(720px, calc(100% - 48px));
  margin-top: 40px;
  margin-bottom: 40px;
}

.benefit-list h2,
.gallery-strip h2 {
  text-align: center;
}

.gallery-strip {
  width: min(980px, calc(100% - 48px));
  margin-top: 54px;
  margin-bottom: 54px;
  text-align: center;
}

.gallery-strip img {
  width: min(480px, 100%);
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.step-images {
  display: grid;
  gap: 34px;
  padding: 56px clamp(24px, 6vw, 80px);
}

.fine-print {
  width: min(920px, calc(100% - 48px));
  margin-top: 54px;
  margin-bottom: 54px;
}

.fine-print .eyebrow {
  text-align: left;
}

@media (max-width: 900px) {
  header {
    padding: 12px 22px;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .tools-menu[open] {
    flex-basis: 100%;
  }

  .tools-menu[open] .tools-menu-panel {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 8px;
    transform: none;
  }

  .brand img {
    width: 146px;
  }

  .signup-link {
    min-width: 128px;
  }

  .hero-card,
  .community-inner,
  .testimonial-inner,
  .feature-grid-inner,
  .signup-cta,
  .transition-grid,
  .pricing-grid,
  .router-grid,
  .install-process,
  .about-values,
  .support-split,
  .tech-section-inner,
  .reviews-grid-inner,
  .feedback-section,
  .review-proof,
  .review-feature,
  .review-theme-grid,
  .split-section,
  .three-up,
  .job-card,
  .image-feature,
  .not-found-hero,
  .status-hero,
  .status-metrics,
  .status-map-card,
  .resource-grid,
  .article-hero-grid,
  .article-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    min-height: 0;
    align-items: start;
  }

  .hero-card .button {
    width: 100%;
  }

  .signup-cta .button {
    width: 100%;
  }

  .promise-band-inner,
  .address-row,
  .selectors,
  .plan-cards {
    grid-template-columns: 1fr;
  }

  .plan-cards {
    margin-top: -44px;
  }

  .process-copy {
    position: static;
  }

  .resource-preview-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-sidebar {
    position: static;
  }

  .article-layout {
    margin-top: 34px;
    margin-bottom: 54px;
  }

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

  .article-hero-inner {
    grid-column: 1;
    justify-self: center;
  }

  .testimonial-inner,
  footer {
    padding: 42px 24px;
  }
}

@media (max-width: 560px) {
  header {
    position: static;
  }

  .hero,
  .plans-hero,
  .about-hero,
  .reviews-hero,
  .help-hero,
  .landing-hero,
  .dark-feature-stack,
  .step-images {
    padding: 34px 16px;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 3.6rem);
  }

  .hero-card,
  .about-hero-card,
  .landing-hero > div,
  .image-feature,
  .job-card,
  .contact-form,
  .copy-panel,
  .signup-panel,
  .signup-cta,
  .review-tile {
    padding: 22px;
  }

  .signup-modal-backdrop {
    align-items: end;
    padding: 12px;
  }

  .signup-modal {
    max-height: 94vh;
  }

  .signup-modal-close {
    top: 10px;
    right: 10px;
  }

  .signup-dock {
    align-items: stretch;
    grid-template-columns: 1fr auto;
    border-radius: 8px;
    text-align: left;
  }

  .signup-dock .button {
    grid-column: 1 / -1;
  }

  .copy-block {
    padding: 30px 20px;
  }

  .plans-hero,
  .reviews-hero,
  .help-hero {
    min-height: 300px;
  }

  .review-proof {
    margin-top: -36px;
  }

  .transition-plan,
  .resource-preview,
  .resource-grid,
  .featured-resource,
  .resource-cta,
  .review-proof,
  .feedback-section,
  .review-feature,
  .review-themes,
  .status-hero,
  .status-metrics,
  .status-events,
  .status-board,
  .status-map-card,
  .spec-section,
  .router-specs,
  .install-process,
  .support-split,
  .faq-section,
  .split-section,
  .three-up,
  .job-card,
  .quote-band,
  .document-body,
  .trial-hero,
  .email-capture,
  .gallery-strip,
  .fine-print {
    width: calc(100% - 32px);
  }

  .article-hero {
    padding: 34px 16px;
  }

  .article-hero-grid {
    width: 100%;
  }

  .article-layout {
    width: calc(100% - 32px);
    margin: 34px auto 48px;
  }

  .article-hero-inner h1 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .router-card {
    grid-template-columns: 1fr;
  }

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

  .nps-scale {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .about-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .status-board-heading {
    display: grid;
  }

  .status-overview {
    grid-template-columns: auto 1fr;
    border-radius: 16px;
    padding: 20px;
  }

  .status-overview p {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .status-map-card {
    padding: 18px;
    border-radius: 16px;
  }

  .status-map-shell,
  .status-google-map,
  .status-map-fallback {
    min-height: 260px;
  }

  .status-board.modern {
    border-radius: 16px;
  }

  .status-monitor-top {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .status-monitor-score {
    grid-column: 1 / -1;
    justify-content: start;
  }

  .status-modal {
    padding: 26px 18px 20px;
  }

  .status-modal-heading,
  .status-modal-subhead {
    align-items: flex-start;
    flex-direction: column;
  }

  .status-modal-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-site-map-card {
    grid-template-columns: 1fr;
  }

  .status-history-heading {
    display: grid;
  }

  .status-history-stats {
    justify-content: flex-start;
  }

  .not-found-hero {
    width: calc(100% - 32px);
    min-height: auto;
    padding: 42px 0;
  }

  .not-found-card {
    min-height: 240px;
  }

  .reviews-grid {
    padding: 28px 16px;
  }

  .review-feature {
    padding: 24px;
  }

  .review-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-tabs {
    flex-wrap: wrap;
    gap: 18px;
  }

  .faq-tabs button {
    min-width: auto;
  }

  .faq-answer {
    padding-right: 0;
  }
}
