:root {
  color-scheme: light;
  --bg: #f6f8fa;
  --bg-2: #ffffff;
  --ink: #24292f;
  --muted: #57606a;
  --card: #ffffff;
  --border: #d0d7de;
  --accent: #0969da;
  --operational: #2da44e;
  --minor: #d97706;
  --major: #cf222e;
  --maintenance: #1f6feb;
  --shadow: 0 20px 40px -30px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --mono: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --display: "Space Grotesk", "IBM Plex Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--mono);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #f6f8fa 100%);
  color: var(--ink);
  min-height: 100vh;
  position: relative;
}

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

a:hover {
  text-decoration: underline;
}

.grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 0;
}

.site-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 24px 32px;
  gap: 24px;
  max-width: 850px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.brand-text h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
}

.feature-spotlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 240px;
  max-width: 290px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(207, 34, 46, 0.2);
  background:
    linear-gradient(135deg, rgba(207, 34, 46, 0.08), rgba(255, 255, 255, 0.96)),
    #ffffff;
  box-shadow: 0 18px 40px -30px rgba(207, 34, 46, 0.55);
  text-decoration: none;
}

.feature-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature-spotlight:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 48px -32px rgba(207, 34, 46, 0.7);
}

.feature-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: inherit;
  text-decoration: none;
}

.feature-link:hover {
  text-decoration: none;
}

.site-live-pill,
.site-live-fold {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f6f8fa;
  text-decoration: none;
  box-shadow: 0 18px 30px -24px rgba(17, 18, 26, 0.82);
}

.site-live-pill {
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #11121a 0%, #24292f 100%);
}

.site-live-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-live-copy strong {
  font-family: var(--display);
  line-height: 1.1;
}

.site-live-copy span:last-child {
  color: rgba(246, 248, 250, 0.76);
  line-height: 1.2;
}

.site-live-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 248, 250, 0.72);
}

.site-live-github {
  width: 28px;
  height: 28px;
  fill: currentColor;
  flex: 0 0 auto;
}

.site-live-fold {
  position: relative;
  padding: 16px 18px 14px;
  border-radius: 18px 0 18px 18px;
  background: #11121a;
}

.site-live-fold::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.site-live-corner-ribbon {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
}

.site-live-corner-ribbon .site-live-ribbon-band {
  pointer-events: auto;
  position: absolute;
  top: 18px;
  right: -56px;
  width: 250px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #24292f 0%, #11121a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f6f8fa;
  text-decoration: none;
  transform: rotate(45deg);
  box-shadow: 0 18px 30px -20px rgba(17, 18, 26, 0.85);
}

.site-live-ribbon-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.site-live-ribbon-copy strong {
  font-family: var(--display);
  line-height: 1.1;
}

.site-live-ribbon-copy span:last-child {
  color: rgba(246, 248, 250, 0.76);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}

.site-live-corner-tab {
  position: absolute;
  top: 176px;
  right: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 106px;
  padding: 16px 14px 20px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, #11121a 0%, #24292f 100%);
  color: #f6f8fa;
  text-decoration: none;
  box-shadow: 0 18px 28px -22px rgba(17, 18, 26, 0.8);
  z-index: 2;
}

.site-live-corner-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.site-live-corner-tab strong {
  font-family: var(--display);
  line-height: 1.1;
}

.site-live-corner-tab span:last-child {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 248, 250, 0.74);
}

.site-live-strip-wrap {
  margin-bottom: 4px;
}

.site-live-strip {
  display: inline-flex;
  width: 100%;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(17, 18, 26, 0.98), rgba(36, 41, 47, 0.98));
  color: #f6f8fa;
  text-decoration: none;
  box-shadow: 0 18px 30px -24px rgba(17, 18, 26, 0.82);
}

.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--major);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4d4d, #cf222e);
  box-shadow: 0 0 0 4px rgba(207, 34, 46, 0.12);
}

.feature-spotlight strong {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.2;
}

