:root {
  --bg: #0a0e12;
  --bg-2: #111820;
  --surface: #151d28;
  --surface-2: #1c2633;
  --text: #e9f0f7;
  --muted: #8fa3b8;
  --coral: #ff5a4a;
  --coral-dim: #ff8a7a;
  --aqua: #2ee6d6;
  --aqua-dim: #5af0e3;
  --amber: #ffc14d;
  --border: rgba(233, 240, 247, 0.08);
  --glow-coral: 0 0 40px rgba(255, 90, 74, 0.35);
  --glow-aqua: 0 0 36px rgba(46, 230, 214, 0.28);
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Onest", system-ui, sans-serif;
  --font-display: "Outfit", var(--font);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image: radial-gradient(ellipse 100% 60% at 50% -20%, rgba(46, 230, 214, 0.12), transparent 50%),
    radial-gradient(ellipse 70% 45% at 100% 30%, rgba(255, 90, 74, 0.08), transparent 45%);
  overflow-x: hidden;
}

#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.orb-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
  animation: orb-float 18s ease-in-out infinite;
}

.orb--1 {
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  background: #1a5f5a;
  top: -10%;
  left: -5%;
}
.orb--2 {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  background: #8b2e2e;
  top: 35%;
  right: -12%;
  animation-delay: -6s;
}
.orb--3 {
  width: min(60vw, 560px);
  height: min(45vw, 420px);
  background: #2a3d5c;
  bottom: -15%;
  left: 20%;
  animation-delay: -11s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(4%, -3%) scale(1.05);
  }
}

.spin-slow {
  animation: spin-ring 28s linear infinite;
}
@keyframes spin-ring {
  to {
    transform: rotate(360deg);
  }
}

.page-wrap {
  position: relative;
  z-index: 1;
}

a {
  color: var(--aqua-dim);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
a:hover {
  color: var(--coral-dim);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(920px, 92vw);
  margin-inline: auto;
}
.container--wide {
  width: min(1100px, 94vw);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(5, 8, 12, 0.88);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Reload: no flash when gate + captcha already passed (see inline script on <body>) */
html.age-verified #age-overlay,
html.age-verified #age-overlay.is-visible {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: none !important;
}
html.age-verified #age-overlay.is-visible .modal-box {
  transform: translateY(12px) scale(0.98) !important;
  transition: none !important;
}

.modal-box {
  width: min(420px, 100%);
  padding: 1.75rem 1.5rem;
  background: linear-gradient(145deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow-aqua), 0 24px 64px rgba(0, 0, 0, 0.55);
  text-align: center;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.modal-overlay.is-visible .modal-box {
  transform: translateY(0) scale(1);
}

.modal-logo img {
  margin: 0 auto 1rem;
  border-radius: 12px;
  box-shadow: 0 0 0 2px rgba(46, 230, 214, 0.25);
}

.modal-box h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
}

