:root {
  --bg: #050708;
  --panel: #0b1013;
  --panel-2: #10161a;
  --border: #242b31;
  --text: #f4f5f5;
  --muted: #9aa2a8;
  --red: #ff1b22;
  --red-dark: #b80f15;
  --green: #42d864;
}

* { box-sizing: border-box; }

html {
  background: #050708;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 27, 34, 0.08), transparent 26rem),
    linear-gradient(180deg, #020303, var(--bg) 18rem, #070a0c);
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-stretch: condensed;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
[hidden] { display: none !important; }
body.modal-open { overflow: hidden; }

.wrap {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 20;
  height: 100px;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid #11171b;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.nav {
  height: 100px;
  display: grid;
  grid-template-columns: 250px 1fr 188px;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px #000);
}

.brand strong,
.hero h1 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  letter-spacing: 0;
}

.brand strong {
  display: block;
  font-size: 31px;
  line-height: 0.9;
}

.brand small {
  display: block;
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 42px;
  font-weight: 900;
  font-size: 15px;
}

.main-nav a {
  position: relative;
  padding: 35px 0 31px;
}

.main-nav a.active,
.main-nav a:hover { color: var(--red); }

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 21px;
  height: 2px;
  background: var(--red);
}

.btn.primary {
  border: 0;
  border-radius: 6px;
  background: linear-gradient(180deg, #ff272c, #d81017);
  color: white;
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.wallet-sprite {
  --wallet-frame: 160px;
  justify-self: end;
  display: block;
  width: var(--wallet-frame);
  height: 96px;
  background-image: url("assets/money-throw-sprite.png");
  background-repeat: no-repeat;
  background-size: calc(var(--wallet-frame) * 8) 100%;
  background-position: 0 0;
  filter: drop-shadow(0 7px 10px rgba(0, 0, 0, 0.72));
  animation: throw-money 900ms linear infinite;
}

.wallet-sprite:hover {
  animation-duration: 560ms;
}

@keyframes throw-money {
  0%, 11.99% { background-position-x: calc(var(--wallet-frame) * 0); }
  12%, 23.99% { background-position-x: calc(var(--wallet-frame) * -1); }
  24%, 35.99% { background-position-x: calc(var(--wallet-frame) * -2); }
  36%, 47.99% { background-position-x: calc(var(--wallet-frame) * -3); }
  48%, 59.99% { background-position-x: calc(var(--wallet-frame) * -4); }
  60%, 71.99% { background-position-x: calc(var(--wallet-frame) * -5); }
  72%, 83.99% { background-position-x: calc(var(--wallet-frame) * -6); }
  84%, 100% { background-position-x: calc(var(--wallet-frame) * -7); }
}

.hero {
  position: relative;
  min-height: 456px;
  overflow: hidden;
  border-bottom: 1px solid #151b20;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 6, 0.98) 0%, rgba(3, 5, 6, 0.74) 23%, rgba(3, 5, 6, 0.08) 53%, rgba(3, 5, 6, 0.9) 100%),
    linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.85));
  pointer-events: none;
}

.hero-art {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -6%;
  width: 112%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 456px;
  display: grid;
  grid-template-columns: 1fr 306px;
  align-items: center;
  gap: 44px;
}

.hero-copy { max-width: 430px; padding-top: 18px; }

.eyebrow {
  margin: 0 0 2px;
  font-size: 31px;
  line-height: 1;
  font-weight: 1000;
}

.hero h1 {
  margin: 0;
  font-size: 86px;
  line-height: 0.92;
  text-transform: none;
  text-shadow: 0 5px 20px #000;
}

.hero h2 {
  margin: 0 0 20px;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 31px;
  line-height: 1;
}

.hero-text {
  margin: 0 0 28px;
  color: #eef1f2;
  font-size: 19px;
  line-height: 1.55;
}

.actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 14px;
}

.btn.secondary,
.contract-card,
.card,
.icon-strip {
  background: linear-gradient(145deg, rgba(18, 25, 29, 0.95), rgba(7, 11, 13, 0.96));
  border: 1px solid var(--border);
  border-radius: 8px;
}

