@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: dark;
  --black: #07080b;
  --charcoal: #101319;
  --charcoal-2: #171b22;
  --white: #f7f8f4;
  --muted: #aeb6c0;
  --line: rgba(247, 248, 244, 0.12);
  --glass: rgba(15, 18, 24, 0.78);
  --glass-strong: rgba(15, 18, 24, 0.94);
  --electric: #2f8fd8;
  --sky: #8ed8ff;
  --pale: #e8f6ff;
  --silver: #d8dee5;
  --steel: #6f7c8b;
  --success: #75e0be;
  --warning: #d9b66d;
  --rose: #ff8aa1;
  --violet: #a98bff;
  --danger: #ef7f8f;
  --radius: 8px;
  --section: min(1180px, calc(100% - 36px));
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --depth-shadow: 0 26px 80px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.035) inset;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(142, 216, 255, 0.075), transparent 460px),
    radial-gradient(circle at 8% 18%, rgba(255, 138, 161, 0.075), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(117, 224, 190, 0.07), transparent 30%),
    linear-gradient(135deg, #07080b 0%, #0d1117 48%, #090b0f 100%);
  color: var(--white);
  cursor: auto;
  font-family:
    Inter, "Segoe UI", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(247, 248, 244, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 244, 0.024) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 82%);
  animation: gridDrift 28s linear infinite;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  opacity: 0.72;
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(90deg, rgba(217, 182, 109, 0.04), transparent 34%, rgba(169, 139, 255, 0.04) 62%, rgba(142, 216, 255, 0.045));
  background-size: 100% 100%, 100% 100%, 160% 160%;
  animation: auraShift 18s ease-in-out infinite alternate;
}

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(142, 216, 255, 0.09), transparent 42%),
    #07080b;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-loader::before {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: var(--radius);
  content: "";
  border: 1px solid rgba(247, 248, 244, 0.14);
  background:
    url("./assets/ark-logo.svg") center / 82% auto no-repeat,
    linear-gradient(135deg, rgba(142, 216, 255, 0.16), rgba(217, 182, 109, 0.1)),
    rgba(15, 18, 24, 0.86);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  animation: loaderPulse 1.3s ease-in-out infinite;
}

.site-loader span {
  color: var(--sky);
  font-weight: 850;
  text-transform: uppercase;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

#particle-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.76;
  pointer-events: none;
}

.cursor-dot,
.cursor-ring {
  display: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--sky);
  box-shadow: none;
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247, 248, 244, 0.32);
  box-shadow: none;
  transition: width 180ms ease, height 180ms ease, background 180ms ease, border-color 180ms ease;
}

body.cursor-active .cursor-ring {
  width: 66px;
  height: 66px;
  border-color: rgba(207, 239, 255, 0.95);
  background: rgba(247, 248, 244, 0.08);
}

.section-band {
  width: var(--section);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 60;
  display: grid;
  width: var(--section);
  min-height: 72px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(247, 248, 244, 0.12);
  border-radius: var(--radius);
  background: rgba(10, 12, 16, 0.82);
  box-shadow: var(--depth-shadow);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.brand-mark {
  display: block;
  width: 58px;
  height: 44px;
  flex: 0 0 auto;
  padding: 4px;
  border-radius: var(--radius);
  border: 1px solid rgba(247, 248, 244, 0.13);
  background:
    linear-gradient(135deg, rgba(142, 216, 255, 0.14), rgba(217, 182, 109, 0.1)),
    rgba(15, 18, 24, 0.74);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  object-fit: contain;
  object-position: center;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  color: #c2cad2;
  font-size: 0.91rem;
}

.primary-nav a {
  position: relative;
  transition: color 180ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--warning), transparent);
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav a:hover {
  color: var(--white);
}

.primary-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-action,
.primary-action,
.secondary-action,
.contact-form button,
.whatsapp-large,
.slider-btn,
.modal-close {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 850;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease-out),
    box-shadow 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.primary-action::before,
.secondary-action::before,
.nav-action::before,
.contact-form button::before,
.whatsapp-large::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.42) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform 640ms var(--ease-out);
}

.primary-action:hover::before,
.secondary-action:hover::before,
.nav-action:hover::before,
.contact-form button:hover::before,
.whatsapp-large:hover::before {
  transform: translateX(120%);
}

