:root {
  --bg: #070706;
  --bg-2: #0f0e0c;
  --surface: rgba(22, 21, 18, 0.82);
  --surface-strong: #181612;
  --surface-soft: rgba(255, 255, 255, 0.055);
  --ink: #f6efe2;
  --muted: #b9ae9e;
  --muted-2: #81786c;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.20);
  --accent: #e46f2e;
  --accent-2: #ffb568;
  --accent-soft: rgba(228, 111, 46, 0.15);
  --good: #8fd18e;
  --danger: #ff8d67;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -8%, rgba(228, 111, 46, 0.32), transparent 25rem),
    radial-gradient(circle at 88% 0%, rgba(255, 181, 104, 0.16), transparent 26rem),
    radial-gradient(circle at 50% 105%, rgba(228, 111, 46, 0.13), transparent 34rem),
    linear-gradient(180deg, #080806 0%, #0d0c0a 42%, #070706 100%);
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 12%, #000 0, transparent 70%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  background: var(--accent);
  color: #090807;
  padding: .7rem 1rem;
  border-radius: 999px;
  z-index: 999;
  font-weight: 900;
}
.skip-link:focus { left: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 6, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: .9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  font-size: 1.35rem;
}
.brand-mark {
  width: 2.15rem;
  height: 2.15rem;
  display: inline-grid;
  place-items: center;
  filter: drop-shadow(0 10px 22px rgba(228, 111, 46, 0.28));
}
.brand-mark svg { width: 100%; height: 100%; display: block; }
.logo-core { fill: #080806; stroke: rgba(255,255,255,.18); stroke-width: 1.5; }
.logo-face-a { fill: #ffb568; }
.logo-face-b { fill: #e46f2e; }
.logo-face-c { fill: #8b3e24; }
.logo-crack { fill: none; stroke: #080806; stroke-width: 3.6; stroke-linecap: round; stroke-linejoin: round; opacity: .82; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-weight: 700;
  font-size: .95rem;
}
.nav-links a:hover { color: var(--ink); }

.language-toggle {
  display: inline-flex;
  padding: .18rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.lang-btn {
  border: 0;
  background: transparent;
  padding: .45rem .65rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  font-weight: 900;
}
.lang-btn.active {
  background: var(--accent);
  color: #090807;
}

.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5rem 1.25rem;
  position: relative;
}

.hero {
  min-height: calc(100svh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, .76fr);
  align-items: center;
  gap: 3rem;
  padding-top: 4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-2);
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: .76rem;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3.2rem, 8vw, 7.6rem);
  line-height: .88;
  letter-spacing: -0.085em;
  max-width: 9ch;
  margin-bottom: 1.35rem;
  text-wrap: balance;
}
h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .98;
  letter-spacing: -0.07em;
  margin-bottom: 1rem;
  text-wrap: balance;
}
h3 {
  font-size: 1.08rem;
  letter-spacing: -0.025em;
  margin-bottom: .45rem;
}

.hero-text {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 42rem;
  margin-bottom: 1.8rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.button-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #090807;
  box-shadow: 0 18px 42px rgba(228, 111, 46, .25);
}
.button-secondary {
  background: rgba(255,255,255,.06);
  border-color: var(--line);
  color: var(--ink);
}
.button:hover { transform: translateY(-1px); }
.microcopy { color: var(--muted); font-size: .95rem; max-width: 34rem; }
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .35rem .7rem;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.055);
  color: var(--muted);
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
}

.hero-card {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.task-card {
  width: min(100%, 390px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    #15130f;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 1.05rem;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
  position: relative;
  overflow: hidden;
}
.task-card::before {
  content: "";
  position: absolute;
  inset: -45% -35% auto auto;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(228,111,46,.30), transparent 62%);
  pointer-events: none;
}
.task-card-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.status-pill {
  background: var(--accent-soft);
  color: var(--accent-2);
  border: 1px solid rgba(228, 111, 46, .28);
  padding: .38rem .6rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 900;
}
.task-price { font-weight: 950; }
.task-card h2 { position: relative; font-size: 2.25rem; }
.task-card p { position: relative; color: var(--muted); }
.offer-list { position: relative; display: grid; gap: .65rem; margin-top: 1rem; }
.offer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  color: var(--ink);
}
.offer-row strong { color: var(--accent-2); }
.offer-row.muted { color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 2rem;
  align-items: center;
}
.split.reverse { grid-template-columns: 1fr .85fr; }
.split.reverse > div:first-child { order: 2; }