.btn.secondary {
  color: #f0f2f2;
  border-color: #303840;
}

.coin {
  display: inline-grid;
  place-items: center;
  width: 15px;
  height: 15px;
  margin-left: 10px;
  border-radius: 50%;
  color: #ffc73a;
  border: 1px solid currentColor;
  font-size: 11px;
}

.socials {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}

.social-icon {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-image: url("assets/social-icons.png");
  background-size: 400% 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 6px rgba(255, 27, 34, 0.25));
  transition: transform 160ms ease, filter 160ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 9px rgba(255, 27, 34, 0.7));
}

.social-x { background-position: 0 0; }
.social-pill { background-position: 33.333% 0; }
.social-owl { background-position: 66.666% 0; }
.social-kite { background-position: 100% 0; }

.socials .sprite {
  width: 28px;
  height: 28px;
  padding: 2px;
  border: 0;
  border-radius: 50%;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(255, 255, 255, 0.12));
}

.sprite {
  display: inline-block;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  background-image: url("assets/icons.png");
  background-size: 400% 400%;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 6px rgba(255, 27, 34, 0.25));
}

.sprite.x { background-position: 0 0; }
.sprite.plane { background-position: 33.333% 0; }
.sprite.game { background-position: 66.666% 0; }
.sprite.chain { background-position: 100% 0; }
.sprite.smile { background-position: 0 50%; }
.sprite.rocket { background-position: 33.333% 50%; }
.sprite.people { background-position: 66.666% 50%; }
.sprite.trash { background-position: 100% 50%; }
.sprite.air { background-position: 0 100%; }
.sprite.infinity { background-position: 33.333% 100%; }
.sprite.umbrella { background-position: 66.666% 100%; }
.sprite.diamond { background-position: 100% 100%; }

.contract-card {
  width: 100%;
  max-width: 306px;
  justify-self: end;
  padding: 16px;
  align-self: start;
  margin-top: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  background: linear-gradient(145deg, rgba(18, 25, 29, 0.88), rgba(7, 11, 13, 0.89));
}

.contract-card h3 {
  margin: 0 0 5px;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 24px;
}

.contract-card p {
  margin: 0 0 13px;
  color: #dce1e3;
  line-height: 1.35;
  font-size: 12px;
}

.facts {
  margin: 0 0 14px;
  padding: 10px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.09);
}

.facts div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 10px;
  margin: 6px 0;
}

.facts dt { color: #e8eded; font-size: 12px; }
.facts dd { margin: 0; color: #d5dcde; font-size: 12px; line-height: 1.3; }

.contract-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
  color: #dce1e3;
  font-size: 12px;
}

.ca {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 0 11px;
  margin-bottom: 11px;
  border: 1px solid #253037;
  border-radius: 6px;
  background: #141b20;
  font-size: 12px;
}

.ca button {
  border: 0;
  background: transparent;
  color: #d7dee1;
  font-weight: 900;
}

.copy {
  width: 100%;
  height: 38px;
  color: #111;
  background: #fafafa;
  border: 0;
  border-radius: 6px;
  font-weight: 1000;
  font-size: 12px;
}

.ticker {
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  background: #020303;
  color: var(--red);
  font-weight: 1000;
  position: relative;
}

.ticker::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: -7px;
  width: 42px;
  height: 42px;
  background: url("assets/logo.png") center / contain no-repeat;
  filter: drop-shadow(0 2px 5px #000);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.ticker b {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-35%); }
}

.icon-strip {
  position: relative;
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 88px;
  padding: 10px 12px;
}

.icon-strip article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 0 18px;
  border-right: 1px solid var(--border);
}

.icon-strip article:last-child { border-right: 0; }
.icon-strip .sprite {
  width: 34px;
  height: 34px;
  align-self: center;
  justify-self: center;
}

.icon-strip b {
  display: block;
  font-size: 15px;
  line-height: 1.08;
  white-space: nowrap;
}
.icon-strip small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
}

