:root {
  --bg: #090604;
  --bg-2: #160c07;
  --gold: #ffb83d;
  --gold-2: #ffd782;
  --fire: #ff5b18;
  --lava: #c6290b;
  --sand: #d49343;
  --ink: #fff7e8;
  --muted: #d8b887;
  --panel: rgba(22, 13, 8, .78);
  --line: rgba(255, 184, 61, .24);
  --shadow: 0 22px 70px rgba(0, 0, 0, .46);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  letter-spacing: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 24, .18), transparent 33rem),
    linear-gradient(180deg, #070403 0%, #140904 58%, #060302 100%);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(255, 216, 136, .78);
  outline-offset: 4px;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 124, 23, .28), transparent 17rem),
    radial-gradient(circle at 50% 50%, #180904 0%, #060201 70%);
  transition: opacity .45s ease, visibility .45s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-sun {
  position: absolute;
  width: min(72vw, 390px);
  aspect-ratio: 1;
  border: 3px solid rgba(255, 195, 81, .82);
  border-radius: 50%;
  box-shadow:
    0 0 24px rgba(255, 114, 24, .9),
    inset 0 0 30px rgba(255, 114, 24, .42);
  animation: pulseSun 1.8s ease-in-out infinite;
}

.loader-logo {
  z-index: 1;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 212, 130, .42);
  border-radius: 26px;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .5), 0 0 45px rgba(255, 91, 24, .32);
}

.loader-brand {
  z-index: 1;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(32px, 9vw, 68px);
  font-weight: 800;
  text-align: center;
  text-shadow: 0 0 30px rgba(255, 91, 24, .72);
}

.loader-tagline,
.loader-text {
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
}

.loader-bar {
  z-index: 1;
  width: min(360px, 78vw);
  height: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 136, .3);
  border-radius: 999px;
  background: rgba(255, 216, 136, .08);
}

.loader-bar span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--fire), var(--gold), #fff0b4);
  transform-origin: left;
  animation: loadLine 1.45s ease-out both;
}

.page-shell {
  min-height: 100dvh;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: 18px 18px 116px;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: 170px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 122, 24, .16), transparent 58%),
    linear-gradient(180deg, transparent 0%, rgba(10, 5, 3, .76) 58%, #090604 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -15%;
  background:
    radial-gradient(circle at 50% 41%, rgba(255, 178, 59, .22), transparent 16rem),
    radial-gradient(circle at 52% 36%, rgba(255, 78, 18, .22), transparent 27rem),
    url("ra-drug-logo.jpg") center/cover no-repeat;
  opacity: .14;
  filter: saturate(1.25) contrast(1.08);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 3, 2, .22), rgba(5, 3, 2, .92)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 184, 61, .035) 35px 36px);
}

.solar-ring {
  position: absolute;
  top: 13%;
  left: 50%;
  width: min(86vw, 620px);
  aspect-ratio: 1;
  border: 4px solid rgba(255, 192, 74, .9);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 42px rgba(255, 91, 24, .7), inset 0 0 50px rgba(255, 91, 24, .25);
  opacity: .72;
}

.pyramid {
  position: absolute;
  bottom: 0;
  width: 46vw;
  max-width: 420px;
  aspect-ratio: 1.15;
  background: linear-gradient(135deg, rgba(255, 200, 91, .2), rgba(90, 39, 13, .08));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  border-bottom: 1px solid var(--line);
  filter: drop-shadow(0 0 34px rgba(255, 91, 24, .16));
}

.pyramid-left {
  left: -12vw;
  opacity: .46;
}

.pyramid-right {
  right: -8vw;
  opacity: .62;
}

.sand-grid {
  position: absolute;
  inset: auto -20% -14% -20%;
  height: 42%;
  background:
    linear-gradient(rgba(255, 184, 61, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 184, 61, .1) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(420px) rotateX(62deg);
  transform-origin: bottom;
  opacity: .35;
}

.ember-field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: .78;
}

