/* Bundled — run `node scripts/bundle-css.mjs` after editing css/*.css */

/* === variables.css === */
:root {
  --black: #05050a;
  --dark: #0c0c14;
  --blue: #1a6fe8;
  --blue2: #4b9ef5;
  --white: #efeffa;
  --gray: #50505e;
  --gb: rgba(255, 255, 255, 0.06);
  --gb2: rgba(255, 255, 255, 0.1);
  --green: #22c55e;
}

[data-theme="light"] {
  --black: #f5f5f7;
  --dark: #ffffff;
  --blue: #1561d4;
  --blue2: #2a7fea;
  --white: #101018;
  --gray: #5a5a68;
  --gb: rgba(0, 0, 0, 0.07);
  --gb2: rgba(0, 0, 0, 0.12);
  --green: #15803d;
}


/* === base.css === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html.lenis {
  height: auto;
}

/* Custom cursor only when fine pointer (keeps touch / keyboard UX) */
@media (hover: hover) and (pointer: fine) {
  html {
    cursor: none;
  }
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 16px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (hover: none), (pointer: coarse) {
  #cur,
  #cur2 {
    display: none !important;
  }
}

/* Shared logo asset (nav, footer, preloader, 404, privacy) */
.nav-logo-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}


/* === motion.css === */
/* Decorative CSS animations off when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mq-track {
    animation: none !important;
  }

  .ub-dot,
  .avail-dot {
    animation: none !important;
  }

  .hero-scroll-line::after {
    animation: none !important;
    opacity: 0.35;
    top: 40%;
  }

  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .fade-up.d1,
  .fade-up.d2,
  .fade-up.d3,
  .fade-up.d4 {
    transition-delay: 0s !important;
  }

  #hero-canvas {
    display: none !important;
  }

  .work-section {
    overflow: visible;
  }

  .work-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-color: var(--gb) transparent;
  }

  .work-track {
    transform: none !important;
    padding-bottom: 48px;
  }

  .work-card:hover .work-card-img-inner {
    transform: none;
  }

  .test-card:hover {
    transform: none;
  }
}

html.reduce-motion .mq-track {
  animation: none !important;
}

html.reduce-motion .ub-dot,
html.reduce-motion .avail-dot {
  animation: none !important;
}

html.reduce-motion .hero-scroll-line::after {
  animation: none !important;
  opacity: 0.35;
  top: 40%;
}

/* Pinned horizontal work scroll → native horizontal scroll */
html.reduce-motion .work-section {
  overflow: visible;
}

html.reduce-motion .work-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: var(--gb) transparent;
}

html.reduce-motion .work-track {
  transform: none !important;
  padding-bottom: 48px;
}

html.reduce-motion .work-card:hover .work-card-img-inner {
  transform: none;
}

html.reduce-motion .test-card:hover {
  transform: none;
}

html.reduce-motion #hero-canvas {
  display: none !important;
}


/* === components.css === */
/* CURSOR */
#cur,
#cur2 {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

#cur {
  width: 8px;
  height: 8px;
  background: var(--blue2);
  transition: width 0.3s, height 0.3s, background 0.3s;
}

#cur2 {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(75, 158, 245, 0.2);
  transition: width 0.4s, height 0.4s;
}

body.hovering #cur {
  width: 56px;
  height: 56px;
  background: rgba(75, 158, 245, 0.08);
}

body.hovering #cur2 {
  width: 72px;
  height: 72px;
  border-color: rgba(75, 158, 245, 0.35);
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

#pre-logo.pre-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
}

.pre-logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

.pre-logo-text {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
}

.pre-bar {
  width: 180px;
  height: 1px;
  background: var(--gb);
  overflow: hidden;
}

.pre-fill {
  height: 100%;
  width: 0;
  background: var(--blue);
}

.pre-num {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gray);
}

/* URGENCY BANNER */
#urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--blue);
  padding: 10px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

#urgency-bar.show {
  transform: translateY(0);
}

.ub-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

.ub-close {
  margin-left: auto;
  opacity: 0.6;
  font-size: 16px;
  transition: opacity 0.2s;
  background: none;
  border: none;
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .ub-close {
    cursor: none;
  }
}

.ub-close:hover {
  opacity: 1;
}

.ub-cta {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

/* NAV */
nav {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  mix-blend-mode: difference;
  transition: top 0.3s ease;
}

nav.with-bar {
  top: 40px;
}

nav.no-bar {
  top: 0;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 1;
}

/* MAGNETIC BUTTON */
.mag-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 15px 36px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .mag-btn {
    cursor: none;
  }
}