.dashboard {
  display: grid;
  gap: 14px;
  padding: 16px 0 0;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.card h3 {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 1000;
}

.top-row {
  display: grid;
  grid-template-columns: 455px 1fr;
  gap: 14px;
}

.employer-card {
  min-height: 380px;
  padding: 0;
}

.employer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.employer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.65));
}

.quote {
  position: absolute;
  z-index: 1;
  top: 36px;
  right: 28px;
  width: 220px;
}

.quote span,
.red,
.section-head a,
.section-head .link-button,
.contract-card h3,
.burn b,
.copium b,
.quote span { color: var(--red); font-weight: 1000; }

.quote h3 {
  margin: 18px 0 14px;
  font-size: 33px;
  line-height: 1.05;
}

.quote p { font-size: 18px; line-height: 1.35; }

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.section-head h3 { margin: 0; }
.section-head em {
  position: relative;
  margin-left: 22px;
  color: var(--red);
  font-size: 12px;
  font-style: normal;
}

.section-head em::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--red);
}

.section-head a,
.section-head .link-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--red);
  font-weight: 1000;
  font-size: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

th, td {
  padding: 11px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  white-space: nowrap;
}

th {
  color: #dbe0e2;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
}

td { color: #d5dcdf; }

.mid-row {
  display: grid;
  grid-template-columns: 380px minmax(360px, 1fr) 380px;
  gap: 14px;
}

.cortisol {
  min-height: 325px;
  height: 325px;
  padding: 18px;
  overflow: visible;
}

.cortisol h3 {
  position: relative;
  z-index: 2;
  margin: 0;
}

.cortisol-stage {
  position: absolute;
  inset: 58px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 32% 47%, rgba(255, 27, 34, 0.16), transparent 12rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0));
}

.cortisol-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(7, 11, 13, 0.92)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 62px);
  pointer-events: none;
}

.cortisol-brain,
.cortisol-meter,
.hr-mail-button img {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.58));
}

.cortisol-brain {
  position: absolute;
  left: 16px;
  bottom: 5px;
  width: 65%;
  max-height: 188px;
}

.cortisol-meter {
  position: absolute;
  right: 55px;
  bottom: 2px;
  width: 52px;
  height: 192px;
}

.cortisol-copy {
  position: absolute;
  left: 33px;
  bottom: 18px;
  z-index: 2;
}

.cortisol-copy strong {
  display: block;
  color: var(--red);
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 42px;
}

.cortisol-copy p {
  margin: 6px 0 0;
  font-weight: 1000;
  line-height: 1.42;
  font-size: 18px;
}

.hr-mail-button {
  position: absolute;
  z-index: 3;
  right: 21px;
  bottom: 74px;
  width: 58px;
  height: 46px;
  border: 0;
  padding: 0;
  background: transparent;
  animation: mail-panic 1.45s ease-in-out infinite;
}

.hr-mail-button img {
  width: 100%;
  height: 100%;
}

.hr-mail-button:hover {
  animation-duration: 520ms;
}

@keyframes mail-panic {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-2px) rotate(-2deg); }
  50% { transform: translateY(1px) rotate(2deg); }
  75% { transform: translateY(-1px) rotate(-1deg); }
}

.hr-popover {
  position: absolute;
  z-index: 6;
  right: 16px;
  bottom: 125px;
  width: 218px;
  padding: 13px;
  border: 1px solid rgba(255, 27, 34, 0.55);
  border-radius: 7px;
  background: #0d1215;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.72), 0 0 18px rgba(255, 27, 34, 0.16);
}

.hr-popover::after {
  content: "";
  position: absolute;
  right: 33px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-right: 1px solid rgba(255, 27, 34, 0.55);
  border-bottom: 1px solid rgba(255, 27, 34, 0.55);
  background: #0d1215;
}

.hr-popover b {
  display: block;
  color: var(--red);
  font-size: 13px;
  margin-bottom: 6px;
}

.hr-popover p {
  margin: 0;
  color: #dce1e3;
  font-size: 12px;
  line-height: 1.35;
}

