#root {
  padding: 56px 24px 120px;
  min-height: 100vh;
  padding-top: 100px;
}

.page {
  max-width: 760px;
  margin: 0 auto;
}

a {
  color: var(--accent-tag);
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---- hero ---- */

.hero {
  padding: 60px 0 72px;
  border-bottom: 1px solid var(--panel-border);
  margin-bottom: 64px;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-add);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--accent-add);
}

h1 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 24px;
}

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

.hero-desc {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  background: var(--accent-add);
  color: #0d1410;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.15s ease;
}

.btn-primary:hover {
  opacity: 0.88;
  color: #0d1410;
}

.btn-secondary {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--panel-border);
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s ease;
}

.btn-secondary:hover {
  border-color: var(--rail);
  color: var(--text);
}

/* ---- stats row ---- */

.stats {
  display: flex;
  gap: 0;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 64px;
}

.stat {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--panel-border);
}

.stat:last-child {
  border-right: none;
}

.stat-value {
  font-family: "IBM Plex Mono", monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-faint);
  font-family: "IBM Plex Mono", monospace;
}

/* ---- section ---- */

.section {
  margin-bottom: 64px;
}

.section-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--panel-border);
}

/* ---- feature grid ---- */

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color 0.15s ease;
}

.feature:hover {
  border-color: var(--rail);
}

.feature-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: var(--accent-add-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-icon svg {
  width: 15px;
  height: 15px;
  stroke: var(--accent-add);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.feature p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---- terminal block ---- */

.terminal {
  background: #0a0c10;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.terminal-bar {
  background: var(--panel);
  border-bottom: 1px solid var(--panel-border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--panel-border);
}

.terminal-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: var(--text-faint);
  margin-left: 6px;
}

.terminal-body {
  padding: 20px 22px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 2;
}

.t-comment {
  color: var(--text-faint);
}
.t-cmd {
  color: var(--text);
}
.t-cmd::before {
  content: "$ ";
  color: var(--accent-add);
}
.t-out {
  color: var(--text-dim);
  padding-left: 16px;
}
.t-ok {
  color: var(--accent-add);
}
.t-gap {
  display: block;
  height: 6px;
}

/* ---- about strip ---- */

.about-strip {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 28px 28px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.about-strip-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-tag-dim);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-strip-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-tag);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-strip h3 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.about-strip p {
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.65;
}

.about-strip a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  color: var(--accent-tag);
  text-decoration: none;
}

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

@media (max-width: 560px) {
  h1 {
    font-size: 32px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .stats {
    flex-direction: column;
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid var(--panel-border);
  }
  .stat:last-child {
    border-bottom: none;
  }
  .about-strip {
    flex-direction: column;
    gap: 16px;
  }
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}
.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  contain:content;
}

.slide-eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 10px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.carousel-arrow.prev {
  left: 12px;
}
.carousel-arrow.next {
  right: 12px;
}
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
}
.carousel-dot.active {
  background: #fff;
}
