:root {
  --ink: #11111a;
  --muted: #626275;
  --white: #ffffff;
  --purple: #6d28d9;
  --violet: #8b5cf6;
  --pink: #ec4899;
  --orange: #ff8a1f;
  --cyan: #18c8ff;
  --lime: #b7ff4a;
  --soft: #f8f7ff;
  --card: rgba(255, 255, 255, 0.82);
  --shadow: 0 24px 70px rgba(37, 20, 90, 0.16);
  --radius: 28px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fbf9ff 35%,
    #fffaf5 70%,
    #fff 100%
  );
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
}
.section-shell {
  width: min(1180px, calc(100% - 38px));
  margin-inline: auto;
}
.section-pad {
  padding: 100px 0;
}
.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  z-index: 999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.18),
    rgba(236, 72, 153, 0.08) 42%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.2s;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px max(24px, calc((100vw - 1180px) / 2));
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(109, 40, 217, 0.08);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark,
.footer-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  letter-spacing: -2px;
  font-size: 28px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-copy {
  display: grid;
  line-height: 1.05;
}
.brand-copy strong {
  font-size: 13px;
}
.brand-copy small {
  font-size: 10px;
  color: var(--muted);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  transition: 0.25s;
}
.nav-links a:hover::after {
  width: 100%;
}
.header-cta {
  padding: 13px 18px;
  border-radius: 14px;
  background: #111;
  color: white;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition: 0.25s;
}
.header-cta:hover {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transform: translateY(-3px);
}
.menu-btn {
  display: none;
  border: 0;
  background: #111;
  color: white;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  font-size: 20px;
}
.hero {
  min-height: 760px;
  padding: 72px 0 58px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 30px;
  position: relative;
}
.hero-copy {
  position: relative;
  z-index: 4;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.7px;
  color: var(--purple);
}
.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: 0 0 22px var(--pink);
  animation: pulse 1.6s infinite;
}
.hero h1,
.section-heading h2,
.about-panel h2,
.contact-card h2 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -2.7px;
  line-height: 0.98;
  margin: 18px 0;
}
.hero h1 {
  font-size: clamp(56px, 6vw, 86px);
}
h1 span,
h2 span {
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 620px;
}
.hero-actions {
  display: flex;
  gap: 13px;
  margin: 30px 0 26px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 21px;
  border-radius: 15px;
  font-weight: 900;
  font-size: 14px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
}
.btn-primary {
  color: white;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  background-size: 200% 100%;
  box-shadow: 0 16px 32px rgba(109, 40, 217, 0.25);
  animation: gradientShift 3.5s linear infinite;
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 38px rgba(236, 72, 153, 0.3);
  filter: saturate(1.2);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(109, 40, 217, 0.12);
  box-shadow: 0 12px 28px rgba(50, 33, 90, 0.08);
}
.btn-glass:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
}
.contact-strip {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.contact-strip a {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 10px 13px;
  border-radius: 13px;
  background: white;
  box-shadow: 0 9px 24px rgba(36, 16, 88, 0.08);
  font-size: 12px;
}
.contact-strip span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
}
.hero-visual {
  height: 650px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-glow {
  position: absolute;
  width: 590px;
  height: 590px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 35%,
    rgba(24, 200, 255, 0.38),
    rgba(139, 92, 246, 0.25) 37%,
    rgba(236, 72, 153, 0.16) 57%,
    transparent 70%
  );
  filter: blur(8px);
  animation: breath 5s ease-in-out infinite;
}
.floating-girl {
  position: relative;
  z-index: 3;
  width: min(690px, 100%);
  filter: drop-shadow(0 28px 35px rgba(41, 19, 91, 0.22));
  animation: girlFloat 4.6s ease-in-out infinite;
  transform-origin: center bottom;
}
.kept-float-card {
  position: absolute;
  left: -30px;
  top: 72px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px 11px 10px;
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(109, 40, 217, 0.13);
  box-shadow: 0 20px 45px rgba(61, 22, 128, 0.16);
  animation: marbleFloat 2.8s ease-in-out infinite;
}
.kept-marble {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(26, 26, 60, 0.16);
}
.kept-text {
  display: grid;
}
.kept-text small {
  font-size: 10px;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.kept-text strong {
  font-size: 17px;
}
.kept-text em {
  font-size: 10px;
  color: var(--purple);
  font-style: normal;
  font-weight: 800;
  margin-top: 3px;
}
.mini-badge {
  position: absolute;
  z-index: 6;
  padding: 12px 15px;
  border-radius: 16px;
  background: rgba(17, 17, 26, 0.9);
  color: white;
  box-shadow: 0 18px 35px rgba(17, 17, 26, 0.16);
  display: grid;
}
.mini-badge strong {
  font-size: 12px;
}
.mini-badge span {
  font-size: 9px;
  opacity: 0.72;
  margin-top: 3px;
}
.badge-one {
  right: -5px;
  top: 130px;
  animation: badgeBob 3.6s ease-in-out infinite;
}
.badge-two {
  right: 18px;
  bottom: 88px;
  animation: badgeBob 4.2s ease-in-out infinite reverse;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.7;
  z-index: -1;
}
.hero-orb-one {
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  left: -120px;
  top: 100px;
  animation: orbMove 7s ease-in-out infinite;
}
.hero-orb-two {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  right: -80px;
  bottom: 90px;
  animation: orbMove 6s ease-in-out infinite reverse;
}
.ticker-wrap {
  overflow: hidden;
  background: #111;
  color: white;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  transform: rotate(-1deg) scale(1.01);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}
.ticker {
  display: flex;
  width: max-content;
  gap: 40px;
  padding: 14px 0;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  animation: ticker 24s linear infinite;
}
.ticker span {
  white-space: nowrap;
  background: linear-gradient(90deg, #fff, var(--cyan), #fff, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}
.section-heading h2,
.about-panel h2 {
  font-size: clamp(38px, 5vw, 64px);
}
.section-heading p,
.about-panel p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(107, 74, 167, 0.11);
  box-shadow: 0 18px 50px rgba(51, 31, 90, 0.08);
  overflow: hidden;
  transition: 0.25s;
  transform-style: preserve-3d;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -55px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink), transparent 67%);
  opacity: 0.1;
  transition: 0.3s;
}
.service-card:hover {
  box-shadow: 0 26px 60px rgba(109, 40, 217, 0.16);
}
.service-card:hover::before {
  transform: scale(1.7);
  opacity: 0.2;
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: white;
  font-weight: 900;
  font-size: 21px;
  box-shadow: 0 12px 24px rgba(109, 40, 217, 0.22);
}
.service-number {
  position: absolute;
  right: 22px;
  top: 20px;
  font-size: 12px;
  font-weight: 900;
  color: #c7c1d7;
}
.service-card h3 {
  font-family: "Montserrat";
  font-size: 21px;
  margin: 24px 0 10px;
}
.service-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}
.service-card ul {
  padding-left: 18px;
  color: #3d3d4c;
  font-size: 13px;
  line-height: 1.85;
}
.portfolio-section {
  background: radial-gradient(
    circle at 20% 10%,
    #3d1a8d 0%,
    #171324 35%,
    #0d0d14 75%
  );
  color: white;
  position: relative;
  overflow: hidden;
}
.section-heading.light .eyebrow {
  color: #c9b9ff;
}
.section-heading.light p {
  color: #cfc9dc;
}
.featured-project {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  min-height: 540px;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.32);
}
.project-copy {
  padding: 48px;
}
.project-copy h3 {
  font-family: "Montserrat";
  font-size: 50px;
  letter-spacing: -2px;
  margin: 14px 0;
}
.project-copy p {
  color: #d4cede;
  line-height: 1.8;
}
.project-pill,
.project-tags span {
  display: inline-block;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
}
.project-pill {
  padding: 8px 11px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
}
.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 20px 0 26px;
}
.project-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  color: #e7e0f3;
}
.project-art {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  padding: 30px;
  overflow: hidden;
}
.project-art img {
  position: relative;
  z-index: 2;
  max-height: 500px;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.35));
  animation: showcaseFloat 5s ease-in-out infinite;
}
.project-glow {
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    var(--pink),
    var(--purple) 40%,
    transparent 68%
  );
  filter: blur(28px);
  opacity: 0.34;
}
.btn-white {
  background: white;
  color: #111;
}
.btn-white:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.16);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}
.about-panel {
  padding: 46px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fff, #fbf8ff);
  border: 1px solid rgba(109, 40, 217, 0.1);
  box-shadow: var(--shadow);
}
.skill-cloud {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.skill-cloud span {
  padding: 10px 12px;
  border-radius: 999px;
  background: #f2ecff;
  color: var(--purple);
  font-size: 11px;
  font-weight: 900;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  min-height: 180px;
  padding: 24px;
  border-radius: 24px;
  background: #111;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.stat-card:nth-child(2) {
  background: linear-gradient(135deg, var(--purple), var(--pink));
}
.stat-card:nth-child(3) {
  background: linear-gradient(135deg, var(--cyan), #2563eb);
}
.stat-card:nth-child(4) {
  background: linear-gradient(135deg, var(--orange), #ff3d6b);
}
.stat-card::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  right: -28px;
  top: -32px;
}
.stat-card strong {
  font-family: "Montserrat";
  font-size: 42px;
}
.stat-card span {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 4px;
}
.credentials-section {
  background: linear-gradient(180deg, #fff7ee, #fff);
}
.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.credential-card {
  padding: 30px;
  border-radius: 25px;
  background: white;
  box-shadow: 0 18px 45px rgba(116, 74, 20, 0.08);
  border: 1px solid rgba(255, 138, 31, 0.15);
  position: relative;
  overflow: hidden;
}
.credential-card::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  opacity: 0.1;
}
.credential-icon {
  font-size: 32px;
}
.credential-card small {
  display: block;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 1.1px;
  margin: 18px 0 10px;
}
.credential-card h3 {
  font-family: "Montserrat";
  font-size: 20px;
  line-height: 1.25;
}
.credential-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.process-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.process-card {
  padding: 25px;
  border-top: 4px solid transparent;
  border-image: linear-gradient(
      90deg,
      var(--purple),
      var(--pink),
      var(--orange)
    )
    1;
  background: white;
  box-shadow: 0 16px 35px rgba(31, 17, 63, 0.07);
}
.process-card b {
  font-size: 12px;
  color: var(--purple);
}
.process-card h3 {
  font-family: "Montserrat";
  font-size: 18px;
}
.process-card p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.contact-section {
  padding: 30px 0 90px;
}
.contact-card {
  padding: 45px 50px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  background: linear-gradient(
    100deg,
    var(--purple),
    var(--pink),
    var(--orange)
  );
  background-size: 200% 200%;
  color: white;
  animation: gradientShift 6s linear infinite;
  box-shadow: 0 28px 70px rgba(109, 40, 217, 0.3);
}
.contact-card h2 {
  font-size: clamp(36px, 5vw, 58px);
  margin: 12px 0;
}
.contact-card p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.85);
}
.light-eye {
  color: white;
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 210px;
}
.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: white;
  background: rgba(255, 255, 255, 0.08);
}
footer {
  background: #0e0e14;
  color: white;
  padding: 60px 0 25px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 45px;
}
.footer-inner > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-inner p,
.footer-inner a {
  font-size: 12px;
  color: #b8b8c7;
  line-height: 1.7;
}
.footer-inner a:hover {
  color: white;
}
.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  color: #8f8f9d;
  font-size: 11px;
}
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.65, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =========================================================
   WEBSITE DESIGN VIDEO SHOWCASE
   ========================================================= */