.feature-grid { display: grid; gap: 1rem; }
.feature-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-card, .step, .category-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #090807;
  font-weight: 950;
  font-size: .78rem;
}
.feature-card p, .step p, .category-card li { color: var(--muted); }
.section-heading { max-width: 720px; margin-bottom: 1.5rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}
.step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--accent-soft);
  color: var(--accent-2);
  border: 1px solid rgba(228,111,46,.22);
  border-radius: 999px;
  font-weight: 950;
  margin-bottom: .9rem;
}

.category-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.category-card ul { margin: 1rem 0 0; padding-left: 1.1rem; }
.category-card li { margin: .48rem 0; }
.category-card.allowed { border-color: rgba(143, 209, 142, .25); }
.category-card.blocked { border-color: rgba(255, 141, 103, .25); }

.cta-band {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(228,111,46,.35), transparent 18rem),
    linear-gradient(135deg, #18140f, #090807);
  color: white;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-xl) + 8px);
  padding: 2rem;
}
.cta-band p { color: rgba(255,255,255,.72); max-width: 52rem; }
.cta-band .eyebrow { color: var(--accent-2); }
.cta-band .button-primary { background: #fff2df; color: #080806; }

.footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 1.25rem;
  color: var(--muted);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer p { margin: 0; }

.mobile-dock { display: none; }

@media (max-width: 940px) {
  .hero, .split, .split.reverse, .category-wrap { grid-template-columns: 1fr; }
  .split.reverse > div:first-child { order: 0; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  h1 { max-width: 11ch; }
}

@media (max-width: 700px) {
  body { padding-bottom: 5.6rem; }
  .site-header { position: sticky; }
  .nav {
    padding: .75rem .9rem;
    align-items: center;
  }
  .brand { font-size: 1.15rem; }
  .brand-mark { width: 1.9rem; height: 1.9rem; }
  .nav-links { display: none; }
  .language-toggle { transform: scale(.92); transform-origin: right center; }
  .section-shell { padding: 3rem .95rem; }
  .hero {
    min-height: auto;
    padding-top: 2rem;
    gap: 1.6rem;
  }
  .eyebrow { font-size: .7rem; margin-bottom: .7rem; }
  h1 {
    font-size: clamp(2.95rem, 17vw, 4.6rem);
    line-height: .9;
    letter-spacing: -0.08em;
    max-width: 8.4ch;
  }
  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    letter-spacing: -0.065em;
  }
  .hero-text { font-size: 1.04rem; margin-bottom: 1.1rem; }
  .hero-actions { display: none; }
  .microcopy { font-size: .9rem; }
  .trust-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .2rem;
    margin-right: -.95rem;
    scrollbar-width: none;
  }
  .trust-strip::-webkit-scrollbar { display: none; }
  .trust-strip span { white-space: nowrap; }
  .hero-card { justify-content: stretch; }
  .task-card {
    width: 100%;
    transform: none;
    border-radius: 30px;
    padding: 1rem;
  }
  .task-card h2 { font-size: 1.75rem; letter-spacing: -0.06em; }
  .offer-row { padding: .82rem; align-items: center; }
  .feature-grid.two, .feature-grid.four, .steps { grid-template-columns: 1fr; }
  .feature-card, .step, .category-card { padding: 1rem; border-radius: 22px; }
  .steps { gap: .75rem; }
  .step { display: grid; grid-template-columns: auto 1fr; column-gap: .85rem; align-items: start; }
  .step span { grid-row: span 2; margin-bottom: 0; }
  .step h3 { margin-bottom: .18rem; }
  .step p { margin-bottom: 0; }
  .category-card ul { padding-left: 1rem; }
  .cta-band {
    display: block;
    border-radius: 28px;
    margin: 1rem .95rem 2.2rem;
    padding: 1.25rem;
  }
  .cta-band.section-shell { max-width: none; }
  .cta-band .button { margin-top: 1rem; width: 100%; }
  .footer { padding-bottom: 1.2rem; }
  .footer-inner { display: block; }
  .footer p + p { margin-top: .35rem; }
  .mobile-dock {
    position: fixed;
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: .45rem;
    padding: .45rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(9, 8, 7, .86);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 58px rgba(0,0,0,.45);
  }
  .mobile-dock a {
    min-height: 2.8rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 950;
    color: var(--ink);
    background: rgba(255,255,255,.075);
  }
  .mobile-dock a:first-child {
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    color: #080806;
  }
}

@media (max-width: 380px) {
  .nav { padding-inline: .75rem; }
  .brand span:last-child { display: none; }
  h1 { font-size: 2.75rem; }
  .task-card-top { gap: .6rem; }
  .task-price { font-size: .92rem; }
}
