/* Aivexo Agents — Glass Agency Landing */

:root {
  --bg-deep: #0a0c10;
  --bg-mid: #10141c;
  --glass: rgba(255, 255, 255, 0.045);
  --glass-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(125, 200, 255, 0.18);
  --border-bright: rgba(61, 180, 255, 0.45);
  --text: #eef3f8;
  --muted: #94a3b8;
  --blue: #3db4ff;
  --blue-deep: #0077e6;
  --cyan: #00e5c8;
  --violet: #7b5cff;
  --silver: #c8d4e0;
  --glow: 0 0 40px rgba(61, 180, 255, 0.35);
  --radius: 20px;
  --font-display: "Orbitron", sans-serif;
  --font-head: "Syne", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

/* —— Atmosphere —— */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(61, 180, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 180, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 75%);
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.bg-glow--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, rgba(61, 180, 255, 0.35), transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
}

.bg-glow--2 {
  width: 420px;
  height: 420px;
  top: 40%;
  right: -100px;
  background: radial-gradient(circle, rgba(123, 92, 255, 0.28), transparent 70%);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}

.bg-glow--3 {
  width: 380px;
  height: 380px;
  bottom: 5%;
  left: 30%;
  background: radial-gradient(circle, rgba(0, 229, 200, 0.18), transparent 70%);
  animation: drift 20s ease-in-out infinite alternate;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.08); }
}

main,
.nav,
.footer {
  position: relative;
  z-index: 1;
}

/* —— Glass —— */
.glass-panel {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(61, 180, 255, 0.04) 100%
  );
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(61, 180, 255, 0.06);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.glass-panel:hover {
  border-color: var(--border-bright);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(61, 180, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn--full {
  width: 100%;
}

.btn--primary {
  color: #041018;
  background: linear-gradient(135deg, #6ad0ff 0%, var(--blue) 40%, var(--blue-deep) 100%);
  box-shadow: 0 4px 24px rgba(61, 180, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(61, 180, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn--ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}

.btn--ghost:hover {
  border-color: var(--border-bright);
  background: rgba(61, 180, 255, 0.08);
}

/* —— Nav —— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  z-index: 100;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-bottom-color: var(--border);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 101;
}

.nav__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(145deg, rgba(61, 180, 255, 0.35), rgba(123, 92, 255, 0.2));
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  box-shadow: var(--glow);
}

.nav__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  background: linear-gradient(180deg, #fff 0%, var(--silver) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__name span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--blue);
  -webkit-text-fill-color: var(--blue);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav__links a:not(.btn):hover {
  color: var(--text);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 101;
  padding: 6px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav.is-open .nav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* —— Hero —— */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem, 4vw, 3.5rem) 3rem;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.hero__brand {
  margin-bottom: 1.25rem;
}

.hero__word {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.06em;
  background: linear-gradient(
    165deg,
    #ffffff 0%,
    #d4dde8 35%,
    #8ec8ff 55%,
    #c8d4e0 75%,
    #ffffff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px rgba(61, 180, 255, 0.35));
  position: relative;
}

.hero__x {
  background: linear-gradient(160deg, #6ad0ff 0%, var(--blue) 35%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(61, 180, 255, 0.7));
  animation: xPulse 3s ease-in-out infinite;
}

@keyframes xPulse {
  0%, 100% { filter: drop-shadow(0 0 14px rgba(61, 180, 255, 0.5)); }
  50% { filter: drop-shadow(0 0 28px rgba(123, 92, 255, 0.85)); }
}

.hero__sub {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: 0.45em;
  color: var(--silver);
}

.hero__sub::before,
.hero__sub::after {
  content: "";
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  box-shadow: 0 0 8px var(--blue);
}

.hero__lead {
  max-width: 34rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(72vw, 560px);
}

.hero__orb {
  position: absolute;
  width: min(92%, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 180, 255, 0.28) 0%, rgba(123, 92, 255, 0.12) 40%, transparent 68%);
  filter: blur(36px);
  animation: orbPulse 6s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.12); opacity: 1; }
}

.hero__rings {
  position: absolute;
  width: min(88%, 480px);
  aspect-ratio: 1;
  pointer-events: none;
}

.hero__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(61, 180, 255, 0.25);
  box-shadow: 0 0 20px rgba(61, 180, 255, 0.12), inset 0 0 20px rgba(61, 180, 255, 0.06);
}

.hero__ring--1 {
  animation: spinRing 18s linear infinite;
  border-style: dashed;
}

.hero__ring--2 {
  inset: 8%;
  border-color: rgba(123, 92, 255, 0.3);
  animation: spinRing 28s linear infinite reverse;
}

.hero__ring--3 {
  inset: 16%;
  border-color: rgba(0, 229, 200, 0.22);
  animation: spinRing 22s linear infinite;
}

.hero__ring::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 16px var(--blue);
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__ring--2::before {
  background: var(--violet);
  box-shadow: 0 0 16px var(--violet);
  top: auto;
  bottom: 12%;
  left: 8%;
}

.hero__ring--3::before {
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  top: 40%;
  left: auto;
  right: 0;
}

@keyframes spinRing {
  to { transform: rotate(360deg); }
}

.hero__neural {
  position: absolute;
  width: min(100%, 520px);
  height: auto;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}

.hero__stage {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: rgba(8, 10, 14, 0.65);
  backdrop-filter: blur(16px);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.55),
    0 0 50px rgba(61, 180, 255, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: floatLogo 7s ease-in-out infinite;
}

.hero__ai,
.hero__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease;
}

.hero__ai {
  opacity: 1;
  animation: aiCrossfade 10s ease-in-out infinite;
}

.hero__logo {
  opacity: 0;
  animation: logoCrossfade 10s ease-in-out infinite;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

@keyframes aiCrossfade {
  0%, 38% { opacity: 1; }
  48%, 88% { opacity: 0; }
  98%, 100% { opacity: 1; }
}

@keyframes logoCrossfade {
  0%, 38% { opacity: 0; }
  48%, 88% { opacity: 1; }
  98%, 100% { opacity: 0; }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero__float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(61, 180, 255, 0.12);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--silver);
  white-space: nowrap;
}

.hero__float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.hero__float--design {
  top: 6%;
  right: 0;
  animation: floatChip 5.5s ease-in-out infinite;
}

.hero__float--code {
  bottom: 20%;
  left: -2%;
  animation: floatChip 6.5s ease-in-out infinite reverse;
}

.hero__float--wave {
  bottom: 6%;
  right: 4%;
  animation: floatChip 4.8s ease-in-out infinite 0.4s;
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}

.hero__bars i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  box-shadow: 0 0 8px rgba(61, 180, 255, 0.6);
  animation: barPulse 1.1s ease-in-out infinite;
}