.ember-field span {
  position: absolute;
  left: var(--x);
  bottom: -20px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: #ffd782;
  box-shadow: 0 0 14px #ff5b18;
  animation: emberRise var(--duration) linear var(--delay) infinite;
}

.topbar {
  position: fixed;
  left: 50%;
  top: 12px;
  z-index: 20;
  width: min(1120px, calc(100% - 24px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 64px;
  padding: 8px;
  border: 1px solid rgba(255, 212, 130, .2);
  border-radius: 18px;
  background: rgba(9, 6, 4, .58);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

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

.nav-route {
  position: relative;
  flex: 1 1 auto;
  align-self: stretch;
  min-width: 180px;
  max-width: 640px;
  margin: 0 8px;
  overflow: hidden;
  border-inline: 1px solid rgba(255, 216, 136, .13);
  mask-image: linear-gradient(90deg, transparent 0%, black 14%, black 86%, transparent 100%);
}

.route-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 216, 136, .66), transparent),
    repeating-linear-gradient(90deg, rgba(255, 216, 136, .32) 0 12px, transparent 12px 24px);
  box-shadow: 0 0 20px rgba(255, 184, 61, .24);
}

.route-line::before,
.route-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 18px rgba(255, 184, 61, .58);
  transform: translateY(-50%);
}

.route-line::before {
  left: 0;
}

.route-line::after {
  right: 0;
}

.route-node {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(255, 216, 136, .32);
  border-radius: 999px;
  color: #fff0b5;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 9px;
  font-weight: 800;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 216, 136, .18), transparent 70%),
    rgba(9, 5, 3, .82);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, .24),
    0 0 16px rgba(255, 91, 24, .14);
  transform: translate(-50%, -50%);
}

.route-node::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--fire);
  box-shadow: 0 0 12px rgba(255, 91, 24, .65);
}

.route-node-a {
  left: 10%;
}

.route-node-b {
  left: 30%;
}

.route-node-c {
  left: 50%;
}

.route-node-d {
  left: 70%;
}

.route-node-e {
  left: 90%;
}

.route-scanner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 72px;
  height: 40px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 55% 50%, rgba(255, 240, 190, .78), rgba(255, 184, 61, .26) 42%, transparent 70%);
  filter: blur(.2px) drop-shadow(0 0 16px rgba(255, 91, 24, .45));
  transform: translate(-90px, -50%);
  animation: routeScan 4.8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.ghost-button,
.work-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid rgba(255, 216, 136, .28);
  border-radius: 13px;
  color: var(--ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  background: rgba(255, 216, 136, .08);
}

.work-link {
  position: relative;
  min-width: 116px;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
  color: #170904;
  background: linear-gradient(135deg, #fff0a8 0%, var(--gold) 42%, var(--fire) 100%);
  box-shadow: 0 0 28px rgba(255, 91, 24, .3);
}

.work-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
  transform: translateX(-120%);
  animation: buttonSheen 3.8s ease-in-out infinite;
}

.work-link span,
.work-link b {
  position: relative;
}

.work-link span {
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  opacity: .72;
}

.work-link b {
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 13px;
  line-height: 1.1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 700px);
  margin: 92px auto 0;
  text-align: center;
}

.brand-orbit {
  position: relative;
  width: min(48vw, 190px);
  aspect-ratio: 1;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
}

.brand-orbit::before,
.brand-orbit::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 216, 136, .42);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(255, 91, 24, .32);
}

.brand-orbit::after {
  inset: 12%;
  border-color: rgba(255, 91, 24, .38);
  animation: rotateSoft 9s linear infinite;
}

.brand-orbit img {
  width: 70%;
  height: 70%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.eyebrow,
.section-kicker,
.modal-kicker {
  margin: 0 0 13px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Unbounded, Manrope, sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(37px, 11vw, 92px);
  text-wrap: balance;
  text-shadow: 0 0 34px rgba(255, 91, 24, .42);
}

.hero-subtitle {
  width: min(100%, 560px);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.vacancy-stack {
  display: grid;
  gap: 12px;
  margin: 28px 0 18px;
}

.vacancy-button {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  width: 100%;
  padding: 15px 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 216, 136, .22), transparent 9rem),
    linear-gradient(145deg, rgba(255, 184, 61, .16), rgba(255, 91, 24, .07) 48%, rgba(5, 2, 1, .56)),
    rgba(12, 7, 4, .78);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 240, 190, .14);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.vacancy-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 222, 152, .18), transparent);
  transform: translateX(-110%);
  transition: transform .55s ease;
}