.hr-popover span {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 1000;
}

.copium {
  min-height: 325px;
  height: 325px;
  padding: 20px 0 20px 20px;
}

.copium img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.94;
}

.copium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 13, 15, 0.98) 0 45%, rgba(9, 13, 15, 0.25));
}

.copium > div {
  position: relative;
  z-index: 1;
  width: 45%;
}

.copium p { color: #dce1e3; line-height: 1.45; }
.copium ul { list-style: none; padding: 0; margin: 22px 0; }
.copium li { margin: 9px 0; color: #e8ecee; }
.copium li::before { content: "X"; color: var(--red); margin-right: 9px; font-weight: 1000; }
.copium b { font-size: 19px; line-height: 1.25; }

.price {
  min-height: 325px;
  height: 325px;
  padding: 18px;
}

.sol-head,
.salary-results,
.salary-presets {
  display: flex;
  align-items: center;
}

.sol-head {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.sol-head h3 {
  margin: 0;
  font-size: 17px;
}

.sol-head span {
  position: relative;
  padding-left: 13px;
  color: var(--green);
  font-size: 11px;
  font-weight: 1000;
  text-transform: uppercase;
}

.sol-head span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(66, 216, 100, 0.7);
}

.sol-ticker {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0 12px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 27, 34, 0.18), transparent 52%),
    #090d10;
}

.sol-ticker small,
.salary-input-row label,
.salary-results small,
.sol-ticker em {
  color: var(--muted);
}

.sol-ticker strong {
  grid-row: span 2;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 37px;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 0 16px rgba(255, 27, 34, 0.22);
}

.sol-ticker em {
  font-size: 11px;
  font-style: normal;
}

.salary-input-row {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 10px;
  margin: 12px 0 10px;
}

.salary-input-row label {
  font-size: 12px;
  font-weight: 900;
}

.salary-input-row div {
  display: flex;
  align-items: center;
  height: 34px;
  border: 1px solid #2b333a;
  border-radius: 6px;
  background: #11171c;
  overflow: hidden;
}

.salary-input-row span {
  width: 28px;
  color: var(--red);
  font-weight: 1000;
  text-align: center;
}

.salary-input-row input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 1000;
}

.salary-results {
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.salary-results p {
  flex: 1;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
}

.salary-results small {
  display: block;
  margin-bottom: 3px;
  font-size: 10px;
}

.salary-results b {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.salary-results p:last-child b {
  color: var(--red);
}

.price canvas {
  width: 100%;
  height: 98px;
  display: block;
}

.salary-presets {
  gap: 8px;
  margin-top: 8px;
}

.salary-presets button,
.burn button,
.job button {
  flex: 1;
  height: 38px;
  border: 1px solid #2b333a;
  border-radius: 5px;
  background: #11171c;
  font-weight: 900;
}

.salary-presets .active {
  background: var(--red);
  border-color: var(--red);
}

.carousel-card {
  padding: 18px 20px 22px;
}

.meme-row {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.meme-row::-webkit-scrollbar {
  display: none;
}

.work-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.meme-card {
  flex: 0 0 calc((100% - 75px) / 6);
  min-height: 238px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #090d10;
}

.meme-image-button {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  overflow: hidden;
  border-radius: 4px;
}

.meme-image-button:hover .thumb,
.meme-image-button:focus-visible .thumb {
  transform: scale(1.035);
  filter: brightness(1.06);
}

.work-thumb {
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-image: url("assets/memes-sheet.png");
  background-size: 300% 200%;
  border-radius: 4px;
}

.thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  margin-bottom: 12px;
  transition: transform 180ms ease, filter 180ms ease;
}

.meme-card p {
  min-height: 56px;
  margin: 0;
  color: #d8dee0;
  line-height: 1.3;
  font-size: 14px;
}

.arrow {
  position: absolute;
  z-index: 2;
  top: 48%;
  width: 24px;
  height: 47px;
  border: 0;
  border-radius: 4px;
  background: var(--red);
  font-size: 26px;
  font-weight: 900;
}

.arrow.left { left: 0; }
.arrow.right { right: 0; }

.modal-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(7px);
}

.modal-panel,
.image-viewer {
  position: relative;
  width: min(1110px, 100%);
  max-height: min(86vh, 840px);
  overflow: auto;
  border: 1px solid #33404a;
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 27, 34, 0.12), transparent 30rem),
    linear-gradient(145deg, rgba(18, 25, 29, 0.98), rgba(6, 9, 11, 0.99));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.82);
}