.hero__bars i:nth-child(1) { height: 30%; animation-delay: 0s; }
.hero__bars i:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.hero__bars i:nth-child(3) { height: 80%; animation-delay: 0.2s; }
.hero__bars i:nth-child(4) { height: 100%; animation-delay: 0.15s; }
.hero__bars i:nth-child(5) { height: 65%; animation-delay: 0.25s; }
.hero__bars i:nth-child(6) { height: 40%; animation-delay: 0.05s; }
.hero__bars i:nth-child(7) { height: 70%; animation-delay: 0.3s; }

@keyframes barPulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.7; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Coding window */
.hero__code {
  position: absolute;
  bottom: 8%;
  left: -4%;
  z-index: 4;
  width: min(52%, 200px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: rgba(8, 12, 18, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 24px rgba(61, 180, 255, 0.15);
  animation: floatChip 6s ease-in-out infinite;
  font-family: "Space Grotesk", monospace;
}

.hero__code-top {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.45rem 0.6rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.hero__code-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5f57;
}

.hero__code-top span:nth-child(2) { background: #febc2e; }
.hero__code-top span:nth-child(3) { background: #28c840; }

.hero__code-top em {
  margin-left: 0.35rem;
  font-style: normal;
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.hero__code-body {
  margin: 0;
  padding: 0.65rem 0.7rem 0.8rem;
  font-size: 0.62rem;
  line-height: 1.55;
  overflow: hidden;
  white-space: pre;
}

.hero__code-body code {
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  animation: typeCode 6s steps(48) infinite;
  border-right: none;
}

.c-k { color: #7dd3fc; }
.c-p { color: #94a3b8; }
.c-prop { color: #c4b5fd; }
.c-v { color: #67e8f9; }
.c-n { color: #fcd34d; }
.c-cursor {
  color: var(--blue);
  animation: blinkCursor 0.8s step-end infinite;
}

@keyframes typeCode {
  0%, 8% { max-width: 0; }
  45%, 75% { max-width: 180px; }
  95%, 100% { max-width: 0; }
}

@keyframes blinkCursor {
  50% { opacity: 0; }
}

/* Figma board */
.hero__figma {
  position: absolute;
  top: 8%;
  left: -2%;
  right: auto;
  z-index: 4;
  width: min(42%, 150px);
  border-radius: 12px;
  border: 1px solid rgba(162, 89, 255, 0.45);
  background: rgba(10, 12, 18, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 28px rgba(162, 89, 255, 0.2);
  overflow: hidden;
  animation: floatChip 5.2s ease-in-out infinite reverse;
}

.hero__figma-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.6rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.62rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--silver);
}

.hero__figma-artboard {
  display: flex;
  gap: 0.5rem;
  padding: 0.65rem;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 12px 12px;
}

.hero__figma-frame {
  flex: 1;
  height: 88px;
  border-radius: 8px;
  border: 1.5px solid #1abcfe;
  box-shadow: 0 0 0 1px rgba(26, 188, 254, 0.25);
  padding: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  animation: figmaSelect 3s ease-in-out infinite;
  position: relative;
}

.hero__figma-frame::before,
.hero__figma-frame::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #1abcfe;
  border-radius: 1px;
}

.hero__figma-frame::before { top: -3px; left: -3px; }
.hero__figma-frame::after { bottom: -3px; right: -3px; box-shadow: -78px 0 0 #1abcfe, 0 -78px 0 #1abcfe; }

.hero__figma-frame i {
  display: block;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
}

.hero__figma-frame i:nth-child(1) {
  height: 10px;
  width: 70%;
  background: linear-gradient(90deg, #a259ff, #1abcfe);
  animation: lineGrow 3.5s ease-in-out infinite;
}

.hero__figma-frame i:nth-child(2) {
  height: 6px;
  width: 90%;
}

.hero__figma-frame i:nth-child(3) {
  height: 28px;
  width: 100%;
  margin-top: auto;
  background: rgba(61, 180, 255, 0.15);
  border: 1px dashed rgba(61, 180, 255, 0.4);
}

.hero__figma-tools {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero__figma-tools b {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  animation: toolPulse 2.4s ease-in-out infinite;
}

.hero__figma-tools b:nth-child(1) { background: rgba(242, 78, 30, 0.35); border-color: #f24e1e; }
.hero__figma-tools b:nth-child(2) { background: rgba(162, 89, 255, 0.35); border-color: #a259ff; animation-delay: 0.2s; }
.hero__figma-tools b:nth-child(3) { background: rgba(26, 188, 254, 0.35); border-color: #1abcfe; animation-delay: 0.4s; }
.hero__figma-tools b:nth-child(4) { background: rgba(10, 207, 131, 0.35); border-color: #0acf83; animation-delay: 0.6s; }

@keyframes figmaSelect {
  0%, 100% { border-color: #1abcfe; transform: scale(1); }
  50% { border-color: #a259ff; transform: scale(1.02); }
}

@keyframes toolPulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* Service banners — UGC / Voice / Ads */
.hero__banners {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: min(58%, 210px);
}

.hero__banner {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(8, 12, 18, 0.85));
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  animation: bannerSlide 5.5s ease-in-out infinite;
}

.hero__banner--ugc {
  border-color: rgba(167, 139, 250, 0.45);
  animation-delay: 0s;
}

.hero__banner--voice {
  border-color: rgba(61, 180, 255, 0.5);
  animation-delay: 0.35s;
}

.hero__banner--ads {
  border-color: rgba(0, 229, 200, 0.4);
  animation-delay: 0.7s;
}

@keyframes bannerSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-8px); }
}

.hero__banner-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(61, 180, 255, 0.1);
}

.hero__banner-icon svg {
  width: 28px;
  height: 28px;
}

.hero__banner--ugc .hero__banner-icon {
  background: rgba(167, 139, 250, 0.15);
}

.hero__banner--ads .hero__banner-icon {
  background: rgba(0, 229, 200, 0.12);
}

.hero__banner-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.hero__banner-copy strong {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.hero__banner-copy span {
  font-size: 0.58rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__banner-play {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #3db4ff);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(167, 139, 250, 0.5);
  animation: ctaPulse 2s ease-in-out infinite;
}

.hero__banner-play i {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent #041018;
  margin-left: 2px;
}

.hero__banner-wave {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
  flex-shrink: 0;
}

.hero__banner-wave i {
  width: 2.5px;
  border-radius: 2px;
  background: linear-gradient(180deg, #00e5c8, #3db4ff);
  animation: barPulse 1s ease-in-out infinite;
}

.hero__banner-wave i:nth-child(1) { height: 35%; }
.hero__banner-wave i:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.hero__banner-wave i:nth-child(3) { height: 100%; animation-delay: 0.2s; }
.hero__banner-wave i:nth-child(4) { height: 55%; animation-delay: 0.15s; }
.hero__banner-wave i:nth-child(5) { height: 80%; animation-delay: 0.25s; }

.hero__banner-metric {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 229, 200, 0.5);
  animation: metricGlow 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes metricGlow {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* —— Sections —— */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 0 1.25rem;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
}

.services,
.process,
.work,
.cta-band,
.contact,
.about,
.industries,
.features,
.portfolio,
.pricing,
.testimonials,
.tech,
.faq {
  padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3.5rem);
}

/* —— Marquee —— */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(61, 180, 255, 0.04);
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver);
  animation: marquee 32s linear infinite;
}

.marquee__track span:nth-child(even) {
  color: var(--blue);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* —— About —— */
.about__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.about__copy .section-title,
.about__copy .section-eyebrow,
.about__copy .section-desc {
  text-align: left;
}

.about__copy .section-desc {
  margin-bottom: 1.5rem;
}

.about__points {
  display: grid;
  gap: 0.85rem;
}

.about__point {
  padding: 1.1rem 1.25rem;
}

.about__point strong {
  display: block;
  font-family: var(--font-head);
  margin-bottom: 0.25rem;
}

.about__point p {
  color: var(--muted);
  font-size: 0.95rem;
}

.about__studio {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
}

.studio__glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 180, 255, 0.28), transparent 70%);
  filter: blur(30px);
  animation: orbPulse 5s ease-in-out infinite;
}

.studio__browser {
  position: relative;
  z-index: 2;
  width: min(100%, 360px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-bright);
  background: linear-gradient(160deg, rgba(20, 28, 40, 0.92), rgba(8, 10, 16, 0.95));
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(61, 180, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: rotateY(-8deg) rotateX(4deg);
  animation: studioFloat 7s ease-in-out infinite;
}

@keyframes studioFloat {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-12px); }
}

.studio__chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.studio__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5f57;
}

.studio__dot:nth-child(2) { background: #febc2e; }
.studio__dot:nth-child(3) { background: #28c840; }

.studio__url {
  margin-left: 0.5rem;
  flex: 1;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  overflow: hidden;
  white-space: nowrap;
}

.studio__canvas {
  position: relative;
  padding: 1rem;
  min-height: 280px;
  background-image:
    linear-gradient(rgba(61, 180, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 180, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.studio__nav-bar {
  height: 10px;
  width: 70%;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(61, 180, 255, 0.45), rgba(123, 92, 255, 0.25));
  margin-bottom: 1rem;
  animation: buildIn 3.5s ease-in-out infinite;
}

.studio__hero-block {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(61, 180, 255, 0.25);
  background: rgba(61, 180, 255, 0.06);
  animation: pulseBorder 3s ease-in-out infinite;
}

.studio__line {
  height: 8px;
  border-radius: 4px;
  background: rgba(200, 212, 224, 0.35);
}

.studio__line--lg {
  width: 78%;
  height: 12px;
  background: linear-gradient(90deg, #fff, rgba(61, 180, 255, 0.7));
  animation: lineGrow 4s ease-in-out infinite;
}

.studio__line--md {
  width: 55%;
  animation: lineGrow 4s ease-in-out infinite 0.2s;
}

.studio__cta-block {
  width: 88px;
  height: 22px;
  margin-top: 0.35rem;
  border-radius: 6px;
  background: linear-gradient(135deg, #6ad0ff, #0077e6);
  box-shadow: 0 0 16px rgba(61, 180, 255, 0.5);
  animation: ctaPulse 2.2s ease-in-out infinite;
}

.studio__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.studio__tile {
  height: 64px;
  border-radius: 8px;
  border: 1px solid rgba(61, 180, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  animation: tileRise 3.8s ease-in-out infinite;
}

.studio__tile:nth-child(2) {
  animation-delay: 0.25s;
  border-color: rgba(123, 92, 255, 0.35);
  background: rgba(123, 92, 255, 0.08);
}

.studio__tile:nth-child(3) {
  animation-delay: 0.5s;
  border-color: rgba(0, 229, 200, 0.3);
  background: rgba(0, 229, 200, 0.07);
}

.studio__cursor {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 0 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(61, 180, 255, 0.8);
  transform: rotate(45deg);
  animation: cursorMove 5.5s ease-in-out infinite;
  z-index: 5;
}

.studio__layers {
  position: absolute;
  top: 8%;
  right: -4%;
  z-index: 4;
  width: 120px;
  padding: 0.75rem;
  border-radius: 12px;
  background: rgba(12, 16, 24, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  animation: floatChip 6s ease-in-out infinite;
}

.studio__layers p {
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.studio__layers span {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  padding: 0.3rem 0.4rem;
  border-radius: 5px;
  margin-bottom: 0.2rem;
}

.studio__layers span.is-active {
  color: var(--text);
  background: rgba(61, 180, 255, 0.15);
  border: 1px solid rgba(61, 180, 255, 0.3);
  animation: layerBlink 2.8s ease-in-out infinite;
}

.studio__swatches {
  position: absolute;
  bottom: 14%;
  left: -2%;
  z-index: 4;
  display: flex;
  gap: 0.4rem;
  padding: 0.55rem 0.65rem;
  border-radius: 999px;
  background: rgba(12, 16, 24, 0.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  animation: floatChip 5s ease-in-out infinite reverse;
}

.studio__swatches i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 10px var(--c);
  animation: swatchPop 2.4s ease-in-out infinite;
}

.studio__swatches i:nth-child(2) { animation-delay: 0.2s; }
.studio__swatches i:nth-child(3) { animation-delay: 0.4s; }
.studio__swatches i:nth-child(4) { animation-delay: 0.6s; }

.studio__pen {
  position: absolute;
  top: 22%;
  left: 2%;
  z-index: 4;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(12, 16, 24, 0.88);
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 24px rgba(61, 180, 255, 0.2);
  animation: penDraw 4.5s ease-in-out infinite;
}

.studio__pen svg {
  width: 26px;
  height: 26px;
}

.studio__ruler {
  position: absolute;
  bottom: 6%;
  right: 8%;
  z-index: 3;
  display: flex;
  gap: 6px;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  background: rgba(12, 16, 24, 0.8);
  border: 1px solid var(--border);
}

.studio__ruler span {
  width: 3px;
  height: 16px;
  border-radius: 2px;
  background: rgba(61, 180, 255, 0.35);
}

.studio__ruler span:nth-child(odd) {
  height: 10px;
  align-self: flex-end;
}

.studio__tag {
  position: absolute;
  top: 42%;
  right: 8%;
  z-index: 4;
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: var(--cyan);
  padding: 0.35rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(0, 229, 200, 0.35);
  background: rgba(0, 20, 24, 0.75);
  animation: floatChip 4.2s ease-in-out infinite 0.5s;
}

.studio__tag--2 {
  top: auto;
  bottom: 28%;
  right: auto;
  left: 10%;
  color: var(--violet);
  border-color: rgba(123, 92, 255, 0.4);
  animation-delay: 1s;
}

@keyframes buildIn {
  0%, 100% { width: 40%; opacity: 0.5; }
  50% { width: 78%; opacity: 1; }
}

@keyframes lineGrow {
  0%, 100% { transform: scaleX(0.7); transform-origin: left; opacity: 0.6; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(61, 180, 255, 0.35); transform: scale(1); }
  50% { box-shadow: 0 0 22px rgba(61, 180, 255, 0.7); transform: scale(1.04); }
}

@keyframes tileRise {
  0%, 100% { transform: translateY(6px); opacity: 0.55; }
  50% { transform: translateY(0); opacity: 1; }
}

@keyframes cursorMove {
  0% { top: 28%; left: 22%; }
  25% { top: 42%; left: 58%; }
  50% { top: 68%; left: 48%; }
  75% { top: 52%; left: 30%; }
  100% { top: 28%; left: 22%; }
}

@keyframes layerBlink {
  0%, 100% { background: rgba(61, 180, 255, 0.1); }
  50% { background: rgba(61, 180, 255, 0.25); }
}

@keyframes swatchPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes penDraw {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(8px, 10px) rotate(6deg); }
}

@keyframes pulseBorder {
  0%, 100% { border-color: rgba(61, 180, 255, 0.2); }
  50% { border-color: rgba(61, 180, 255, 0.55); }
}

/* —— Industries —— */
.industries__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.industry {
  padding: 1.5rem;
}

.industry h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.industry p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Features —— */
.features__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.feature {
  padding: 1.5rem;
}

.feature__icon {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--blue);
  display: block;
  margin-bottom: 0.85rem;
  letter-spacing: 0.1em;
}

.feature h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Portfolio —— */
.portfolio__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.portfolio__card {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.portfolio__tag {
  align-self: flex-start;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid rgba(0, 229, 200, 0.35);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-family: var(--font-display);
}

.portfolio__card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
}

.portfolio__card > p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.portfolio__card ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.portfolio__card li {
  color: var(--silver);
  font-size: 0.9rem;
  padding-left: 1rem;
  position: relative;
}

.portfolio__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}

/* —— Pricing —— */
.pricing__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.price {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
}

.price--featured {
  border-color: var(--border-bright);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(61, 180, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: scale(1.03);
}

.price__badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #041018;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price__tier {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
}

.price h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
}

.price__amount {
  font-size: 1.1rem;
  color: var(--silver);
  font-weight: 600;
}

.price__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  margin: 0.5rem 0 1rem;
}

.price__list li {
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 1.15rem;
  position: relative;
}

.price__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 0.85rem;
}

/* —— Testimonials —— */
.testimonials__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.quote {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.quote > p {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  flex: 1;
}

.quote footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.quote strong {
  font-family: var(--font-head);
}

.quote span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* —— Tech —— */
.tech__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.tech__item {
  padding: 0.85rem 1.25rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--silver);
}

/* —— FAQ —— */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq__item {
  overflow: hidden;
  padding: 0;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq__icon {
  font-size: 1.35rem;
  color: var(--blue);
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
}

.faq__item.is-open .faq__a {
  max-height: 220px;
  padding: 0 1.4rem 1.25rem;
}

.faq__a p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* —— Services —— */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  will-change: transform;
}

.service__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0.25rem;
}

.service__icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(61, 180, 255, 0.4));
}

.service h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
}

.service p {
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.service__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 0.5rem;
  transition: letter-spacing 0.25s ease;
}

.service__link:hover {
  letter-spacing: 0.03em;
}

/* —— Process —— */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  counter-reset: none;
}

.process__step {
  padding: 1.75rem 1.5rem;
}

.process__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 1rem;
}

.process__step h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process__step p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* —— Work / Why —— */
.work__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  padding: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.work__copy .section-title {
  text-align: left;
}

.work__copy .section-eyebrow {
  text-align: left;
}

.work__copy .section-desc {
  margin-bottom: 1.5rem;
}

.work__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.work__list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--silver);
  font-weight: 500;
}

.work__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 10px var(--blue);
}

.work__stats {
  display: grid;
  gap: 1.25rem;
}

.stat {
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
}

.stat__value,
.stat__suffix {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.75rem);
  background: linear-gradient(135deg, #fff, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

/* —— CTA band —— */
.cta-band__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem);
}

.cta-band__inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.cta-band__inner p {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

/* —— Contact —— */
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.35rem 1.5rem;
  transition: transform 0.25s ease;
}

.contact__card:hover {
  transform: translateX(4px);
}

.contact__label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--font-display);
}

