@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --sw-red: #c8102e;
  --sw-red-deep: #9e0c24;
  --sw-red-soft: #f8e9ec;
  --sw-ink: #111111;
  --sw-ink-soft: #333333;
  --sw-muted: #666666;
  --sw-line: #e8e8e8;
  --sw-bg: #f7f7f7;
  --sw-white: #ffffff;
  --sw-max: 1240px;
  --font-display: "Sora", "Trebuchet MS", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  /* Sitewide type scale — display / body / caption */
  --fs-display: clamp(1.75rem, 2.6vw, 2.125rem);
  --fs-body: 1rem;
  --fs-caption: 0.8125rem;
  --lh-display: 1.15;
  --lh-body: 1.55;
  --lh-caption: 1.4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--sw-ink);
  background: var(--sw-white);
  line-height: var(--lh-body);
  min-height: 100vh;
}
h1, h2, .sw-display {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: -0.03em;
  font-weight: 700;
}
.sw-caption, .sw-kicker, small, .sw-table th, .sw-faq-cat, .sw-brand span {
  font-size: var(--fs-caption);
  line-height: var(--lh-caption);
}

a { color: var(--sw-red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.sw-skip {
  position: absolute; left: -999px; top: 0;
  background: var(--sw-red); color: #fff; padding: 8px 12px; z-index: 100;
}
.sw-skip:focus { left: 8px; top: 8px; }

/* —— Top bar (single straight row) —— */
.sw-top {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.sw-top-inner {
  max-width: var(--sw-max);
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 20px;
}
.sw-brand {
  display: flex; align-items: center; gap: 8px;
  color: inherit; text-decoration: none; flex-shrink: 0;
  min-width: 0;
}
.sw-brand:hover { text-decoration: none; }
.sw-brand img {
  width: 32px; height: 32px;
  border-radius: 0;
  border: 0;
}
.sw-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-body);
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}
.sw-brand span {
  display: none; /* keep header one clean line */
}
.sw-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 14px;
  min-width: 0;
  overflow: hidden;
}
.sw-nav a {
  color: var(--sw-ink-soft);
  font-weight: 500;
  font-size: var(--fs-caption);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s ease, border-color .15s ease;
}
.sw-nav a:hover { color: var(--sw-ink); text-decoration: none; }
.sw-nav a.active {
  color: var(--sw-red);
  font-weight: 700;
  border-bottom-color: var(--sw-red);
}
.sw-nav-cta {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  white-space: nowrap;
}
.sw-nav-cta > * {
  position: relative;
}
.sw-nav-cta > * + *::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  width: 1px;
  height: 12px;
  transform: translateY(-50%);
  background: var(--sw-line);
}
.sw-text-link {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-caption);
  color: var(--sw-ink-soft);
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.sw-nav-cta .sw-text-link {
  font-size: var(--fs-caption);
  font-weight: 600;
}
.sw-text-link:hover {
  color: var(--sw-ink);
  text-decoration: none;
}
.sw-text-link-accent {
  color: var(--sw-red);
  font-weight: 700;
}
.sw-text-link-accent:hover { color: var(--sw-red-deep); }
.sw-text-link-action {
  color: var(--sw-muted);
}
.sw-text-link-action:hover { color: var(--sw-red); }
/* Page/content buttons (forms, CTAs in body — not the top banner) */
.sw-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 2px;
  border: 1px solid transparent;
  padding: 11px 18px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.sw-btn:hover { text-decoration: none; }