.feature-meta {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.feature-meta-split {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-outlet-meta {
  font-weight: 600;
  color: rgba(36, 41, 47, 0.86);
}

.date-chip {
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(208, 215, 222, 0.92);
  background: rgba(36, 41, 47, 0.05);
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.feature-meta-arrow {
  color: var(--muted);
}

.feature-carousel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.feature-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(87, 96, 106, 0.28);
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease, width 0.18s ease;
}

.feature-dot[data-active="true"] {
  width: 22px;
  background: linear-gradient(90deg, #cf222e, #f1a23a);
}

.feature-dot:hover {
  transform: translateY(-1px);
}

.ghost-button {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ghost-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -15px rgba(0, 0, 0, 0.3);
}

main {
  position: relative;
  z-index: 1;
  padding: 0 24px 64px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 850px;
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.hero-status {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  border: 1px solid #f0eee8;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  background: #eaf6ec;
  color: var(--operational);
}

.status-pill::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(46, 164, 79, 0.2);
}

.status-pill.minor {
  background: rgba(241, 162, 58, 0.18);
  color: var(--minor);
}

.status-pill.major {
  background: rgba(224, 86, 74, 0.18);
  color: var(--major);
}

.status-pill.maintenance {
  background: rgba(60, 120, 216, 0.18);
  color: var(--maintenance);
}

.status-pill.none {
  background: #e9f7ed;
  color: var(--operational);
}

.hero-status h2 {
  margin: 16px 0 8px;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.hero-status p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.status-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.status-meta-item {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  min-width: 0;
}

.status-meta-label,
.status-meta-value {
  display: block;
  min-width: 0;
}

.hero-panel .status-meta {
  margin-top: 0;
}

.divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}

.hero-panel {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: visible;
  z-index: 0;
}

.hero-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-panel h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 1.35rem;
}

.uptime-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.uptime-label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  font-size: 1.05rem;
}

.uptime-percent {
  color: var(--muted);
  font-weight: 600;
}

.uptime-bars {
  display: grid;
  grid-template-columns: repeat(90, minmax(0, 1fr));
  column-gap: 3px;
  row-gap: 3px;
  align-items: center;
}

.uptime-bars span {
  height: 26px;
  border-radius: 6px;
  background: #dfe4ea;
  cursor: pointer;
  transition: transform 0.12s ease;
}

.uptime-bars span:hover,
.uptime-bars span:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.uptime-tooltip {
  position: absolute;
  min-width: 220px;
  max-width: 320px;
  background: #fffdf9;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 20px 38px -28px rgba(28, 28, 28, 0.5);
  padding: 14px 16px 16px;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 999;
}

.uptime-tooltip.active {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.uptime-tooltip::before,
.uptime-tooltip::after {
  content: "";
  position: absolute;
  left: var(--arrow-left, 50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
}

.uptime-tooltip[data-arrow="top"]::before {
  top: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--border);
}

.uptime-tooltip[data-arrow="top"]::after {
  top: -8px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #fffdf9;
}

.tooltip-date {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
}

.tooltip-summary {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(207, 201, 190, 0.2);
  color: var(--ink);
  font-weight: 600;
}

.tooltip-duration {
  margin-left: auto;
  color: var(--muted);
  font-weight: 600;
}

.tooltip-related {
  margin-top: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.tooltip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.tooltip-dot.operational,
.tooltip-dot.none {
  background: var(--operational);
}

.tooltip-dot.minor {
  background: var(--minor);
}

.tooltip-dot.major {
  background: var(--major);
}

.tooltip-dot.maintenance {
  background: var(--maintenance);
}

.tooltip-incidents {
  margin: 6px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

.tooltip-incidents li {
  margin-bottom: 4px;
}

.tooltip-incidents a {
  color: inherit;
}

.uptime-bars span.operational {
  background: rgba(45, 164, 78, 0.85);
}

.uptime-bars span.minor {
  background: rgba(217, 119, 6, 0.85);
}

.uptime-bars span.major {
  background: rgba(207, 34, 46, 0.85);
}

.uptime-bars span.maintenance {
  background: rgba(31, 111, 235, 0.85);
}

.uptime-axis {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}

.legend {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot.operational {
  background: var(--operational);
}

.dot.minor {
  background: var(--minor);
}

.dot.major {
  background: var(--major);
}

.dot.maintenance {
  background: var(--maintenance);
}

.hero-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-share {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
}

.hero-share-tooltip {
  position: absolute;
  right: 0;
  bottom: calc(100% + 8px);
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(17, 18, 26, 0.94);
  color: #f6f8fa;
  font: 500 0.72rem/1.25 var(--mono);
  white-space: nowrap;
  box-shadow: 0 16px 34px -26px rgba(17, 18, 26, 0.72);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.hero-share:focus-within .hero-share-tooltip,
.hero-share:hover .hero-share-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.hero-share-button[data-state="copied"] + .hero-share-tooltip,
.hero-share-button[data-state="downloaded"] + .hero-share-tooltip,
.hero-share-button[data-state="error"] + .hero-share-tooltip,
.hero-share-button[data-state="loading"] + .hero-share-tooltip {
  opacity: 0;
  transform: translateY(4px);
}

.hero-share-download[hidden] {
  display: none;
}

.hero-share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: auto;
  padding: 5px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: 600 0.76rem/1 var(--mono);
  cursor: pointer;
  box-shadow: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.hero-share-button:hover {
  background: rgba(36, 41, 47, 0.06);
  color: var(--ink);
}

.hero-share-button:focus-visible {
  outline: 2px solid rgba(9, 105, 218, 0.26);
  outline-offset: 2px;
}

.hero-share-button[data-state="loading"] {
  color: var(--muted);
  cursor: progress;
  background: rgba(36, 41, 47, 0.05);
}

.hero-share-button[data-state="copied"] {
  color: #1b5f33;
  background: rgba(45, 164, 78, 0.12);
}

.hero-share-button[data-state="fallback"],
.hero-share-button[data-state="downloaded"] {
  color: #8a4b00;
  background: rgba(217, 119, 6, 0.12);
}

.hero-share-button[data-state="error"] {
  color: #8a1f24;
  background: rgba(207, 34, 46, 0.1);
}

.hero-share-icon {
  width: 12px;
  height: 12px;
  fill: currentColor;
  flex: 0 0 auto;
}

.hero-share-button[data-state="loading"] .hero-share-icon {
  animation: hero-share-pulse 0.9s ease-in-out infinite;
}

.hero-share-label {
  white-space: nowrap;
}

.hero-share-feedback {
  display: none;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  flex: 0 0 100%;
  text-align: right;
}

.hero-share-feedback[data-visible="true"] {
  display: block;
}

.hero-share-feedback[data-tone="success"] {
  color: var(--operational);
}

.hero-share-feedback[data-tone="fallback"],
.hero-share-feedback[data-tone="downloaded"] {
  color: var(--minor);
}

.hero-share-feedback[data-tone="error"] {
  color: var(--major);
}

@keyframes hero-share-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-attribution {
  text-align: right;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-attribution a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.hero-attribution a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.about-prompt {
  text-align: center;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--muted);
}

.about-prompt a {
  display: inline-block;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 16px 28px -24px rgba(17, 18, 26, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-prompt a:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px -22px rgba(17, 18, 26, 0.38);
  background: #ffffff;
}

.about-prompt a .status-operational {
  color: var(--operational);
}

.about-prompt a .status-minor {
  color: var(--minor);
}

.about-prompt a .status-major {
  color: var(--major);
}

.about-prompt a .status-maintenance {
  color: var(--maintenance);
}

.panel {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 0;
  overflow: visible;
}


.panel-raise {
  z-index: 10;
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-header h3 {
  margin: 0;
  font-family: var(--display);
}

.panel-actions {
  display: flex;
  gap: 8px;
}

.muted {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.cta-option {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 14px;
}

.cta-option-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}

.cta-option-header strong {
  font-family: var(--display);
}

.cta-option-header span {
  color: var(--muted);
  font-size: 0.78rem;
}

.cta-preview {
  position: relative;
  min-height: 150px;
  border-radius: 14px;
  border: 1px dashed rgba(36, 41, 47, 0.12);
  background:
    radial-gradient(circle at top left, rgba(9, 105, 218, 0.08), transparent 38%),
    linear-gradient(180deg, #f9fbfd 0%, #ffffff 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cta-preview-corner,
.cta-preview-tab,
.cta-preview-card {
  justify-content: flex-start;
  align-items: flex-start;
}

.demo-github-mark {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.demo-github-mark-large {
  width: 30px;
  height: 30px;
}

.demo-corner-ribbon {
  position: absolute;
  inset: 0;
  color: #f6f8fa;
  text-decoration: none;
}

.demo-ribbon-band {
  position: absolute;
  top: 22px;
  right: -56px;
  width: 240px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #24292f 0%, #11121a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px -20px rgba(17, 18, 26, 0.85);
  transform: rotate(45deg);
}

.demo-ribbon-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.demo-ribbon-text strong,
.demo-ribbon-text span {
  display: block;
}

.demo-ribbon-text strong {
  font-family: var(--display);
  font-size: 0.8rem;
}

.demo-ribbon-text span {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 248, 250, 0.75);
}

.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #11121a 0%, #24292f 100%);
  color: #f6f8fa;
  text-decoration: none;
  box-shadow: 0 18px 30px -22px rgba(17, 18, 26, 0.85);
}

.demo-pill-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 248, 250, 0.72);
}

.demo-pill-copy strong,
.demo-pill-copy span:last-child {
  line-height: 1.15;
}

.demo-corner-tab {
  position: absolute;
  top: 18px;
  right: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 12px 18px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, #11121a 0%, #24292f 100%);
  color: #f6f8fa;
  min-width: 92px;
  text-decoration: none;
  box-shadow: 0 18px 28px -22px rgba(17, 18, 26, 0.8);
}

.demo-corner-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.demo-corner-tab strong {
  font-family: var(--display);
  font-size: 0.88rem;
}

.demo-corner-tab span:last-child {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(246, 248, 250, 0.72);
}

.demo-fold-card {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 14px;
  border-radius: 16px 0 16px 16px;
  background: #11121a;
  color: #f6f8fa;
  text-decoration: none;
  box-shadow: 0 18px 28px -22px rgba(17, 18, 26, 0.8);
}

.demo-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.demo-fold-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.demo-fold-copy strong {
  font-family: var(--display);
}

.demo-fold-copy span:last-child {
  font-size: 0.72rem;
  color: rgba(246, 248, 250, 0.72);
}

.demo-hero-strip {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(17, 18, 26, 0.98), rgba(36, 41, 47, 0.98));
  color: #f6f8fa;
  text-decoration: none;
  box-shadow: 0 18px 30px -24px rgba(17, 18, 26, 0.82);
}

.demo-strip-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.demo-strip-copy strong {
  font-family: var(--display);
}

.demo-strip-copy span:last-child {
  color: rgba(246, 248, 250, 0.74);
}

.timeline-footer {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.about-panel {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.about-body {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.about-attribution {
  font-size: 0.88rem;
}

.about-nerd {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(9, 105, 218, 0.06);
  border: 1px solid rgba(9, 105, 218, 0.16);
}

.about-links {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.about-links a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.about-links a:hover {
  color: var(--accent);
  background: rgba(9, 105, 218, 0.1);
  box-shadow: inset 0 -6px 0 rgba(9, 105, 218, 0.18);
  text-decoration: none;
}

.about-body a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.about-body a:hover {
  color: var(--accent);
  background: rgba(9, 105, 218, 0.1);
  box-shadow: inset 0 -6px 0 rgba(9, 105, 218, 0.18);
  text-decoration: none;
}

.history-header {
  align-items: center;
}

.history-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--muted);
}

.icon-button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.icon-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

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

.month-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  background: #ffffff;
  position: relative;
  z-index: 0;
  overflow: visible;
}

.month-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
}

.month-header span {
  color: var(--muted);
  font-size: 0.85rem;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.month-day,
.month-empty {
  width: 100%;
  height: 12px;
  border-radius: 4px;
  background: #dfe4ea;
}

.month-day {
  cursor: pointer;
}

.month-day.operational {
  background: rgba(45, 164, 78, 0.8);
}

.month-day.minor {
  background: rgba(217, 119, 6, 0.85);
}

.month-day.major {
  background: rgba(207, 34, 46, 0.85);
}

.month-day.maintenance {
  background: rgba(31, 111, 235, 0.85);
}

.month-day.future {
  background: #e9edf1;
  cursor: default;
  pointer-events: none;
}

.month-empty {
  background: transparent;
  pointer-events: none;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
  position: relative;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  position: relative;
  z-index: 0;
  overflow: visible;
}

.service-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.service-row-header span {
  color: var(--muted);
}

.service-bars {
  display: grid;
  grid-template-columns: repeat(90, minmax(0, 1fr));
  column-gap: 2px;
  row-gap: 2px;
  align-items: center;
}

.service-bars span {
  height: 16px;
  border-radius: 4px;
  background: #dfe4ea;
  cursor: pointer;
}

.service-bars span.operational {
  background: rgba(45, 164, 78, 0.8);
}

.service-bars span.minor {
  background: rgba(217, 119, 6, 0.85);
}

.service-bars span.major {
  background: rgba(207, 34, 46, 0.85);
}

.service-bars span.maintenance {
  background: rgba(31, 111, 235, 0.85);
}

.empty {
  padding: 20px;
  border-radius: var(--radius-sm);
  background: #f6f8fa;
  color: var(--muted);
  margin-top: 16px;
}

.incident-group {
  margin-top: 18px;
}

.incident-group h4 {
  margin: 0 0 8px;
  font-family: var(--display);
}

.incident-card {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  padding: 14px 16px;
  margin-bottom: 10px;
  background: #ffffff;
}

.incident-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.incident-title h5 {
  margin: 0;
  font-size: 1rem;
}

.incident-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 6px;
}

.badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge.minor {
  background: rgba(217, 119, 6, 0.16);
  color: #8a4b00;
}

.badge.major {
  background: rgba(207, 34, 46, 0.16);
  color: #8a1f24;
}

.badge.maintenance {
  background: rgba(31, 111, 235, 0.16);
  color: #1f4d8f;
}

.badge.none,
.badge.operational {
  background: rgba(45, 164, 78, 0.16);
  color: #1b5f33;
}

.timeline {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: var(--muted);
}

.timeline span {
  padding: 4px 8px;
  background: #f0ede7;
  border-radius: 999px;
}

.components {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--muted);
}

.components span {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f6f8fa;
  border: 1px solid var(--border);
}

details {
  margin-top: 10px;
}

details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
}

details ul {
  padding-left: 16px;
  color: var(--muted);
}

.site-footer {
  padding: 32px 24px 48px;
  color: var(--muted);
  font-size: 0.8rem;
  max-width: 850px;
  margin: 0 auto;
}

[data-animate] {
  opacity: 0;
  transform: translateY(12px);
  animation: rise 0.8s ease forwards;
}

[data-animate]:nth-of-type(1) {
  animation-delay: 0.1s;
}

[data-animate]:nth-of-type(2) {
  animation-delay: 0.2s;
}

[data-animate]:nth-of-type(3) {
  animation-delay: 0.3s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: stretch;
  }

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

  .uptime-bars {
    column-gap: 2px;
  }

  .uptime-bars span {
    height: 24px;
    border-radius: 5px;
  }

  .service-bars {
    column-gap: 1.5px;
  }

  .service-bars span {
    height: 15px;
    border-radius: 3px;
  }
}

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

  .brand-mark {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .feature-spotlight {
    min-width: 0;
    width: 100%;
    max-width: none;
  }

  .feature-head {
    align-items: flex-start;
  }

  .site-live-pill,
  .site-live-fold,
  .site-live-strip {
    width: 100%;
  }

  .site-live-corner-ribbon .site-live-ribbon-band {
    right: -84px;
    width: 270px;
  }

  .site-live-corner-tab {
    position: fixed;
    right: 0;
    bottom: 18px;
    top: auto;
    min-width: 78px;
    width: auto;
    max-width: none;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 8px 10px;
    border-radius: 14px 0 0 14px;
    box-shadow: 0 16px 26px -22px rgba(17, 18, 26, 0.82);
    transform: none;
    z-index: 25;
  }

  .site-live-corner-tab::after {
    display: block;
    width: 8px;
    height: 8px;
  }

  .site-live-corner-tab strong {
    font-size: 0.74rem;
    text-align: center;
    line-height: 1;
  }

  .site-live-corner-tab span:last-child {
    font-size: 0.52rem;
    text-align: center;
    line-height: 1;
  }

  .cta-options {
    grid-template-columns: 1fr;
  }

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

  .demo-ribbon-band {
    right: -72px;
    width: 248px;
  }

  .demo-pill,
  .demo-hero-strip,
  .demo-fold-card {
    width: 100%;
  }

  .demo-pill,
  .demo-hero-strip {
    border-radius: 22px;
  }

  .uptime-bars {
    column-gap: 1.5px;
    row-gap: 4px;
  }

  .uptime-bars span {
    height: 20px;
    border-radius: 4px;
  }

  .hero-panel h3 {
    font-size: 1.2rem;
  }

  .uptime-label {
    font-size: 0.98rem;
  }

  .hero-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-attribution {
    text-align: left;
  }

  .hero-share-feedback {
    text-align: left;
  }

  .hero-share-tooltip {
    display: none;
  }

  .service-bars {
    column-gap: 1px;
    row-gap: 3px;
  }

  .service-bars span {
    height: 13px;
    border-radius: 3px;
  }

  .status-meta {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .status-meta .divider {
    display: none;
  }

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

@media (max-width: 560px) {
  .site-header {
    padding: 32px 12px 20px;
    gap: 16px;
  }

  main {
    padding: 0 12px 40px;
    gap: 20px;
  }

  .hero-panel,
  .panel {
    padding: 18px 12px;
  }

  .hero-panel-header,
  .panel-header {
    gap: 12px;
  }

  .hero-panel-header {
    margin-bottom: 12px;
  }

  .legend {
    margin-top: 12px;
  }

  .about-prompt a {
    padding: 10px 14px;
  }

  .site-footer {
    padding: 20px 12px 28px;
  }

  .uptime-bars {
    grid-template-columns: repeat(45, minmax(0, 1fr));
    column-gap: 2px;
    row-gap: 6px;
  }

  .uptime-bars span {
    height: 17px;
  }

  .service-bars {
    grid-template-columns: repeat(45, minmax(0, 1fr));
    column-gap: 2px;
    row-gap: 4px;
  }

  .service-bars span {
    height: 11px;
  }
}

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

  html[data-status-meta="stacked"] .divider,
  html[data-status-meta="cards"] .divider,
  html[data-status-meta="compact"] .divider {
    display: none;
  }

  html[data-status-meta="stacked"] .status-meta-item,
  html[data-status-meta="cards"] .status-meta-item,
  html[data-status-meta="compact"] .status-meta-item {
    border: 1px solid rgba(208, 215, 222, 0.92);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 248, 250, 0.92));
  }

  html[data-status-meta="stacked"] .status-meta-label,
  html[data-status-meta="cards"] .status-meta-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }

  html[data-status-meta="stacked"] .status-meta-value,
  html[data-status-meta="cards"] .status-meta-value,
  html[data-status-meta="compact"] .status-meta-value {
    color: var(--ink);
    line-height: 1.3;
  }

  html[data-status-meta="stacked"] .status-meta-item,
  html[data-status-meta="cards"] .status-meta-item {
    padding: 10px 12px;
    border-radius: 14px;
  }

  html[data-status-meta="stacked"] .status-meta-value,
  html[data-status-meta="cards"] .status-meta-value {
    font-weight: 600;
  }

  html[data-status-meta="compact"] .status-meta {
    gap: 8px;
  }

  html[data-status-meta="compact"] .status-meta-item {
    align-items: center;
    padding: 7px 10px;
    border-radius: 999px;
  }

  html[data-status-meta="compact"] .status-meta-value {
    font-weight: 600;
  }

  html[data-status-meta="stacked"] .status-meta {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  html[data-status-meta="stacked"] .status-meta-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  html[data-status-meta="cards"] .status-meta {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 10px;
  }

  html[data-status-meta="cards"] .status-meta-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  html[data-status-meta="compact"] .status-meta {
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 420px) {
  .uptime-bars {
    column-gap: 1.5px;
    row-gap: 5px;
  }

  .uptime-bars span {
    height: 14px;
  }

  .service-bars {
    column-gap: 1.5px;
    row-gap: 3px;
  }

  .service-bars span {
    height: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.hero-panel.tooltip-open,
.hero.tooltip-open,
.panel.tooltip-open,
.month-card.tooltip-open,
.service-row.tooltip-open {
  z-index: 50;
}

.hero.tooltip-open {
  position: relative;
}

.picker-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  position: relative;
  z-index: 1;
}

.picker-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
}

.picker-header h1,
.picker-header h2 {
  margin: 0;
  font-family: var(--display);
}

.picker-header p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 58ch;
}

.picker-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.picker-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 14px 28px -24px rgba(0, 0, 0, 0.35);
}

.picker-link.active {
  background: #11121a;
  color: #f6f8fa;
  border-color: #11121a;
}

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

.picker-card {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  padding: 22px;
}

.picker-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
}