.meme-gallery-panel {
  padding: 24px;
}

.modal-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 18px;
  padding-right: 52px;
}

.modal-head h3 {
  margin: 0;
  font-size: 30px;
}

.modal-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid #333c43;
  border-radius: 6px;
  background: #10161a;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.modal-close:hover {
  border-color: var(--red);
  background: var(--red);
}

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

.meme-grid .meme-card {
  min-height: 0;
  flex: none;
}

.image-viewer {
  width: min(920px, 100%);
  padding: 18px;
  text-align: center;
}

.image-viewer img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 6px;
  background: #050708;
}

.image-viewer p {
  margin: 14px 46px 0;
  color: #eef1f2;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
}

.three-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 14px;
}

.tokenomics {
  min-height: 235px;
  padding: 0;
}

.pumpfun-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 37% center;
  opacity: 0.86;
}

.tokenomics::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 12, 0.18), rgba(7, 10, 12, 0.78) 50%, rgba(7, 10, 12, 0.98)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.44));
}

.pumpfun-copy {
  position: relative;
  z-index: 1;
  width: 58%;
  min-height: 235px;
  margin-left: auto;
  padding: 18px;
}

.pumpfun-copy h3 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
}

.pumpfun-copy p {
  margin: 0 0 12px;
  color: #d6dde0;
  font-size: 13px;
  line-height: 1.32;
}

.pumpfun-copy em {
  display: block;
  margin-top: 10px;
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 1000;
}

.pumpfun-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.pumpfun-copy li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 7px 0;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  background: rgba(5, 7, 8, 0.58);
}

.pumpfun-copy li span {
  color: #dce1e3;
}

.pumpfun-copy b {
  color: var(--red);
  font-size: 13px;
}

.burn {
  min-height: 235px;
  padding: 0;
  background:
    radial-gradient(circle at 18% 35%, rgba(255, 27, 34, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(18, 25, 29, 0.95), rgba(7, 11, 13, 0.96));
}

.cutout {
  background-image: url("assets/cutouts.png");
  background-repeat: no-repeat;
}

.dumpster {
  position: absolute;
  z-index: 1;
  left: 10px;
  bottom: 8px;
  width: 138px;
  height: 162px;
  background-size: 260% 100%;
  background-position: left center;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.55));
}

.burn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 14, 0.05), rgba(8, 12, 14, 0.72) 43%, rgba(8, 12, 14, 0.98));
}

.burn-copy {
  position: relative;
  z-index: 2;
  min-height: 235px;
  margin-left: 135px;
  padding: 18px 16px 16px 10px;
}

.burn-copy h3 {
  margin-bottom: 9px;
  font-size: 19px;
}

.burn span {
  display: block;
  color: #c4cbd0;
  font-size: 12px;
  line-height: 1.25;
}

.burn strong {
  display: block;
  margin-top: 9px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 28px;
  line-height: 0.98;
  letter-spacing: 0;
}

.burn b {
  display: block;
  margin-top: 4px;
  color: var(--red);
  font-size: 15px;
  line-height: 1.15;
}

.burn p {
  margin: 12px 0 13px;
  color: #dce1e3;
  font-size: 13px;
  line-height: 1.28;
}

.burn button {
  width: 100%;
  max-width: 145px;
  height: 34px;
  font-size: 12px;
}

.wage-life {
  min-height: 235px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.wage-life img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 146px;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  background: #050708;
  opacity: 0.9;
}

.wage-life::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 27, 34, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(18, 25, 29, 0.58), rgba(7, 11, 13, 0.84));
}

