/* Roninshift — dark futuristic agency theme */
:root {
  --bg: #050608;
  --bg-elevated: #0c0f14;
  --bg-card: rgba(12, 16, 24, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(59, 130, 246, 0.35);
  --text: #f4f6fa;
  --text-muted: #8b95a8;
  --blue: #3b82f6;
  --blue-bright: #60a5fa;
  --cyan: #22d3ee;
  --gradient: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #22d3ee 100%);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --radius-lg: 24px;
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Syne", "Inter", sans-serif;
  --header-h: 120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.scroll-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Background effects */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent);
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.bg-glow--1 {
  width: 520px;
  height: 520px;
  background: #1d4ed8;
  top: -180px;
  right: -120px;
  animation: float 14s ease-in-out infinite;
}

.bg-glow--2 {
  width: 400px;
  height: 400px;
  background: #0891b2;
  bottom: 20%;
  left: -100px;
  animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 20px); }
}

/* Typography */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 0.75rem;
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.25rem;
}

.section__lead {
  color: var(--text-muted);
  max-width: 540px;
  margin-top: 1rem;
}

.section__head--center {
  text-align: center;
}

.section__head--center .section__lead {
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--border-glow);
  background: rgba(59, 130, 246, 0.08);
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(5, 6, 8, 0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(5, 6, 8, 0.92);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav__wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav__logo,
.footer__logo,
.hero__logo {
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(34, 211, 238, 0.25));
}

.nav__logo {
  height: 116px;
  width: 116px;
}

.footer__logo {
  height: 40px;
  width: 40px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav__links a {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--text);
}

.nav__cta {
  padding: 0.7rem 1.35rem !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  background: rgba(59, 130, 246, 0.12) !important;
  border: 1px solid var(--border-glow) !important;
  border-radius: 999px !important;
  color: var(--blue-bright) !important;
}

.nav__cta:hover {
  background: rgba(59, 130, 246, 0.22) !important;
  color: #fff !important;
}

body.nav-open {
  overflow: hidden;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__headline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: fit-content;
  max-width: 100%;
}

.hero__eyebrow {
  align-self: flex-start;
  margin-left: 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
}

.hero__title {
  font-size: 3.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.08;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  margin-left: 0.2em;
}

.hero__sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero__stats li {
  display: flex;
  flex-direction: column;
}

.hero__stats strong {
  font-size: 1.5rem;
  font-family: var(--font-display);
  color: var(--blue-bright);
}

.hero__stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logo-wrap {
  position: relative;
  width: min(420px, 90vw);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.hero__ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.2);
  animation: spin 24s linear infinite;
}

.hero__ring::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1px dashed rgba(34, 211, 238, 0.15);
  animation: spin 36s linear infinite reverse;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Sections */
.section {
  position: relative;
  z-index: 1;
  padding: 6rem 0;
}

.section__head {
  margin-bottom: 3rem;
}

/* Services reel */
.reel {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reel__viewport {
  flex: 1;
  overflow: hidden;
  padding: 1.5rem 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  touch-action: pan-y pinch-zoom;
  cursor: grab;
  user-select: none;
}

.reel__viewport.is-dragging {
  cursor: grabbing;
}

.reel__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  cursor: inherit;
  outline: none;
}

.reel__viewport.is-dragging .reel__track {
  transition: none;
}

.service-card {
  flex: 0 0 min(320px, 78vw);
  min-height: 280px;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s var(--ease), opacity 0.35s;
  opacity: 0.55;
  transform: scale(0.94);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--border-glow);
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.15), var(--shadow), 0 0 60px rgba(59, 130, 246, 0.12);
}

.service-card.is-active::before {
  opacity: 1;
}

.service-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--blue-bright);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 1.35rem;
  position: relative;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  position: relative;
}

.service-card__tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  width: fit-content;
  position: relative;
}

.reel__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.reel__arrow svg {
  width: 22px;
  height: 22px;
}

.reel__arrow:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--border-glow);
  transform: scale(1.05);
}

.reel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.reel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.reel__dot.is-active {
  background: var(--blue);
  transform: scale(1.25);
}

.reel__hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* Clients marquee */
.clients {
  overflow: hidden;
}

.marquee {
  margin-top: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
}

.marquee__track:hover {
  animation-play-state: paused;
}

.marquee__row {
  display: flex;
  gap: 1rem;
  padding-right: 1rem;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.client-chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}

.client-chip__icon {
  font-size: 1.25rem;
  line-height: 1;
}

.client-chip span:last-child {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

/* Why */
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.why-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(12, 16, 24, 0.9), rgba(5, 6, 8, 0.6));
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}

.why-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
}

.why-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Cal embed */
.cal-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  width: 100%;
  height: fit-content;
}