.mag-btn-fill {
  background: var(--blue);
  color: #fff;
}

.mag-btn-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue2);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mag-btn-fill:hover::before {
  transform: translateY(0);
}

.mag-btn span {
  position: relative;
  z-index: 1;
}

.mag-btn-ghost {
  border: 1px solid var(--gb2);
  color: var(--gray);
  transition: border-color 0.3s, color 0.3s;
}

.mag-btn-ghost:hover {
  border-color: var(--blue2);
  color: var(--white);
}

.free-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  border-radius: 100px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 8px;
  vertical-align: middle;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* MARQUEE */
.mq-wrap {
  padding: 18px 0;
  border-top: 1px solid var(--gb);
  border-bottom: 1px solid var(--gb);
  overflow: hidden;
  background: var(--black);
  position: relative;
  z-index: 2;
}

.mq-track {
  display: flex;
  gap: 48px;
  animation: mq 24s linear infinite;
  width: max-content;
}

.mq-item {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 48px;
}

.mq-item span {
  color: var(--blue);
  font-size: 8px;
}

@keyframes mq {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* UTILS */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}


/* === sections.css === */
/* HERO */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5% 6%;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  clip-path: inset(0 100% 0 0);
}

.hero-tag::before {
  content: "";
  display: block;
  width: 22px;
  height: 1px;
  background: var(--blue2);
}

.hero-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(76px, 14vw, 210px);
  line-height: 0.86;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-title .line {
  overflow: hidden;
  display: block;
}

.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
}

.hero-title .outline-text {
  -webkit-text-stroke: 1.5px rgba(240, 240, 250, 0.18);
  color: transparent;
}

.hero-title .blue-text {
  color: var(--blue2);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 36px;
  opacity: 0;
}

.hero-desc {
  font-size: 14px;
  color: var(--gray);
  max-width: 340px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-scroll-line {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 1px;
  height: 0;
  background: var(--gb2);
  overflow: visible;
}

.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--blue2);
  animation: scanDown 2s ease infinite;
}

@keyframes scanDown {
  0% {
    top: -60px;
  }
  100% {
    top: 100%;
  }
}