.wage-life > div {
  position: relative;
  z-index: 1;
  padding: 0 2px;
}

.wage-life h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 16px;
  line-height: 1.03;
}

.wage-life p {
  margin: 0;
  color: #dce1e3;
  font-size: 12px;
  line-height: 1.2;
}

.work-card { padding-top: 18px; }

.work-card h3 { font-size: 19px; }

.work-item {
  position: relative;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #090d10;
}

.work-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 0.625;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  margin-bottom: 11px;
}

.work-number {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 27, 34, 0.9);
  border-radius: 50%;
  background: rgba(8, 10, 11, 0.84);
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 16px;
  line-height: 1;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 0 12px rgba(255, 27, 34, 0.56);
  text-shadow: 0 0 8px rgba(255, 27, 34, 0.95);
  animation: work-number-glow 1.45s ease-in-out infinite;
  animation-delay: var(--badge-delay);
}

@keyframes work-number-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.08) inset,
      0 0 10px rgba(255, 27, 34, 0.45);
  }
  50% {
    transform: scale(1.08);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.16) inset,
      0 0 22px rgba(255, 27, 34, 0.95),
      0 0 34px rgba(255, 27, 34, 0.38);
  }
}

.work-item p {
  margin: 0;
  color: #d8dee0;
  font-size: 14px;
  line-height: 1.28;
}

.jobs-row {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 14px;
}

.sheet-card {
  min-width: 0;
  padding: 17px 18px;
}

.sheet-card .section-head {
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.sheet-card .section-head h3 {
  font-size: 15px;
  line-height: 1.1;
}

.sheet-card .section-head a {
  max-width: 86px;
  font-size: 12px;
  line-height: 1.12;
  text-align: right;
}

.sheet-card .section-head em {
  margin-left: 18px;
  font-size: 10px;
}

.sheet-card .section-head em::before {
  left: -12px;
  width: 7px;
  height: 7px;
}

.sheet-card table {
  table-layout: fixed;
  font-size: 11px;
}

.sheet-card th,
.sheet-card td {
  padding: 8px 7px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sheet-card th {
  font-size: 10px;
}

.sheet-card th:nth-child(1),
.sheet-card td:nth-child(1) { width: 18%; }
.sheet-card th:nth-child(2),
.sheet-card td:nth-child(2) { width: 17%; }
.sheet-card th:nth-child(3),
.sheet-card td:nth-child(3) { width: 36%; }
.sheet-card th:nth-child(4),
.sheet-card td:nth-child(4) { width: 15%; }
.sheet-card th:nth-child(5),
.sheet-card td:nth-child(5) { width: 14%; }

.apply-card {
  min-height: 330px;
}

.apply-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.83;
}

.apply-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 12, 14, 0.97), rgba(9, 12, 14, 0.65) 48%, rgba(9, 12, 14, 0.1));
}

.apply-card > div {
  position: relative;
  z-index: 1;
  width: 260px;
}

.apply-card h3 {
  font-size: 29px;
}

.apply-card p {
  color: #dce1e3;
  line-height: 1.35;
}

.apply-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
}

.apply-card li {
  margin: 9px 0;
  font-weight: 900;
}

.apply-card li::before {
  content: "[x]";
  color: var(--red);
  margin-right: 9px;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.job {
  min-height: 202px;
  display: flex;
  flex-direction: column;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 27, 34, 0.09), transparent 54%),
    #0a0f12;
}

.job-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.job-top span,
.job-top em,
.job-tags small {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  border-radius: 999px;
  font-size: 10px;
  font-style: normal;
  font-weight: 1000;
  line-height: 1;
  white-space: nowrap;
}

.job-top span {
  padding: 0 8px;
  color: #fff;
  background: var(--red);
}

.job-top em {
  color: var(--green);
}

.job h4 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 16px;
  line-height: 1.1;
}

.job p,
.job strong,
.job-lore {
  display: block;
  line-height: 1.32;
  font-size: 12px;
}

.job p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
}

.job strong {
  min-height: 48px;
  color: #d9dfe1;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 12px;
}