.contact__value {
  font-size: 1.05rem;
  font-weight: 600;
  word-break: break-word;
}

.contact__form {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 16px; /* prevents iOS zoom on focus */
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  max-width: 100%;
}

.field select option {
  background: #12161e;
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--border-bright);
  box-shadow: 0 0 0 3px rgba(61, 180, 255, 0.15);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%2394a3b8'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.field textarea {
  resize: vertical;
  min-height: 110px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--cyan);
  min-height: 1.2em;
  text-align: center;
}

.form-note.is-error {
  color: #ff7b8a;
}

/* —— Footer —— */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(1.25rem, 4vw, 3.5rem) 2rem;
  background: rgba(0, 0, 0, 0.35);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__brand strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  display: block;
}

.footer__brand p {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.15em;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--blue);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer__bottom a:hover {
  color: var(--blue);
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Touch / polish helpers */
.btn,
.faq__q,
.nav__toggle,
.contact__card {
  -webkit-tap-highlight-color: transparent;
}

img {
  height: auto;
}

.hero__visual,
.about__studio {
  overflow: visible;
}

/* —— Responsive —— */

/* Large tablet / small laptop — denser nav */
@media (max-width: 1180px) {
  .nav__links {
    gap: 1rem;
  }

  .nav__links a:not(.btn) {
    font-size: 0.82rem;
  }

  .hero {
    gap: 1.5rem;
  }

  .hero__banners {
    width: min(52%, 190px);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --nav-h: 68px;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(8, 10, 14, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    gap: 1.15rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 5rem 1.5rem 2rem;
  }

  .nav.is-open .nav__links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav__links a:not(.btn) {
    font-size: 1.2rem;
    color: var(--text);
  }

  .services__grid,
  .process__steps,
  .industries__grid,
  .features__grid,
  .portfolio__grid,
  .pricing__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__copy .section-title,
  .about__copy .section-eyebrow,
  .about__copy .section-desc {
    text-align: center;
  }

  .about__studio {
    min-height: 360px;
    max-width: 420px;
    margin: 0.5rem auto 0;
  }

  .studio__browser {
    width: min(100%, 320px);
    transform: none;
    animation: studioFloatFlat 7s ease-in-out infinite;
  }

  @keyframes studioFloatFlat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .studio__layers {
    right: 0;
    width: 100px;
    font-size: 0.9em;
  }

  .studio__pen {
    left: 0;
  }

  .studio__tag--2 {
    left: 4%;
  }

  .price--featured {
    transform: none;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: calc(var(--nav-h) + 1.25rem) clamp(1rem, 4vw, 2rem) 2.5rem;
    min-height: auto;
    gap: 2rem;
  }

  .hero__content {
    max-width: 36rem;
    margin: 0 auto;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__sub {
    justify-content: center;
  }

  .hero__sub::before,
  .hero__sub::after {
    max-width: 48px;
  }

  .hero__visual {
    order: 0;
    min-height: 380px;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__stage {
    width: min(72%, 300px);
    order: 2;
  }

  .hero__orb,
  .hero__rings,
  .hero__neural {
    order: 2;
  }

  .hero__banners {
    order: 1;
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: min(90%, 320px);
    margin: 0 auto 1rem;
  }

  .hero__code,
  .hero__figma {
    display: none;
  }

  .hero__banner {
    padding: 0.45rem 0.55rem;
  }

  .hero__banner-copy strong {
    font-size: 0.65rem;
  }

  .hero__banner-copy span {
    font-size: 0.52rem;
  }

  .hero__code-body {
    font-size: 0.55rem;
    padding: 0.5rem;
  }

  .work__inner,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .work__copy .section-title,
  .work__copy .section-eyebrow,
  .work__copy .section-desc {
    text-align: center;
  }

  .work__list {
    align-items: center;
  }

  .work__list li {
    text-align: left;
  }

  .footer__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem 1.25rem;
  }
}

/* Mobile */
@media (max-width: 720px) {
  :root {
    --nav-h: 64px;
    --radius: 16px;
  }

  .nav {
    padding: 0 1rem;
  }

  .nav__name {
    font-size: 0.85rem;
  }

  .nav__mark {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .services,
  .process,
  .work,
  .cta-band,
  .contact,
  .about,
  .industries,
  .features,
  .portfolio,
  .pricing,
  .testimonials,
  .tech,
  .faq {
    padding: 3.25rem 1rem;
  }

  .section-head {
    margin-bottom: 2rem;
    padding: 0 0.25rem;
  }

  .section-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .section-desc {
    font-size: 0.98rem;
  }

  .services__grid,
  .process__steps,
  .industries__grid,
  .features__grid,
  .portfolio__grid,
  .pricing__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .hero {
    padding: calc(var(--nav-h) + 0.75rem) 1rem 2rem;
    gap: 1.5rem;
  }

  .hero__eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
  }

  .hero__word {
    font-size: clamp(2.2rem, 11vw, 2.9rem);
    letter-spacing: 0.04em;
  }

  .hero__sub {
    font-size: 0.85rem;
    letter-spacing: 0.28em;
  }

  .hero__lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero__cta .btn {
    width: 100%;
  }

  .hero__visual {
    min-height: auto;
    max-width: 100%;
    gap: 0.75rem;
  }

  .hero__stage {
    width: min(72%, 260px);
    border-radius: 20px;
    order: 2;
  }

  .hero__orb,
  .hero__rings,
  .hero__neural {
    position: absolute;
    order: 2;
    width: min(90%, 280px);
    pointer-events: none;
  }

  .hero__neural {
    opacity: 0.35;
  }

  /* Banners first, image below */
  .hero__banners {
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    transform: none;
    gap: 0.5rem;
    order: 1;
  }

  .hero__banner {
    animation: none;
    width: 100%;
  }

  .hero__code,
  .hero__figma {
    display: none;
  }

  .about__studio {
    min-height: 300px;
    max-width: 100%;
  }

  .studio__browser {
    width: min(92%, 280px);
  }

  .studio__layers,
  .studio__pen,
  .studio__ruler,
  .studio__tag,
  .studio__tag--2 {
    display: none;
  }

  .studio__swatches {
    left: 50%;
    bottom: 2%;
    transform: translateX(-50%);
    animation: none;
  }

  .marquee__track {
    font-size: 0.62rem;
    gap: 1rem;
  }

  .service,
  .process__step,
  .industry,
  .feature,
  .portfolio__card,
  .price,
  .quote {
    padding: 1.35rem 1.2rem;
  }

  .work__inner {
    padding: 1.5rem 1.2rem;
  }

  .cta-band__inner {
    padding: 1.75rem 1.25rem;
  }

  .cta-band__inner h2 {
    font-size: 1.35rem;
  }

  .contact__form {
    padding: 1.25rem;
  }

  .faq__q {
    font-size: 0.95rem;
    padding: 1rem 1.1rem;
    gap: 0.75rem;
  }

  .faq__item.is-open .faq__a {
    padding: 0 1.1rem 1.1rem;
  }

  .tech__item {
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
  }

  .footer {
    padding: 2rem 1rem 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer__top {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
  }

  .footer__links {
    justify-content: center;
  }

  .bg-glow--1,
  .bg-glow--2,
  .bg-glow--3 {
    opacity: 0.35;
    filter: blur(80px);
  }

  /* Disable heavy hover tilt feel on mobile cards */
  .glass-panel:hover {
    transform: none;
  }

  .contact__card:hover {
    transform: none;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero__word {
    font-size: 2rem;
  }

  .hero__banner-icon {
    width: 30px;
    height: 30px;
  }

  .hero__banner-icon svg {
    width: 22px;
    height: 22px;
  }

  .nav__name span {
    letter-spacing: 0.22em;
  }
}

/* Landscape phones */
@media (max-height: 480px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 0.5rem);
  }

  .hero__visual {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }
}

/* Floating WhatsApp — mobile polish */
.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.55);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 1025px) {
  .wa-float {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