/* SOCIAL PROOF STRIP */
.sp-strip {
  position: relative;
  z-index: 2;
  padding: 18px 5%;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid var(--gb);
  border-bottom: 1px solid var(--gb);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sp-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

.sp-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.sp-item {
  font-size: 12px;
  color: rgba(240, 240, 250, 0.35);
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.sp-rating-wrap {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sp-stars {
  color: #f59e0b;
  font-size: 11px;
  letter-spacing: 2px;
}

.sp-rating {
  font-size: 11px;
  color: rgba(240, 240, 250, 0.5);
  margin-left: 4px;
}

/* WORK */
.work-section {
  position: relative;
  z-index: 2;
  background: var(--black);
  overflow: hidden;
}

.work-header {
  padding: 100px 5% 56px;
}

.work-disclaimer {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.5;
  max-width: 36rem;
  margin-top: 16px;
}

.sp-rating-muted {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.04em;
  margin-left: 0 !important;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 12px;
}

.section-h {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.work-scroll-container {
  overflow: hidden;
  width: 100%;
}

.work-track {
  display: flex;
  gap: 20px;
  padding: 0 5% 80px;
  width: max-content;
}

.work-card {
  width: 400px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--gb);
}

@media (hover: hover) and (pointer: fine) {
  .work-card {
    cursor: none;
  }
}

.work-card-img {
  height: 260px;
  position: relative;
  overflow: hidden;
}

.work-card-img-inner {
  position: absolute;
  inset: 0;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work-card:hover .work-card-img-inner {
  transform: scale(1.06);
}

.w1 {
  background: linear-gradient(135deg, #030320, #0a1870, #1535b0);
}

.w2 {
  background: linear-gradient(135deg, #130320, #420d70, #7020b0);
}

.w3 {
  background: linear-gradient(135deg, #031a0a, #0a6020, #18a055);
}

.w4 {
  background: linear-gradient(135deg, #1a0303, #700a10, #b01820);
}

.w5 {
  background: linear-gradient(135deg, #0a0a03, #3a3a0a, #707015);
}

.work-card-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 32px 32px;
}

.work-card-info {
  padding: 20px 24px;
  background: var(--dark);
}

.work-card-cat {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 5px;
}

.work-card-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.work-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--blue2);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.work-card-cta:hover {
  color: var(--mint);
}

.work-card-cta:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
  border-radius: 4px;
}

/* SERVICES */
.services-section {
  padding: 110px 5%;
  position: relative;
  z-index: 2;
  background: var(--dark);
}

.services-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-top: 72px;
}

.services-sticky {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.services-big {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  -webkit-text-stroke: 1px var(--gb2);
  color: transparent;
}

.services-list {
  border-top: 1px solid var(--gb);
}

.svc {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--gb);
  transition: padding-left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: inherit;
  text-decoration: none;
}

a.svc:focus-visible {
  outline: 2px solid var(--blue2);
  outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
  .svc {
    cursor: none;
  }
}

.svc:hover {
  padding-left: 12px;
}

.svc-n {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.1em;
  font-weight: 300;
}

.svc-name {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: color 0.25s;
}

.svc:hover .svc-name {
  color: var(--blue2);
}

.svc-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.svc-tag {
  padding: 3px 9px;
  border-radius: 100px;
  border: 1px solid var(--gb);
  font-size: 9px;
  color: var(--gray);
  letter-spacing: 0.05em;
}

.svc-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gb);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.3s;
  margin-left: 16px;
  flex-shrink: 0;
}

.svc:hover .svc-arrow {
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(45deg);
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 110px 5%;
  position: relative;
  z-index: 2;
  background: var(--black);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.test-card {
  background: var(--dark);
  border: 1px solid var(--gb);
  border-radius: 12px;
  padding: 32px;
  margin: 0;
  transition:
    border-color 0.3s,
    transform 0.3s;
}

.test-card:hover {
  border-color: rgba(26, 111, 232, 0.3);
  transform: translateY(-4px);
}

.test-stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonials-disclaimer,
.stats-disclaimer {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.55;
  max-width: 40rem;
  margin-bottom: 28px;
}

.test-body {
  font-size: 14px;
  color: rgba(240, 240, 250, 0.7);
  line-height: 1.75;
  font-weight: 300;
  margin: 0 0 24px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.av1 {
  background: rgba(26, 111, 232, 0.2);
  color: var(--blue2);
}

.av2 {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.av3 {
  background: rgba(34, 197, 94, 0.2);
  color: #4ade80;
}

.test-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.test-role {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

/* STATS */
.stats-section {
  padding: 80px 5%;
  position: relative;
  z-index: 2;
  background: var(--dark);
  border-top: 1px solid var(--gb);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--gb);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 56px;
}

.stat-card {
  padding: 44px 32px;
  background: var(--black);
  transition: background 0.3s;
}

.stat-card:hover {
  background: rgba(26, 111, 232, 0.04);
}

.stat-n {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
}

.stat-n span {
  color: var(--blue2);
}

.stat-n-sm {
  font-size: clamp(22px, 3.5vw, 34px);
  letter-spacing: -0.02em;
}

.stat-l {
  font-size: 11px;
  color: var(--gray);
  margin-top: 6px;
  font-weight: 300;
}

/* ABOUT */
.about-section {
  padding: 110px 5%;
  position: relative;
  z-index: 2;
  background: var(--black);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 111, 232, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 56px;
}

.about-body {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 32px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(240, 240, 250, 0.7);
}

.about-list li::before {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

.about-visual {
  position: relative;
  height: 500px;
}

.av-card {
  position: absolute;
  background: rgba(12, 12, 20, 0.9);
  border: 1px solid var(--gb);
  border-radius: 14px;
  padding: 24px;
  backdrop-filter: blur(20px);
}

.av-card.c1 {
  width: 250px;
  left: 0;
  top: 0;
}

.av-card.c2 {
  width: 210px;
  right: 0;
  top: 55px;
}

.av-card.c3 {
  width: 240px;
  left: 18px;
  bottom: 90px;
}

.av-card.c4 {
  width: 185px;
  right: 8px;
  bottom: 18px;
}

.av-val {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.av-val span {
  color: var(--blue2);
}

.av-lbl {
  font-size: 10px;
  color: var(--gray);
  margin-top: 5px;
  font-weight: 300;
}

.av-bar {
  height: 2px;
  background: var(--gb);
  border-radius: 2px;
  margin-top: 14px;
  overflow: hidden;
}

.av-bar-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.av-card.in-view .av-bar-fill {
  width: var(--w);
}

/* TRUST BADGES */
.trust-section {
  padding: 60px 5%;
  position: relative;
  z-index: 2;
  background: var(--dark);
  border-top: 1px solid var(--gb);
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--gb);
  border-radius: 6px;
  font-size: 11px;
  color: rgba(240, 240, 250, 0.4);
}

.trust-badge svg {
  opacity: 0.4;
}

/* PRICING */
.pricing-section {
  padding: 110px 5%;
  position: relative;
  z-index: 2;
  background: var(--black);
}

.avail-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--green);
  margin-top: 12px;
}

.avail-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--gb);
  border-radius: 14px;
  overflow: hidden;
}

.pricing-note {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.55;
  max-width: 52rem;
  margin-top: 28px;
}

.p-card {
  background: var(--dark);
  padding: 44px 32px;
  position: relative;
  transition: background 0.3s;
}

.p-card:hover,
.p-card.feat {
  background: rgba(26, 111, 232, 0.05);
}

.p-badge {
  display: inline-block;
  padding: 3px 12px;
  background: var(--blue);
  color: #fff;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.p-tier {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}

.p-price {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.p-price sub {
  font-size: 13px;
  color: var(--gray);
  vertical-align: baseline;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 300;
}

.p-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gb);
}

.p-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.p-feats li {
  font-size: 12px;
  color: rgba(240, 240, 250, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}

.p-feats li::before {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--blue);
  flex-shrink: 0;
}

.p-btn {
  display: block;
  width: 100%;
  padding: 13px;
  text-align: center;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.p-btn-o {
  border: 1px solid var(--gb);
  color: var(--white);
}

.p-btn-o:hover {
  border-color: var(--blue);
  color: var(--blue2);
}

.p-btn-f {
  background: var(--blue);
  color: #fff;
}

.p-btn-f:hover {
  background: var(--blue2);
}

.p-guarantee {
  font-size: 10px;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.p-guarantee::before {
  content: "🔒";
  font-size: 10px;
}

/* CONTACT */
.contact-section {
  padding: 110px 5%;
  position: relative;
  z-index: 2;
  background: var(--dark);
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26, 111, 232, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 56px;
  align-items: start;
}

.contact-big {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(60px, 8.5vw, 110px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.86;
  margin-bottom: 36px;
}

.contact-big .ghost {
  display: block;
  -webkit-text-stroke: 1px var(--gb2);
  color: transparent;
}

.contact-lead {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 22px;
}

.book-call-btn {
  display: block;
  text-decoration: none;
  color: #fff;
  background: var(--blue);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  .book-call-btn {
    cursor: none;
  }
}

.book-call-btn:hover {
  background: var(--blue2);
  border-color: rgba(255, 255, 255, 0.12);
}

.book-call-btn:focus-visible {
  outline: 2px solid var(--blue2);
  outline-offset: 3px;
}

.book-call-btn-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.book-call-btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.book-call-btn-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.book-call-btn-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.book-call-btn-sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.book-call-btn-arrow {
  font-size: 15px;
  opacity: 0.65;
  flex-shrink: 0;
}

.clinks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.clink {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 14px 16px;
  border: 1px solid var(--gb);
  border-radius: 8px;
  transition:
    border-color 0.25s,
    background 0.25s;
}

.clink:hover {
  border-color: rgba(26, 111, 232, 0.4);
  background: rgba(26, 111, 232, 0.04);
}

.clink-static {
  cursor: default;
}

.clink-static:hover {
  border-color: var(--gb);
  background: transparent;
}

.clink-icon {
  width: 34px;
  height: 34px;
  background: rgba(26, 111, 232, 0.1);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clink-lbl {
  font-size: 9px;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.clink-val {
  font-size: 13px;
  color: var(--white);
  font-weight: 500;
  margin-top: 1px;
}

.free-offer {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.free-offer-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.free-offer-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.free-offer-desc {
  font-size: 12px;
  color: rgba(240, 240, 250, 0.5);
  line-height: 1.5;
  font-weight: 300;
}

.cform {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-note {
  font-size: 11px;
  color: var(--gray);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-note::before {
  content: "🔒";
  font-size: 10px;
}

.form-alt {
  font-size: 12px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 8px;
}

.form-alt-link {
  color: var(--blue2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-alt-link:hover {
  color: var(--white);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

[data-form-status] {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  min-height: 1.25em;
}

[data-form-status][aria-hidden="true"] {
  margin: 0;
  padding: 0;
  min-height: 0;
}

[data-form-status][data-state="ok"] {
  color: var(--green);
}

[data-form-status][data-state="error"] {
  color: #f87171;
}

.form-feedback {
  margin-bottom: 2px;
}

.ff {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ff label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.ff input,
.ff textarea,
.ff select {
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gb);
  border-radius: 3px;
  font-size: 13px;
  color: var(--white);
  font-family: "DM Sans", system-ui, sans-serif;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
  appearance: none;
}

.ff input:focus,
.ff textarea:focus,
.ff select:focus {
  border-color: var(--blue);
  background: rgba(26, 111, 232, 0.04);
}

.ff input::placeholder,
.ff textarea::placeholder {
  color: var(--gray);
}

.ff textarea {
  resize: vertical;
  min-height: 110px;
}

.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fsub {
  padding: 15px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  font-family: "DM Sans", system-ui, sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    transform 0.2s;
}

@media (hover: hover) and (pointer: fine) {
  .fsub {
    cursor: none;
  }
}

.fsub:hover {
  background: var(--blue2);
  transform: translateY(-1px);
}

.form-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.form-trust-item {
  font-size: 10px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* FOOTER */
footer {
  padding: 40px 5%;
  border-top: 1px solid var(--gb);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
  background: var(--black);
}

footer > div > p {
  margin: 0;
}

.fbrand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fbrand {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}

.fslogan {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.flinks {
  display: flex;
  gap: 18px;
}

.flinks a {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

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

.fcopy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.1);
  margin: 0;
}

@media (max-width: 900px) {
  .about-inner,
  .contact-inner,
  .services-inner {
    grid-template-columns: 1fr;
  }

  .about-visual,
  .services-sticky {
    display: none;
  }

  .pricing-grid,
  .stats-grid,
  .test-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .frow {
    grid-template-columns: 1fr;
  }

  .sp-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sp-rating-wrap {
    margin-left: 0;
  }
}


/* === theme.css === */
/* Light theme — surfaces and hardcoded dark-mode tints */

[data-theme="light"] nav {
  mix-blend-mode: normal;
}

[data-theme="light"] .hero-title {
  color: var(--white);
}

[data-theme="light"] .hero-title .outline-text {
  color: rgba(10, 10, 18, 0.14);
  -webkit-text-stroke: 1.25px rgba(10, 10, 18, 0.72);
}

/* Hollow stroke titles — solid ink in light mode */
[data-theme="light"] .services-big {
  color: #0a0a0a;
  -webkit-text-stroke: 0;
}

[data-theme="light"] .contact-big .ghost {
  color: #0a0a0a;
  -webkit-text-stroke: 0;
}

/* “Built with” stack — badges used dark-on-dark tints */
[data-theme="light"] .trust-label {
  color: rgba(10, 10, 18, 0.55);
}

[data-theme="light"] .trust-badge {
  color: rgba(10, 10, 18, 0.82);
}

[data-theme="light"] .trust-badge svg {
  opacity: 0.9;
}

[data-theme="light"] .sp-strip {
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .sp-item {
  color: rgba(28, 28, 40, 0.5);
}

[data-theme="light"] .sp-rating {
  color: rgba(28, 28, 40, 0.55);
}

[data-theme="light"] .work-card-grid {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .test-body {
  color: rgba(28, 28, 40, 0.75);
}

[data-theme="light"] .about-list li {
  color: rgba(28, 28, 40, 0.7);
}

[data-theme="light"] .av-card {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .p-feats li {
  color: rgba(28, 28, 40, 0.65);
}

[data-theme="light"] .p-card:hover,
[data-theme="light"] .p-card.feat {
  background: rgba(21, 97, 212, 0.07);
}

[data-theme="light"] .book-call-btn:hover {
  border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .book-call-btn-icon {
  background: rgba(255, 255, 255, 0.95);
}

[data-theme="light"] .book-call-btn-sub {
  color: rgba(255, 255, 255, 0.88);
}

[data-theme="light"] .free-offer-desc {
  color: rgba(28, 28, 40, 0.55);
}

[data-theme="light"] .ff input,
[data-theme="light"] .ff textarea,
[data-theme="light"] .ff select {
  background: rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .ff input:focus,
[data-theme="light"] .ff textarea:focus,
[data-theme="light"] .ff select:focus {
  background: rgba(21, 97, 212, 0.06);
}

[data-theme="light"] .fcopy {
  color: rgba(0, 0, 0, 0.28);
}

/* Theme toggle control */
.theme-toggle {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--gb2);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  position: relative;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.theme-toggle:hover {
  background: var(--gb);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--blue2);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  .theme-toggle {
    cursor: none;
  }
}

.theme-toggle .theme-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  pointer-events: none;
}

.theme-icon-sun {
  display: block;
}

.theme-icon-moon {
  display: none;
}

[data-theme="light"] .theme-icon-sun {
  display: none;
}

[data-theme="light"] .theme-icon-moon {
  display: block;
}

.theme-toggle--corner {
  position: fixed;
  top: 28px;
  right: 5%;
  z-index: 20;
}

@media (max-width: 900px) {
  .theme-toggle--corner {
    top: 22px;
  }
}


