:root {
  color-scheme: dark;
  --bg: #050507;
  --bg-2: #090910;
  --panel: rgba(16, 16, 26, 0.78);
  --panel-strong: #12121d;
  --text: #f8f8ff;
  --muted: #b7b8c8;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --violet: #a020ff;
  --blue: #1387ff;
  --cyan: #20d3ff;
  --green: #37d67a;
  --pink: #ef3cff;
  --section-overlay: linear-gradient(90deg, rgba(5,5,7,0.94) 0%, rgba(5,5,7,0.74) 46%, rgba(5,5,7,0.44) 100%), linear-gradient(0deg, rgba(5,5,7,0.96) 0%, rgba(5,5,7,0.28) 48%, rgba(5,5,7,0.88) 100%);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(160, 32, 255, 0.16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(19, 135, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #040406 0%, var(--bg) 42%, #08080d 100%);
  color: var(--text);
  line-height: 1.5;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  opacity: 0.18;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(5, 5, 7, 0.54);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease, padding 180ms ease;
}
.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(5, 5, 7, 0.9);
  border-color: var(--line);
}
.site-header.is-scrolled .brand img {
  width: 64px;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 34px rgba(160, 32, 255, 0.38), 0 0 18px rgba(32, 211, 255, 0.18);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}
.site-nav a {
  position: relative;
  padding: 8px 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  transition: transform 180ms ease;
}
.site-nav a:hover { color: var(--text); }
.site-nav a:hover::after { transform: scaleX(1); }
.nav-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  overflow: hidden;
  padding: 138px clamp(18px, 5vw, 72px) 72px;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  filter: saturate(1.16) contrast(1.08);
  transform: scale(1.01);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,5,7,0.98) 0%, rgba(5,5,7,0.78) 42%, rgba(5,5,7,0.18) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(5,5,7,0) 34%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto clamp(18px, 5vw, 72px) 24px;
  height: 1px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(32, 211, 255, 0.52), rgba(160, 32, 255, 0.5), transparent);
}
.hero-content {
  width: min(860px, 100%);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 15ch;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(2.8rem, 5.3vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}
h1 span {
  display: block;
  white-space: nowrap;
}
h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}
h3 { margin: 0; font-size: 1.13rem; }
.hero-copy {
  max-width: 700px;
  margin: 26px 0 0;
  color: #d9daf0;
  font-size: clamp(1.04rem, 2vw, 1.3rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--violet), var(--blue));
  color: white;
  box-shadow: 0 18px 52px rgba(78, 58, 255, 0.34);
}
.button-secondary { background: rgba(255, 255, 255, 0.08); }
.button:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 211, 255, 0.5);
  box-shadow: 0 22px 60px rgba(19, 135, 255, 0.22);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 790px;
  margin: 46px 0 0;
}
.hero-stats div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18,18,28,0.86), rgba(9,9,16,0.72));
  box-shadow: var(--shadow);
}
.hero-stats dt {
  font-size: 1.48rem;
  font-weight: 950;
  background: linear-gradient(135deg, #ffffff, #b9eaff 42%, #c05cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats dd { margin: 8px 0 0; color: var(--muted); }
.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  padding: 20px clamp(18px, 5vw, 72px);
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
}
.brand-strip strong {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-strip span {
  color: #dfe0f5;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand-strip span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--cyan);
  vertical-align: middle;
}

.section {
  padding: 104px clamp(18px, 5vw, 72px);
}
.services {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: url("solutions-digital-services.png");
  background-size: cover;
  background-position: center;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  filter: saturate(1.1) contrast(1.08);
  transform: scale(1.02);
}
.services::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,5,7,0.94) 0%, rgba(5,5,7,0.72) 42%, rgba(5,5,7,0.42) 100%),
    linear-gradient(0deg, rgba(5,5,7,0.96) 0%, rgba(5,5,7,0.26) 48%, rgba(5,5,7,0.88) 100%);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.68fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading.compact {
  display: block;
  max-width: 900px;
}
.section-heading p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.services .section-heading p:not(.eyebrow) {
  color: #d9daf0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.service-card, .timeline article, .result-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18,18,29,0.82), rgba(10,10,17,0.76));
  box-shadow: var(--shadow);
}
.service-card::before, .timeline article::before, .result-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(32,211,255,0.16), transparent 36%, rgba(160,32,255,0.12));
  opacity: 0;
  transition: opacity 180ms ease;
}
.service-card:hover::before, .timeline article:hover::before, .result-grid article:hover::before { opacity: 1; }
.service-card {
  min-height: 320px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 211, 255, 0.38);
}
.service-card p, .timeline p, .result-grid span, .contact p { color: var(--muted); }
.service-card small {
  color: #e7e8ff;
  font-weight: 800;
}
.featured-card {
  border-color: rgba(32, 211, 255, 0.36);
  background: linear-gradient(160deg, rgba(160,32,255,0.22), rgba(18,18,29,0.92) 42%, rgba(19,135,255,0.16));
}
.service-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  background: rgba(32, 211, 255, 0.12);
  color: var(--cyan);
  font-weight: 950;
  border: 1px solid rgba(32, 211, 255, 0.22);
}