.sw-btn-primary { background: var(--sw-red); color: #fff; }
.sw-btn-primary:hover { background: var(--sw-red-deep); }
.sw-btn-ghost {
  background: transparent; color: var(--sw-ink);
  border-color: transparent;
  border-bottom: 1px solid var(--sw-line);
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}
.sw-btn-ghost:hover { border-bottom-color: var(--sw-red); color: var(--sw-red); }
.sw-btn-white { background: #fff; color: var(--sw-red); border-color: #fff; }
.sw-btn-sm { padding: 8px 12px; font-size: 0.85rem; }

/* —— Hero —— */
.sw-hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex; align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% 20%, rgba(200,16,46,0.55), transparent 55%),
    radial-gradient(900px 420px at 10% 90%, rgba(0,0,0,0.35), transparent 50%),
    linear-gradient(145deg, #1a1a1a 0%, #3a0a14 42%, #c8102e 100%);
}
.sw-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 85%);
  pointer-events: none;
  animation: swGrid 18s linear infinite;
}
@keyframes swGrid {
  from { background-position: 0 0, 0 0; }
  to { background-position: 48px 48px, 48px 0; }
}
.sw-hero-inner {
  position: relative;
  max-width: var(--sw-max);
  margin: 0 auto;
  padding: 72px 20px 64px;
  width: 100%;
}
.sw-hero-brand {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 22px;
  animation: swRise 0.7s ease both;
}
.sw-hero-brand img {
  width: 72px; height: 72px; border-radius: 18px;
  background: #fff; border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.sw-hero-brand .name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-display);
  letter-spacing: -0.03em;
  line-height: var(--lh-display);
}
.sw-hero-brand .sub {
  margin-top: 4px;
  font-size: var(--fs-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 700;
}
.sw-hero h1 {
  margin: 0 0 14px;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-display);
  letter-spacing: -0.03em;
  line-height: var(--lh-display);
  animation: swRise 0.8s ease 0.08s both;
}
.sw-hero .lede {
  margin: 0 0 26px;
  max-width: 42ch;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: rgba(255,255,255,0.9);
  animation: swRise 0.8s ease 0.16s both;
}
.sw-hero-cta {
  display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center;
  animation: swRise 0.8s ease 0.24s both;
}
.sw-hero-link {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
}
.sw-hero-link:hover { color: #fff; border-bottom-color: #fff; text-decoration: none; }
.sw-hero-link-strong {
  color: #fff;
  font-weight: 800;
  border-bottom-color: #fff;
}
.sw-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}
.sw-inline-links a {
  color: var(--sw-ink-soft);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.sw-inline-links a:hover {
  color: var(--sw-red);
  border-bottom-color: var(--sw-red);
  text-decoration: none;
}
.sw-inline-links .sw-text-link-accent {
  color: var(--sw-red);
  font-weight: 800;
}
@keyframes swRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

/* —— Sections —— */
.sw-section { padding: 64px 20px; }
.sw-section-muted { background: var(--sw-bg); }
.sw-wrap { max-width: var(--sw-max); margin: 0 auto; }
.sw-kicker {
  color: var(--sw-red);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: var(--fs-caption);
  margin: 0 0 8px;
}
.sw-section h2 {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  letter-spacing: -0.03em;
  line-height: var(--lh-display);
  margin: 0 0 10px;
}
.sw-section .intro {
  margin: 0 0 28px;
  color: var(--sw-muted);
  max-width: 55ch;
  font-size: var(--fs-body);
}

/* Empty states */
.sw-empty {
  text-align: center;
  padding: 48px 28px;
  border: 1px solid var(--sw-line);
  background: #fff;
  max-width: 420px;
  margin: 0 auto;
}
.sw-empty h2,
.sw-empty .sw-empty-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: -0.03em;
}
.sw-empty p {
  margin: 0 0 20px;
  color: var(--sw-muted);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}
.sw-empty .sw-btn { min-width: 10rem; }

.sw-page-hero {
  padding: 48px 20px 28px;
  background:
    linear-gradient(180deg, var(--sw-red-soft), #fff 70%);
  border-bottom: 1px solid var(--sw-line);
}
.sw-page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  letter-spacing: -0.03em;
  margin: 0 0 10px;
}
.sw-page-hero p { margin: 0; color: var(--sw-muted); max-width: 50ch; }

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

