/* ---- Design tokens ---- */
:root {
  --espresso: #241d17;
  --backdrop: #181310;
  --pistachio: #bcd08a;
  --cream: #f2ede1;
  --cream-70: rgba(242, 237, 225, .7);
  --cream-60: rgba(242, 237, 225, .6);
  --cream-20: rgba(242, 237, 225, .2);
  --cream-12: rgba(242, 237, 225, .12);
  --hiring-border: rgba(188, 208, 138, .55);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--backdrop);
  font-family: 'Jost', system-ui, sans-serif;
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

/* ---- Card ---- */
.card {
  width: 100%;
  min-height: 100vh;
  background: var(--espresso);
}

/* ---- Promo ticker ---- */
.ticker {
  overflow: hidden;
  white-space: nowrap;
  background: var(--pistachio);
  color: var(--espresso);
  padding: 10px 0;
}
.ticker__track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 18s linear infinite;
  font: 700 12px 'Bricolage Grotesque', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.ticker__track > span { display: inline-block; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Header ---- */
.header {
  padding: 36px 28px 28px;
  position: relative;
}
.wordmark {
  margin: 0;
  font: 800 56px/0.92 'Bricolage Grotesque', sans-serif;
  letter-spacing: -.02em;
}
.wordmark span { color: var(--pistachio); }
.tagline {
  margin: 16px 0 0;
  max-width: 285px;
  font: 500 13.5px/1.5 'Jost', sans-serif;
  letter-spacing: .02em;
  color: var(--cream-70);
}
.badge {
  position: absolute;
  top: 28px;
  right: 22px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--pistachio);
  color: var(--espresso);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font: 700 10px 'Bricolage Grotesque', sans-serif;
  text-transform: uppercase;
  line-height: 1.15;
  animation: spin 12s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Bento gallery ---- */
.gallery {
  margin: 0 22px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 76px 76px;
  gap: 8px;
}
.tile {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tile--tall { grid-row: 1 / span 2; }

/* ---- Link stack ---- */
.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 22px;
}
.link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  border-radius: 40px;
  text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  transition: transform .15s ease, background-color .15s ease;
}
.link:hover { transform: translateY(-1px); }

.link--primary {
  height: 62px;
  background: var(--pistachio);
  color: var(--espresso);
  font-weight: 700;
  font-size: 17px;
}
.link--pistachio {
  height: 58px;
  background: transparent;
  border: 2px solid var(--hiring-border);
  color: var(--pistachio);
  font-weight: 600;
  font-size: 15px;
}
.link--pistachio:hover { background: rgba(188, 208, 138, .08); }

.link--outline {
  height: 58px;
  background: transparent;
  border: 2px solid var(--cream-20);
  color: var(--cream);
  font-weight: 600;
  font-size: 15px;
}
.link--outline:hover { background: rgba(242, 237, 225, .06); }

.ico { font-size: 20px; }
.ico--sm { font-size: 18px; }

/* ---- Footer ---- */
.footer {
  margin: 30px 22px 0;
  padding: 20px 0 34px;
  border-top: 1px solid var(--cream-12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 500 12.5px 'Jost', sans-serif;
  color: var(--cream-60);
}
.footer a {
  color: var(--pistachio);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .ticker__track,
  .badge {
    animation: none;
  }
  .link { transition: none; }
}
