@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 26%, rgba(194, 52, 126, 0.2), transparent 22%),
    radial-gradient(circle at 82% 12%, rgba(255, 138, 61, 0.22), transparent 20%),
    radial-gradient(circle at 74% 80%, rgba(255, 117, 24, 0.18), transparent 18%),
    #090909;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: transparent;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 86%);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

#root {
  min-height: 100vh;
}


.site-shell {
  position: relative;
  /* overflow-x: hidden; */
}

.site-shell-content {
  min-height: 100vh;
  opacity: 0;
  transform: translateY(-96px);
  clip-path: inset(0 0 100% 0);
  transform-origin: top;
  will-change: opacity, transform, clip-path;
  transition:
    opacity 950ms ease,
    transform 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 1300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-shell-content.is-visible {
  opacity: 1;
  transform: translateY(0);
  clip-path: inset(0 0 0 0);
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  background:
    radial-gradient(circle at 18% 26%, rgba(194, 52, 126, 0.22), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 138, 61, 0.24), transparent 20%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(10, 10, 10, 0.98));
  will-change: opacity, clip-path, transform;
  transition:
    opacity 900ms ease,
    clip-path 1250ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.intro-overlay.is-exiting {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(4%);
}

.intro-overlay__glow,
.intro-overlay__scan {
  position: absolute;
  pointer-events: none;
}

.intro-overlay__glow {
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.58;
}

.intro-overlay__glow--left {
  left: -6%;
  bottom: -8%;
  background: radial-gradient(circle, rgba(255, 72, 146, 0.54), transparent 68%);
}

.intro-overlay__glow--right {
  right: -8%;
  top: -8%;
  background: radial-gradient(circle, rgba(255, 140, 58, 0.62), transparent 68%);
}

.intro-overlay__scan {
  inset: -20% 0 auto;
  height: 34vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 72%);
  mix-blend-mode: screen;
  animation: introScan 3.2s ease-in-out forwards;
}

.intro-overlay__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  padding: 2rem;
  text-align: center;
}

