:root {
  --ink: #180927;
  --paper: #fbf5ff;
  --muted: #70627d;
  --line: rgba(100, 43, 161, 0.18);
  --violet: #7a3cff;
  --plum: #2a1046;
  --pink: #ff47c7;
  --cyan: #46e8ff;
  --gold: #ffc857;
  --cream: #fff8ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(122, 60, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 60, 255, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 8% 12%, rgba(255, 71, 199, 0.17), transparent 30%),
    radial-gradient(circle at 84% 4%, rgba(70, 232, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #fff8ff 0%, #f5eaff 42%, #fff8f2 100%);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff8ff;
  background: linear-gradient(to bottom, rgba(24, 8, 52, 0.86), rgba(24, 8, 52, 0));
  text-shadow: 0 2px 14px rgba(18, 5, 41, 0.55);
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--pink);
  border-radius: 50%;
}

nav {
  gap: clamp(12px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero {
  min-height: 96svh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 120px clamp(18px, 5vw, 70px) 64px;
  overflow: hidden;
  color: #fff7e5;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 78px clamp(18px, 5vw, 70px) 44px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 248, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 248, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 248, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000, transparent 82%);
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 6, 37, 0.86), rgba(37, 14, 73, 0.38) 54%, rgba(21, 6, 42, 0.12)),
    linear-gradient(to top, rgba(18, 6, 37, 0.74), rgba(18, 6, 37, 0.05) 48%);
}

.hero-content {
  position: relative;
  max-width: 820px;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 990px;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 248, 255, 0.87);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 850;
  border: 1px solid rgba(255, 250, 240, 0.32);
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--pink) 52%, var(--violet));
  color: #fff8ff;
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 16px 42px rgba(255, 71, 199, 0.26);
}

.button.secondary {
  color: #fff8ff;
  background: rgba(255, 248, 255, 0.12);
  backdrop-filter: blur(12px);
}

.tool-popouts {
  position: absolute;
  right: clamp(22px, 8vw, 132px);
  top: clamp(120px, 24vh, 250px);
  z-index: 4;
  display: grid;
  gap: 14px;
}

.tool-card {
  width: 178px;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 248, 255, 0.28);
  border-radius: 8px;
  background: rgba(20, 6, 49, 0.7);
  color: #fff8ff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.tool-card.photoshop {
  transform: rotate(-4deg);
}

.tool-card.capcut {
  transform: translateX(34px) rotate(5deg);
}

.tool-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 8px;
  background: #081e3d;
  color: #61d8ff;
  border: 2px solid #61d8ff;
  font-weight: 950;
  font-size: 1.08rem;
}

.capcut-mark {
  position: relative;
  background: #fff8ff;
  border-color: #fff8ff;
}

.capcut-mark::before,
.capcut-mark::after {
  content: "";
  position: absolute;
  left: 9px;
  right: 9px;
  height: 12px;
  border: 3px solid #14062e;
  border-radius: 3px;
  transform: rotate(28deg);
}

.capcut-mark::before {
  top: 11px;
}

.capcut-mark::after {
  bottom: 11px;
  transform: rotate(-28deg);
}

.tool-card > span:last-child {
  font-weight: 900;
  line-height: 1.1;
}

.hero-card {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 58px;
  z-index: 3;
  width: min(260px, 32vw);
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 8px;
  padding: 18px;
  background: rgba(24, 8, 52, 0.58);
  backdrop-filter: blur(16px);
}

.hero-card span {
  display: block;
  color: rgba(255, 250, 240, 0.74);
  line-height: 1.35;
}

.hero-card strong {
  display: block;
  margin: 8px 0;
  color: #fff8ff;
  font-size: 2.8rem;
  line-height: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 71, 199, 0.18), transparent 32%),
    linear-gradient(135deg, #fff8ff, #f0ddff 58%, #fff2d6);
}

