html,
body {
  min-height: 100%;
  margin: 0;
  color: #c7d4d6;
  background: #101111;
}

.boot-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background:
    linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px),
    #101111;
  background-size: 44px 44px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.boot-panel {
  width: min(520px, calc(100vw - 40px));
  padding: 22px 26px;
  border-left: 3px solid #00f2ff;
}

.boot-title {
  margin: 0 0 14px;
  color: #00f2ff;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: 0;
}

.boot-copy {
  margin: 0;
  color: rgba(199, 212, 214, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.boot-bar {
  width: 180px;
  height: 2px;
  margin-top: 20px;
  background: linear-gradient(90deg, #00f2ff, #ff00f2, transparent);
  animation: boot-pulse 1.2s ease-in-out infinite alternate;
}

.seo-boot-shell {
  min-height: 100vh;
  padding: clamp(28px, 7vw, 96px) clamp(20px, 8vw, 132px);
  box-sizing: border-box;
  background:
    linear-gradient(rgba(0, 242, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px),
    #101111;
  background-size: 44px 44px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.seo-boot-panel {
  max-width: 960px;
  padding-left: clamp(18px, 3vw, 34px);
  border-left: 3px solid #00f2ff;
}

.seo-boot-kicker,
.seo-boot-title,
.seo-boot-description {
  letter-spacing: 0;
}

.seo-boot-kicker {
  margin: 0 0 18px;
  color: #39ff14;
  font-size: 13px;
}

.seo-boot-title {
  margin: 0;
  color: #70f6ff;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.12;
}

.seo-boot-description {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(199, 212, 214, 0.82);
  font-size: 16px;
  line-height: 1.8;
}

.seo-boot-content,
.seo-boot-links {
  max-width: 820px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(0, 242, 255, 0.2);
  color: rgba(199, 212, 214, 0.76);
  line-height: 1.8;
}

.seo-boot-content p {
  white-space: pre-wrap;
}

.seo-boot-links ol {
  display: grid;
  gap: 16px;
  margin: 0;
  padding-left: 22px;
}

.seo-boot-links a {
  color: #00f2ff;
}

.seo-boot-links p {
  margin: 4px 0 0;
}

@keyframes boot-pulse {
  from {
    opacity: 0.35;
    transform: scaleX(0.5);
    transform-origin: left;
  }

  to {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}
