:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #050505;
  color: #f5f5f5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(5, 5, 5, 1) 42%),
    #050505;
}

a {
  color: inherit;
}

.shell {
  width: min(960px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 48px 0;
}

.hero {
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.eyebrow {
  color: #a3a3a3;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 13px;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

p {
  margin: 0;
  max-width: 620px;
  color: #c7c7c7;
  font-size: 17px;
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.primary,
.app-card {
  border: 1px solid #303030;
  border-radius: 8px;
  text-decoration: none;
  transition:
    border-color 120ms ease,
    background 120ms ease;
}

.primary {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  font-size: 14px;
}

.primary {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #050505;
}

.app-card:hover {
  border-color: #525252;
  background: #151515;
}

.panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 24px 0;
  padding: 18px;
  border: 1px solid #252525;
  border-radius: 8px;
  background: #0b0b0b;
}

h2 {
  margin: 0 0 6px;
  font-size: 15px;
}

code {
  max-width: 100%;
  overflow-wrap: anywhere;
  border: 1px solid #303030;
  border-radius: 6px;
  padding: 8px 10px;
  color: #d7d7d7;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
}

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

.app-card {
  display: flex;
  min-height: 96px;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  background: #0b0b0b;
}

.app-card.active {
  border-color: #f5f5f5;
}

.app-card span {
  font-size: 16px;
  font-weight: 600;
}

.app-card small {
  color: #969696;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .shell {
    width: min(100vw - 24px, 960px);
    padding: 28px 0;
  }

  .panel,
  .grid {
    grid-template-columns: 1fr;
  }
}
