:root {
  --bg: #0c1018;
  --bg-soft: rgba(16, 24, 37, 0.72);
  --panel: rgba(11, 18, 29, 0.78);
  --panel-strong: rgba(17, 27, 43, 0.96);
  --line: rgba(163, 184, 210, 0.18);
  --text: #f4f7fb;
  --muted: #adc0d8;
  --warm: #ff9c2f;
  --warm-soft: #ffd390;
  --blue: #6dc7ff;
  --purple: #8f78ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(109, 199, 255, 0.18), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(255, 156, 47, 0.18), transparent 24%),
    linear-gradient(180deg, #0b111c 0%, #101726 100%);
  color: var(--text);
  font-family: "IBM Plex Sans", Arial, sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.5;
  pointer-events: none;
}

.ambient-one {
  top: 72px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(143, 120, 255, 0.36), transparent 65%);
}

.ambient-two {
  left: -100px;
  bottom: 140px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 156, 47, 0.2), transparent 68%);
}

.layout {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 56px;
}

.panel {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-strong) 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.panel-tight {
  padding: 28px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
  gap: 28px;
  padding: 34px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--warm-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.lead,
.hero-card-text,
.link-text,
.site-footer p {
  color: var(--muted);
}

.lead {
  margin: 20px 0 0;
  max-width: 40rem;
  font-size: 1.06rem;
  line-height: 1.7;
}

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

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.cta:hover,
.cta:focus-visible,
.link-card:hover,
.link-card:focus-visible,
.social-pill:hover,
.social-pill:focus-visible {
  transform: translateY(-2px);
}

.cta-primary {
  background: linear-gradient(135deg, var(--warm) 0%, #ffbd52 100%);
  color: #1a1307;
}

.cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.avatar {
  width: 132px;
  height: 132px;
  border-radius: 28px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.hero-card-title {
  margin: 2px 0 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.hero-card-text {
  margin: 0;
  line-height: 1.6;
}

.panel + .panel,
.panel + .split-layout,
.split-layout + .site-footer {
  margin-top: 22px;
}

.panel:not(.hero) {
  padding: 30px;
}

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

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

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.link-card:hover,
.link-card:focus-visible,
.social-pill:hover,
.social-pill:focus-visible,
.cta:hover,
.cta:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
}

.link-card-featured {
  background: linear-gradient(135deg, rgba(109, 199, 255, 0.14) 0%, rgba(109, 199, 255, 0.04) 100%);
}

.link-card-amazon {
  background: linear-gradient(135deg, rgba(255, 156, 47, 0.18) 0%, rgba(255, 156, 47, 0.05) 100%);
}

.link-card-twitch {
  background: linear-gradient(135deg, rgba(145, 70, 255, 0.16) 0%, rgba(145, 70, 255, 0.05) 100%);
}

.link-card-linkedin {
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.18) 0%, rgba(10, 102, 194, 0.05) 100%);
}

.link-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.link-icon,
.social-icon {
  width: 22px;
  height: 22px;
}

.link-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.link-title {
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.link-text {
  line-height: 1.45;
}

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

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.fact-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  padding: 8px 2px 0;
  text-align: center;
}

.site-footer a {
  color: var(--warm-soft);
}

@media (max-width: 820px) {
  .hero,
  .link-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 24px;
  }

  .panel:not(.hero),
  .panel-tight {
    padding: 24px;
  }

  .hero-card {
    order: -1;
  }
}

@media (max-width: 560px) {
  .layout {
    width: min(100% - 20px, 1040px);
    padding: 18px 0 40px;
  }

  .hero,
  .panel:not(.hero),
  .panel-tight {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-actions,
  .social-list {
    flex-direction: column;
  }

  .cta,
  .social-pill {
    width: 100%;
  }

  .avatar {
    width: 108px;
    height: 108px;
    border-radius: 24px;
  }

  .link-card {
    min-height: unset;
  }
}