.picker-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.picker-copy {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.picker-preview {
  position: relative;
  min-height: 360px;
  margin-top: 18px;
  border-radius: 22px;
  border: 1px solid rgba(36, 41, 47, 0.08);
  background:
    radial-gradient(circle at top left, rgba(9, 105, 218, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 250, 0.98));
  overflow: hidden;
}

.picker-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 28px 18px;
}

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

.picker-preview-brandmark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #11121a;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.picker-preview-brandmark span {
  position: absolute;
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, #8fd18a, #f1a23a, #e0564a);
  border-radius: 999px;
  opacity: 0.9;
}

.picker-preview-brandmark span:nth-child(1) {
  transform: rotate(20deg);
}

.picker-preview-brandmark span:nth-child(2) {
  transform: rotate(-20deg);
}

.picker-preview-brandmark span:nth-child(3) {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
}

.picker-preview-brandtext strong {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  line-height: 1.1;
}

.picker-preview-brandtext span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.picker-preview-body {
  padding: 0 28px 28px;
}

.picker-preview-panel {
  min-height: 180px;
  border-radius: 18px;
  border: 1px solid rgba(36, 41, 47, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
  position: relative;
  overflow: hidden;
}

.picker-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.84rem;
}

.picker-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.picker-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.picker-nav a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.picker-nav a:hover {
  text-decoration: underline;
}

