:root {
  color-scheme: light;
  --fg: rgb(31, 36, 42);
  --fg-secondary: rgba(31, 36, 42, 0.68);
  --fg-gray: rgb(106, 114, 124);
  --bg: rgb(250, 250, 248);
  --surface: rgb(255, 255, 255);
  --bg-gray: rgb(243, 244, 242);
  --bg-hover: rgba(31, 36, 42, 0.08);
  --callout: rgb(238, 241, 241);
  --border: rgba(31, 36, 42, 0.1);
  --border-strong: rgba(31, 36, 42, 0.2);
  --blue: rgb(28, 103, 190);
  --amber: rgb(203, 126, 50);
  --ink: rgb(12, 18, 25);
  --doc: 708px;
  --edge: clamp(20px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.5 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  min-height: 100vh;
}

.bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 45px;
  padding: 0 var(--edge);
  background: rgba(250, 250, 248, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.bar-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.bar-logo-icon {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.bar-logo:hover {
  background: var(--bg-hover);
}

.bar-link {
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--fg-gray);
  font-size: 14px;
}

.bar-link:hover {
  background: var(--bg-hover);
  color: var(--fg);
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 96px var(--edge) 56px;
  isolation: isolate;
  background: var(--ink);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 9, 13, 0.82) 0%, rgba(6, 9, 13, 0.66) 34%, rgba(6, 9, 13, 0.18) 72%),
    linear-gradient(180deg, rgba(6, 9, 13, 0.18), rgba(6, 9, 13, 0.34));
}

.hero-content {
  width: min(580px, 100%);
  color: white;
  animation: hero-in 700ms ease both;
}

.hero-icon {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.hero-brand {
  margin: 22px 0 0;
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 760;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-title {
  width: min(520px, 100%);
  margin: 18px 0 0;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 680;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-subtitle {
  width: min(450px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 30px;
  padding: 0 18px;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
  transition: transform 160ms ease, background-color 160ms ease;
}

.hero-action:hover {
  transform: translateY(-1px);
  background: rgb(238, 244, 250);
}

.section {
  width: min(980px, calc(100% - (var(--edge) * 2)));
  margin: 0 auto;
}

.section-intro {
  padding: 92px 0 76px;
}

.section-kicker {
  color: var(--amber);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--fg);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 720;
  line-height: 1.04;
  letter-spacing: 0;
}

.section-copy {
  max-width: 670px;
  margin: 22px 0 0;
  color: var(--fg-secondary);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.feature {
  min-height: 260px;
  padding: clamp(28px, 5vw, 58px);
  border-right: 1px solid var(--border);
  transition: background-color 180ms ease;
}

.feature:last-child {
  border-right: 0;
}

.feature:hover {
  background: rgb(246, 249, 251);
}

.feature-step {
  color: var(--blue);
  font-size: 14px;
  font-weight: 760;
}

.feature-title {
  max-width: 300px;
  margin: 64px 0 0;
  color: var(--fg);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.feature-copy {
  max-width: 300px;
  margin: 14px 0 0;
  color: var(--fg-secondary);
  font-size: 16px;
  line-height: 1.55;
}

.shows-section {
  width: min(1120px, calc(100% - (var(--edge) * 2)));
  margin: 0 auto;
  padding: 90px 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.show-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.show-list span {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 610;
  line-height: 1.25;
}

.site-footer {
  width: min(1120px, calc(100% - (var(--edge) * 2)));
  margin: 0 auto;
  padding: 0 0 48px;
  color: var(--fg-gray);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.doc {
  width: min(var(--doc), calc(100% - 96px));
  margin: 0 auto;
  padding: 141px 0 120px;
}

.page-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 24px;
  display: block;
  border-radius: 8px;
}

.page-title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-subtitle {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg-secondary);
}

.text {
  margin: 1em 0 0;
  font-size: 16px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
}

.text-gray {
  color: var(--fg-gray);
}

.heading {
  margin: 2em 0 0;
  font-size: 1.875em;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.divider {
  margin: 2em 0;
  border: 0;
  border-top: 1px solid var(--border);
}

.bullets {
  margin: 4px 0 0;
  padding-left: 1.5em;
}

.bullets li {
  margin: 0;
  padding: 3px 0 3px 2px;
  line-height: 1.5;
}

.bullets li::marker {
  color: var(--fg);
}

.table-wrap {
  margin-top: 8px;
  width: 100%;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.table td {
  padding: 6px 8px 6px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.table tr:last-child td {
  border-bottom: 0;
}

.caption {
  margin: 0;
  font-size: 14px;
  color: var(--fg-gray);
}

.caption-link,
.text-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--border-strong);
  text-underline-offset: 2px;
}

.caption-link:hover,
.text-link:hover {
  color: var(--fg);
}

@media (max-width: 768px) {
  .bar {
    padding: 0 14px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 84px;
    padding-bottom: 36px;
    align-items: end;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(6, 9, 13, 0.06) 0%, rgba(6, 9, 13, 0.58) 46%, rgba(6, 9, 13, 0.88) 100%),
      linear-gradient(90deg, rgba(6, 9, 13, 0.4), rgba(6, 9, 13, 0.1));
  }

  .hero-brand {
    font-size: clamp(52px, 17vw, 76px);
  }

  .hero-title {
    font-size: clamp(31px, 10vw, 44px);
  }

  .section-intro {
    padding: 66px 0 54px;
  }

  .feature-band,
  .shows-section {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .feature-title {
    margin-top: 40px;
  }

  .shows-section {
    padding: 68px 0;
  }

  .doc {
    width: calc(100% - 48px);
    padding-top: 93px;
    padding-bottom: 80px;
  }

  .page-title {
    font-size: 32px;
  }

  .page-subtitle {
    font-size: 18px;
  }

  .heading {
    font-size: 1.5em;
  }
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes hero-in {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