.video-showcase {
  position: relative;
  overflow: hidden;
}

.video-showcase-heading {
  max-width: 820px;
  margin: 0 auto 38px;
  text-align: center;
}

.video-showcase-heading h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -2.7px;
  line-height: 1;
  margin: 18px 0;
}

.video-showcase-heading h2 span {
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.video-showcase-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

/* Video container */

.video-frame-wrap {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 32px;
  padding: 7px;

  background: linear-gradient(
    120deg,
    var(--purple),
    var(--pink),
    var(--orange),
    var(--cyan)
  );

  background-size: 300% 300%;

  animation: gradientShift 7s linear infinite;

  box-shadow: 0 35px 90px rgba(61, 22, 128, 0.25);

  isolation: isolate;
}

/* YouTube video */

.website-video {
  position: relative;
  z-index: 3;
  display: block;

  width: 100%;
  height: 100%;

  border: 0;
  border-radius: 26px;

  background: #000;
}

/* Bright floating glows */

.video-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(45px);
  opacity: 0.45;
  z-index: -1;
}

.video-glow-one {
  width: 250px;
  height: 250px;
  left: -80px;
  top: -70px;

  background: linear-gradient(135deg, var(--cyan), var(--purple));

  animation: orbMove 6s ease-in-out infinite;
}

