:root {
  color-scheme: dark;
  --bg: #101419;
  --panel: #181f26;
  --panel-border: #2b3844;
  --text: #f4f7fa;
  --muted: #9eaebb;
  --remote: #3fbf9b;
  --stoat: #f0b35b;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(135deg, rgba(63, 191, 155, 0.16), transparent 34%),
    linear-gradient(225deg, rgba(240, 179, 91, 0.14), transparent 38%),
    var(--bg);
  color: var(--text);
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.panel {
  width: min(720px, 100%);
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #22303a;
  color: var(--remote);
}

svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
}

h1 {
  margin: 0;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
}

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

.action {
  min-height: 104px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: #121920;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.action:hover,
.action:focus-visible {
  transform: translateY(-2px);
  background: #17222b;
  outline: none;
}

.action.remote:hover,
.action.remote:focus-visible {
  border-color: var(--remote);
}

.action.stoat:hover,
.action.stoat:focus-visible {
  border-color: var(--stoat);
}

.icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #22303a;
}

.remote .icon {
  color: var(--remote);
}

.stoat .icon {
  color: var(--stoat);
}

strong,
small {
  display: block;
}

strong {
  font-size: 18px;
  line-height: 1.25;
}

small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .shell {
    place-items: stretch;
    align-content: center;
  }

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

  .brand {
    align-items: flex-start;
  }
}