.sw-plan, .sw-device, .sw-tile, .sw-faq details {
  background: #fff;
  border: 1px solid var(--sw-line);
  border-radius: 6px;
}
.sw-plan, .sw-device, .sw-tile { padding: 22px; }
.sw-plan.featured {
  border-color: var(--sw-red);
  box-shadow: 0 0 0 1px var(--sw-red);
}
.sw-plan h3, .sw-device h3 {
  font-family: var(--font-display);
  margin: 0 0 6px;
  font-size: 1.2rem;
}
.sw-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 12px 0;
}
.sw-price small { font-size: 0.95rem; font-weight: 600; color: var(--sw-muted); }
.sw-list { margin: 0 0 18px; padding-left: 18px; color: var(--sw-ink-soft); }
.sw-list li { margin: 6px 0; }
.sw-badge {
  display: inline-block;
  background: var(--sw-red-soft);
  color: var(--sw-red);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.sw-device-visual {
  height: 140px;
  border-radius: 4px;
  margin-bottom: 14px;
  background: linear-gradient(145deg, #f3f3f3, #e7e7e7);
  position: relative;
  overflow: hidden;
}
.sw-device-visual::after {
  content: "";
  position: absolute;
  width: 54px; height: 96px;
  border: 3px solid var(--sw-red);
  border-radius: 10px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.85;
}
.sw-device-visual.tone-slate { background: linear-gradient(145deg, #d9dce1, #b8bec8); }
.sw-device-visual.tone-steel { background: linear-gradient(145deg, #ece7df, #c9c2b6); }
.sw-device-visual.tone-ink { background: linear-gradient(145deg, #2a2a2a, #111); }
.sw-device-visual.tone-ink::after { border-color: #fff; }
.sw-device-visual.tone-sand { background: linear-gradient(145deg, #f3ebe3, #e0d2c4); }
.sw-device-visual.tone-onyx { background: linear-gradient(145deg, #222, #000); }
.sw-device-visual.tone-onyx::after { border-color: #c8102e; }
.sw-device-visual.tone-blue { background: linear-gradient(145deg, #d7e4f2, #9fb6d1); }
.sw-device-visual.tone-ocean { background: linear-gradient(145deg, #cfe4ef, #7fadc4); }
.sw-device-visual.tone-white { background: linear-gradient(145deg, #fff, #f0f0f0); }

.sw-faq details { padding: 14px 18px; margin-bottom: 10px; }
.sw-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  list-style: none;
}
.sw-faq summary::-webkit-details-marker { display: none; }
.sw-faq details[open] summary { color: var(--sw-red); }
.sw-faq p { margin: 10px 0 0; color: var(--sw-ink-soft); }

.sw-form {
  display: grid; gap: 12px;
  max-width: 480px;
}
.sw-form.wide { max-width: 640px; }
.sw-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.sw-field input, .sw-field select, .sw-field textarea {
  width: 100%;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}
.sw-field input:focus, .sw-field select:focus, .sw-field textarea:focus {
  outline: 2px solid rgba(200,16,46,0.25);
  border-color: var(--sw-red);
}
.sw-error { color: var(--sw-red); font-weight: 600; font-size: 0.9rem; }
.sw-ok { color: #0a7a3e; font-weight: 600; font-size: 0.9rem; }

.sw-panel {
  background: #fff;
  border: 1px solid var(--sw-line);
  border-radius: 6px;
  padding: 20px;
}
.sw-kv { display: grid; grid-template-columns: 140px 1fr; gap: 8px 12px; margin: 0; }
.sw-kv dt { color: var(--sw-muted); font-size: 0.88rem; }
.sw-kv dd { margin: 0; font-weight: 600; }

.sw-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.sw-table th, .sw-table td {
  text-align: left; padding: 10px 8px;
  border-bottom: 1px solid var(--sw-line);
}
.sw-table th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--sw-muted); }

.sw-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--sw-line);
  border-bottom: 1px solid var(--sw-line);
}
.sw-strip > div {
  padding: 28px 22px;
  border-right: 1px solid var(--sw-line);
}
.sw-strip > div:last-child { border-right: 0; }
.sw-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.sw-footer {
  background: #111;
  color: #ddd;
  padding: 48px 20px 28px;
  margin-top: 40px;
}
.sw-footer a { color: #fff; }
.sw-footer-grid {
  max-width: var(--sw-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}
.sw-footer h4 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.95rem;
}
.sw-footer ul { list-style: none; margin: 0; padding: 0; }
.sw-footer li { margin: 8px 0; }
.sw-footer .legal {
  max-width: var(--sw-max);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid #333;
  font-size: 0.82rem;
  color: #999;
}

.sw-toast {
  position: fixed; right: 16px; bottom: 16px; z-index: 80;
  background: #111; color: #fff; padding: 12px 16px;
  border-radius: 4px; border-left: 4px solid var(--sw-red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: swRise .25s ease;
}

@media (max-width: 900px) {
  .sw-nav { display: none; }
  .sw-grid-3, .sw-grid-4, .sw-grid-2, .sw-strip, .sw-footer-grid {
    grid-template-columns: 1fr;
  }
  .sw-strip > div { border-right: 0; border-bottom: 1px solid var(--sw-line); }
  .sw-top-inner {
    grid-template-columns: 1fr auto;
    row-gap: 10px;
  }
  .sw-nav-cta { grid-column: 2; grid-row: 1; }
  .sw-mobile-nav {
    display: flex; flex-wrap: nowrap;
    gap: 12px 14px;
    width: 100%;
    grid-column: 1 / -1;
    padding-top: 8px;
    border-top: 1px solid var(--sw-line);
    overflow-x: auto;
  }
  .sw-mobile-nav a {
    color: var(--sw-ink-soft);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
  }
}
@media (min-width: 901px) {
  .sw-mobile-nav { display: none; }
}

.hidden{display:none!important}
.sw-chat-btn{position:fixed;right:18px;bottom:18px;z-index:80;border:0;border-radius:2px;background:var(--sw-red);color:#fff;font:700 .9rem var(--font-display);padding:.75rem 1.05rem;cursor:pointer}
.sw-chat-panel{position:fixed;right:18px;bottom:78px;z-index:80;width:min(360px,calc(100vw - 24px));background:#fff;border:1px solid var(--sw-line);border-radius:2px;box-shadow:0 12px 36px rgba(15,23,42,.12);overflow:hidden}
.sw-chat-head{display:flex;justify-content:space-between;align-items:center;padding:.85rem 1rem;background:#fff;color:var(--sw-ink);font-weight:800;border-bottom:1px solid var(--sw-line)}
.sw-chat-head button{border:0;background:transparent;color:var(--sw-muted);font-size:1.2rem;cursor:pointer}
.sw-chat-body{padding:1rem;color:var(--sw-muted);font-size:.92rem;line-height:1.55}
.sw-chat-body .sw-btn{margin:.35rem .35rem 0 0}
.sw-tabs{display:flex;flex-wrap:wrap;gap:.15rem 1.1rem;margin:0 0 1.1rem;padding-bottom:.65rem;border-bottom:1px solid var(--sw-line)}
.sw-tab{border:0;background:transparent;border-radius:0;padding:.2rem 0;font:500 .9rem var(--font-body);color:var(--sw-ink-soft);cursor:pointer;border-bottom:2px solid transparent}
.sw-tab.active,.sw-tab:hover{border-color:transparent;border-bottom-color:var(--sw-red);color:var(--sw-red);background:transparent;font-weight:700}
.sw-faq-cat{margin:0 0 .35rem;font-size:.72rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--sw-red)}
.sw-legal{max-width:820px}
.sw-legal h2{font-family:var(--font-display);font-size:1.45rem;margin:1.6rem 0 .55rem}
.sw-legal p,.sw-legal li{color:var(--sw-muted);line-height:1.65}
.sw-map-board{display:grid;grid-template-columns:1.2fr .8fr;gap:1rem}
@media(max-width:900px){.sw-map-board{grid-template-columns:1fr}}
.sw-map-visual{min-height:360px;border-radius:22px;border:1px solid var(--sw-line);background:
 radial-gradient(circle at 22% 38%, rgba(200,16,46,.22), transparent 18%),
 radial-gradient(circle at 48% 52%, rgba(37,99,235,.18), transparent 22%),
 radial-gradient(circle at 70% 42%, rgba(200,16,46,.16), transparent 16%),
 radial-gradient(circle at 82% 68%, rgba(37,99,235,.14), transparent 18%),
 linear-gradient(160deg,#f8fafc,#eef2ff 55%,#fff);
position:relative;overflow:hidden}
.sw-map-visual::after{content:"SafeWay 4G / 5G footprint";position:absolute;left:1rem;bottom:1rem;background:rgba(255,255,255,.92);border:1px solid var(--sw-line);border-radius:999px;padding:.4rem .75rem;font-size:.78rem;font-weight:800}
.sw-cov-result{margin-top:1rem;padding:1rem;border-radius:16px;border:1px solid var(--sw-line);background:#fff}
.sw-cov-result strong{display:block;margin-bottom:.35rem}
.sw-status-ok{color:#15803d}.sw-status-warn{color:#b45309}.sw-status-bad{color:#b91c1c}
.sw-job{padding:1rem 0;border-bottom:1px solid var(--sw-line)}
.sw-job:last-child{border-bottom:0}
.sw-hours{display:grid;gap:.35rem}
.sw-hours div{display:flex;justify-content:space-between;gap:1rem;padding:.35rem 0;border-bottom:1px dashed var(--sw-line);font-size:.92rem}

.sw-portal-nav{
  display:flex;flex-wrap:wrap;gap:.15rem 1.35rem;
  margin:0 0 1.35rem;padding:0 0 .85rem;
  background:transparent;border:0;border-bottom:1px solid var(--sw-line);border-radius:0;
}
.sw-portal-nav a{
  font:500 .9rem var(--font-body);color:var(--sw-ink-soft);
  padding:.2rem 0;border-bottom:2px solid transparent;border-radius:0;
  text-decoration:none;
}
.sw-portal-nav a:hover{color:var(--sw-ink);text-decoration:none}
.sw-portal-nav a.active{color:var(--sw-red);font-weight:700;border-bottom-color:var(--sw-red)}
.sw-check{display:flex;align-items:flex-start;gap:.55rem;font-size:.92rem;color:var(--sw-ink-soft);margin:.35rem 0 0}
.sw-check input{margin-top:.2rem}
.sw-banner{padding:.85rem 1rem;border-radius:12px;border:1px solid #fde68a;background:#fffbeb;color:#92400e;margin:0 0 1rem}
.sw-banner a{font-weight:800}
.sw-usage-bars{display:grid;gap:.75rem}
.sw-usage-row label{display:flex;justify-content:space-between;font-size:.85rem;font-weight:700;margin-bottom:.25rem}
.sw-usage-track{height:8px;background:#eee;border-radius:999px;overflow:hidden}
.sw-usage-fill{height:100%;background:linear-gradient(90deg,var(--sw-red),#e11d48);border-radius:999px}

.sw-status-page{
  min-height:calc(100vh - 80px);
  display:grid;place-items:center;
  padding:48px 20px;
  background:
    radial-gradient(circle at 15% 20%, rgba(200,16,46,.12), transparent 35%),
    radial-gradient(circle at 85% 10%, rgba(200,16,46,.08), transparent 30%),
    linear-gradient(180deg,#fff 0%, var(--sw-bg) 100%);
}
.sw-maintenance-body{background:#fff}
.sw-status-card{
  width:min(560px,100%);
  text-align:center;
  padding:2rem 1.5rem;
  border:1px solid var(--sw-line);
  border-radius:22px;
  background:rgba(255,255,255,.92);
  box-shadow:0 18px 50px rgba(15,23,42,.08);
}
.sw-status-card img{margin:0 auto 1rem;border-radius:16px}
.sw-status-card h1{
  font-family:var(--font-display);
  font-size:clamp(1.6rem,3vw,2.1rem);
  letter-spacing:-.03em;
  margin:0 0 .75rem;
}
.sw-status-card .lede{margin:0 auto 1.25rem;max-width:42ch;color:var(--sw-muted)}
.sw-status-card .path{margin:0 0 1rem;color:var(--sw-muted);font-size:.85rem;word-break:break-all}
.sw-status-card .sw-hero-cta{justify-content:center}
.sw-status-meta{list-style:none;padding:0;margin:0 0 1.25rem;color:var(--sw-muted);font-size:.92rem}
.sw-status-meta li{margin:.25rem 0}
.sw-status-note{margin:1.25rem 0 0;font-size:.8rem;color:var(--sw-muted)}
.mono{font-family:ui-monospace,SFMono-Regular,Menlo,monospace}