.intro-overlay__eyebrow,
.intro-overlay__subtitle {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.intro-overlay__eyebrow {
  margin-bottom: 1.1rem;
  color: #ffb26e;
  font-size: 0.82rem;
}

.intro-overlay__name {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: clamp(3rem, 10vw, 7.4rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  color: #f7f4ef;
}

.intro-overlay__name span {
  display: inline-block;
  animation: introLetterDrop 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-overlay__name span.is-space {
  width: 0.32em;
}

.intro-overlay__subtitle {
  margin-top: 1.45rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.topbar,
.page-frame,
.site-footer {
  width: 100%;
  margin: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 3rem 0.85rem;
  background: rgba(9, 9, 9, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.brand,
.nav-links a,
.nav-cta,
.primary-button,
.secondary-button {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ff7a1a;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.nav-links a,
.nav-cta {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.nav-links a.active,
.nav-links a:hover,
.nav-cta:hover {
  color: #ffffff;
}

.nav-cta::after {
  content: '->';
  margin-left: 0.35rem;
}

.mobile-nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-cta {
  display: none;
}

.page-frame {
  padding: 2.5rem 3rem 5rem;
}

.hero,
.inner-hero,
.section-block,
.metrics-bar,
.contact-panel,
.site-footer {
  position: relative;
  isolation: isolate;
}

.hero {
  display: grid;
  grid-template-columns: 190px minmax(560px, 1.05fr) minmax(480px, 0.95fr);
  gap: 2.25rem;
  align-items: center;
  min-height: 84vh;
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: center;
  min-height: 48vh;
}

.inner-hero-single {
  grid-template-columns: 1fr;
}

.hero::before,
.section-block::before,
.site-footer::before {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(85px);
  opacity: 0.82;
  z-index: -1;
}

.hero::before {
  width: 360px;
  height: 360px;
  top: 2%;
  right: 5%;
  background: radial-gradient(circle, rgba(255, 145, 49, 0.4), transparent 68%);
}

.hero::after {
  content: '';
  position: absolute;
  left: -8%;
  top: 18%;
  width: 260px;
  height: 340px;
  background: radial-gradient(circle, rgba(195, 47, 117, 0.26), transparent 70%);
  filter: blur(70px);
  z-index: -1;
}

.section-block::before {
  width: 260px;
  height: 260px;
  right: 8%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(222, 83, 255, 0.18), transparent 72%);
}

.site-footer::before {
  width: 320px;
  height: 220px;
  left: 8%;
  top: 0;
  background: radial-gradient(circle, rgba(255, 127, 57, 0.2), transparent 72%);
}

.hero-stats {
  display: grid;
  gap: 1.25rem;
  align-content: center;
}

.floating-card,
.service-card,
.metric-card,
.customer-card,
.info-card,
.skill-card,
.portfolio-card,
.process-card,
.contact-panel,
.site-footer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.floating-card {
  min-height: 150px;
  padding: 1.6rem 1.3rem;
  border-radius: 24px;
  backdrop-filter: blur(14px);
  animation: cardFloat 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floating-card strong,
.metric-card strong {
  display: block;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 2rem;
  color: #ffffff;
}

.metric-card strong {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  line-height: 1.05;
}

.floating-card span,
.metric-card span,
.project-tag {
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.metric-card span:not(.metric-chip) {
  display: block;
  margin-top: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}

.delay-1 {
  animation-delay: -1s;
}

.delay-2 {
  animation-delay: -2.5s;
}

.hero-copy,
.inner-copy {
  max-width: 52rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 2rem;
}

.hero-copy h1,
.inner-copy h1,
.section-copy h2,
.contact-panel h2 {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: #f7f4ef;
  line-height: 0.94;
}

.hero-copy h1 {
  font-size: clamp(4.8rem, 10vw, 8.4rem);
  letter-spacing: -0.06em;
}

.hero-copy h1 span {
  display: block;
  margin-top: 0.35rem;
  background: linear-gradient(90deg, #ff4da6, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.inner-copy h1,
.section-copy h2,
.contact-panel h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: #ff9a3d;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

.hero-description,
.page-description,
.section-copy p,
.service-card p,
.customer-card p,
.visual-panel p,
.info-card p,
.skill-card li,
.portfolio-card p,
.process-card p {
  color: rgba(255, 255, 255, 0.68);
}

.hero-description,
.page-description {
  max-width: 42rem;
  margin: 1.6rem 0 0;
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.hero-summary-item {
  min-height: 146px;
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-summary-item strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb26e;
}

.hero-summary-item span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
  font-size: 0.95rem;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.primary-button {
  background: #ffffff;
  color: #101010;
}

.secondary-button {
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: center;
  min-width: 0;
}

.visual-stage {
  position: relative;
  width: min(100%, 620px);
  min-height: 720px;
  display: grid;
  place-items: center;
}

.hero-head,
.inner-head {
  position: relative;
  z-index: 2;
  filter:
    drop-shadow(0 22px 60px rgba(255, 111, 36, 0.28))
    drop-shadow(0 0 40px rgba(218, 83, 255, 0.14));
}

.hero-head {
  width: min(100%, 500px);
  animation: levitate 5.5s ease-in-out infinite;
}

.inner-head {
  width: min(100%, 300px);
  justify-self: center;
}

.about-head {
  width: min(100%, 360px);
}

.inner-visual {
  display: grid;
  justify-items: center;
}

.about-visual-stack {
  gap: 1.2rem;
}

.about-intro-copy {
  max-width: 46rem;
}

.about-hero-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 48rem;
}

.about-hero-heading h1 {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: clamp(3.6rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #f7f4ef;
}

.about-hero-role {
  margin: 0;
  max-width: 38rem;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.about-paragraphs {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.about-paragraphs .page-description {
  margin: 0;
  max-width: none;
}

.about-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  max-width: 500px;
}

.about-mini-card {
  min-height: 130px;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.about-mini-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb26e;
}

.about-mini-card span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
  font-size: 0.95rem;
}

.stage-ring,
.stage-particle,
.stage-shard {
  position: absolute;
}

.stage-ring {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.stage-ring-one {
  inset: 6% 8%;
  transform: rotate(18deg);
  animation: spin 18s linear infinite;
}

.stage-ring-two {
  inset: 12% 3%;
  transform: rotate(-18deg);
  opacity: 0.6;
  animation: spinReverse 24s linear infinite;
}

.stage-particle {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 246, 228, 0.95), rgba(255, 197, 142, 0.2));
  box-shadow: 0 0 34px rgba(255, 182, 125, 0.45);
  z-index: 3;
}

.stage-particle-one {
  width: 36px;
  height: 36px;
  top: 18%;
  left: 11%;
  animation: drift 7s ease-in-out infinite;
}

.stage-particle-two {
  width: 24px;
  height: 24px;
  top: 16%;
  right: 16%;
  animation: drift 6s ease-in-out infinite reverse;
}

.stage-particle-three {
  width: 18px;
  height: 18px;
  bottom: 20%;
  left: 14%;
  animation: drift 5s ease-in-out infinite;
}

.stage-shard {
  z-index: 1;
  opacity: 0.9;
  animation: shardFloat 8s ease-in-out infinite;
}

.stage-shard-one {
  width: 94px;
  height: 104px;
  right: 11%;
  top: 28%;
  background: linear-gradient(180deg, rgba(255, 130, 78, 0.95), rgba(255, 41, 117, 0.2));
  clip-path: polygon(18% 0, 100% 24%, 72% 100%, 0 60%);
}

.stage-shard-two {
  width: 74px;
  height: 82px;
  left: 10%;
  bottom: 26%;
  background: linear-gradient(180deg, rgba(40, 214, 255, 0.9), rgba(56, 189, 248, 0.2));
  clip-path: polygon(0 18%, 100% 0, 82% 100%, 12% 74%);
  animation-delay: -2s;
}

.stage-shard-three {
  width: 82px;
  height: 88px;
  right: 23%;
  bottom: 19%;
  background: linear-gradient(180deg, rgba(255, 213, 74, 0.95), rgba(255, 149, 0, 0.16));
  clip-path: polygon(30% 0, 100% 42%, 58% 100%, 0 68%);
  animation-delay: -3.5s;
}

.visual-panel {
  position: absolute;
  right: 0.5rem;
  bottom: 8.5rem;
  z-index: 4;
  max-width: 240px;
  padding: 1.1rem 1.3rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.ticker {
  margin: 1.75rem -3rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  transform: rotate(-2deg);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 3.4rem;
  padding: 1.55rem 0;
  animation: marquee 24s linear infinite;
}

.ticker-track span {
  position: relative;
  padding-right: 3rem;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: #f8e8d0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1.08rem;
  font-weight: 700;
}

.ticker-track span::after {
  content: '*';
  position: absolute;
  right: 0;
  color: #ff8e4d;
}

.section-block {
  margin-top: 6rem;
  margin-inline: auto;
  max-width: 1380px;
  width: 100%;
}

.section-copy {
  max-width: 860px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.5rem;
  align-items: end;
}

.section-note {
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.section-note-wide {
  margin-top: 1.5rem;
  max-width: 100%;
}

.about-list-block {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-list-block h3 {
  margin: 0 0 1rem;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1.35rem;
  color: #f7f4ef;
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.about-list li {
  position: relative;
  padding-left: 1.45rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8a3d, #fb7185);
  box-shadow: 0 0 18px rgba(255, 138, 61, 0.4);
}

.section-media-grid,
.about-process-strip {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.section-media-grid-three,
.about-process-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.section-media-card,
.about-process-frame {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.section-media-image,
.about-process-image {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.section-media-image {
  aspect-ratio: 16 / 11;
}

.about-process-image {
  aspect-ratio: 16 / 10;
}

.section-media-copy {
  padding: 1.35rem 1.4rem 1.5rem;
}

.section-media-copy h3 {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1.35rem;
  color: #f7f4ef;
}

.section-media-copy p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.about-process-frame {
  position: relative;
}

.about-process-frame span {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  background: rgba(8, 8, 8, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7f4ef;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid,
.customer-grid,
.info-grid,
.skill-columns,
.portfolio-grid,
.process-grid,
.metrics-bar {
  display: grid;
  gap: 1.5rem;
}

.service-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.portfolio-card,
.process-card,
.skill-card,
.info-card {
  padding: 2rem;
  border-radius: 28px;
  backdrop-filter: blur(18px);
}

.service-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portfolio-card {
  overflow: hidden;
}

.customer-media,
.portfolio-media {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 154, 61, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.customer-visual,
.portfolio-image {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.01);
}

.customer-visual {
  aspect-ratio: 16 / 11;
}

.portfolio-image {
  aspect-ratio: 16 / 10;
}

.service-tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 154, 61, 0.12);
  border: 1px solid rgba(255, 154, 61, 0.18);
  color: #ffb26e;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.service-index {
  display: inline-flex;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: #ff994f;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.service-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 0 1.2rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 170, 85, 0.28), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffb26e;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.service-icon-badge svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.service-card h3,
.customer-card h3,
.info-card h3,
.skill-card h3,
.portfolio-card h3,
.process-card h3 {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1.75rem;
  color: #ffffff;
}

.service-card ul,
.skill-card ul {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.skill-card li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.8rem;
}

.service-card li::before,
.skill-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff5e62, #ffb347);
  box-shadow: 0 0 20px rgba(255, 133, 66, 0.5);
}

.service-result {
  margin: 1.4rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.metrics-bar {
  margin-top: 2.2rem;
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 1.15rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(255, 143, 77, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(255, 143, 77, 0.13), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.metric-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: 1.55rem 1.6rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 157, 77, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.metric-card::after {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 149, 79, 0.88), rgba(255, 77, 166, 0.58), transparent 82%);
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 178, 110, 0.24);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
}

.metric-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.metric-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 32px;
  margin-bottom: 1.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 154, 61, 0.1);
  border: 1px solid rgba(255, 154, 61, 0.18);
  color: #ffb26e;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.metric-card-head .metric-chip {
  margin-bottom: 0;
}

.metric-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 170, 85, 0.24), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffb26e;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.metric-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.customer-grid,
.info-grid,
.skill-columns,
.portfolio-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-work-grid {
  gap: 1.7rem;
}

.why-work-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 1.85rem;
  background:
    radial-gradient(circle at top right, rgba(255, 147, 77, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-work-card::after {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 149, 79, 0.88), rgba(255, 77, 166, 0.56), transparent 82%);
}

.why-work-index {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: #ff9d5a;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why-work-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 1.2rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 170, 85, 0.26), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffb26e;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
}

.why-work-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.why-work-card h3 {
  font-size: 1.9rem;
}

.why-work-card p {
  max-width: 17rem;
  line-height: 1.8;
}

.why-work-tail {
  display: inline-flex;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.customer-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 2rem;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.customer-glow {
  position: absolute;
  inset: auto auto -18% -8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 143, 77, 0.3), transparent 68%);
  filter: blur(18px);
}

.customer-card p {
  position: relative;
  max-width: 15rem;
  z-index: 1;
}

.portfolio-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-grid-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-media {
  margin: -2rem -2rem 1.35rem;
  border-radius: 28px 28px 22px 22px;
}

.project-tag {
  display: inline-flex;
  margin-bottom: 1rem;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 8, 8, 0.14) 100%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 178, 110, 0.24);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.showcase-card:hover::after {
  opacity: 1;
}

.showcase-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background:
    radial-gradient(circle at top right, rgba(255, 154, 61, 0.16), transparent 34%),
    #101017;
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.showcase-card:hover .showcase-image {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.showcase-copy {
  padding: 1.55rem;
}

.showcase-copy h3 {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1.55rem;
  color: #ffffff;
}

.showcase-copy p {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.showcase-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.showcase-actions .primary-button,
.showcase-actions .secondary-button {
  min-height: 46px;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.case-study-hero-copy {
  max-width: 48rem;
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.case-study-meta-card,
.project-shot-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.case-study-meta-card {
  min-height: 118px;
  padding: 1.25rem 1.35rem;
  border-radius: 22px;
}

.case-study-meta-card span {
  display: block;
  margin-bottom: 0.55rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-study-meta-card strong {
  display: block;
  color: #f7f4ef;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1.02rem;
  line-height: 1.6;
}

.case-study-hero-preview {
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}

.case-study-hero-image {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top center;
  background:
    radial-gradient(circle at top right, rgba(255, 154, 61, 0.14), transparent 32%),
    #101017;
}

.case-study-feature-grid,
.project-shot-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.case-study-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-shot-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-study-preview {
  margin-top: 2rem;
  overflow: hidden;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.case-study-preview-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  background:
    radial-gradient(circle at top right, rgba(255, 154, 61, 0.14), transparent 32%),
    #101017;
}

.project-shot-card {
  overflow: hidden;
  border-radius: 28px;
}

.project-shot-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background:
    radial-gradient(circle at top right, rgba(255, 154, 61, 0.14), transparent 32%),
    #101017;
}

.project-shot-copy {
  padding: 1.4rem;
}

.project-shot-copy h3 {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1.4rem;
  color: #ffffff;
}

.project-shot-copy p {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.stack-tag {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #f7f4ef;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-panel,
.site-footer {
  margin-top: 6rem;
  padding: 2.4rem;
  border-radius: 32px;
  gap: 1.5rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr) minmax(220px, 0.7fr);
  align-items: start;
}

.footer-brand h3,
.footer-title,
.footer-cta p {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: #f7f4ef;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.25;
}

.footer-brand p:last-child {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.footer-column {
  display: grid;
  gap: 0.8rem;
}

.footer-title {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb26e;
}

.footer-column a,
.footer-column span {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
}

.footer-column a:hover {
  color: #ffffff;
}

.footer-cta {
  display: grid;
  gap: 1rem;
  align-content: start;
  justify-items: start;
}

.footer-cta p {
  margin: 0;
  font-size: 1rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 88px;
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.social-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 178, 110, 0.32);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 154, 61, 0.12);
  color: #ffb26e;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-name {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #f7f4ef;
  letter-spacing: 0.04em;
}

.social-copy {
  display: grid;
  gap: 0.2rem;
}

.social-meta {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.about-cta-copy .page-description {
  max-width: 42rem;
}

.whatsapp-float {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  box-shadow:
    0 18px 40px rgba(18, 140, 126, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 24px 48px rgba(18, 140, 126, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes levitate {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes shardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(6deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(16px, -22px, 0);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes introLetterDrop {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  18% {
    opacity: 1;
  }
  68% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(180px) scale(0.92);
    filter: blur(8px);
  }
}

@keyframes introScan {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  20% {
    opacity: 0.95;
  }
  100% {
    transform: translateY(150%);
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .topbar,
  .page-frame,
  .site-footer {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .hero,
  .inner-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    order: 2;
  }

  .hero-visual {
    order: 3;
    justify-content: center;
  }

  .service-grid,
  .service-grid-three,
  .customer-grid,
  .info-grid,
  .section-media-grid-three,
  .skill-columns,
  .portfolio-grid-list,
  .process-grid,
  .about-process-strip,
  .case-study-grid,
  .case-study-feature-grid,
  .project-shot-grid,
  .case-study-meta,
  .footer-links,
  .social-grid,
  .showcase-grid,
  .metrics-bar,
  .hero-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ticker {
    margin-left: -2rem;
    margin-right: -2rem;
  }

  .intro-overlay__copy {
    width: min(100%, 820px);
  }
}

@media (max-width: 760px) {
  .topbar {
    position: sticky;
    top: 0;
    padding: 1rem 1rem 0.75rem;
    z-index: 25;
  }

  .topbar.mobile-menu-open {
    z-index: 35;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 1rem;
    right: 1rem;
    z-index: 30;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.8rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(12, 12, 12, 0.95));
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 0.78rem 0.95rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-links a.active,
  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-mobile-cta {
    display: block;
    margin-top: 0.25rem;
    text-align: center;
    color: #ffb26e;
  }

  .page-frame {
    padding: 1rem 1rem 4rem;
  }

  .hero-copy h1,
  .inner-copy h1,
  .section-copy h2,
  .contact-panel h2 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .about-hero-heading h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .about-hero-role {
    font-size: 1.05rem;
  }

  .hero-description,
  .page-description {
    font-size: 1rem;
  }

  .intro-overlay__copy {
    padding: 1.5rem;
  }

  .intro-overlay__name {
    font-size: clamp(2.4rem, 13vw, 4.4rem);
    line-height: 1;
  }

  .intro-overlay__subtitle {
    letter-spacing: 0.12em;
    font-size: 0.72rem;
  }

  .visual-stage {
    min-height: 480px;
  }

  .hero-head {
    width: min(100%, 320px);
  }

  .case-study-hero-image {
    min-height: 320px;
  }

  .visual-panel {
    position: static;
    margin-top: -1rem;
    max-width: 100%;
  }

  .ticker {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .ticker-track {
    gap: 2.2rem;
    padding: 1.2rem 0;
  }

  .ticker-track span {
    font-size: 0.9rem;
    padding-right: 2.2rem;
  }

  .hero-stats,
  .service-grid,
  .service-grid-three,
  .hero-summary,
  .customer-grid,
  .info-grid,
  .section-media-grid-three,
  .skill-columns,
  .portfolio-grid,
  .portfolio-grid-list,
  .process-grid,
  .about-process-strip,
  .case-study-grid,
  .case-study-feature-grid,
  .project-shot-grid,
  .case-study-meta,
  .footer-links,
  .social-grid,
  .showcase-grid,
  .metrics-bar,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .contact-panel,
  .site-footer {
    display: grid;
    padding: 1.5rem;
    border-radius: 24px;
  }

  .about-mini-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    height: 58px;
  }

  .service-card,
  .customer-card,
  .metric-card,
  .info-card,
  .skill-card,
  .portfolio-card,
  .process-card,
  .floating-card {
    padding: 1.4rem;
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .site-shell-content {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .intro-overlay {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
