:root {
  color-scheme: dark;
  --bg: #1f1f1f;
  --page: #030107;
  --panel: #0b0b0f;
  --panel-2: #111116;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f5f7;
  --muted: #85818f;
  --violet: #7b45ff;
  --blue: #4b72ff;
  --pink: #ff2f8d;
  --grad: linear-gradient(90deg, #5774ff 0%, #8c43ff 48%, #ff2f8d 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #050508;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.page-shell {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(101, 54, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 82% 45%, rgba(255, 47, 141, 0.1), transparent 26rem),
    var(--page);
  box-shadow: none;
}

.site-header,
.hero,
.dark-section,
.cta-section,
.site-footer {
  width: min(1180px, calc(100% - 3rem));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 0 2.25rem;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.icon-menu {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #fff;
  border: 0;
  background: transparent;
}

.icon-menu svg {
  width: 16px;
  height: 16px;
}

.brand {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0;
}

.brand span {
  color: var(--pink);
}

.top-link {
  justify-self: end;
  color: #c7c3d1;
  font-size: 0.58rem;
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  padding: 3rem 0 4rem;
}

.hero-wave {
  position: absolute;
  inset: -6rem -13rem auto auto;
  width: min(960px, 72vw);
  max-width: none;
  opacity: 0.88;
  filter: contrast(1.2);
  pointer-events: none;
}

.micro-label,
.section-kicker {
  position: relative;
  z-index: 2;
  color: #c8c0d3;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-center {
  position: relative;
  z-index: 2;
  width: min(860px, 100%);
  margin: 6.5rem auto 0;
  text-align: center;
}

.hero h1,
.cta-section h2 {
  color: #fff;
  font-size: clamp(4.2rem, 8vw, 8.25rem);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero h1 span,
.agency h2 span,
.cta-section h2 span {
  display: block;
  color: transparent;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-center p {
  width: min(540px, 100%);
  margin: 2.2rem auto 0;
  color: #9a95a4;
  font-size: 0.95rem;
  line-height: 1.6;
}

.hero-meta {
  position: absolute;
  left: 0;
  bottom: 4.1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-meta strong {
  color: transparent;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.2rem;
  font-weight: 950;
}

.hero-meta span {
  max-width: 92px;
  color: #8b8495;
  font-size: 0.5rem;
  line-height: 1.15;
}

.outline-button {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 116px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(170, 58, 255, 0.56);
  color: #fff;
  background: rgba(8, 5, 14, 0.5);
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero > .outline-button {
  position: absolute;
  right: 0;
  bottom: 4rem;
}

.dark-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.agency {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
}

.agency-copy,
.expertise-list,
.expertise-list article {
  min-width: 0;
}

.agency .section-kicker {
  position: absolute;
  left: 0;
  bottom: 4rem;
}

.agency h2,
.section-title {
  color: #fff;
  font-size: clamp(3.8rem, 7vw, 6.5rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
}

.expertise-list {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.4rem;
}

.expertise-list article {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.expertise-list svg {
  width: 16px;
  height: 16px;
  color: var(--violet);
}

.expertise-list h3 {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.expertise-list p {
  max-width: 460px;
  font-size: 0.72rem;
}

.orb-visual {
  width: min(640px, 50vw);
  max-width: none;
  transform: none;
  filter: drop-shadow(0 24px 70px rgba(123, 69, 255, 0.22));
}

.solutions {
  padding-top: 4rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.solution-grid article,
.service-card {
  min-height: 170px;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    #09090d;
  border: 1px solid rgba(255, 255, 255, 0.075);
}

.solution-grid span,
.service-card span {
  color: transparent;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 4.4rem;
  font-weight: 300;
  line-height: 0.85;
}

.solution-grid h3,
.service-card h3 {
  margin-top: 0.85rem;
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
}

.solution-grid p,
.service-card p {
  margin-top: 0.6rem;
  font-size: 0.66rem;
  line-height: 1.45;
}

.services::before {
  content: "";
  position: absolute;
  left: -95px;
  top: 110px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle at 70% 30%, #ff4bc0, #6e36ff 45%, transparent 72%);
  filter: blur(5px);
  opacity: 0.72;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: min(820px, 100%);
  margin: 2.2rem auto 0;
}

.service-card {
  min-height: 225px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #0b0b0f;
}

.service-card a {
  display: inline-block;
  margin-top: 1rem;
  color: #fff;
  font-size: 0.52rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cases {
  padding-top: 2rem;
}

.case-panel {
  display: grid;
  grid-template-columns: 52px 1fr 150px;
  gap: 1.3rem;
  width: min(820px, 100%);
  margin: 2.2rem auto 0;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 38% 0%, rgba(123, 69, 255, 0.18), transparent 32%),
    #101014;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.case-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--grad);
  font-size: 0.65rem;
  font-weight: 950;
}

.case-panel h3 {
  margin-bottom: 0.5rem;
  color: #fff;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.case-panel p,
.case-panel li {
  color: #9a95a4;
  font-size: 0.66rem;
  line-height: 1.45;
}

.case-panel ul {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cta-section {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.25rem;
  padding: 5rem 0;
  text-align: center;
}

.cta-wave {
  position: absolute;
  inset: auto auto -70px -18vw;
  width: min(1200px, 100vw);
  max-width: none;
  opacity: 0.72;
  pointer-events: none;
}

.cta-section h2 {
  position: relative;
  z-index: 1;
}

.cta-section p {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  margin-top: 0;
  font-size: 0.78rem;
}

.cta-section .outline-button {
  margin-top: 0.4rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 1.6rem;
  color: #908a9d;
  font-size: 0.54rem;
  text-transform: uppercase;
}

.landing-shell {
  width: min(1180px, calc(100% - 3rem));
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 1rem;
  margin-inline: auto;
  padding: 2rem 0;
}

.back-link,
.button {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(170, 58, 255, 0.56);
  color: #fff;
  background: #08050e;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--page);
  border: 1px solid var(--line);
}

.landing-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.landing-panel h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.landing-panel p:not(.eyebrow) {
  margin: 1rem 0 1.5rem;
}

@media (max-width: 760px) {
  .page-shell {
    width: 100%;
    margin: 0 auto;
  }

  .site-header,
  .hero,
  .dark-section,
  .cta-section,
  .site-footer {
    width: 100%;
  }

  .site-header {
    padding-inline: 1rem;
  }

  .hero,
  .dark-section,
  .cta-section {
    padding-inline: 1rem;
  }

  .hero {
    min-height: 610px;
  }

  .hero-wave {
    width: 620px;
    right: -160px;
  }

  .hero-center {
    margin-top: 4rem;
  }

  .hero h1,
  .cta-section h2 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .hero-meta {
    left: 1rem;
  }

  .hero > .outline-button {
    right: 1rem;
  }

  .agency {
    grid-template-columns: 1fr;
  }

  .orb-visual {
    width: min(460px, 125vw);
    margin-left: auto;
  }

  .solution-grid,
  .service-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .case-panel {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cta-section p,
  .cta-section .outline-button {
    margin-top: 0;
  }

  .site-footer,
  .landing-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .page-shell {
    width: 100%;
    margin: 0;
  }

  .site-header,
  .hero,
  .dark-section,
  .cta-section,
  .site-footer {
    width: min(960px, calc(100% - 3rem));
  }

  .hero h1,
  .cta-section h2 {
    font-size: clamp(3.7rem, 8vw, 5rem);
  }

  .agency h2,
  .section-title {
    font-size: clamp(3.2rem, 7vw, 4.35rem);
  }

  .agency {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .agency .section-kicker {
    position: static;
    order: -2;
  }

  .orb-visual {
    width: min(620px, 85vw);
    justify-self: end;
  }

  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 64px;
    padding-inline: 1rem;
  }

  .brand {
    font-size: 0.82rem;
  }

  .top-link {
    font-size: 0.54rem;
  }

  .hero {
    min-height: 620px;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .hero-wave {
    top: -3.8rem;
    right: -13rem;
    width: 650px;
    opacity: 0.72;
  }

  .micro-label,
  .section-kicker {
    font-size: 0.56rem;
  }

  .hero-center {
    width: 100%;
    margin-top: 4.2rem;
  }

  .hero h1,
  .cta-section h2 {
    font-size: clamp(3.25rem, 15vw, 4.15rem);
    line-height: 0.88;
  }

  .hero-center p {
    width: min(350px, 100%);
    font-size: 0.74rem;
  }

  .hero-meta {
    bottom: 3.05rem;
  }

  .hero > .outline-button {
    bottom: 2.75rem;
  }

  .dark-section {
    padding-block: 2.35rem;
  }

  .agency {
    min-height: auto;
    gap: 0.75rem;
  }

  .agency .section-kicker {
    position: static;
    order: -2;
  }

  .agency h2,
  .section-title {
    font-size: clamp(2.8rem, 14vw, 3.9rem);
  }

  .expertise-list p,
  .solution-grid p,
  .service-card p,
  .case-panel p,
  .case-panel li {
    font-size: 0.64rem;
  }

  .orb-visual {
    width: min(470px, 100%);
    max-width: 100%;
    justify-self: end;
    transform: none;
  }

  .solution-grid article,
  .service-card {
    min-height: auto;
  }

  .solution-grid span,
  .service-card span {
    font-size: 4rem;
  }

  .case-panel {
    padding: 1.2rem;
  }

  .cta-section {
    min-height: 440px;
  }

  .cta-wave {
    left: -210px;
    bottom: -20px;
    width: 720px;
    opacity: 0.62;
  }

  .site-footer {
    display: grid;
    padding-inline: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .hero,
  .dark-section,
  .cta-section {
    padding-inline: 1rem;
  }

  .hero {
    min-height: 640px;
  }

  .hero h1,
  .cta-section h2 {
    font-size: clamp(3rem, 14.2vw, 3.65rem);
  }

  .cta-section h2 {
    font-size: clamp(2.7rem, 12.6vw, 3.2rem);
  }

  .hero-center {
    margin-top: 3.7rem;
  }

  .hero-center p {
    font-size: 0.7rem;
  }

  .hero-meta {
    left: 1rem;
    right: 9.25rem;
    bottom: 3rem;
  }

  .hero-meta span {
    max-width: 112px;
  }

  .hero > .outline-button {
    right: 1rem;
    min-width: 118px;
  }

  .agency h2,
  .section-title {
    font-size: clamp(2.55rem, 13vw, 3.35rem);
  }

  .solution-grid,
  .service-grid {
    gap: 0.7rem;
  }

  .service-card h3,
  .solution-grid h3 {
    font-size: 0.8rem;
  }
}

@media (max-width: 350px) {
  .hero {
    min-height: auto;
    display: grid;
  }

  .hero h1,
  .cta-section h2 {
    font-size: 2.7rem;
  }

  .hero-meta,
  .hero > .outline-button {
    position: static;
    margin-top: 1.4rem;
  }

  .hero-meta {
    width: fit-content;
  }
}