.picker-hub-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.picker-hub-item {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.picker-hub-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
}

.picker-hub-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.picker-demo-corner-ribbon {
  position: absolute;
  inset: 0;
  color: #f6f8fa;
  text-decoration: none;
}

.picker-demo-ribbon-band {
  position: absolute;
  top: 26px;
  right: -54px;
  width: 250px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #24292f 0%, #11121a 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f6f8fa;
  transform: rotate(45deg);
  box-shadow: 0 18px 30px -20px rgba(17, 18, 26, 0.85);
}

.picker-demo-ribbon-copy,
.picker-demo-pill-copy,
.picker-demo-fold-copy,
.picker-demo-strip-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.picker-demo-ribbon-copy strong,
.picker-demo-pill-copy strong,
.picker-demo-fold-copy strong,
.picker-demo-strip-copy strong {
  font-family: var(--display);
}

.picker-demo-ribbon-copy span,
.picker-demo-fold-copy span,
.picker-demo-tab span:last-child,
.picker-demo-pill-copy span:last-child,
.picker-demo-strip-copy span:last-child {
  color: rgba(246, 248, 250, 0.76);
}

.picker-demo-github {
  width: 34px;
  height: 34px;
  fill: currentColor;
  flex: 0 0 auto;
}

.picker-demo-pill {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #11121a 0%, #24292f 100%);
  color: #f6f8fa;
  text-decoration: none;
  box-shadow: 0 18px 30px -22px rgba(17, 18, 26, 0.85);
}