.vacancy-button span,
.vacancy-icon,
.vacancy-button b {
  position: relative;
}

.vacancy-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 226, 160, .34);
  border-radius: 14px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .42), transparent 24%),
    linear-gradient(145deg, #fff0a8 0%, var(--gold) 46%, var(--fire) 100%);
  box-shadow:
    0 10px 26px rgba(255, 91, 24, .24),
    inset 0 1px 0 rgba(255, 255, 255, .68);
}

.vacancy-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: #180904;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vacancy-button span {
  color: transparent;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff8d8 0%, var(--gold-2) 45%, var(--fire) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 24px rgba(255, 91, 24, .18);
}

.vacancy-button b {
  justify-self: end;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(255, 216, 136, .22);
  border-radius: 999px;
  color: var(--gold-2);
  font-size: 12px;
  background: rgba(255, 216, 136, .07);
}

.vacancy-button:hover,
.vacancy-button:focus-visible {
  border-color: rgba(255, 216, 136, .56);
  transform: translateY(-2px);
}

.vacancy-button:hover::before,
.vacancy-button:focus-visible::before {
  transform: translateX(110%);
}

.hero-cta-row {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.buy-button,
.work-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 68px;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  color: #170904;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  background: linear-gradient(135deg, #fff0a8, var(--gold) 46%, var(--fire));
  box-shadow: 0 18px 60px rgba(255, 91, 24, .32);
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.work-button {
  border: 1px solid rgba(255, 216, 136, .3);
  color: var(--ink);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(255, 216, 136, .13), rgba(255, 91, 24, .08)),
    rgba(8, 4, 2, .72);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .24);
}

.buy-button:hover,
.buy-button:focus-visible,
.work-button:hover,
.work-button:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.12);
  box-shadow: 0 24px 72px rgba(255, 91, 24, .38);
}

.buy-button i {
  width: 24px;
  height: 24px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg);
}

.signal-band,
.benefits-vault,
.work-ritual {
  position: relative;
  z-index: 4;
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 184, 61, .12), rgba(255, 91, 24, .04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.signal-band {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: -72px;
  padding: 24px 26px;
  border-color: rgba(255, 216, 136, .6);
  background:
    radial-gradient(circle at 7% 50%, rgba(255, 216, 136, .34), transparent 13rem),
    radial-gradient(circle at 86% 10%, rgba(255, 91, 24, .22), transparent 16rem),
    linear-gradient(135deg, rgba(255, 184, 61, .18), rgba(255, 91, 24, .075)),
    rgba(8, 4, 2, .9);
  box-shadow:
    0 18px 58px rgba(0, 0, 0, .42),
    0 0 34px rgba(255, 91, 24, .22),
    inset 0 1px 0 rgba(255, 240, 190, .18);
  animation: signalPulse 2.8s ease-in-out infinite;
}

.signal-band::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 190, .22), transparent);
  transform: translateX(-120%);
  animation: signalSheen 4.2s ease-in-out infinite;
  pointer-events: none;
}

.signal-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff2b8 0 18%, transparent 20%),
    conic-gradient(from 0deg, var(--fire), var(--gold), var(--fire));
  box-shadow: 0 0 24px rgba(255, 91, 24, .4);
}

.signal-band p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff2bc;
  font-family: Unbounded, Manrope, sans-serif;
  font-size: clamp(19px, 2vw, 29px);
  font-weight: 900;
  line-height: 1.28;
  text-shadow:
    0 2px 0 rgba(60, 18, 5, .72),
    0 0 22px rgba(255, 184, 61, .24),
    0 0 30px rgba(255, 91, 24, .16);
}