.video-glow-two {
  width: 230px;
  height: 230px;
  right: -70px;
  bottom: -65px;

  background: linear-gradient(135deg, var(--pink), var(--orange));

  animation: orbMove 7s ease-in-out infinite reverse;
}

/* Bottom call to action */

.video-callout {
  max-width: 960px;

  margin: 28px auto 0;

  padding: 18px 22px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;

  border-radius: 22px;

  background: rgba(255, 255, 255, 0.88);

  backdrop-filter: blur(18px);

  border: 1px solid rgba(109, 40, 217, 0.12);

  box-shadow: 0 18px 45px rgba(51, 31, 90, 0.1);
}

.video-callout > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.video-callout strong {
  font-family: "Montserrat", sans-serif;
  font-size: 17px;
}

.video-callout span {
  color: var(--muted);
  font-size: 12px;
}

/* Mobile */

@media (max-width: 760px) {
  .video-showcase-heading h2 {
    font-size: 40px;
    letter-spacing: -1.8px;
  }

  .video-showcase-heading p {
    font-size: 15px;
  }

  .video-frame-wrap {
    border-radius: 22px;
    padding: 5px;
  }

  .website-video {
    border-radius: 17px;
  }

  .video-callout {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-callout .btn {
    width: 100%;
  }
}

@keyframes girlFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(-18px) rotate(0.5deg);
  }
}
@keyframes marbleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}
@keyframes badgeBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes breath {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.35);
  }
  50% {
    transform: scale(1.15);
    box-shadow: 0 0 0 10px rgba(236, 72, 153, 0);
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes orbMove {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(25px, 35px);
  }
}
@keyframes showcaseFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}
@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }
  .header-cta {
    display: none;
  }
  .nav-links {
    justify-content: flex-end;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 55px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-lead {
    margin-inline: auto;
  }
  .hero-actions,
  .contact-strip {
    justify-content: center;
  }
  .hero-visual {
    height: 650px;
  }
  .kept-float-card {
    left: 5%;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .featured-project {
    grid-template-columns: 1fr;
  }
  .project-copy {
    padding-bottom: 0;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .credential-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-line {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .section-shell {
    width: min(100% - 24px, 1180px);
  }
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px;
  }
  .brand-copy {
    display: none;
  }
  .menu-btn {
    display: block;
    justify-self: end;
  }
  .nav-links {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 70px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(17, 17, 26, 0.96);
    color: white;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 13px 12px;
  }
  .hero {
    padding-top: 40px;
  }
  .hero h1 {
    font-size: 47px;
    letter-spacing: -2px;
  }
  .hero-lead {
    font-size: 15px;
  }
  .hero-visual {
    height: 510px;
  }
  .floating-girl {
    width: 620px;
  }
  .hero-glow {
    width: 430px;
    height: 430px;
  }
  .kept-float-card {
    top: 20px;
    left: 2%;
    transform: scale(0.9);
  }
  .badge-one {
    top: auto;
    right: 3%;
    bottom: 115px;
  }
  .badge-two {
    display: none;
  }
  .section-pad {
    padding: 72px 0;
  }
  .section-heading h2,
  .about-panel h2 {
    font-size: 40px;
    letter-spacing: -1.8px;
  }
  .service-grid,
  .credential-grid,
  .process-line,
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .featured-project {
    min-height: auto;
  }
  .project-copy {
    padding: 32px;
  }
  .project-copy h3 {
    font-size: 38px;
  }
  .project-art {
    min-height: 360px;
  }
  .about-panel {
    padding: 30px;
  }
  .contact-card {
    padding: 32px 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-buttons {
    width: 100%;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner > div:first-child {
    grid-column: 1/-1;
  }
  .footer-bottom {
    gap: 15px;
    flex-direction: column;
  }
  .cursor-glow {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
