:root {
  --bg: #050505;
  --bg-2: #0c0c0c;
  --bg-3: #121212;
  --yellow: #ffe600;
  --yellow-dim: #c9b400;
  --yellow-soft: rgba(255, 230, 0, 0.12);
  --yellow-glow: rgba(255, 230, 0, 0.35);
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --line: rgba(255, 230, 0, 0.18);
  --radius: 14px;
  --font-display: "Russo One", "Orbitron", sans-serif;
  --font-head: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
  --font-brush: "Bebas Neue", Impact, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  font-size: 18px;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.binary {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.07;
  color: var(--yellow);
  font-family: monospace;
  font-size: 11px;
  line-height: 1.35;
  white-space: pre;
  overflow: hidden;
  mix-blend-mode: screen;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Announce */
.announce {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #0a0a00 0%, #050505 100%);
}

.announce-inner {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.announce-left {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.announce-tag {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--yellow-dim);
}

.announce-left strong {
  font-family: var(--font-brush);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--yellow);
  text-shadow: 0 0 18px var(--yellow-glow);
}

.announce-left p {
  color: var(--muted);
  font-size: 0.92rem;
}

.announce-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.promo-code {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.promo-code span {
  color: var(--yellow);
  margin-left: 0.35rem;
}

.countdown {
  display: flex;
  gap: 0.45rem;
}

.countdown div {
  min-width: 48px;
  text-align: center;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.25rem 0.35rem;
}

.countdown b {
  display: block;
  font-family: var(--font-head);
  color: var(--yellow);
  font-size: 1rem;
  line-height: 1.2;
}

.countdown span {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.logo-mark {
  color: var(--yellow);
  filter: drop-shadow(0 0 10px var(--yellow-glow));
  display: grid;
  place-items: center;
}

.nav-links {
  display: flex;
  gap: 1.4rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--yellow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid var(--yellow);
  background: var(--yellow);
  color: #050505;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 24px var(--yellow-glow);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow-soft);
}

.btn-ghost {
  background: var(--bg-3);
  border-color: var(--line);
  color: var(--text);
}

.btn-sm {
  padding: 0.55rem 0.9rem;
  font-size: 0.65rem;
}

.btn-lg {
  padding: 0.9rem 1.4rem;
  font-size: 0.78rem;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid;
  place-items: center;
  padding: 4rem 1.25rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  left: 50%;
  bottom: -10%;
  transform: translateX(-50%);
  width: min(900px, 120vw);
  height: 55%;
  background:
    radial-gradient(ellipse at center, rgba(255, 230, 0, 0.28) 0%, transparent 65%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 200, 0, 0.15) 0%, transparent 70%);
  animation: pulse-glow 4.5s ease-in-out infinite;
}

.hero-globe {
  position: absolute;
  left: 50%;
  bottom: -18%;
  transform: translateX(-50%);
  width: min(780px, 110vw);
  height: min(420px, 55vw);
  border-radius: 50%;
  border: 1px solid rgba(255, 230, 0, 0.35);
  box-shadow:
    0 0 60px rgba(255, 230, 0, 0.15),
    inset 0 0 80px rgba(255, 230, 0, 0.08);
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 18px,
      rgba(255, 230, 0, 0.08) 18px,
      rgba(255, 230, 0, 0.08) 19px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      rgba(255, 230, 0, 0.07) 28px,
      rgba(255, 230, 0, 0.07) 29px
    );
  mask-image: linear-gradient(to top, black 20%, transparent 85%);
  animation: globe-spin 40s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  text-align: center;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow-dim);
  margin-bottom: 1rem;
}

.brush {
  display: block;
  font-family: var(--font-brush);
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  color: var(--yellow);
  text-shadow:
    0 0 30px var(--yellow-glow),
    2px 0 0 rgba(255, 80, 0, 0.25),
    -2px 0 0 rgba(0, 180, 255, 0.15);
  position: relative;
  animation: glitch-nudge 5s steps(2) infinite;
}

.brush::after {
  content: "";
  display: block;
  width: min(420px, 70%);
  height: 10px;
  margin: 0.55rem auto 0;
  background: var(--yellow);
  border-radius: 2px;
  box-shadow: 0 0 18px var(--yellow-glow);
  transform: skewX(-12deg);
}

.hero-subline {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.8vw, 1.65rem);
  letter-spacing: 0.08em;
  color: #fff;
}

.hero-lead {
  max-width: 640px;
  margin: 1.25rem auto 1.75rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-lead strong {
  color: var(--yellow);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hero-pillars article {
  padding: 1.25rem 0.75rem;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.45);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.hero-pillars article:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(255, 230, 0, 0.12);
}

.icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  color: var(--yellow);
  filter: drop-shadow(0 0 10px var(--yellow-glow));
}