.nav-action,
.primary-action,
.contact-form button,
.whatsapp-large {
  border: 0;
  padding: 0 20px;
  background: linear-gradient(135deg, var(--white), #dbe7ee);
  color: #0b0f14;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.secondary-action,
.slider-btn,
.modal-close {
  border: 1px solid rgba(247, 248, 244, 0.14);
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
}

.magnetic:hover,
.project-card:hover,
.service-card:hover,
.why-card:hover,
.price-card:hover {
  transform: translateY(-6px);
}

.hero {
  display: grid;
  min-height: 94vh;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  padding: 134px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--warning);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 4.65vw, 4.82rem);
  line-height: 1.02;
  font-weight: 900;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 1.04;
  font-weight: 850;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.16rem, 1.75vw, 1.52rem);
  line-height: 1.22;
  font-weight: 800;
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.about-copy p,
.construction-copy p,
.service-card p,
.why-card p,
.stat p,
.process-step p,
.project-overlay span,
.testimonial-card,
.price-card,
.contact-copy p,
.client-card small,
.client-note,
.site-footer p,
.site-footer a,
.site-footer span {
  color: var(--muted);
  line-height: 1.68;
}

.hero-text {
  max-width: 680px;
  color: var(--silver);
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.profile-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.profile-points span {
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(247, 248, 244, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--pale);
  font-size: 0.9rem;
  font-weight: 760;
}

.hero-actions,
.trust-strip,
.portfolio-filters,
.social-row,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.trust-strip {
  margin-top: 20px;
}

.trust-strip span {
  position: relative;
  overflow: hidden;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(247, 248, 244, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--pale);
  font-size: 0.88rem;
  font-weight: 760;
}

.trust-strip span::before {
  display: none;
}

.hero-stage,
.service-card,
.why-card,
.project-card,
.price-card,
.logo-construction {
  transform-style: preserve-3d;
}

.hero-stage {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
  contain: layout;
  isolation: isolate;
  perspective: 1200px;
  transform: translateZ(0);
}

.hero-stage::before {
  position: absolute;
  inset: 14%;
  content: "";
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(142, 216, 255, 0.11), rgba(217, 182, 109, 0.08));
  filter: blur(18px);
  opacity: 0.72;
  animation: pulseGlow 8s ease-in-out infinite;
}

.hero-photo-shell {
  position: relative;
  z-index: 4;
  width: min(570px, 86vw);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 244, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(14, 17, 22, 0.78);
  box-shadow: var(--depth-shadow);
  transform: translateZ(90px);
  will-change: transform;
  animation: floatCore 7.5s ease-in-out infinite;
}

.hero-photo-shell::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(2, 4, 7, 0.02) 35%, rgba(2, 4, 7, 0.68) 100%),
    linear-gradient(90deg, rgba(142, 216, 255, 0.08), transparent 42%);
  pointer-events: none;
}

.hero-photo-shell::after {
  position: absolute;
  inset: 14px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(247, 248, 244, 0.12);
  border-radius: var(--radius);
  pointer-events: none;
}

.photo-placeholder-grid {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(142, 216, 255, 0.2), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(217, 182, 109, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 34px),
    linear-gradient(145deg, rgba(142, 216, 255, 0.1), rgba(255, 255, 255, 0.025)),
    #10151b;
  background-size: auto, auto, 34px 34px, auto, auto;
}

.photo-placeholder-grid::before,
.photo-placeholder-grid::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(247, 248, 244, 0.12);
  border-radius: var(--radius);
}

.photo-placeholder-grid::before {
  inset: 16%;
  transform: rotate(12deg);
}

.photo-placeholder-grid::after {
  inset: 26% 18%;
  transform: rotate(-10deg);
}

.hero-photo-shell > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04);
}

.hero-photo-mark {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(247, 248, 244, 0.13);
  border-radius: var(--radius);
  background: rgba(10, 12, 16, 0.78);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.hero-photo-mark::before {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius);
  content: "ARK";
  background: rgba(255, 255, 255, 0.06);
  color: var(--sky);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-photo-mark span {
  color: var(--white);
  font-weight: 850;
  line-height: 1.2;
}

.geometry-line {
  position: absolute;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 248, 244, 0.2), transparent);
  opacity: 0.36;
  animation: lineSweep 9s ease-in-out infinite;
}

.line-one {
  top: 32%;
  transform: rotate(26deg);
}

.line-two {
  bottom: 34%;
  transform: rotate(-20deg);
  animation-delay: -2s;
}

.core-logo {
  position: relative;
  z-index: 4;
  width: min(350px, 64vw);
  aspect-ratio: 1;
  padding: 20px;
  border: 1px solid rgba(247, 248, 244, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(14, 17, 22, 0.74);
  box-shadow: var(--shadow);
  transform: translateZ(90px);
  animation: floatCore 6s ease-in-out infinite;
}

.core-logo::before,
.core-logo::after {
  position: absolute;
  inset: 16px;
  z-index: -1;
  content: "";
  border-radius: var(--radius);
  transform: translateZ(-60px) rotate(5deg);
}

.core-logo::before {
  background: rgba(142, 216, 255, 0.08);
  filter: blur(20px);
}

.core-logo::after {
  inset: 32px;
  border: 1px solid rgba(207, 239, 255, 0.24);
}

.core-logo img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  filter: saturate(1.22) contrast(1.08);
}