.picker-demo-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 248, 250, 0.72);
}

.picker-demo-tab {
  position: absolute;
  top: 22px;
  right: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 14px 20px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, #11121a 0%, #24292f 100%);
  color: #f6f8fa;
  min-width: 104px;
  text-decoration: none;
  box-shadow: 0 18px 28px -22px rgba(17, 18, 26, 0.8);
}

.picker-demo-tab::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.picker-demo-fold-card {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 18px 16px;
  border-radius: 18px 0 18px 18px;
  background: #11121a;
  color: #f6f8fa;
  text-decoration: none;
  box-shadow: 0 18px 28px -22px rgba(17, 18, 26, 0.8);
}

.picker-demo-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06));
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.picker-demo-hero-strip {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(17, 18, 26, 0.98), rgba(36, 41, 47, 0.98));
  color: #f6f8fa;
  text-decoration: none;
  box-shadow: 0 18px 30px -24px rgba(17, 18, 26, 0.82);
}

@media (max-width: 900px) {
  .picker-grid,
  .picker-hub-list {
    grid-template-columns: 1fr;
  }

  .picker-header {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .picker-shell {
    padding: 36px 20px 64px;
  }

  .picker-preview {
    min-height: 320px;
  }

  .picker-preview-header {
    flex-direction: column;
    padding: 24px 22px 16px;
  }

  .picker-preview-body {
    padding: 0 22px 22px;
  }

  .picker-demo-pill,
  .picker-demo-fold-card,
  .picker-demo-hero-strip {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .picker-demo-ribbon-band {
    right: -86px;
    width: 260px;
  }
}