.impact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 110px clamp(18px, 5vw, 72px);
  background-image: url("impact-visual-background.png");
  background-size: cover;
  background-position: center;
  border-block: 1px solid var(--line);
}
.impact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.02);
}
.impact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--section-overlay);
}
.impact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 680px;
}
.impact-board {
  display: grid;
  gap: 12px;
}
.impact-board div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 9, 0.68);
  box-shadow: var(--shadow);
}
.impact-board strong {
  font-size: 2rem;
  color: var(--cyan);
}
.impact-board span { color: #e2e3f5; font-weight: 800; }

.method {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: url("method-process-background.png");
  background-size: cover;
  background-position: center;
}
.method::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.02);
}
.method::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--section-overlay);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}
.timeline article { padding: 24px; min-height: 238px; }
.timeline span {
  display: inline-block;
  margin-bottom: 46px;
  color: var(--green);
  font-weight: 950;
}

.portfolio {
  position: relative;
  display: grid;
  min-height: 82vh;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 104px;
  isolation: isolate;
  background-image: url("identity-digital-marketing.png");
  background-size: cover;
  background-position: center;
}
.portfolio::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.02);
}
.portfolio::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5,5,7,0.94) 0%, rgba(5,5,7,0.7) 42%, rgba(5,5,7,0.18) 100%),
    linear-gradient(0deg, rgba(5,5,7,0.98) 0%, rgba(5,5,7,0.16) 34%, rgba(5,5,7,0.34) 100%);
}
.portfolio-copy {
  width: min(760px, 100%);
}
.portfolio-copy p:not(.eyebrow) {
  max-width: 650px;
  color: #d9daf0;
  font-size: 1.14rem;
}
.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 950;
}
.text-link::after { content: "→"; margin-left: 8px; }
.results {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-image: url("performance-background.png");
  background-size: cover;
  background-position: center;
}
.results::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.02);
}
.results::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--section-overlay);
}
.results .section-heading p:not(.eyebrow) {
  color: #d9daf0;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.result-grid article { padding: 24px; min-height: 160px; }
.result-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.18rem;
}
.result-grid span { display: block; }

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 6vw, 86px);
  overflow: hidden;
  isolation: isolate;
  padding: 106px clamp(18px, 5vw, 72px);
  background-image: url("contact-background.png");
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--line);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: inherit;
  filter: saturate(1.08) contrast(1.08);
  transform: scale(1.02);
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--section-overlay);
}
.contact-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18,18,29,0.92), rgba(9,9,16,0.88));
  box-shadow: var(--shadow);
}
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 850;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e0e16;
  color: var(--text);
  padding: 14px;
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(32, 211, 255, 0.14);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #050507;
}
.footer-brand {
  color: var(--text);
  font-weight: 950;
  text-transform: uppercase;
}
.footer-copy {
  justify-self: center;
  text-align: center;
  font-size: 0.9rem;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  color: var(--muted);
  font-weight: 800;
}
.footer-contact a:hover {
  color: var(--cyan);
}
.footer-contact svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button, .service-card { transition: none; }
}

@media (max-width: 1180px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1080px) {
  .timeline, .result-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-heading, .contact, .impact { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  h1 {
    max-width: 15ch;
    font-size: clamp(2.55rem, 6.2vw, 4.1rem);
  }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 18px; }
  .brand img { width: 62px; height: 62px; }
  .site-header.is-scrolled .brand img { width: 56px; height: 56px; }
  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
  }
  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: currentColor;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 8, 12, 0.96);
  }
  .site-nav.is-open { display: grid; }
  .hero {
    min-height: auto;
    padding: 112px 18px 46px;
  }
  .hero::before {
    background: linear-gradient(0deg, var(--bg) 0%, rgba(5,5,7,0.7) 48%, rgba(5,5,7,0.28) 100%);
  }
  .hero-media img { object-position: 63% center; opacity: 0.46; }
  .hero-content { width: min(100%, 620px); }
  h1 {
    max-width: 15ch;
    font-size: clamp(2.25rem, 9.7vw, 3.7rem);
    line-height: 1;
  }
  h2 { font-size: clamp(2rem, 11vw, 3.3rem); }
  .hero-stats, .service-grid, .timeline, .result-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 238px; }
  .impact-board div { grid-template-columns: 1fr; }
  .section, .contact, .impact { padding: 74px 18px; }
  .services { background-position: 62% center; }
  .impact { background-position: 58% center; }
  .method { background-position: 58% center; }
  .results { background-position: 58% center; }
  .contact { background-position: 60% center; }
  .portfolio { min-height: 76vh; padding: 112px 18px 64px; background-position: 58% center; }
  .portfolio::after { background: linear-gradient(0deg, var(--bg) 0%, rgba(5,5,7,0.72) 48%, rgba(5,5,7,0.34) 100%); }
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .footer-contact {
    justify-content: center;
  }
  .button { width: 100%; }
}
