:root {
  --bg: #071018;
  --panel: rgba(11, 24, 34, 0.82);
  --panel-solid: #0b1822;
  --text: #f5fff9;
  --muted: #aac0b7;
  --green: #39ff88;
  --green-2: #92ffb9;
  --blue: #37a8ff;
  --red: #ff4c61;
  --yellow: #ffe66d;
  --border: rgba(57, 255, 136, 0.24);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(57, 255, 136, 0.16), transparent 28%),
    radial-gradient(circle at 80% 5%, rgba(55, 168, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #071018 0%, #0a1118 48%, #05080c 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 78%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(7, 16, 24, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #06110a;
  background: radial-gradient(circle at 35% 30%, #ecfff3, var(--green));
  box-shadow: 0 0 28px rgba(57, 255, 136, 0.38);
  font-weight: 950;
}

.brand span:last-child {
  font-size: 1.08rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #06110a;
  box-shadow: 0 16px 42px rgba(57, 255, 136, 0.24);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero {
  position: relative;
  padding: 72px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 36px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--green-2);
  background: rgba(57, 255, 136, 0.08);
  font-weight: 900;
  font-size: 0.88rem;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(3.2rem, 9vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.09em;
}

.hero h1 .outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 255, 249, 0.72);
  text-shadow: none;
}

.hero-copy {
  max-width: 650px;
  color: #d7e8df;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.notice {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.mascot-card {
  position: relative;
  min-height: 580px;
  border-radius: 34px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.035)),
    radial-gradient(circle at 70% 18%, rgba(57, 255, 136, 0.26), transparent 34%),
    var(--panel);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mascot-card::before {
  content: "OPEN 2 WORK";
  position: absolute;
  inset: 26px;
  border-radius: 999px;
  border: 22px solid rgba(57, 255, 136, 0.18);
  display: grid;
  place-items: start center;
  padding-top: 32px;
  color: rgba(57, 255, 136, 0.36);
  font-weight: 950;
  letter-spacing: 0.05em;
  font-size: clamp(1rem, 2vw, 1.55rem);
  transform: rotate(-7deg);
}

.troll {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: min(390px, 78%);
  aspect-ratio: 0.78;
  filter: drop-shadow(0 24px 36px rgba(0,0,0,0.45));
}

.troll-head {
  position: absolute;
  left: 50%;
  top: 4%;
  transform: translateX(-50%);
  width: 72%;
  aspect-ratio: 1;
  border-radius: 45% 45% 50% 50%;
  background: linear-gradient(145deg, #ffffff 0%, #d7e0e8 48%, #aab7c4 100%);
  border: 5px solid #111820;
}

.troll-hair {
  position: absolute;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
  width: 68%;
  height: 80px;
  background: #17242f;
  clip-path: polygon(0 100%, 10% 25%, 20% 100%, 34% 0, 46% 100%, 60% 16%, 70% 100%, 88% 10%, 100% 100%);
}

.eye {
  position: absolute;
  top: 43%;
  width: 22%;
  height: 16%;
  border-radius: 999px;
  background: #06110a;
  box-shadow: inset 0 0 0 8px #f3fff7;
}

.eye.left { left: 21%; }
.eye.right { right: 21%; }

.eye::after {
  content: "";
  position: absolute;
  width: 25%;
  height: 45%;
  border-radius: 999px;
  background: var(--green);
  left: 42%;
  top: 30%;
  box-shadow: 0 0 14px rgba(57,255,136,0.75);
}

.mouth {
  position: absolute;
  left: 50%;
  top: 68%;
  transform: translateX(-50%);
  width: 44%;
  height: 13%;
  background: #111820;
  border-radius: 0 0 999px 999px;
  overflow: hidden;
}

.mouth::after {
  content: "";
  position: absolute;
  left: 18%;
  bottom: -30%;
  width: 64%;
  height: 70%;
  border-radius: 999px 999px 0 0;
  background: #ff4c61;
}

.troll-body {
  position: absolute;
  left: 50%;
  bottom: 3%;
  transform: translateX(-50%);
  width: 82%;
  height: 47%;
  border-radius: 32px 32px 18px 18px;
  background: linear-gradient(145deg, #14212b, #0b1219);
  border: 5px solid #111820;
}

.troll-body::before {
  content: "$O2W";
  position: absolute;
  left: 50%;
  top: 24%;
  transform: translateX(-50%);
  width: 58%;
  height: 28%;
  border-radius: 999px;
  background: var(--green);
  color: #06110a;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 2rem;
  box-shadow: 0 0 22px rgba(57,255,136,0.35);
}

.laptop {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 72%;
  height: 21%;
  border-radius: 16px 16px 8px 8px;
  background: #d7e0e8;
  border: 5px solid #111820;
}

.laptop::after {
  content: "APPLYING...";
  color: #111820;
  font-weight: 950;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.float-card {
  position: absolute;
  border-radius: 16px;
  padding: 13px 14px;
  background: rgba(245, 255, 249, 0.94);
  color: #101820;
  border: 2px solid rgba(16,24,32,0.22);
  box-shadow: 0 16px 38px rgba(0,0,0,0.24);
  font-weight: 900;
  font-size: 0.82rem;
}

.float-card.red {
  color: var(--red);
}

.card-1 { top: 21%; left: 5%; transform: rotate(-8deg); }
.card-2 { top: 18%; right: 4%; transform: rotate(7deg); }
.card-3 { bottom: 21%; left: 4%; transform: rotate(5deg); }
.card-4 { bottom: 22%; right: 5%; transform: rotate(-6deg); color: #06110a; background: var(--green); }

.section {
  padding: 54px 0;
}

.section-title {
  max-width: 780px;
  margin-bottom: 26px;
}

.section-title h2 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.panel {
  position: relative;
  border-radius: 26px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 18px 56px rgba(0,0,0,0.18);
  overflow: hidden;
}

.panel h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.panel .stamp {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(57,255,136,0.1);
  color: var(--green);
  border: 1px solid var(--border);
  font-weight: 950;
  font-size: 0.78rem;
}

.rejection-feed {
  display: grid;
  gap: 12px;
}

.feed-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
}

.feed-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #06110a;
  background: var(--green);
  font-weight: 950;
}

.feed-item strong {
  display: block;
  margin-bottom: 4px;
}

.feed-item span {
  color: var(--muted);
  line-height: 1.5;
}

.ca-box {
  border-radius: 30px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(57,255,136,0.16), rgba(55,168,255,0.07)),
    var(--panel-solid);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.ca-code {
  margin: 18px 0;
  padding: 18px;
  border-radius: 18px;
  background: rgba(0,0,0,0.32);
  border: 1px dashed rgba(57,255,136,0.42);
  color: var(--green-2);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  overflow-wrap: anywhere;
}

.marquee {
  margin: 34px 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 26s linear infinite;
}

.marquee span {
  padding: 16px 26px;
  color: var(--green-2);
  font-weight: 950;
  white-space: nowrap;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.footer {
  padding: 42px 0 54px;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer small {
  display: block;
  max-width: 800px;
  line-height: 1.6;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.socials a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero-grid,
  .grid-3,
  .grid-2,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  .mascot-card {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 22px, 1180px);
  }

  .hero h1 {
    font-size: clamp(3.1rem, 18vw, 5rem);
  }

  .mascot-card {
    min-height: 460px;
    border-radius: 24px;
  }

  .float-card {
    font-size: 0.68rem;
    padding: 10px;
  }

  .btn {
    width: 100%;
  }
}
