:root {
  --ink: #151719;
  --muted: #606870;
  --line: #dde2e3;
  --surface: #ffffff;
  --teal: #247b75;
  --gold: #b18432;
  --max: 1120px;
}



* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 80px 0 70px;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.72;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.58) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow,
.item-meta {
  margin: 0 0 12px;
  color: var(--teal);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.2rem, 12vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 5px;
  font-size: 1.04rem;
  line-height: 1.2;
}

.hero-content > p {
  max-width: 610px;
  color: #2d3439;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--teal);
}

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(34px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  position: sticky;
  top: 104px;
  align-self: start;
}

.list {
  display: grid;
}

.list-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.list-item.compact {
  align-items: start;
}

.item-meta {
  color: var(--gold);
  text-transform: none;
}

.role {
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 600;
}

.list-item p {
  color: var(--muted);
}

.list-item p:last-child {
  margin-bottom: 0;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 11px;
}

.inline-list span + span::before {
  content: "/";
  color: var(--gold);
  margin-right: 11px;
}

.inline-list.stacked {
  display: grid;
  gap: 4px;
}

.footer {
  text-align: center;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--muted);
}

.footer p {
  margin: 0;
}

.footer small {
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  .hero {
    min-height: 84vh;
    padding: 56px 0 46px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.84)),
      linear-gradient(0deg, rgba(255, 255, 255, 0.99), rgba(255, 255, 255, 0.18));
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 62px 0;
  }

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

  .section-heading {
    position: static;
  }

  .list-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3.6rem, 22vw, 6rem);
  }

  .button {
    flex: 1 1 120px;
  }
}
/* Bear hero override */
.hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--surface);
  overflow: hidden;
}

.hero::after {
  display: none;
}

.hero-home {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 22px;
}

.hero-bear {
  width: min(100%, 440px);
  height: auto;
  display: block;
  margin-bottom: -10px;
}

.hero-intro {
  max-width: 560px;
  text-align: center;
  margin-top: 6px;
}

.hero-intro p:last-child {
  margin: 2px auto 0;
  max-width: 420px;
  color: var(--muted);
  font-size: clamp(0.92rem, 2vw, 1.02rem);
}

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
}

.hero-social a {
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.hero-social a:hover,
.hero-social a:focus-visible {
  color: #000;
  transform: scale(1.08) translateY(-3px);
}

.social-icon {
  width: 28px;
  height: 28px;
}

.fond-note {
  color: var(--accent);
  font-size: 0.9em;
  margin-left: 2px;
}