.signal-band p mark {
  padding: 0 .18em;
  border-radius: 8px;
  color: #ff7a22;
  background: rgba(255, 216, 136, .1);
  text-shadow:
    0 0 18px rgba(255, 91, 24, .5),
    0 1px 0 rgba(255, 236, 166, .35);
}

.work-ritual {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.ritual-step {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 216, 136, .18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 216, 136, .1), rgba(255, 91, 24, .035)),
    rgba(4, 2, 1, .34);
}

.ritual-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #1b0a03;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-2), var(--fire));
}

.ritual-step strong {
  display: block;
  color: var(--ink);
  font-family: Unbounded, Manrope, sans-serif;
  font-size: 17px;
  line-height: 1.2;
}

.ritual-step p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.benefits-vault {
  overflow: hidden;
  isolation: isolate;
  display: grid;
  gap: 18px;
  padding: 22px 18px 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 184, 61, .2), transparent 17rem),
    linear-gradient(135deg, rgba(255, 184, 61, .13), rgba(255, 91, 24, .055)),
    rgba(7, 3, 2, .74);
}

.benefits-vault::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(255, 216, 136, .08) 43% 44%, transparent 45%),
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(255, 216, 136, .035) 27px 28px);
  opacity: .78;
}

.benefits-vault h2,
.modal-panel h2 {
  font-size: clamp(26px, 7vw, 48px);
  line-height: 1.05;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.benefits-vault h2 {
  color: transparent;
  background: linear-gradient(135deg, #fff6ce 0%, var(--gold-2) 42%, var(--fire) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 34px rgba(255, 91, 24, .18);
}

.modal-links {
  display: grid;
  gap: 10px;
}

.modal-links a,
.modal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 216, 136, .28);
  border-radius: 16px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  background: rgba(255, 216, 136, .08);
}

.benefit-list {
  display: grid;
  gap: 14px;
  perspective: 900px;
}

.benefit-item {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 15px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 216, 136, .32);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 233, 179, .14), rgba(255, 91, 24, .06) 48%, rgba(5, 2, 1, .54)),
    #130804;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 240, 190, .18),
    inset 0 -18px 36px rgba(0, 0, 0, .2);
  transform: translateZ(0);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.benefit-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold-2), var(--fire), var(--lava));
  box-shadow: 0 0 26px rgba(255, 91, 24, .58);
}

.benefit-item::after {
  content: "";
  position: absolute;
  inset: -60% -35% auto auto;
  width: 110px;
  height: 220px;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 190, .16), transparent);
  transform: rotate(24deg);
  opacity: .58;
}

.benefit-item:nth-child(2) {
  border-color: rgba(255, 130, 45, .36);
}

.benefit-item:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(255, 216, 136, .17), rgba(159, 39, 13, .12) 48%, rgba(5, 2, 1, .56)),
    #130804;
}

.benefit-item:hover {
  transform: translateY(-3px) rotateX(1deg);
  border-color: rgba(255, 216, 136, .56);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, .46),
    0 0 34px rgba(255, 91, 24, .16),
    inset 0 1px 0 rgba(255, 240, 190, .24);
}

.benefit-item span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 216, 136, .62);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 184, 61, .16) 0 32%, transparent 34%),
    linear-gradient(145deg, rgba(255, 216, 136, .16), rgba(255, 91, 24, .08)),
    #170905;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, .34),
    0 0 0 5px rgba(255, 184, 61, .055),
    inset 0 1px 0 rgba(255, 240, 190, .18),
    inset 0 -10px 18px rgba(0, 0, 0, .28);
}

.benefit-item span::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(255, 216, 136, .42);
  border-radius: inherit;
  box-shadow: inset 0 0 16px rgba(255, 91, 24, .12);
}

.benefit-item span svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 184, 61, .28));
}

.benefit-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff2cf;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .34);
}