.icon-box svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: currentColor;
}

.hero-pillars h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.hero-pillars p {
  font-size: 0.85rem;
  color: var(--yellow-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 230, 0, 0.03), transparent);
  border-block: 1px solid rgba(255, 230, 0, 0.06);
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  max-width: 18ch;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.section-head .section-title {
  margin-bottom: 1.5rem;
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cat-card {
  display: block;
  padding: 1.4rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.cat-card:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  background: #101000;
}

.cat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--yellow-soft);
}

.cat-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.cat-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Offers */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.offer-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #121200, #0a0a0a);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 260px;
}

.offer-badge {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: var(--yellow);
}

.offer-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.offer-card p {
  color: var(--muted);
  flex: 1;
}

.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tags li {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--yellow-dim);
}

.offer-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.price {
  font-family: var(--font-head);
  color: var(--yellow);
  font-size: 0.9rem;
}

.offer-foot a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s;
}

.offer-foot a:hover {
  color: var(--yellow);
}

/* Skills */
.skills {
  display: grid;
  gap: 0.9rem;
}

.skill {
  display: grid;
  grid-template-columns: 140px 1fr 48px;
  align-items: center;
  gap: 0.85rem;
}

.skill span {
  font-weight: 600;
  font-size: 0.95rem;
}

.bar {
  height: 8px;
  border-radius: 999px;
  background: #1a1a1a;
  border: 1px solid var(--line);
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--yellow-dim), var(--yellow));
  box-shadow: 0 0 12px var(--yellow-glow);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.skill.is-in .bar i {
  width: var(--w);
}

.skill b {
  font-family: var(--font-head);
  font-size: 0.8rem;
  color: var(--yellow);
  text-align: right;
}

/* Services */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.svc-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.svc-card h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
  color: var(--yellow);
}

.svc-card p {
  color: var(--muted);
  font-size: 1rem;
}

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.why-item {
  padding: 1.25rem;
  border-left: 3px solid var(--yellow);
  background: rgba(255, 230, 0, 0.04);
  color: var(--muted);
  font-size: 1.02rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.85rem;
}

.stat {
  text-align: center;
  padding: 1.25rem 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--yellow);
  text-shadow: 0 0 16px var(--yellow-glow);
}

.stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.reviews blockquote {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.reviews p {
  margin-bottom: 1rem;
  color: #ddd;
}

.reviews footer {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.reviews footer span {
  color: var(--yellow);
  margin-left: auto;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.65rem;
  max-width: 820px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--yellow);
  font-family: var(--font-head);
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  padding: 0 1.2rem 1.1rem;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 230, 0, 0.1), transparent 50%),
    linear-gradient(180deg, #0a0a00, #050505);
  border-block: 1px solid var(--line);
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-inner p {
  color: var(--muted);
  max-width: 48ch;
  margin-top: -1rem;
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-lead {
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 42ch;
}

.contact-points {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.contact-points li {
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--yellow);
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.5rem;
  border: 1px solid var(--yellow);
  border-radius: var(--radius);
  background: #0a0a00;
  box-shadow: 0 0 40px rgba(255, 230, 0, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #050505;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
}

.form-note {
  text-align: center;
  color: var(--yellow);
  font-weight: 700;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  font-family: var(--font-head);
  color: var(--yellow);
  margin-bottom: 0.6rem;
}

.footer h5 {
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer p,
.footer li {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

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

.footer-bottom {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--muted);
}

.muted {
  color: #666;
}

/* Animations */
@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.75;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

@keyframes globe-spin {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 0, 120px 0;
  }
}

@keyframes glitch-nudge {
  0%,
  92%,
  100% {
    transform: translate(0);
  }
  93% {
    transform: translate(-2px, 1px);
  }
  94% {
    transform: translate(2px, -1px);
  }
  95% {
    transform: translate(0);
  }
}

/* Mobile */
@media (max-width: 960px) {
  .hero-pillars,
  .cat-grid,
  .offer-grid,
  .svc-grid,
  .why-grid,
  .reviews {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #0a0a00;
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem 1.25rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .hero-pillars,
  .cat-grid,
  .offer-grid,
  .svc-grid,
  .why-grid,
  .reviews,
  .stats {
    grid-template-columns: 1fr;
  }

  .skill {
    grid-template-columns: 1fr 48px;
    grid-template-areas:
      "label pct"
      "bar bar";
  }

  .skill span {
    grid-area: label;
  }

  .skill b {
    grid-area: pct;
  }

  .skill .bar {
    grid-area: bar;
  }

  .announce-left p {
    width: 100%;
  }
}