.job-tags small {
  padding: 0 7px;
  color: #c7d0d4;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.job-lore {
  margin: 0 0 14px;
  color: #cbd3d7;
}

.job button {
  width: 100%;
  margin-top: auto;
}

.jobs-gallery-panel {
  padding: 24px;
}

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

.job-full {
  min-height: 292px;
}

.apply-modal-panel {
  width: min(560px, 100%);
  padding: 24px;
  overflow: visible;
}

.apply-modal-head {
  display: block;
  margin-bottom: 16px;
}

.apply-modal-head p {
  margin-top: 7px;
  color: var(--red);
  text-align: left;
}

.apply-form {
  display: grid;
  gap: 14px;
}

.apply-form label,
.apply-form span {
  display: block;
}

.apply-form span {
  margin-bottom: 7px;
  color: #dce1e3;
  font-size: 13px;
  font-weight: 1000;
}

.apply-form textarea,
.apply-form input[type="file"] {
  width: 100%;
  border: 1px solid #2b333a;
  border-radius: 6px;
  background: #0d1317;
  color: #eef1f2;
  font: inherit;
  font-size: 14px;
}

.apply-form textarea {
  min-height: 122px;
  padding: 12px;
  resize: vertical;
  line-height: 1.35;
}

.apply-form input[type="file"] {
  padding: 11px;
}

.apply-form textarea:focus,
.apply-form input[type="file"]:focus {
  outline: 2px solid rgba(255, 27, 34, 0.42);
  border-color: var(--red);
}

.apply-form .btn {
  width: 100%;
}

.apply-form .btn:disabled {
  opacity: 0.72;
  cursor: wait;
}

.apply-feedback {
  min-height: 0;
  margin: 0;
  padding: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 1000;
  line-height: 1.35;
}

.apply-feedback.show {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(66, 216, 100, 0.28);
  border-radius: 6px;
  background: rgba(66, 216, 100, 0.07);
}

.stats-band {
  position: relative;
  min-height: 104px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 260px);
  align-items: center;
  gap: 18px;
  padding: 14px 18px 14px 24px;
  border: 1px solid var(--red);
  border-radius: 7px;
  background:
    radial-gradient(circle at 72% 50%, rgba(255, 27, 34, 0.14), transparent 24rem),
    linear-gradient(90deg, rgba(18, 7, 8, 0.92), rgba(5, 8, 10, 0.9));
  overflow: hidden;
}

.stats-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.stats-copy span {
  display: block;
  color: var(--red);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.04em;
}

.stats-copy strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.stats-copy p {
  max-width: 660px;
  margin: 8px 0 0;
  color: #dce1e3;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.recliner {
  justify-self: end;
  align-self: end;
  position: relative;
  z-index: 1;
  width: min(236px, 100%);
  height: auto;
  max-height: 105px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.6));
}

.footer {
  margin-top: 0;
  padding: 28px 0 42px;
  background: #070a0c;
  border-top: 1px solid #11181d;
  position: relative;
  overflow: hidden;
}

.footer::after {
  content: "";
  position: absolute;
  right: 70px;
  bottom: -8px;
  width: 116px;
  height: 128px;
  background: url("assets/cutouts.png") left center / 265% 100% no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1.2fr 1.35fr;
  gap: 40px;
}

.footer p,
.footer a {
  display: block;
  color: #c8d0d4;
  font-size: 13px;
  line-height: 1.55;
}

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

.footer h4 {
  margin: 0 0 14px;
  font-size: 15px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
}

.footer-brand strong { font-size: 28px; }
.footer .socials { margin-top: 14px; }
.footer .social-icon {
  width: 25px;
  height: 25px;
}

.footer-token p {
  margin-bottom: 10px;
}

.footer-ca {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 260px;
  padding: 9px 10px;
  border: 1px solid #273139;
  border-radius: 6px;
  background: #0d1317;
  text-align: left;
}