.benefit-item mark {
  padding: 0 .14em;
  border-radius: 6px;
  color: var(--gold-2);
  background: linear-gradient(180deg, transparent 50%, rgba(255, 91, 24, .22) 50%);
  text-shadow: 0 0 18px rgba(255, 184, 61, .24);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: end center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .68);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(100%, 640px);
  max-width: calc(100vw - 32px);
  min-width: 0;
  height: auto;
  max-height: calc(100dvh - 32px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 28px 20px 22px;
  border: 1px solid rgba(255, 216, 136, .28);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 184, 61, .12), rgba(255, 91, 24, .04)),
    #100704;
  box-shadow: var(--shadow);
  transform: translateY(20px) scale(.98);
  transition: transform .24s ease;
}

.modal-panel * {
  min-width: 0;
  max-width: 100%;
}

.modal-panel::-webkit-scrollbar:horizontal {
  width: 0;
  height: 0;
  display: none;
}

.modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 216, 136, .26);
  border-radius: 14px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  background: rgba(255, 216, 136, .08);
}

.modal-panel p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 100%;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.modal-cta {
  margin-top: 18px;
  color: #160904;
  background: linear-gradient(135deg, #fff0a8, var(--gold), var(--fire));
}

.modal-links a,
.modal-cta {
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    padding-inline: 34px;
    padding-bottom: 132px;
  }

  .hero-content {
    width: min(88vw, 980px);
  }

  .vacancy-stack {
    grid-template-columns: repeat(3, 1fr);
  }

  .vacancy-button {
    min-height: 172px;
    grid-template-columns: 1fr;
    align-items: start;
    align-content: space-between;
    padding: 18px;
  }

  .vacancy-icon {
    width: 50px;
    height: 50px;
  }

  .vacancy-icon svg {
    width: 34px;
    height: 34px;
  }

  .vacancy-button span {
    font-size: 19px;
  }

  .vacancy-button b {
    justify-self: start;
  }

  .signal-band,
  .benefits-vault,
  .work-ritual {
    width: min(1120px, calc(100% - 64px));
    border-radius: 28px;
  }

  .signal-band {
    margin-top: -86px;
  }

  .work-ritual {
    grid-template-columns: repeat(3, 1fr);
    padding: 18px;
  }

  .benefits-vault {
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    padding: 30px;
  }

  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-item {
    min-height: 138px;
    align-content: start;
  }

  .modal-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-cta-row {
    display: flex;
    justify-content: center;
  }

  .buy-button,
  .work-button {
    width: 260px;
  }

  .modal {
    place-items: center;
  }

  .modal-panel {
    border-radius: 30px;
    padding: 34px;
  }
}

@media (max-width: 760px) {
  .nav-route {
    display: none;
  }
}

@media (max-width: 1180px) {
  .nav-route {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@keyframes loadLine {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes pulseSun {
  0%, 100% { transform: scale(.96); opacity: .68; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes rotateSoft {
  to { transform: rotate(360deg); }
}

@keyframes emberRise {
  0% {
    transform: translate3d(0, 0, 0) scale(.55);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  100% {
    transform: translate3d(22px, -105dvh, 0) scale(1.12);
    opacity: 0;
  }
}

@keyframes buttonSheen {
  0%, 48% { transform: translateX(-120%); }
  68%, 100% { transform: translateX(120%); }
}

@keyframes signalPulse {
  0%, 100% {
    box-shadow:
      0 18px 58px rgba(0, 0, 0, .42),
      0 0 28px rgba(255, 91, 24, .18),
      inset 0 1px 0 rgba(255, 240, 190, .18);
  }
  50% {
    box-shadow:
      0 22px 68px rgba(0, 0, 0, .46),
      0 0 52px rgba(255, 91, 24, .36),
      0 0 22px rgba(255, 216, 136, .18),
      inset 0 1px 0 rgba(255, 240, 190, .24);
  }
}

@keyframes signalSheen {
  0%, 52% { transform: translateX(-120%); }
  72%, 100% { transform: translateX(120%); }
}

@keyframes routeScan {
  0%, 12% { transform: translate(-90px, -50%); opacity: 0; }
  20% { opacity: 1; }
  72% { opacity: 1; }
  88%, 100% { transform: translate(680px, -50%); opacity: 0; }
}