.holo-ring {
  position: absolute;
  border: 1px solid rgba(247, 248, 244, 0.12);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(10deg);
  opacity: 0.42;
}

.ring-one {
  width: 570px;
  height: 570px;
  animation: spin 42s linear infinite;
}

.ring-two {
  width: 430px;
  height: 430px;
  border-color: rgba(142, 216, 255, 0.14);
  animation: spinReverse 48s linear infinite;
}

.ring-three {
  width: 700px;
  height: 255px;
  border-color: rgba(217, 182, 109, 0.12);
  animation: spin 58s linear infinite;
}

.floating-ui,
.floating-tool {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(247, 248, 244, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(14, 17, 22, 0.82);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.floating-ui {
  display: grid;
  gap: 10px;
  width: 190px;
  min-height: 132px;
  padding: 14px;
  transform: translateZ(140px);
  will-change: transform;
  animation: floatPanel 9s ease-in-out infinite;
}

.floating-tool {
  display: grid;
}

.ui-chart,
.ui-brand {
  display: grid;
}

.ui-title {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.ui-bar,
.timeline-track {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--warning), var(--sky));
}

.ui-bar.short {
  width: 62%;
}

.ui-grid {
  display: block;
  height: 42px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(142, 216, 255, 0.18) 33%, transparent 33% 66%, rgba(217, 182, 109, 0.12) 66%),
    rgba(255, 255, 255, 0.06);
}

.ui-website { top: 84px; left: 8px; }
.ui-video { right: -8px; bottom: 128px; animation-delay: -1.8s; }
.ui-chart { left: 74px; bottom: 62px; animation-delay: -3s; }
.ui-brand { right: 112px; top: 28px; animation-delay: -4.2s; }

.timeline-track {
  height: 14px;
  width: 100%;
  background: linear-gradient(90deg, var(--electric) 0 34%, rgba(255, 255, 255, 0.11) 34% 39%, var(--sky) 39% 75%, var(--warning) 75%);
}

.timeline-track.alt {
  width: 74%;
  background: linear-gradient(90deg, var(--pale), var(--electric));
}

.play-node {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.chart-bars,
.swatch-row {
  display: flex;
  gap: 8px;
}

.chart-bars {
  height: 70px;
  align-items: end;
}

.chart-bars i {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--sky), var(--electric));
  animation: barGrow 4.4s ease-in-out infinite;
}

.chart-bars i:nth-child(1) { height: 38%; }
.chart-bars i:nth-child(2) { height: 74%; animation-delay: -0.4s; }
.chart-bars i:nth-child(3) { height: 54%; animation-delay: -0.8s; }
.chart-bars i:nth-child(4) { height: 92%; animation-delay: -1.2s; }

.swatch-row i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  animation: swatchPulse 4.4s ease-in-out infinite;
}

.swatch-row i:nth-child(2) { background: var(--electric); animation-delay: -0.4s; }
.swatch-row i:nth-child(3) { background: var(--steel); animation-delay: -0.8s; }
.swatch-row i:nth-child(4) { background: var(--white); animation-delay: -1.2s; }

.floating-tool {
  min-width: 78px;
  height: 68px;
  place-items: center;
  padding: 0 12px;
  color: #0b0f14;
  font-weight: 850;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26), 0 0 34px rgba(142, 216, 255, 0.08);
  transform: translateZ(150px);
}

.tool-design { top: 92px; right: 142px; background: linear-gradient(135deg, var(--pale), var(--sky)); animation: floatPanel 9s ease-in-out infinite -0.8s; }
.tool-code { right: 150px; bottom: 90px; background: linear-gradient(135deg, var(--success), var(--sky)); animation: floatPanel 9.5s ease-in-out infinite -2.2s; }
.tool-motion { left: 0; top: 300px; background: linear-gradient(135deg, var(--warning), var(--rose)); animation: floatPanel 10s ease-in-out infinite -3.4s; }

.stage-shadow {
  position: absolute;
  bottom: 38px;
  width: 70%;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(28px);
}

.about,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: 86px 0;
}

.logo-construction,
.contact-form,
.service-card,
.why-card,
.stat,
.price-card,
.process-step,
.testimonial-card,
.project-card {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--glass);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2), 0 1px 0 rgba(255, 255, 255, 0.045) inset;
  backdrop-filter: blur(16px);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms var(--ease-out),
    background 240ms ease;
}

.logo-construction:hover,
.contact-form:hover,
.service-card:hover,
.why-card:hover,
.stat:hover,
.price-card:hover,
.process-step:hover,
.testimonial-card:hover,
.project-card:hover {
  border-color: rgba(142, 216, 255, 0.24);
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.32), 0 0 42px rgba(142, 216, 255, 0.055), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.logo-construction {
  overflow: hidden;
}

