:root {
  --bg: #000000;
  --surface: rgba(8, 10, 20, 0.7);
  --surface-strong: rgba(10, 10, 14, 0.94);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --cyan: #00d9ff;
  --blue: #2f8bff;
  --violet: #8a2bff;
  --magenta: #d12cff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(0, 217, 255, 0.18), transparent 26%),
    radial-gradient(circle at 85% 15%, rgba(209, 44, 255, 0.2), transparent 24%),
    radial-gradient(circle at 50% 60%, rgba(47, 139, 255, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 92%);
  pointer-events: none;
  opacity: 0.4;
}

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

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

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  position: relative;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 8px;
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 8px -16px auto;
  height: calc(100% - 8px);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  z-index: -1;
}

.brand {
  width: min(320px, 48vw);
}

.brand img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 48px 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.92rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 52px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero h1,
.section h2,
.cta-card h2,
.problem-shell h2 {
  margin: 0;
  line-height: 0.95;
}

.hero h1 {
  font-family: "Rajdhani", "Impact", sans-serif;
  font-size: clamp(4rem, 8vw, 7.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow:
    0 0 24px rgba(0, 217, 255, 0.22),
    0 0 38px rgba(209, 44, 255, 0.16);
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--magenta));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text,
.section-heading h2,
.problem-shell p,
.service-card p,
.target-card p,
.process-card p,
.quote-text,
.cta-card p,
.stats-panel p {
  color: var(--muted);
}

.hero-text {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 1.3rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--magenta));
  color: #04040a;
  box-shadow: 0 16px 40px rgba(47, 139, 255, 0.35);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.02);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 1.05rem;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 18px rgba(0, 217, 255, 0.6);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-card-main {
  width: min(100%, 430px);
  padding: 34px;
  transform: rotate(-6deg);
}

.hero-card-main p,
.hero-card-floating p {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.45;
}

.hero-card-floating {
  position: absolute;
  right: 10px;
  bottom: 88px;
  width: min(74%, 290px);
  padding: 24px;
  transform: rotate(8deg);
}

.card-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.orb,
.grid-ring {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
}

.orb-cyan {
  inset: 18% auto auto 5%;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.92), transparent 65%);
}

.orb-magenta {
  inset: auto 8% 10% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(209, 44, 255, 0.86), transparent 68%);
}

.grid-ring {
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at center, rgba(47, 139, 255, 0.12), transparent 62%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 80px rgba(138, 43, 255, 0.08);
  filter: none;
}

.stats-panel,
.services-grid,
.target-grid,
.process-grid {
  display: grid;
  gap: 20px;
}

.stats-panel {
  grid-template-columns: repeat(3, 1fr);
  margin: 10px 0 90px;
}

.stats-panel article,
.service-card,
.target-card,
.process-card,
.problem-shell,
.quote-box,
.cta-card {
  border: 1px solid var(--line);
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stats-panel article {
  padding: 26px;
}

.stats-panel strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.stats-panel p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
}

.section {
  padding: 38px 0 34px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 26px;
}

.section h2,
.cta-card h2,
.problem-shell h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1;
}

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

.service-card,
.target-card,
.process-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.service-card::before,
.target-card::before,
.process-card::before,
.cta-card::before,
.problem-shell::before,
.quote-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.09),
    transparent 34%,
    rgba(209, 44, 255, 0.08)
  );
  pointer-events: none;
}

.service-card span,
.process-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.service-card h3,
.target-card h3,
.process-card h3 {
  margin: 0 0 12px;
  font-size: 1.65rem;
  line-height: 1;
}

.service-card p,
.target-card p,
.process-card p {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.5;
}

.problem-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 34px;
}

.problem-shell p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.55;
}

.quote-box {
  padding: 48px 36px;
  text-align: center;
}

.quote-mark {
  margin: 0 0 12px;
  font-size: 4rem;
  line-height: 0.8;
  color: var(--magenta);
}

.quote-text {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.2;
}

.cta-section {
  padding-bottom: 90px;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 36px;
}

.cta-card p {
  margin: 12px 0 0;
  max-width: 700px;
  font-size: 1.12rem;
  line-height: 1.5;
}

.site-footer {
  padding: 0 0 48px;
}

.footer-shell {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.footer-shell::before,
.footer-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 217, 255, 0.08),
    transparent 36%,
    rgba(209, 44, 255, 0.08)
  );
  pointer-events: none;
}

.footer-brand-block,
.footer-links,
.footer-bottom p {
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: min(360px, 100%);
  height: auto;
  margin-bottom: 18px;
}

.footer-description {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-title {
  margin: 0 0 6px;
  color: var(--cyan);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.4;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--text);
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 18px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .problem-shell,
  .cta-card,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 30px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-card-main {
    transform: rotate(-3deg);
  }

  .hero-card-floating {
    right: 18px;
    bottom: 26px;
  }

  .stats-panel,
  .services-grid,
  .target-grid,
  .process-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .cta-card .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .site-header {
    position: static;
    flex-direction: column;
    padding-top: 18px;
  }

  .site-header::after {
    inset: 0;
    border-radius: 28px;
  }

  .brand {
    width: min(280px, 82vw);
  }

  .brand img {
    height: 96px;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    padding-bottom: 16px;
    font-size: 0.92rem;
  }

  .hero {
    gap: 24px;
    padding: 26px 0 18px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 4.7rem);
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-card-main,
  .hero-card-floating,
  .problem-shell,
  .quote-box,
  .cta-card,
  .footer-shell,
  .service-card,
  .target-card,
  .process-card,
  .stats-panel article {
    padding: 24px;
  }

  .hero-card-main p,
  .hero-card-floating p,
  .problem-shell p,
  .cta-card p {
    font-size: 1rem;
  }

  .grid-ring {
    width: 280px;
    height: 280px;
  }

  .footer-bottom {
    flex-direction: column;
    border-radius: 24px;
    padding: 20px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button {
    transition: none;
  }
}