.modal-box p {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn:active {
  transform: scale(0.97);
}
.btn-primary {
  background: linear-gradient(120deg, var(--coral), #ff8069);
  color: #0a0e12;
  box-shadow: var(--glow-coral);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.modal-box--captcha {
  width: min(380px, 100%);
  text-align: left;
}
.modal-box--captcha h2 {
  text-align: center;
}

.captcha-stage {
  margin-top: 0.5rem;
}
.captcha-canvas-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 0.75rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(46, 230, 214, 0.25);
  aspect-ratio: 320 / 170;
  background: var(--bg);
}
.captcha-canvas-wrap canvas#captcha-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.captcha-piece-wrap {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(46, 230, 214, 0.45));
}
.captcha-piece-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.captcha-slider-row {
  margin-bottom: 0.5rem;
}
.captcha-slider-row input[type="range"] {
  width: 100%;
  accent-color: var(--aqua);
}
.captcha-hint {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 0.35rem;
}
.captcha-error {
  min-height: 1.25rem;
  font-size: 0.85rem;
  color: var(--coral-dim);
  margin: 0 0 0.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Cookie bar */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 0.85rem 1rem;
  background: linear-gradient(0deg, rgba(10, 14, 18, 0.98), rgba(17, 24, 32, 0.96));
  border-top: 1px solid var(--border);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-bar.is-visible {
  transform: translateY(0);
}
.cookie-inner {
  width: min(960px, 94vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.cookie-logo img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.cookie-text {
  flex: 1 1 220px;
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.cookie-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: linear-gradient(180deg, rgba(10, 14, 18, 0.96) 0%, rgba(10, 14, 18, 0.82) 100%);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--text);
}
.brand img {
  border-radius: 10px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-list a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.35rem 0;
}
.nav-list a:hover {
  color: var(--aqua);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav-list {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(10, 14, 18, 0.97);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list a {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
  }
}

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 7vw, 5rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(200px, 280px);
  gap: 2rem;
  align-items: start;
}

@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-badge-row {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 1rem;
  animation: fade-up 0.8s ease both;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  animation: fade-up 0.85s ease 0.06s both;
}
.hero h1 .hl {
  background: linear-gradient(105deg, var(--aqua), var(--coral-dim));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(46, 230, 214, 0.2);
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 38rem;
  margin: 0 0 1.25rem;
  animation: fade-up 0.85s ease 0.12s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  animation: fade-up 0.85s ease 0.18s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #0a0e12;
  background: linear-gradient(120deg, var(--aqua), var(--aqua-dim));
  border-radius: 999px;
  box-shadow: var(--glow-aqua);
  position: relative;
  overflow: hidden;
}
.hero-cta span {
  position: relative;
  z-index: 1;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-scroll svg {
  width: 18px;
  height: 18px;
}

.hero-side {
  position: relative;
  min-height: 200px;
}
.hero-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(220px, 70vw);
  height: min(220px, 70vw);
  border: 2px dashed rgba(46, 230, 214, 0.25);
  border-radius: 50%;
  animation: spin-ring 40s linear infinite reverse;
}
.hero-ring--inner {
  width: 78%;
  height: 78%;
  border-color: rgba(255, 90, 74, 0.2);
  animation-duration: 22s;
}
.hero-chip {
  position: absolute;
  inset: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  padding: 0.65rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 0.8rem;
  color: var(--muted);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  animation: pulse-soft 3.5s ease-in-out infinite;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 16px 48px rgba(46, 230, 214, 0.12);
  }
}

/* Sections */
.section {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.section-head {
  margin-bottom: 1.75rem;
}
.section-eyebrow {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral-dim);
  margin-bottom: 0.45rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin: 0;
}
.section-title .hl {
  color: var(--aqua);
}

/* Offer grid */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.offer-card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.45s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.45s ease;
  opacity: 0;
  transform: translateY(20px);
}
.offer-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}
.offer-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 230, 214, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), var(--glow-aqua);
}

.offer-card-media {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 1rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-card-media img {
  width: min(200px, 100%);
  height: 48px;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0;
  font-weight: 700;
}
.offer-line {
  font-size: 0.95rem;
  color: var(--aqua-dim);
  margin: 0;
  flex-grow: 1;
}

.btn-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.1rem;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 10px;
  background: linear-gradient(120deg, var(--coral), #ff7a6a);
  color: #0a0e12;
  text-align: center;
  transition: filter 0.2s ease;
}
.btn-offer:hover {
  filter: brightness(1.08);
  color: #0a0e12;
}

.offer-legal {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.15rem;
}

.why-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255, 90, 74, 0.15), transparent 70%);
  pointer-events: none;
}
.why-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.75rem;
  color: var(--aqua);
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Prose blocks */
.prose-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  margin-bottom: 1.25rem;
}
.prose-block h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}
.prose-block h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 1.25rem 0 0.5rem;
}
.prose-block p,
.prose-block li {
  color: var(--muted);
  font-size: 0.95rem;
}
.prose-block ul {
  padding-left: 1.2rem;
}

/* Job card */
.job-card {
  border: 1px solid rgba(46, 230, 214, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--surface) 0%, #122018 100%);
  box-shadow: var(--glow-aqua);
}
.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--bg-2) 0%, #070a0d 100%);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 0;
  margin-top: 2rem;
}

.footer-responsible h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 1rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 720px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}
.footer-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.footer-badges a {
  display: flex;
  align-items: center;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-badges a:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.footer-badges img {
  height: 32px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}
.badge-18-footer img {
  height: 36px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.88rem;
}
.footer-links a {
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--aqua);
}

.footer-bar {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
}
.footer-bar img {
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bar p {
  margin: 0;
}