.construction-stage {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(142, 216, 255, 0.08), rgba(217, 182, 109, 0.07)),
    rgba(255, 255, 255, 0.035);
}

.construction-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.construction-monogram {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(400px, 78%);
  aspect-ratio: 839 / 591;
  place-items: center;
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid rgba(247, 248, 244, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(142, 216, 255, 0.16), rgba(217, 182, 109, 0.1)),
    rgba(3, 8, 14, 0.52);
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.32));
}

.construction-monogram img,
.cta-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.measure-line {
  position: absolute;
  background: rgba(247, 248, 244, 0.24);
}

.measure-line.horizontal {
  width: 80%;
  height: 1px;
}

.measure-line.vertical {
  width: 1px;
  height: 80%;
}

.construction-copy {
  padding: 24px;
}

.construction-copy strong {
  color: var(--warning);
}

.studio-image-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.studio-swatch {
  display: block;
  width: 100%;
  height: 210px;
  background:
    linear-gradient(135deg, rgba(142, 216, 255, 0.16), rgba(217, 182, 109, 0.09)),
    #10151b;
}

.studio-image-strip img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 0 78px;
}

.stat {
  min-height: 156px;
  padding: 24px;
}

.stat span {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 850;
}

.services,
.portfolio,
.why,
.process,
.testimonials,
.pricing,
.clients {
  padding: 78px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.service-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.client-card,
.client-note {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--glass);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.client-card {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 18px;
  padding: 22px;
}

.client-mark {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(217, 182, 109, 0.28);
  border-radius: var(--radius);
  background: rgba(217, 182, 109, 0.1);
  color: var(--warning);
  font-weight: 850;
}

.client-card:nth-child(2) .client-mark {
  border-color: rgba(117, 224, 190, 0.28);
  background: rgba(117, 224, 190, 0.1);
  color: var(--success);
}

.client-note {
  background:
    linear-gradient(150deg, rgba(255, 138, 161, 0.08), rgba(142, 216, 255, 0.04)),
    var(--glass);
}

.client-meta {
  display: grid;
  gap: 4px;
}

.client-meta strong {
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.1;
}

.client-card small {
  font-size: 0.94rem;
}

.client-note {
  display: grid;
  min-height: 132px;
  align-items: center;
  padding: 22px;
}

.service-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
}

.service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 22% 24%, var(--service-glow, rgba(142, 216, 255, 0.12)), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 28px),
    #10151b;
  background-size: auto, 28px 28px, auto;
}

.service-media::before {
  position: absolute;
  inset: 18%;
  content: "";
  border: 1px solid rgba(247, 248, 244, 0.14);
  border-radius: var(--radius);
  transform: rotate(-8deg);
}

.service-media::after,
.project-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(7, 8, 11, 0.68)),
    linear-gradient(90deg, rgba(142, 216, 255, 0.08), transparent 48%);
}

.hover-media,
.project-media,
.modal-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hover-media {
  transform: scale(1.001);
  transition: transform 640ms cubic-bezier(0.22, 1, 0.36, 1), filter 640ms ease;
}

.service-card:hover .hover-media,
.project-card:hover .hover-media {
  transform: scale(1.075) translateY(-2px);
  filter: saturate(1.12) contrast(1.06);
}

.service-body {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  min-height: 220px;
  padding: 22px;
}

.service-card::before,
.project-card::before,
.price-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.14) 48%, transparent 64% 100%),
    radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 0%), rgba(142, 216, 255, 0.14), transparent 34%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 240ms ease, transform 720ms var(--ease-out);
}

.service-card:hover::before,
.project-card:hover::before,
.price-card:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

.service-card::after {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 0;
  height: 90px;
  content: "";
  pointer-events: none;
  background: radial-gradient(ellipse at center, var(--service-glow, rgba(142, 216, 255, 0.12)), transparent 70%);
  filter: blur(18px);
  opacity: 0.62;
}

.service-design,
.service-brand,
.service-social,
.service-print { --service-color: var(--warning); --service-glow: rgba(217, 182, 109, 0.13); }
.service-video { --service-color: var(--pale); --service-glow: rgba(207, 239, 255, 0.1); }
.service-web { --service-color: var(--sky); --service-glow: rgba(142, 216, 255, 0.12); }
.service-data { --service-color: var(--success); --service-glow: rgba(117, 224, 190, 0.1); }
.service-admin { --service-color: var(--electric); --service-glow: rgba(47, 143, 216, 0.12); }

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(247, 248, 244, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--service-color, var(--sky));
  font-weight: 850;
  box-shadow: none;
}

.service-card a {
  position: relative;
  z-index: 3;
  color: var(--white);
  font-weight: 820;
}

.service-card a::after {
  content: "  ->";
  color: var(--warning);
}