.footer-ca span {
  min-width: 0;
  overflow: hidden;
  color: #d8dee0;
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-ca b {
  color: var(--red);
  font-size: 12px;
}

.footer-ca:hover {
  border-color: var(--red);
}

@media (max-width: 1180px) {
  .wrap { width: min(100% - 30px, 1220px); }
  .nav { grid-template-columns: 235px 1fr 176px; }
  .main-nav { gap: 28px; }
  .hero-grid {
    grid-template-columns: minmax(420px, 1fr) 306px;
    gap: 30px;
  }
  .hero h1 { font-size: 86px; }
  .top-row { grid-template-columns: minmax(360px, 0.85fr) minmax(430px, 1.15fr); }
  .mid-row { grid-template-columns: 1fr 1fr 1fr; }
  .copium > div { width: 58%; }
  .copium img { width: 58%; opacity: 0.72; }
  .jobs-row { grid-template-columns: 1fr; }
  .job-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .work-row {
    grid-template-columns: repeat(6, minmax(130px, 1fr));
    gap: 12px;
  }
  .meme-row { gap: 12px; }
  .meme-card {
    flex-basis: calc((100% - 60px) / 6);
    min-height: 228px;
  }
}

@media (max-width: 1320px) {
  .icon-strip {
    grid-template-columns: repeat(3, 1fr);
    min-height: 166px;
    padding: 0;
  }

  .icon-strip article {
    min-height: 82px;
    padding: 0 22px;
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
  }

  .icon-strip article:nth-child(-n + 3) {
    border-top: 0;
  }

  .icon-strip article:nth-child(3n) {
    border-right: 0;
  }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 1220px); }
  .nav { grid-template-columns: 1fr auto; }
  .main-nav { display: none; }
  .hero-grid,
  .top-row,
  .mid-row,
  .three-row,
  .jobs-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .contract-card { margin: 0 0 24px; }
  .hero h1 { font-size: 64px; }
  .work-row,
  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jobs-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .icon-strip {
    grid-template-columns: repeat(3, 1fr);
    min-height: 166px;
  }
  .meme-card {
    flex-basis: calc((100% - 12px) / 2);
  }
  .meme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .modal-head {
    display: block;
  }
  .stats-band {
    grid-template-columns: 1fr minmax(120px, 180px);
    min-height: 0;
    padding: 14px;
    gap: 10px;
  }
  .stats-copy strong { white-space: normal; }
  .recliner { max-height: 86px; }
}

@media (max-width: 560px) {
  .wallet-sprite {
    --wallet-frame: 138px;
    width: 138px;
    height: 83px;
  }
  .brand strong { font-size: 24px; }
  .hero-grid { gap: 18px; }
  .hero-copy { padding-top: 26px; }
  .actions { flex-direction: column; align-items: stretch; }
  .icon-strip,
  .work-row,
  .job-grid,
  .jobs-modal-grid {
    grid-template-columns: 1fr;
  }
  .icon-strip {
    min-height: 0;
  }
  .icon-strip article,
  .icon-strip article:nth-child(2n),
  .icon-strip article:nth-child(3n) {
    border-right: 0;
  }
  .icon-strip article:nth-child(-n + 2) {
    border-top: 1px solid var(--border);
  }
  .icon-strip article:first-child {
    border-top: 0;
  }
  .meme-card { flex-basis: 82%; }
  .modal-overlay {
    padding: 12px;
  }
  .meme-gallery-panel,
  .image-viewer {
    padding: 14px;
  }
  .meme-grid {
    grid-template-columns: 1fr;
  }
  .image-viewer p {
    margin: 12px 42px 0;
    font-size: 15px;
  }
  .stats-band {
    grid-template-columns: 1fr;
  }
  .stats-copy strong { font-size: 31px; }
  .recliner { display: none; }
  .burn {
    min-height: 285px;
  }
  .dumpster {
    left: 18px;
    top: 58px;
    bottom: auto;
    width: 128px;
    height: 150px;
  }
  .burn-copy {
    min-height: 285px;
    margin-left: 122px;
    padding-right: 14px;
  }
  .pumpfun-copy {
    width: 66%;
  }
}