.cal-embed--live {
  min-height: 630px;
  height: auto;
}

.cal-embed__iframe {
  width: 100%;
  height: 630px;
  border: none;
  display: block;
}

.cal-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(160deg, rgba(29, 78, 216, 0.06), rgba(5, 6, 8, 0.4));
}

.cal-placeholder__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid var(--border-glow);
  color: var(--blue-bright);
  margin-bottom: 1.25rem;
}

.cal-placeholder__icon svg {
  width: 32px;
  height: 32px;
}

.coming-soon {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.25);
  margin-bottom: 1rem;
}

.cal-placeholder h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.cal-placeholder p {
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.cal-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 0;
}

.book .cal-embed {
  margin-bottom: 0;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__info p:not(.eyebrow) {
  color: var(--text-muted);
  margin: 1rem 0 2rem;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-weight: 500;
  transition: border-color 0.25s, background 0.25s;
}

.contact__link svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.contact__link:hover {
  border-color: var(--border-glow);
  background: rgba(59, 130, 246, 0.08);
}

.contact__link--wa:hover {
  border-color: rgba(37, 211, 102, 0.4);
  background: rgba(37, 211, 102, 0.08);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__form label span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.contact__form input,
.contact__form textarea {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.contact__form textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  text-align: center;
  color: var(--cyan);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer__top {
  font-size: 0.85rem;
  color: var(--blue-bright);
}

.footer__top:hover {
  text-decoration: underline;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero__inner,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }

  .hero__logo-wrap {
    width: min(260px, 65vw);
    margin-inline: auto;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .reel {
    position: relative;
    padding-bottom: 3rem;
  }

  .reel__arrow--prev {
    left: 0.5rem;
    bottom: 0;
    top: auto;
    position: absolute;
    z-index: 2;
  }

  .reel__arrow--next {
    right: 0.5rem;
    bottom: 0;
    top: auto;
    position: absolute;
    z-index: 2;
  }

  .cal-embed__iframe {
    height: 560px;
  }

  .cal-embed--live {
    min-height: 560px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 1.5rem) 0 3rem;
  }

  .hero__title-line--accent {
    margin-left: 0;
  }

  .hero__sub {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__stats {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem 1.5rem;
  }

  .hero__stats li {
    min-width: calc(33% - 1rem);
  }

  .section__head {
    margin-bottom: 2rem;
  }

  .service-card {
    flex: 0 0 min(280px, 88vw);
    min-height: 260px;
    padding: 1.5rem;
  }

  .reel__viewport {
    mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .contact__form {
    padding: 1.5rem;
  }

  .contact__form input,
  .contact__form textarea {
    font-size: 16px;
  }

  .cal-placeholder {
    padding: 1.75rem 1.25rem;
  }

  .book .section__head {
    margin-bottom: 1.5rem;
  }

  .cal-placeholder__actions {
    flex-direction: column;
    width: 100%;
  }

  .cal-placeholder__actions .btn {
    width: 100%;
  }

  .cal-embed__iframe {
    height: 480px;
  }

  .cal-embed--live {
    min-height: 480px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__top {
    padding: 0.5rem 0;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.75rem;
    gap: 1.5rem;
    background: rgba(5, 6, 8, 0.98);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__cta {
    padding: 0.85rem 1.5rem !important;
    text-align: center;
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 480px) {
  .hero__stats li {
    min-width: 28%;
  }

  .hero__stats strong {
    font-size: 1.25rem;
  }

  .reel__arrow {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .marquee__track {
    animation: none;
  }
}

/* ── Custom cursor ─────────────────────────────────────────── */
@media (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], input, textarea, label { cursor: none; }

  .cursor {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--blue-bright);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width .18s var(--ease), height .18s var(--ease),
                background .18s var(--ease), opacity .18s;
    will-change: transform;
  }

  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 36px; height: 36px;
    border: 1.5px solid rgba(96, 165, 250, 0.45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease), height .25s var(--ease),
                border-color .25s, opacity .2s;
    will-change: transform;
  }

  /* enlarge on hoverable elements */
  body:has(a:hover) .cursor,
  body:has(button:hover) .cursor {
    width: 16px; height: 16px;
    background: var(--cyan);
  }

  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring {
    width: 52px; height: 52px;
    border-color: rgba(34, 211, 238, 0.5);
  }

  /* hide when mouse leaves window */
  body.cursor-hidden .cursor,
  body.cursor-hidden .cursor-ring { opacity: 0; }
}

/* ── Services section lead text ────────────────────────────── */
.services .section__lead {
  margin-top: .75rem;
  max-width: 52ch;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Footer brand (logo + wordmark) ────────────────────────── */
.footer__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.footer__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer__wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--text);
  text-transform: uppercase;
}
