:root {
  --background: #040014;
  --background-alt: #0b0124;
  --surface: rgba(27, 8, 58, 0.78);
  --surface-heavy: rgba(18, 5, 42, 0.92);
  --foreground: #fef7ff;
  --muted: rgba(254, 247, 255, 0.75);
  --accent: #ff64f9;
  --accent-secondary: #64f8ff;
  --accent-tertiary: #7c7bff;
  --border: rgba(255, 120, 255, 0.16);
  --card-radius: 20px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 30px 85px -40px rgba(5, 0, 25, 0.85);
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Orbitron", "Manrope", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 100, 249, 0.25), transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(100, 248, 255, 0.18), transparent 45%),
    radial-gradient(circle at 40% 85%, rgba(124, 123, 255, 0.2), transparent 50%),
    linear-gradient(125deg, rgba(5, 0, 30, 0.94), rgba(6, 0, 20, 0.9) 55%, rgba(8, 0, 32, 0.82)),
    var(--background-alt);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 100, 249, 0.08) 1px, transparent 1px),
    linear-gradient(to top, rgba(100, 248, 255, 0.08) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.28;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), transparent 65%);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--card-radius) - 8px);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), text-shadow var(--transition);
}

a:hover,
a:focus-visible {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(255, 100, 249, 0.65);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
  position: relative;
  padding-top: 1.25rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 100, 249, 0), rgba(255, 100, 249, 0.8), rgba(100, 248, 255, 0));
  box-shadow: 0 0 25px rgba(255, 100, 249, 0.75);
}

.section-heading > p {
  margin-bottom: 1rem;
}

.eyebrow {
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 20px rgba(255, 100, 249, 0.4);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.2;
  font-family: var(--font-display);
  letter-spacing: 0.045em;
}

h1 {
  font-size: clamp(3rem, 5vw, 4rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 35px rgba(255, 100, 249, 0.6), 0 0 65px rgba(100, 248, 255, 0.45);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-shadow: 0 0 28px rgba(124, 123, 255, 0.45);
}

h3 {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(255, 100, 249, 0.35);
}

h4 {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 100, 249, 0.78);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 100, 249, 0.45);
}

p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  text-shadow: 0 0 18px rgba(5, 0, 25, 0.7);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-display);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition),
    color var(--transition), filter var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  color: #12012f;
  box-shadow: 0 0 30px rgba(255, 100, 249, 0.7), 0 0 55px rgba(100, 248, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn.primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 45px rgba(255, 100, 249, 0.85), 0 0 70px rgba(100, 248, 255, 0.65);
  filter: brightness(1.1);
}

.btn.ghost {
  border-color: rgba(255, 100, 249, 0.55);
  color: var(--foreground);
  background: rgba(6, 0, 26, 0.75);
  box-shadow: inset 0 0 18px rgba(255, 100, 249, 0.25);
}

.btn.ghost:hover {
  border-color: rgba(100, 248, 255, 0.75);
  transform: translateY(-2px) scale(1.01);
  box-shadow: inset 0 0 22px rgba(100, 248, 255, 0.4), 0 0 30px rgba(100, 248, 255, 0.35);
}

.btn:hover::after,
.btn:focus-visible::after {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(22px);
  background: rgba(4, 1, 18, 0.78);
  border-bottom: 1px solid rgba(255, 100, 249, 0.25);
  box-shadow: 0 14px 45px -30px rgba(255, 100, 249, 0.55);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  font-family: var(--font-display);
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(255, 100, 249, 0.45);
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: radial-gradient(circle at 35% 30%, rgba(255, 100, 249, 0.35), rgba(124, 123, 255, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 22px rgba(100, 248, 255, 0.45);
}

.site-nav {
  position: relative;
}

.site-nav ul {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
}

.site-nav a {
  font-size: 0.95rem;
  color: rgba(254, 247, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: var(--font-display);
  transition: color var(--transition), text-shadow var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--foreground);
  text-shadow: 0 0 18px rgba(255, 100, 249, 0.75);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 100, 249, 0.45);
  border-radius: 12px;
  padding: 0.6rem;
  cursor: pointer;
  background: rgba(4, 1, 18, 0.65);
  box-shadow: 0 0 18px rgba(124, 123, 255, 0.4);
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--foreground);
  margin: 4px 0;
  transition: transform var(--transition);
}

.hero {
  padding: clamp(5rem, 11vw, 8.5rem) 0 4rem;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% 10% auto 10%;
  height: 50%;
  background: linear-gradient(135deg, rgba(255, 100, 249, 0.4), rgba(100, 248, 255, 0.25));
  filter: blur(110px);
  opacity: 0.65;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 10% 5% -15% 5%;
  background: linear-gradient(
      to top,
      rgba(255, 100, 249, 0.08) 0%,
      rgba(255, 100, 249, 0.04) 20%,
      transparent 60%
    ),
    linear-gradient(120deg, rgba(124, 123, 255, 0.18), transparent 70%);
  border-radius: calc(var(--card-radius) + 30px);
  z-index: -2;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-copy p {
  font-size: 1.05rem;
  color: rgba(254, 247, 255, 0.78);
  text-shadow: 0 0 18px rgba(8, 0, 35, 0.65);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-image-placeholder {
  width: min(420px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: calc(var(--card-radius) + 10px);
  border: 1px solid rgba(255, 100, 249, 0.25);
  display: grid;
  place-items: center;
  color: rgba(254, 247, 255, 0.8);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.75rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 100, 249, 0.45), rgba(100, 248, 255, 0.35)),
    rgba(12, 0, 32, 0.9);
  box-shadow: 0 25px 80px -45px rgba(255, 100, 249, 0.8);
}

.hero-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(to top, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  mix-blend-mode: screen;
}

.hero-image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 60%);
  mix-blend-mode: screen;
}

