:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --panel-2: #121212;
  --text: #f2f2f2;
  --muted: #b9b9b9;
  --border: #2a2a2a;
  --accent: #ffffff;
  --shadow: 0 0 0 1px rgba(255,255,255,0.03);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.06), transparent 30%),
    linear-gradient(180deg, #000 0%, #050505 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.site-header {
  margin-bottom: 24px;
}

.brand-lockup {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  align-items: center;
}

.brand-mark {
  width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--border);
  background: #000;
}

.eyebrow,
.section-label,
.link-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

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

h1 {
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  margin-bottom: 14px;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.lede {
  max-width: 760px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--muted);
  margin: 0;
}

.card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  box-shadow: var(--shadow);
}

.social-hub,
.hero {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 24px;
  padding: 28px;
  margin-bottom: 28px;
}

.social-hub {
  border-color: #3a3a3a;
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02));
}

.hero p:last-child,
.social-hub p:last-child {
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
}

.social-hub-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 18px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.15s ease, opacity 0.15s ease, border-color 0.15s ease;
}

.button:hover,
.link-card:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.links-section {
  margin-bottom: 28px;
}

.section-heading {
  margin-bottom: 18px;
}

.section-intro {
  color: var(--muted);
  margin-bottom: 0;
}

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

.streamlined-grid {
  gap: 14px;
}

.link-card {
  min-height: 92px;
  padding: 20px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.link-card:hover {
  border-color: #4a4a4a;
  background: var(--panel-2);
}

.streamlined-link::after {
  content: '↗';
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1;
}

.link-title {
  display: block;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}

.compact-card {
  padding: 22px 24px;
}

.inline-link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
}

.small-note {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.92rem;
}

@media (max-width: 840px) {
  .brand-lockup,
  .social-hub,
  .hero {
    grid-template-columns: 1fr;
  }

  .links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-mark {
    width: 132px;
  }

  .link-card-featured {
    grid-column: span 1;
  }

  .hero-actions,
  .social-hub-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 16px, 1120px);
    padding-top: 16px;
  }

  .social-hub,
  .hero,
  .compact-card,
  .link-card {
    padding: 18px;
  }

  .site-header {
    margin-bottom: 18px;
  }

  .brand-lockup {
    gap: 16px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.55rem;
    margin-bottom: 14px;
  }

  .button {
    min-height: 58px;
  }

  .link-card,
  .link-card-prominent,
  .link-card-featured {
    min-height: 116px;
  }

  .link-title {
    font-size: 1.3rem;
  }

  .link-text,
  .section-intro {
    font-size: 0.95rem;
  }
}
