:root {
  color-scheme: light;
  --ink: #18211f;
  --muted: #68736f;
  --paper: #f8f4ec;
  --panel: rgba(255, 255, 255, 0.76);
  --line: rgba(24, 33, 31, 0.13);
  --shadow: 0 24px 70px rgba(32, 39, 36, 0.16);
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(115deg, rgba(216, 59, 49, 0.14), transparent 31%),
    linear-gradient(245deg, rgba(47, 111, 99, 0.17), transparent 35%),
    linear-gradient(0deg, rgba(53, 111, 214, 0.09), transparent 43%),
    var(--paper);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(24, 33, 31, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 33, 31, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 92%);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  font-size: 0.98rem;
  font-weight: 760;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #18211f;
  color: #fff7eb;
  box-shadow: 0 12px 28px rgba(24, 33, 31, 0.18);
}

.topbar p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 2.5vw, 0.96rem);
  font-weight: 650;
  text-align: right;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 7vw, 82px) 0 70px;
}

.intro {
  max-width: 820px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #41504b;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.intro-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.65;
}

.shortcut-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(36px, 7vw, 72px);
}

.shortcut-card {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 44px;
  align-items: center;
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.56)),
    var(--panel);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  isolation: isolate;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.shortcut-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  content: "";
  background: var(--accent);
}

.shortcut-card::after {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 118px;
  height: 118px;
  content: "";
  border: 1px solid color-mix(in srgb, var(--accent) 34%, transparent);
  border-radius: 999px;
  opacity: 0.5;
  transform: translate(28px, -36px);
}

.shortcut-card:hover,
.shortcut-card:focus-visible {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--line));
  box-shadow: 0 30px 88px rgba(32, 39, 36, 0.22);
  transform: translateY(-4px);
  outline: none;
}

.icon-wrap {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 11%, white);
}

.icon-wrap svg {
  width: 42px;
  height: 42px;
  overflow: visible;
}

.icon-wrap path {
  fill: var(--accent);
  stroke: var(--accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-wrap path + path {
  fill: none;
}

.icon-wrap .flame {
  fill: color-mix(in srgb, var(--accent) 32%, #f4c34f);
  stroke: none;
}

.card-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.card-title {
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  font-weight: 880;
  line-height: 1;
  overflow-wrap: anywhere;
}

.card-summary {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.launch-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent);
  font-size: 1.28rem;
  font-weight: 800;
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    width: min(100% - 28px, 1160px);
    padding-top: 18px;
  }

  .brand span:last-child {
    display: none;
  }

  .shell {
    width: min(100% - 28px, 1160px);
    padding-top: 42px;
  }

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

  .shortcut-card {
    grid-template-columns: 72px minmax(0, 1fr) 38px;
    min-height: 128px;
    padding: 18px;
  }

  .icon-wrap {
    width: 56px;
    height: 56px;
  }

  .icon-wrap svg {
    width: 36px;
    height: 36px;
  }
}