.intro {
  padding: 4rem 0 3rem;
}

.intro .container {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
}

.intro p {
  max-width: 720px;
}

.services {
  padding: 4.5rem 0;
  position: relative;
  isolation: isolate;
}

.services::before {
  content: "";
  position: absolute;
  inset: 5% 15% auto 15%;
  height: 40%;
  background: radial-gradient(circle, rgba(255, 100, 249, 0.18), transparent 70%);
  filter: blur(80px);
  z-index: -1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.card {
  position: relative;
  background: linear-gradient(150deg, rgba(36, 6, 74, 0.85), rgba(14, 3, 40, 0.92));
  border: 1px solid rgba(255, 100, 249, 0.2);
  border-radius: var(--card-radius);
  padding: 2rem;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--card-radius) - 2px);
  background: linear-gradient(150deg, rgba(12, 0, 34, 0.95), rgba(20, 0, 52, 0.9));
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(100, 248, 255, 0.45);
  box-shadow: 0 35px 70px -45px rgba(255, 100, 249, 0.9);
}

.card-subtitle {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  margin-top: 0.5rem;
  text-shadow: 0 0 18px rgba(255, 100, 249, 0.65);
}

.card ul li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
}

.card ul li::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.team {
  padding: 4.5rem 0;
  position: relative;
  isolation: isolate;
}

.team::before {
  content: "";
  position: absolute;
  inset: 10% 25% auto 25%;
  height: 45%;
  background: radial-gradient(circle, rgba(100, 248, 255, 0.2), transparent 65%);
  filter: blur(95px);
  opacity: 0.6;
  z-index: -1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  position: relative;
  background: linear-gradient(160deg, rgba(22, 4, 52, 0.92), rgba(9, 0, 30, 0.9));
  border: 1px solid rgba(100, 248, 255, 0.18);
  border-radius: var(--card-radius);
  padding: 1.5rem;
  display: grid;
  gap: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 100, 249, 0.12), rgba(100, 248, 255, 0));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.team-card > * {
  position: relative;
  z-index: 1;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 100, 249, 0.4);
  box-shadow: 0 35px 70px -45px rgba(124, 123, 255, 0.9);
}

.team-card:hover::before {
  opacity: 0.5;
}

.team-image {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--card-radius) - 8px);
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255, 100, 249, 0.35);
  background: linear-gradient(135deg, rgba(255, 100, 249, 0.45), rgba(100, 248, 255, 0.35));
  box-shadow: 0 18px 45px -30px rgba(255, 100, 249, 0.8);
}

.team-image img {
  filter: saturate(1.15) contrast(1.05);
}

.team-info h3 {
  font-size: 1.2rem;
}

.team-info p {
  margin: 0;
  color: var(--muted);
}

.why {
  padding: 4.5rem 0;
  position: relative;
  isolation: isolate;
}

.why::before {
  content: "";
  position: absolute;
  inset: 15% 20% auto 20%;
  height: 45%;
  background: radial-gradient(circle, rgba(124, 123, 255, 0.18), transparent 70%);
  filter: blur(85px);
  opacity: 0.65;
  z-index: -1;
}

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

.why .card {
  min-height: 220px;
  display: grid;
  align-content: start;
}

.cta {
  padding: 5rem 0 6rem;
}

.cta .container {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 100, 249, 0.35), transparent 65%),
    radial-gradient(circle at 80% 15%, rgba(100, 248, 255, 0.28), transparent 60%),
    linear-gradient(135deg, rgba(20, 0, 52, 0.9), rgba(8, 0, 30, 0.85));
  border-radius: calc(var(--card-radius) + 10px);
  border: 1px solid rgba(255, 100, 249, 0.2);
  padding: clamp(2.5rem, 5vw, 3.5rem);
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  box-shadow: 0 40px 110px -50px rgba(255, 100, 249, 0.85);
  position: relative;
  overflow: hidden;
}

.cta .container::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--card-radius) + 8px);
  border: 1px solid rgba(100, 248, 255, 0.22);
  opacity: 0.65;
  pointer-events: none;
}

.cta p {
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-self: center;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(255, 100, 249, 0.18);
  background: linear-gradient(180deg, rgba(4, 1, 18, 0.92), rgba(4, 0, 14, 0.85));
  box-shadow: 0 -18px 45px -30px rgba(255, 100, 249, 0.55);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.socials {
  display: flex;
  gap: 1.5rem;
}

.socials a {
  font-size: 0.95rem;
  color: rgba(254, 247, 255, 0.65);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-display);
  transition: color var(--transition), text-shadow var(--transition);
}

.socials a:hover {
  color: var(--foreground);
  text-shadow: 0 0 18px rgba(255, 100, 249, 0.75);
}

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    justify-content: center;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 780px) {
  .site-nav ul {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(10, 0, 30, 0.95);
    border: 1px solid rgba(255, 100, 249, 0.35);
    border-radius: var(--card-radius);
    padding: 1.2rem;
    display: grid;
    gap: 1rem;
    min-width: 200px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav ul[data-open="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

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

@media (max-width: 600px) {
  .card,
  .team-card {
    padding: 1.75rem;
  }
}