.stats div {
  min-height: 138px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.stats div::after {
  content: "";
  width: 62px;
  height: 62px;
  position: absolute;
  right: -18px;
  bottom: -18px;
  border-radius: 50%;
  background: rgba(255, 71, 199, 0.18);
}

.stats div:last-child {
  border-right: 0;
}

.stats strong {
  color: var(--violet);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.stats span,
.work-card span,
.service-list span,
footer {
  color: var(--muted);
  font-weight: 750;
}

.section,
.process {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 70px);
}

.section {
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 48px;
  right: clamp(18px, 5vw, 70px);
  width: min(280px, 32vw);
  height: 8px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--cyan), var(--gold));
  opacity: 0.74;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.work-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--plum);
  box-shadow: 0 28px 90px rgba(73, 28, 130, 0.2);
}

.work-card::before {
  content: "00" counter(work-card);
  counter-increment: work-card;
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-width: 58px;
  min-height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 248, 255, 0.28);
  border-radius: 99px;
  color: #fff8ff;
  background: rgba(19, 6, 42, 0.56);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.work-grid {
  counter-reset: work-card;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  transition: transform 450ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 6, 42, 0.9), rgba(21, 6, 42, 0.05) 58%);
}

.work-card:hover img {
  transform: scale(1.045);
}

.work-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff8ff;
}

.work-card span {
  color: var(--cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 8px 0 0;
  font-size: clamp(1.45rem, 2.6vw, 2.35rem);
  line-height: 1.12;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  background:
    linear-gradient(135deg, rgba(255, 71, 199, 0.2), transparent 42%),
    linear-gradient(155deg, #210a40, #55229b 54%, #28104a);
  color: #fff8ff;
  position: relative;
  overflow: hidden;
}

.split::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -130px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 46px solid rgba(70, 232, 255, 0.09);
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-list article {
  border-top: 1px solid rgba(255, 248, 255, 0.2);
  padding: 24px 0;
  position: relative;
  z-index: 1;
}

.service-list h3 {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: clamp(1.45rem, 3vw, 2.25rem);
}

.service-list p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 248, 255, 0.76);
  line-height: 1.6;
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 90px);
  background:
    radial-gradient(circle at 18% 22%, rgba(70, 232, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #fff8ff, #f2e4ff 62%, #fff1d8);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.process::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18px;
  background: repeating-linear-gradient(90deg, var(--violet) 0 80px, var(--pink) 80px 138px, var(--cyan) 138px 210px, var(--gold) 210px 270px);
  opacity: 0.8;
}

.process ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.process li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.process strong {
  color: var(--pink);
  font-size: 1.2rem;
}

.process span {
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  gap: 32px;
  align-items: end;
}

.contact p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-panel {
  display: grid;
  gap: 10px;
}

.contact-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
  background: linear-gradient(135deg, #fff8ff, #f4e7ff);
  font-weight: 850;
  box-shadow: 0 16px 42px rgba(100, 43, 161, 0.1);
}

.contact-panel a::after {
  content: "↗";
  color: var(--pink);
  font-size: 1.15rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 70px);
  border-top: 1px solid var(--line);
  background: #fff8ff;
}

@media (max-width: 980px) {
  .hero {
    min-height: 92svh;
  }

  .hero-card,
  .tool-popouts {
    display: none;
  }

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

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

  .split,
  .process,
  .contact {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card img {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 16px;
  }

  nav {
    gap: 12px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 94svh;
    padding: 112px 16px 42px;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 4.9rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    flex: 1 1 150px;
  }

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

  .stats div {
    min-height: 112px;
    padding: 18px 16px;
  }

  .section,
  .process {
    padding: 62px 16px;
  }

  .section::before {
    width: 170px;
    top: 30px;
    right: 16px;
  }

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

  .work-card,
  .work-card img {
    min-height: 460px;
  }

  .process li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  footer {
    flex-direction: column;
    padding: 24px 16px;
  }
}