.portfolio-filters {
  margin-bottom: 20px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter-btn.active,
.filter-btn:hover {
  border-color: rgba(217, 182, 109, 0.44);
  background: rgba(217, 182, 109, 0.1);
  color: var(--white);
}

.project-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  cursor: pointer;
}

.project-card.is-hidden {
  display: none;
}

.project-visual {
  position: absolute;
  inset: 0;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(142, 216, 255, 0.16), rgba(217, 182, 109, 0.1)),
    #081320;
  background-position: center;
  background-size: cover;
  transition: transform 640ms cubic-bezier(0.22, 1, 0.36, 1), filter 640ms ease;
}

.project-card:hover .project-visual {
  transform: translateY(-4px) scale(1.015);
  filter: saturate(1.05);
}

.project-visual::before {
  display: none;
}

.project-overlay {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 3;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  background: rgba(10, 12, 16, 0.8);
  backdrop-filter: blur(14px);
}

.project-overlay p {
  margin-bottom: 8px;
  color: var(--warning);
  font-weight: 820;
}

.project-overlay a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--white);
  font-weight: 820;
}

.ark-brand { background: linear-gradient(135deg, rgba(142, 216, 255, 0.16), rgba(255, 255, 255, 0.045)), #111720; }
.studio-brand { background: linear-gradient(135deg, rgba(142, 216, 255, 0.16), rgba(217, 182, 109, 0.1)), #111720; }
.studio-wall { background: linear-gradient(135deg, rgba(217, 182, 109, 0.12), rgba(142, 216, 255, 0.13)), #11151b; }
.studio-portrait { background: linear-gradient(135deg, rgba(117, 224, 190, 0.11), rgba(142, 216, 255, 0.1)), #0d1512; }
.cap-mockup { background: linear-gradient(135deg, rgba(142, 216, 255, 0.14), rgba(217, 182, 109, 0.08)), #11151b; }
.tshirt-mockup { background: linear-gradient(135deg, rgba(142, 216, 255, 0.12), rgba(255, 255, 255, 0.06)), #11151b; }
.premium-logo { background: linear-gradient(135deg, rgba(247, 248, 244, 0.14), rgba(142, 216, 255, 0.1)), #10151b; }
.restaurant-brand { background: linear-gradient(135deg, rgba(217, 182, 109, 0.12), rgba(111, 124, 139, 0.16)), #11151b; }
.company-profile { background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(142, 216, 255, 0.12)), #111720; }
.business-card { background: linear-gradient(135deg, rgba(142, 216, 255, 0.11), rgba(0, 0, 0, 0.16)), #0d1015; }
.packaging-design { background: linear-gradient(135deg, rgba(217, 182, 109, 0.12), rgba(142, 216, 255, 0.09)), #141820; }
.social-campaign { background: linear-gradient(135deg, rgba(142, 216, 255, 0.15), rgba(255, 255, 255, 0.06)), #0d1217; }
.video-project { background: linear-gradient(135deg, rgba(142, 216, 255, 0.13), rgba(111, 124, 139, 0.14)), #101319; }
.ecommerce-site { background: linear-gradient(135deg, rgba(117, 224, 190, 0.1), rgba(142, 216, 255, 0.13)), #0d1413; }
.analytics-board { background: linear-gradient(135deg, rgba(117, 224, 190, 0.14), rgba(142, 216, 255, 0.08)), #0d1512; }
.excel-dashboard { background: linear-gradient(135deg, rgba(117, 224, 190, 0.12), rgba(255, 255, 255, 0.06)), #0e1512; }
.logo-process { background: linear-gradient(135deg, rgba(142, 216, 255, 0.12), rgba(247, 248, 244, 0.08)), #101720; }
.brochure-design { background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(142, 216, 255, 0.11)), #10151c; }
.print-materials { background: linear-gradient(135deg, rgba(217, 182, 109, 0.11), rgba(247, 248, 244, 0.07)), #141820; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.why-card {
  min-height: 210px;
  padding: 24px;
}

.why-card span,
.process-step span,
.popular {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 12px;
  border: 1px solid rgba(217, 182, 109, 0.28);
  border-radius: var(--radius);
  color: var(--warning);
  font-weight: 850;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-timeline::before {
  position: absolute;
  top: 48px;
  left: 8%;
  right: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(217, 182, 109, 0.72), rgba(142, 216, 255, 0.52), transparent);
  animation: lineSweep 8s ease-in-out infinite;
}

.process-step {
  position: relative;
  min-height: 250px;
  padding: 24px;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
}

.testimonial-window {
  overflow: hidden;
  border-radius: var(--radius);
  touch-action: pan-y;
}

.testimonial-track {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-card {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  padding: 28px;
  backface-visibility: hidden;
}

.quote-mark {
  position: absolute;
  top: 22px;
  right: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 182, 109, 0.1);
  color: var(--warning);
  font-weight: 850;
}

.client-avatar {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--white), #dbe7ee);
  color: #0b0f14;
  font-weight: 850;
}

.stars {
  color: var(--warning);
  font-weight: 900;
}

blockquote {
  color: var(--silver);
  line-height: 1.74;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  transition: width 220ms ease, background 220ms ease, transform 220ms ease;
}

.slider-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: var(--warning);
  transform: translateY(-1px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  position: relative;
  min-height: 440px;
  padding: 24px;
}

.price-card > * {
  position: relative;
  z-index: 2;
}

.price-card.featured {
  border-color: rgba(217, 182, 109, 0.4);
  background:
    linear-gradient(150deg, rgba(217, 182, 109, 0.11), rgba(255, 255, 255, 0.045)),
    var(--glass-strong);
  transform: translateY(-8px);
}

.price-card strong {
  display: block;
  margin-top: 10px;
  color: var(--warning);
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
  color: var(--silver);
}

.price-card li::before {
  content: "+ ";
  color: var(--warning);
  font-weight: 850;
}

.cta-banner {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(247, 248, 244, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(217, 182, 109, 0.1), rgba(142, 216, 255, 0.08)),
    rgba(255, 255, 255, 0.045);
  text-align: center;
  box-shadow: var(--depth-shadow);
  transform-style: preserve-3d;
}

.cta-banner::before {
  position: absolute;
  inset: -30%;
  content: "";
  background-image:
    linear-gradient(135deg, rgba(247, 248, 244, 0.05) 0 1px, transparent 1px 90px),
    linear-gradient(45deg, transparent 0 46%, rgba(142, 216, 255, 0.04) 46% 54%, transparent 54%);
  background-size: 90px 90px, 180px 180px;
  opacity: 0.42;
  transform: rotate(-12deg);
  animation: patternMove 16s linear infinite;
}

.cta-logo {
  position: relative;
  z-index: 1;
  display: grid;
  width: 118px;
  height: 86px;
  place-items: center;
  padding: 10px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(247, 248, 244, 0.15);
  background:
    linear-gradient(135deg, rgba(142, 216, 255, 0.16), rgba(217, 182, 109, 0.1)),
    rgba(14, 17, 22, 0.72);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  animation: logoLift 5.6s ease-in-out infinite;
}

.cta-banner h2,
.cta-banner p,
.cta-banner a {
  position: relative;
  z-index: 1;
}

.contact {
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 118px;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-details a,
.social-row a,
.footer-socials a {
  color: var(--silver);
  font-weight: 760;
}

.whatsapp-large {
  gap: 10px;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-weight: 760;
}

.bot-field,
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  outline: none;
  padding: 12px;
  cursor: text;
}

.contact-form select {
  cursor: pointer;
}

.contact-form option {
  background: var(--charcoal);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(217, 182, 109, 0.64);
  box-shadow: 0 0 0 4px rgba(217, 182, 109, 0.1);
}

.full-field,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--success);
  font-weight: 760;
}

.form-status.error {
  color: var(--danger);
}

.contact-form button:disabled {
  opacity: 0.72;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(247, 248, 244, 0.16);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--white), #dbe7ee);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  color: #0b0f14;
  font-weight: 850;
}

.whatsapp-float .whatsapp-icon {
  width: 30px;
  height: 30px;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.project-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  width: min(760px, 100%);
  padding: 18px;
  border: 1px solid rgba(247, 248, 244, 0.14);
  border-radius: var(--radius);
  background: var(--glass-strong);
  box-shadow: var(--shadow);
}

.modal-close {
  margin-left: auto;
}

.modal-visual {
  min-height: 320px;
  margin: 14px 0 18px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(142, 216, 255, 0.14), rgba(217, 182, 109, 0.08)), #111720;
}

.modal-visual .modal-media {
  min-height: 320px;
}

.site-footer {
  display: grid;
  width: var(--section);
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
  margin: 34px auto 0;
  padding: 54px 0 32px;
  border-top: 1px solid rgba(247, 248, 244, 0.1);
}

.site-footer h3 {
  font-size: 1rem;
}

.site-footer div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand {
  justify-content: start;
}

.copyright {
  grid-column: 1 / -1;
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.auth-body,
.auth-body button,
.auth-body input,
.dashboard-body,
.dashboard-body button,
.dashboard-body input {
  cursor: auto;
}

.auth-shell,
.dashboard-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.auth-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 42px 0;
}

.auth-card,
.dashboard-header,
.dashboard-hero,
.dashboard-stats article,
.request-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    var(--glass);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
}

.auth-card {
  width: min(520px, 100%);
  padding: 30px;
}

.auth-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: var(--white);
  font-weight: 850;
}

.auth-logo .brand-mark {
  width: 62px;
  height: 48px;
}

.auth-card h1,
.dashboard-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-form label {
  display: grid;
  gap: 8px;
  color: var(--silver);
  font-weight: 760;
}

.auth-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  outline: none;
  padding: 12px;
}

.auth-form input:focus {
  border-color: rgba(217, 182, 109, 0.64);
  box-shadow: 0 0 0 4px rgba(217, 182, 109, 0.1);
}

.auth-form button {
  width: 100%;
}

.auth-links,
.dashboard-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.auth-links {
  margin-top: 20px;
}

.auth-links a,
.dashboard-actions a {
  color: var(--sky);
  font-weight: 900;
}

.auth-alert {
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--success);
  font-weight: 850;
}

.auth-alert.error {
  color: var(--danger);
}

.dashboard-shell {
  padding: 28px 0 70px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
}

.dashboard-header .auth-logo {
  margin-bottom: 0;
}

.dashboard-hero {
  margin-top: 28px;
  padding: 34px;
}

.dashboard-hero p {
  color: var(--silver);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 44px;
}

.dashboard-stats article {
  min-height: 132px;
  padding: 22px;
}

.dashboard-stats strong {
  display: block;
  margin-bottom: 10px;
  color: var(--sky);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  text-transform: capitalize;
}

.dashboard-stats span,
.request-card dd,
.request-card p,
.request-topline time {
  color: var(--muted);
}

.compact-heading {
  grid-template-columns: 1fr;
}

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

.request-card {
  padding: 22px;
}

.request-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.request-topline span {
  color: var(--warning);
  font-weight: 850;
}

.request-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.request-card dl div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
}

.request-card dt {
  color: var(--silver);
  font-weight: 850;
}

.request-card dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.mail-status {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.mail-status.sent {
  color: var(--success);
}

.mail-status.not-sent {
  color: var(--warning);
}

.empty-state {
  min-height: 180px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 760ms ease,
    transform 760ms var(--ease-out),
    filter 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

@keyframes loaderPulse {
  0%,
  100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.02); }
}

@keyframes gridDrift {
  to { background-position: 96px 96px; }
}

@keyframes auraShift {
  0% { background-position: center, 0% 50%; opacity: 0.58; }
  100% { background-position: center, 100% 50%; opacity: 0.86; }
}

@keyframes floatCore {
  0%,
  100% { transform: translateZ(92px) translate3d(0, 0, 0) rotateX(2deg) rotateY(-3deg); }
  50% { transform: translateZ(104px) translate3d(0, -12px, 0) rotateX(3.5deg) rotateY(3.5deg); }
}

@keyframes floatPanel {
  0%,
  100% { transform: translateZ(150px) translateY(0) rotateZ(-1deg); }
  50% { transform: translateZ(170px) translateY(-10px) rotateZ(1deg); }
}

@keyframes logoLift {
  0%,
  100% { transform: translateY(0) rotateX(0) rotateY(0); }
  50% { transform: translateY(-8px) rotateX(5deg) rotateY(-6deg); }
}

@keyframes pulseGlow {
  0%,
  100% { opacity: 0.62; transform: scale(0.98); }
  50% { opacity: 0.84; transform: scale(1.02); }
}

@keyframes spin {
  to { transform: rotateX(68deg) rotateZ(370deg); }
}

@keyframes spinReverse {
  to { transform: rotateX(68deg) rotateZ(-350deg); }
}

@keyframes shine {
  0%,
  45% { transform: translateX(-120%); }
  75%,
  100% { transform: translateX(120%); }
}

@keyframes lineSweep {
  0%,
  100% { opacity: 0.28; filter: blur(0); }
  50% { opacity: 0.58; filter: blur(0.5px); }
}

@keyframes swatchPulse {
  0%,
  100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.03); }
}

@keyframes barGrow {
  0%,
  100% { transform: scaleY(0.86); transform-origin: bottom; }
  50% { transform: scaleY(1); transform-origin: bottom; }
}

@keyframes patternMove {
  to { transform: rotate(-12deg) translate3d(180px, 90px, 0); }
}

@media (max-width: 1080px) {
  .hero,
  .about,
  .section-heading,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 28px;
    padding: 128px 0 68px;
  }

  .hero-stage {
    min-height: clamp(480px, 62vw, 560px);
  }

  .floating-tool {
    display: none;
  }

  .stats,
  .service-grid,
  .portfolio-grid,
  .process-timeline,
  .client-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 860px) {
  body,
  button,
  input,
  select,
  textarea {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: block;
    order: 3;
    justify-self: end;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    display: flex;
    width: 100%;
    max-height: 0;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    background: rgba(3, 8, 14, 0.96);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      max-height 280ms ease,
      padding 280ms ease,
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease,
      border-color 220ms ease;
  }

  .primary-nav a {
    padding: 10px 2px;
  }

  .menu-open .primary-nav {
    max-height: 70vh;
    padding: 16px;
    border-color: rgba(247, 248, 244, 0.14);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-action {
    justify-self: start;
  }

  .why-grid,
  .pricing-grid,
  .dashboard-stats,
  .request-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .testimonial-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .testimonial-window {
    grid-column: 1 / -1;
    order: 1;
  }

  .slider-btn {
    order: 2;
    width: 100%;
  }

  .dashboard-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --section: min(1180px, calc(100% - 24px));
  }

  .site-header {
    top: 12px;
    gap: 10px;
  }

  .brand span {
    max-width: 138px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .nav-action {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  h1 {
    font-size: clamp(2.3rem, 10.8vw, 3.7rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(1.85rem, 8.5vw, 3rem);
    line-height: 1.08;
  }

  .hero-actions > a {
    flex: 1 1 100%;
  }

  .hero-stage {
    min-height: 390px;
  }

  .core-logo {
    width: min(250px, 78vw);
  }

  .hero-photo-shell {
    width: min(360px, 90vw);
  }

  .hero-photo-mark {
    right: 14px;
    bottom: 14px;
    left: 14px;
    min-height: 58px;
  }

  .hero-photo-mark::before {
    width: 40px;
    height: 40px;
  }

  .ring-one { width: 350px; height: 350px; }
  .ring-two { width: 270px; height: 270px; }
  .ring-three { width: 390px; height: 160px; }

  .floating-ui {
    width: 145px;
    min-height: 112px;
    padding: 12px;
  }

  .ui-website { top: 34px; left: 0; }
  .ui-video { right: 0; bottom: 72px; }
  .stats,
  .service-grid,
  .portfolio-grid,
  .process-timeline,
  .contact-form,
  .client-strip {
    grid-template-columns: 1fr;
  }

  .portfolio-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .trust-strip span {
    flex: 1 1 calc(50% - 12px);
    text-align: center;
  }

  .service-card {
    min-height: auto;
  }

  .project-card,
  .project-visual {
    min-height: 320px;
  }

  .testimonial-card {
    padding: 22px;
  }

  .contact-form {
    padding: 18px;
  }

  .services,
  .portfolio,
  .why,
  .process,
  .testimonials,
  .pricing,
  .clients,
  .about,
  .contact {
    padding: 58px 0;
  }

  .process-timeline::before {
    display: none;
  }

  .contact-form .full-field,
  .contact-form button,
  .form-status {
    grid-column: auto;
  }

  .studio-image-strip {
    grid-template-columns: 1fr;
  }

  .studio-swatch,
  .studio-image-strip img {
    height: 240px;
  }

  .cta-banner {
    padding: 28px 18px;
  }

  .auth-card,
  .dashboard-hero,
  .request-card {
    padding: 22px;
  }

  .request-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .request-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 520px) {
  :root {
    --section: min(390px, calc(100% - 24px));
  }

  .site-header {
    left: 12px;
    right: 12px;
    width: auto;
    grid-template-columns: auto auto auto;
    align-items: center;
    justify-content: space-between;
    transform: none;
  }

  .brand {
    grid-column: 1;
  }

  .nav-action {
    grid-column: 2;
    justify-self: center;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .primary-nav {
    grid-column: 1 / -1;
  }

  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.08;
  }

  .hero-text {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .trust-strip span {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 460px) {
  html {
    scroll-padding-top: 98px;
  }

  .site-header {
    left: 12px;
    right: 12px;
    width: auto;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    min-height: 64px;
    gap: 8px;
    padding: 10px;
    transform: none;
  }

  .brand span {
    display: none;
  }

  .brand-mark {
    width: 50px;
    height: 40px;
    padding: 4px;
  }

  .nav-action {
    justify-self: end;
    min-height: 40px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(1.95rem, 9.6vw, 2.65rem);
    line-height: 1.08;
  }

  .hero-stage {
    min-height: 348px;
  }

  .hero-photo-shell {
    width: min(334px, 90vw);
  }

  .hero-photo-mark {
    min-height: 52px;
    padding: 8px 10px;
  }

  .floating-ui {
    width: 128px;
    min-height: 96px;
    gap: 8px;
    padding: 10px;
  }

  .ui-website {
    top: 22px;
  }

  .ui-video {
    bottom: 48px;
  }

  .ring-one { width: 300px; height: 300px; }
  .ring-two { width: 232px; height: 232px; }
  .ring-three { width: 330px; height: 132px; }

  .stat,
  .why-card,
  .process-step,
  .price-card {
    min-height: auto;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

@media (pointer: coarse) {
  body,
  button,
  input,
  select,
  textarea {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .magnetic:hover,
  .project-card:hover,
  .service-card:hover,
  .why-card:hover,
  .price-card:hover {
    transform: none;
  }

  .project-card:hover .project-visual {
    transform: none;
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
