:root {
  --bg: #09111f;
  --bg-2: #111b2d;
  --card: rgba(255,255,255,.08);
  --card-strong: rgba(255,255,255,.13);
  --line: rgba(255,255,255,.18);
  --text: #f7fbff;
  --muted: #b8c4d6;
  --orange: #ff6a2a;
  --orange-2: #ff9a3d;
  --blue: #68d2ff;
  --danger: #ff3d57;
  --shadow: 0 28px 80px rgba(0,0,0,.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,106,42,.22), transparent 34rem),
    radial-gradient(circle at 85% 10%, rgba(104,210,255,.18), transparent 30rem),
    linear-gradient(135deg, var(--bg), #060a12 60%, #170b08);
  line-height: 1.6;
}

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  padding: 24px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12rem -16rem auto;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  background: rgba(255,106,42,.2);
  filter: blur(48px);
  pointer-events: none;
}

.nav {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255,255,255,.18);
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: .95rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.hero-grid {
  max-width: 1160px;
  margin: 86px auto 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .78fr);
  gap: 44px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--orange-2);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .78rem;
  font-weight: 800;
  margin: 0 0 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .92;
  max-width: 850px;
  letter-spacing: -.08em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.05em;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.lede {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
}

.button.primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #1c0b04;
  border: 0;
}

.record-card {
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 22px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 18px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--danger);
  box-shadow: 0 0 20px var(--danger);
}

.mugshot-frame {
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  background: #020610;
  border: 1px solid rgba(255,255,255,.14);
}

.mugshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 90px 24px;
}

.split {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 48px;
  align-items: start;
}

.copy {
  color: var(--muted);
  font-size: 1.1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 20px;
}

.cards article,
.channel-panel,
.notice,
.legal section {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

.cards p,
.notice p,
.legal p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255,106,42,.14);
  color: var(--orange-2);
  font-weight: 900;
  margin-bottom: 24px;
}

.channel-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.channel-buttons {
  display: grid;
  gap: 14px;
}

.channel {
  padding: 22px;
  border-radius: 22px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.14);
  background: var(--card-strong);
  display: grid;
  gap: 4px;
}

.channel span {
  color: var(--muted);
  font-size: .9rem;
}

.channel strong {
  font-size: 1.35rem;
}

.facebook:hover {
  border-color: #8db4ff;
}

.youtube:hover {
  border-color: #ff7b7b;
}

.notice {
  margin-bottom: 60px;
  border-color: rgba(255,154,61,.35);
  background: rgba(255,106,42,.08);
}

.footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 24px 46px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer div {
  display: flex;
  gap: 18px;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

.footer a:hover {
  color: var(--text);
}

.subpage {
  min-height: 100vh;
}

.page-header {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px;
}

.page-header h1 {
  margin-top: 80px;
  font-size: clamp(2.8rem, 7vw, 5rem);
}

.page-header p {
  color: var(--muted);
}

.legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 24px 70px;
  display: grid;
  gap: 18px;
}

.legal h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal h2 {
  font-size: 1.45rem;
  letter-spacing: -.02em;
}

.small {
  font-size: .92rem;
}

.callback {
  display: grid;
  place-items: center;
}

@media (max-width: 860px) {
  .nav,
  .footer,
  .split,
  .channel-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .hero {
    padding: 18px;
  }

  .hero-grid {
    margin-top: 54px;
  }

  .record-card {
    transform: none;
  }
}

@media (max-width: 560px) {
  .nav-links {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 3.1rem;
  }
}
