/* ─── AI Gaur — custom styles layered on top of Tailwind ─── */

/* ── 3D hero scene ──────────────────────────────────────────── */
.hero3d-section { min-height: 92vh; padding-bottom: 7rem; }
@media (min-width: 1024px) { .hero3d-section { min-height: 100vh; } }
.hero3d-canvas {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero3d-canvas canvas { display: block; width: 100% !important; height: 100% !important; }
.hero3d-vignette {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(7,11,20,0.55) 60%, rgba(7,11,20,0.95) 100%),
    linear-gradient(180deg, rgba(7,11,20,0.85) 0%, transparent 25%, transparent 75%, rgba(7,11,20,1) 100%);
}

/* Hero display typography */
.hero-display { font-size: clamp(2.5rem, 7vw + 0.5rem, 6.5rem); }
.hero-gradient {
  background: linear-gradient(120deg, #67e8f9 0%, #f1f3f7 35%, #fbbf24 70%, #f59e0b 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradientShift 9s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 30px rgba(34,211,238,0.18));
}
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ── Marquee band ──────────────────────────────────────────── */
.marquee-band {
  border-top: 1px solid rgba(192,197,205,0.06);
  border-bottom: 1px solid rgba(192,197,205,0.06);
  background: linear-gradient(180deg, rgba(34,211,238,0.025), rgba(245,158,11,0.02));
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee { width: 100%; overflow: hidden; }
.marquee-track {
  display: inline-flex; align-items: center; gap: 1.5rem;
  white-space: nowrap;
  font-family: "Space Grotesk", Inter, system-ui;
  font-size: clamp(1.25rem, 2vw + 0.6rem, 2.25rem);
  font-weight: 600; letter-spacing: -0.01em;
  color: rgba(225,229,238,0.55);
  animation: marqueeScroll 38s linear infinite;
  will-change: transform;
}
.marquee-track .dot { color: #22d3ee; opacity: 0.7; padding: 0 0.25rem; }
.marquee-track span:not(.dot):hover { color: #fff; }
@keyframes marqueeScroll {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ── 3D card tilt — base styling so tilt looks 3D ──────────── */
[data-tilt] {
  transform-style: preserve-3d;
  transition: box-shadow .3s ease;
}
[data-tilt] > * {
  transform: translateZ(0);
}
[data-tilt] .card-icon, [data-tilt] .card-title, [data-tilt] .card-cta {
  transform: translateZ(40px);
}
[data-tilt] .card-body { transform: translateZ(20px); }
[data-tilt] .price-name, [data-tilt] .price-num { transform: translateZ(40px); }
[data-tilt] .price-features { transform: translateZ(15px); }
[data-tilt] .stat-num { transform: translateZ(35px); }
.js-tilt-glare {
  border-radius: inherit;
  pointer-events: none;
}

/* ── Parallax helpers ──────────────────────────────────────── */
[data-parallax] { will-change: transform; }

/* ── Compact hero (sub-pages) ──────────────────────────────── */
.hero3d-compact { min-height: 60vh; padding-bottom: 4rem; }
@media (min-width: 1024px) { .hero3d-compact { min-height: 70vh; } }

/* ── Service row layout (services.html) ───────────────────── */
.service-row {
  display: grid; gap: 2.5rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .service-row { grid-template-columns: 1fr 1.1fr; gap: 4rem; }
  .service-row-rev .service-meta { order: 2; }
  .service-row-rev .service-visual { order: 1; }
}
.service-meta .service-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 0.85rem;
  background: rgba(34,211,238,0.10);
  color: #22d3ee;
  border: 1px solid rgba(34,211,238,0.25);
  margin-bottom: 1.25rem;
}
.service-meta .service-icon svg { width: 1.25rem; height: 1.25rem; }
.service-h {
  font-family: "Space Grotesk"; font-weight: 600; line-height: 1.05; letter-spacing: -0.015em;
  font-size: clamp(2rem, 2vw + 1.4rem, 3.25rem);
  color: #fff; margin-top: 0.5rem;
}
.service-desc {
  margin-top: 1rem; max-width: 36rem;
  font-size: 1.0625rem; line-height: 1.6; color: #c0c5cd;
}
.service-feat {
  margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.65rem;
  font-size: 0.95rem; color: #dde1ea;
}
.service-feat li { display: flex; align-items: flex-start; gap: 0.65rem; }
.service-feat svg { width: 1rem; height: 1rem; color: #22d3ee; margin-top: 0.2rem; flex-shrink: 0; }
.service-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.75rem;
  font-weight: 500; color: #22d3ee;
  transition: gap .2s ease;
}
.service-cta:hover { gap: 0.75rem; color: #67e8f9; }
.service-cta svg { width: 1rem; height: 1rem; }
.service-visual {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px -30px rgba(34,211,238,0.20);
  transform-style: preserve-3d;
}
.service-visual img { display: block; width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; transform: translateZ(0); }
.service-visual .scene-mount {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(34,211,238,0.08), transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(245,158,11,0.06), transparent 55%),
    linear-gradient(160deg, #0a1020 0%, #070b14 60%, #0f1525 100%);
}
.service-visual .scene-mount canvas { display: block; width: 100% !important; height: 100% !important; }
.service-visual::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, transparent 60%, rgba(7,11,20,0.35));
}

/* ── Step cards (services process) ─────────────────────────── */
.step-card {
  position: relative; padding: 1.5rem; border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.005) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.step-card::after {
  content: ""; position: absolute; inset: -30% -30% auto auto; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(34,211,238,0.10), transparent 70%);
  filter: blur(36px);
}
.step-num {
  font-family: "JetBrains Mono"; font-size: 0.75rem; letter-spacing: 0.18em;
  color: #22d3ee; padding: 0.25rem 0.6rem; border-radius: 999px;
  background: rgba(34,211,238,0.08); border: 1px solid rgba(34,211,238,0.25);
  display: inline-block; transform: translateZ(40px);
}
.step-h { font-family: "Space Grotesk"; font-size: 1.25rem; font-weight: 600; color: #fff; margin-top: 1rem; transform: translateZ(30px); }
.step-d { color: #c0c5cd; margin-top: 0.4rem; font-size: 0.95rem; line-height: 1.55; transform: translateZ(15px); }

/* ── Comparison table (pricing) ────────────────────────────── */
.compare-table {
  width: 100%; border-collapse: collapse; min-width: 720px;
  font-size: 0.95rem;
}
.compare-table thead th {
  font-family: "JetBrains Mono"; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #c0c5cd; padding: 1rem 1.25rem; text-align: left;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.compare-table thead th.featured { color: #fbbf24; background: rgba(245,158,11,0.06); }
.compare-table tbody td {
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #dde1ea;
}
.compare-table tbody td:first-child { color: #c0c5cd; }
.compare-table tbody td.featured { background: rgba(245,158,11,0.04); color: #fff; }
.compare-table tbody td svg { width: 1rem; height: 1rem; color: #22d3ee; display: inline-block; }
.compare-table tbody td.featured svg { color: #fbbf24; }
.compare-table tbody tr:last-child td { border-bottom: 0; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: 0.85rem;
  padding: 1rem 1.25rem;
  transition: border-color .2s ease, background .2s ease;
}
.faq:hover { border-color: rgba(34,211,238,0.25); }
.faq[open] { background: rgba(34,211,238,0.04); border-color: rgba(34,211,238,0.25); }
.faq summary {
  cursor: pointer; list-style: none;
  font-family: "Space Grotesk"; font-weight: 600; font-size: 1.05rem; color: #fff;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: "JetBrains Mono"; font-size: 1.25rem; color: #22d3ee;
  transition: transform .25s ease;
}
.faq[open] summary::after { content: "−"; transform: rotate(180deg); }
.faq p { margin-top: 0.85rem; color: #c0c5cd; line-height: 1.6; }

/* ── Agents 3D panel ───────────────────────────────────────── */
.agents-panel {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(34,211,238,0.08), transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(245,158,11,0.06), transparent 55%),
    linear-gradient(180deg, #0a1020, #070b14);
  box-shadow: 0 40px 80px -40px rgba(34,211,238,0.25);
}
.agents3d-canvas { position: relative; min-height: 20rem; }
@media (min-width: 640px)  { .agents3d-canvas { min-height: 26rem; } }
@media (min-width: 1024px) { .agents3d-canvas { min-height: 32rem; } }
.agents3d-canvas canvas { display: block; width: 100% !important; height: 100% !important; }
.legend-dot {
  display: inline-block; width: 0.45rem; height: 0.45rem; border-radius: 999px;
  box-shadow: 0 0 8px currentColor;
}

/* ── Legal & policy pages ──────────────────────────────────── */
.legal-h2 {
  font-family: "Space Grotesk", Inter, system-ui;
  font-size: clamp(1.4rem, 1vw + 1rem, 1.875rem);
  font-weight: 600; line-height: 1.2; letter-spacing: -0.01em;
  color: #fff;
}
.legal-p { color: #c0c5cd; line-height: 1.7; font-size: 1.0rem; margin-top: 0.85rem; }
.legal-p strong { color: #fff; font-weight: 600; }
.legal-p a { color: #67e8f9; }
.legal-ul {
  margin-top: 1rem;
  display: flex; flex-direction: column; gap: 0.55rem;
  font-size: 0.95rem; color: #dde1ea; line-height: 1.55;
  padding-left: 1.25rem;
}
.legal-ul li { list-style: disc; }
.legal-ul li::marker { color: #22d3ee; }
.legal-ul strong { color: #fff; }

/* ── Industry / location cards ─────────────────────────────── */
.hub-card {
  position: relative; padding: 1.5rem; border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .25s ease, border-color .25s ease;
}
.hub-card:hover { transform: translateY(-3px); border-color: rgba(34,211,238,0.3); }
.hub-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 0.625rem;
  background: rgba(34,211,238,0.10); color: #22d3ee;
  border: 1px solid rgba(34,211,238,0.25); margin-bottom: 1rem;
}
.hub-card-icon svg { width: 1.125rem; height: 1.125rem; }
.hub-card-title { font-family: "Space Grotesk"; font-size: 1.125rem; font-weight: 600; color: #fff; }
.hub-card-body { color: #c0c5cd; font-size: 0.9375rem; line-height: 1.55; margin-top: 0.4rem; }
.hub-card-cta { display: inline-flex; gap: 0.4rem; margin-top: 1rem; font-size: 0.85rem; color: #22d3ee; font-weight: 500; }
.hub-card:hover .hub-card-cta { color: #67e8f9; }

.region-block {
  padding: 1.5rem; border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  border: 1px solid rgba(255,255,255,0.08);
}
.region-h {
  font-family: "JetBrains Mono"; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #22d3ee; margin-bottom: 0.85rem;
}
.region-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; }
@media (min-width: 480px) { .region-list { grid-template-columns: repeat(3, 1fr); } }
.region-list a {
  display: block; padding: 0.45rem 0.6rem; border-radius: 0.5rem;
  font-size: 0.875rem; color: #dde1ea;
  transition: background .15s ease, color .15s ease;
}
.region-list a:hover { background: rgba(34,211,238,0.08); color: #fff; }

/* ── Promise cards (home hero trust strip — honest replacement for fake metrics) ── */
.promise-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.45rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
  transition: border-color .2s ease, transform .2s ease;
}
.promise-card:hover { border-color: rgba(34,211,238,0.25); transform: translateY(-2px); }
.promise-icon {
  width: 1.25rem; height: 1.25rem; color: #22d3ee;
  padding: 0.4rem; box-sizing: content-box;
  border-radius: 0.5rem;
  background: rgba(34,211,238,0.10);
  border: 1px solid rgba(34,211,238,0.25);
}
.promise-icon-amber { color: #fbbf24; background: rgba(245,158,11,0.10); border-color: rgba(245,158,11,0.30); }
.promise-title { font-family: "Space Grotesk"; font-size: 1rem; font-weight: 600; color: #fff; line-height: 1.1; margin-top: 0.4rem; }
.promise-sub { font-size: 0.8125rem; color: #c0c5cd; line-height: 1.4; }

/* ── Sample build cards (sample work — what we'll build) ── */
.sample-card {
  position: relative; padding: 1.5rem; border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.005));
  display: flex; flex-direction: column; gap: 0.5rem;
  transition: transform .25s ease, border-color .25s ease;
  overflow: hidden;
}
.sample-card:hover { transform: translateY(-3px); border-color: rgba(34,211,238,0.3); }
.sample-card::after {
  content: ""; position: absolute; inset: -30% -30% auto auto; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(34,211,238,0.12), transparent 70%);
  filter: blur(36px); opacity: 0; transition: opacity .35s ease; pointer-events: none;
}
.sample-card:hover::after { opacity: 1; }
.sample-tag {
  align-self: flex-start;
  font-family: "JetBrains Mono"; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 999px;
  border: 1px solid rgba(245,158,11,0.30); color: #fbbf24;
  background: rgba(245,158,11,0.08);
}
.sample-title { font-family: "Space Grotesk"; font-size: 1.2rem; font-weight: 600; color: #fff; line-height: 1.2; margin-top: 0.4rem; }
.sample-body { color: #c0c5cd; font-size: 0.9375rem; line-height: 1.55; }
.sample-list {
  display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.4rem;
  font-size: 0.875rem; color: #dde1ea;
}
.sample-list li { display: flex; align-items: flex-start; gap: 0.55rem; }
.sample-list svg { width: 0.95rem; height: 0.95rem; color: #22d3ee; margin-top: 0.2rem; flex-shrink: 0; }
.sample-stack {
  margin-top: 0.85rem; font-family: "JetBrains Mono"; font-size: 0.75rem; color: #9ba2ad;
  display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center;
}
.sample-stack span {
  padding: 0.15rem 0.45rem; border-radius: 0.35rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: #c0c5cd;
}
.sample-time {
  margin-top: 0.6rem; font-size: 0.8125rem; color: #67e8f9;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.sample-time::before { content: "●"; color: #22d3ee; font-size: 0.6rem; }

/* ── Founder note (long-form mission/positioning) ── */
.founder-note {
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(245,158,11,0.20);
  background: linear-gradient(180deg, rgba(245,158,11,0.05), rgba(255,255,255,0.005));
  position: relative;
  overflow: hidden;
}
.founder-note::after {
  content: ""; position: absolute; inset: -50% -20% auto auto; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(245,158,11,0.10), transparent 70%);
  filter: blur(60px); pointer-events: none;
}
.founder-h {
  font-family: "Space Grotesk"; font-weight: 600; line-height: 1.1; letter-spacing: -0.015em;
  font-size: clamp(1.5rem, 1.5vw + 1rem, 2.25rem);
  color: #fff; margin-top: 0.5rem;
}
.founder-p { color: #dde1ea; line-height: 1.7; font-size: 1.0rem; margin-top: 1rem; max-width: 36rem; }
.founder-p strong { color: #fff; font-weight: 600; }

/* ── Commitment cards (about — women empowerment) ── */
.commitment-card {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  transition: border-color .2s ease;
}
.commitment-card:hover { border-color: rgba(245,158,11,0.30); }
.commitment-card .commit-ic {
  width: 1.25rem; height: 1.25rem;
  padding: 0.45rem; box-sizing: content-box;
  border-radius: 0.55rem;
  color: #fbbf24;
  background: rgba(245,158,11,0.10);
  border: 1px solid rgba(245,158,11,0.25);
  flex-shrink: 0;
}
.commitment-card strong { display: block; color: #fff; font-weight: 600; font-family: "Space Grotesk"; font-size: 0.95rem; }
.commitment-card span { display: block; color: #c0c5cd; font-size: 0.85rem; line-height: 1.45; margin-top: 0.15rem; }

/* ── Work / Portfolio cards ───────────────────────────────── */
.work-card {
  display: flex; flex-direction: column;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005));
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .3s ease;
  text-decoration: none;
  color: inherit;
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34,211,238,0.30);
  box-shadow: 0 30px 60px -30px rgba(34,211,238,0.30);
}
.work-card-featured {
  border-color: rgba(245,158,11,0.30);
  box-shadow: 0 30px 60px -30px rgba(245,158,11,0.25);
}
.work-card-featured:hover {
  border-color: rgba(245,158,11,0.50);
  box-shadow: 0 36px 70px -28px rgba(245,158,11,0.40);
}
.work-thumb {
  position: relative; aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  background-color: #0a1020;
}
.work-thumb-label {
  font-family: "Playfair Display", "Space Grotesk", serif;
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.25rem);
  font-weight: 700; letter-spacing: -0.01em; color: #fff;
  z-index: 2;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.4);
  padding: 0 1rem; text-align: center;
}
.work-thumb::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(7,11,20,0.15) 0%, rgba(7,11,20,0.25) 50%, rgba(7,11,20,0.55) 100%);
}
.work-card:hover .work-thumb { background-position: center 40%; }
.work-thumb {
  transition: background-position .8s ease;
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.work-badge {
  position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
  font-family: "JetBrains Mono"; font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.3rem 0.55rem; border-radius: 999px;
  background: rgba(7,11,20,0.7); color: #c0c5cd;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
}
.work-badge-featured { background: rgba(245,158,11,0.18); color: #fbbf24; border-color: rgba(245,158,11,0.45); }

/* Project-specific thumbnails — real Unsplash photos + brand-tinted gradient overlay */
.work-thumb-01 {
  background-image:
    linear-gradient(135deg, rgba(45,122,107,0.55), rgba(26,74,66,0.35)),
    url('https://images.unsplash.com/photo-1606811971618-4486d14f3f99?w=1200&q=85&auto=format&fit=crop');
}
.work-thumb-02 {
  background-image:
    linear-gradient(135deg, rgba(15,23,42,0.55), rgba(201,169,97,0.20)),
    url('https://images.unsplash.com/photo-1589994965851-a8f479c573a9?w=1200&q=85&auto=format&fit=crop');
}
.work-thumb-03 {
  background-image:
    linear-gradient(135deg, rgba(217,119,6,0.40), rgba(92,42,31,0.50)),
    url('https://images.unsplash.com/photo-1631452180519-c014fe946bc7?w=1200&q=85&auto=format&fit=crop');
}
.work-thumb-04 {
  background-image:
    linear-gradient(135deg, rgba(0,0,0,0.55), rgba(45,58,0,0.30)),
    url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1200&q=85&auto=format&fit=crop');
}
.work-thumb-05 {
  background-image:
    linear-gradient(135deg, rgba(30,58,95,0.50), rgba(52,73,94,0.40)),
    url('https://images.unsplash.com/photo-1582407947304-fd86f028f716?w=1200&q=85&auto=format&fit=crop');
}
.work-thumb-06 {
  background-image:
    linear-gradient(135deg, rgba(30,64,175,0.45), rgba(6,182,212,0.30)),
    url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1200&q=85&auto=format&fit=crop');
}
.work-thumb-07 {
  background-image:
    linear-gradient(135deg, rgba(246,135,179,0.30), rgba(254,215,226,0.20)),
    url('https://images.unsplash.com/photo-1581594693702-fbdc51b2763b?w=1200&q=85&auto=format&fit=crop');
}

.work-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.work-tag {
  font-family: "JetBrains Mono"; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: #67e8f9;
}
.work-title {
  font-family: "Space Grotesk"; font-size: 1.25rem; font-weight: 600;
  color: #fff; line-height: 1.2; margin-top: 0.2rem; letter-spacing: -0.01em;
}
.work-desc { color: #c0c5cd; font-size: 0.9375rem; line-height: 1.55; flex: 1; }
.work-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.work-pills { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.work-pill {
  font-family: "JetBrains Mono"; font-size: 0.65rem;
  padding: 0.25rem 0.55rem; border-radius: 0.4rem;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  color: #c0c5cd;
}
.work-arrow {
  font-size: 0.8125rem; color: #22d3ee; font-weight: 500;
  white-space: nowrap; transition: transform .2s ease;
}
.work-card:hover .work-arrow { color: #67e8f9; transform: translateX(2px); }

/* ── Global WhatsApp floating action button ────────────────── */
.wa-fab {
  position: fixed;
  right: clamp(0.85rem, 2vw, 1.5rem);
  bottom: calc(clamp(0.85rem, 2vw, 1.5rem) + env(safe-area-inset-bottom, 0));
  z-index: 60;
  width: 3.5rem; height: 3.5rem;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(37,211,102,0.55), 0 0 0 1px rgba(255,255,255,0.10) inset;
  transition: transform .2s ease, box-shadow .25s ease;
  text-decoration: none;
}
.wa-fab:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 16px 40px -8px rgba(37,211,102,0.7), 0 0 0 1px rgba(255,255,255,0.18) inset; }
.wa-fab:focus-visible { outline: 3px solid rgba(37,211,102,0.6); outline-offset: 4px; }
.wa-fab svg { width: 1.6rem; height: 1.6rem; }
.wa-fab::before {
  content: ""; position: absolute; inset: -6px; border-radius: 999px;
  border: 2px solid rgba(37,211,102,0.45);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(0.9); opacity: 0.65; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .wa-fab::before { animation: none; opacity: 0; } }
@media print { .wa-fab { display: none !important; } }

/* ── Contact items ─────────────────────────────────────────── */
.contact-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transform-style: preserve-3d;
}
.contact-ic-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 0.55rem;
  background: rgba(34,211,238,0.10); border: 1px solid rgba(34,211,238,0.25);
  color: #22d3ee; flex-shrink: 0;
  transform: translateZ(20px);
}
.contact-ic-box svg { width: 1rem; height: 1rem; }


:root {
  --ring-color: rgba(192, 197, 205, 0.08);
}

html, body { background: #070b14; }

/* ── Ambient backdrop ───────────────────────────────────────── */
.stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(192,197,205,0.55) 50%, transparent 51%),
    radial-gradient(1px 1px at 80% 20%, rgba(192,197,205,0.45) 50%, transparent 51%),
    radial-gradient(1.2px 1.2px at 65% 75%, rgba(34,211,238,0.55) 50%, transparent 51%),
    radial-gradient(1px 1px at 35% 60%, rgba(245,158,11,0.45) 50%, transparent 51%),
    radial-gradient(1px 1px at 90% 85%, rgba(192,197,205,0.4) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 10% 80%, rgba(192,197,205,0.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 50% 12%, rgba(34,211,238,0.4) 50%, transparent 51%),
    radial-gradient(1px 1px at 5% 45%, rgba(192,197,205,0.45) 50%, transparent 51%),
    radial-gradient(1px 1px at 95% 55%, rgba(192,197,205,0.4) 50%, transparent 51%);
  background-repeat: no-repeat;
  opacity: 0.7;
  animation: starsDrift 60s linear infinite alternate;
}
@keyframes starsDrift {
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(0, -30px, 0); }
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(192,197,205,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(192,197,205,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.7) 30%, transparent 75%);
}

/* ── Nav ────────────────────────────────────────────────────── */
.navlink {
  font-size: 0.875rem;
  color: rgb(221 225 234 / 0.9);
  position: relative;
  padding: 0.25rem 0;
  transition: color .2s ease;
}
.navlink:hover { color: #fff; }
.navlink::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: linear-gradient(90deg, transparent, #22d3ee, transparent);
  transform: scaleX(0); transform-origin: center; transition: transform .25s ease;
}
.navlink:hover::after { transform: scaleX(1); }
.navlink.is-active { color: #fff; }
.navlink.is-active::after { transform: scaleX(1); background: linear-gradient(90deg, transparent, #22d3ee 30%, #f59e0b 70%, transparent); }
.mobilelink.is-active { background: rgba(34,211,238,0.08); color: #fff; }

.mobilelink {
  display: block; padding: 0.75rem 1rem; border-radius: 0.5rem;
  font-size: 0.95rem; color: #dde1ea;
}
.mobilelink:hover { background: rgba(255,255,255,0.04); color: #fff; }

#nav.is-scrolled nav {
  background: rgba(7, 11, 20, 0.85);
  border-color: rgba(255,255,255,0.08);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #22d3ee 0%, #06b6d4 100%);
  color: #04131a;
  box-shadow: 0 0 0 1px rgba(34,211,238,0.5) inset, 0 10px 30px -12px rgba(34,211,238,0.55);
  transition: transform .15s ease, box-shadow .25s ease, filter .2s ease;
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 0 0 1px rgba(34,211,238,0.65) inset, 0 14px 36px -10px rgba(34,211,238,0.7); }
.btn-primary:focus-visible { outline: 2px solid #22d3ee; outline-offset: 3px; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0.625rem;
  font-weight: 500;
  color: #dde1ea;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.btn-ghost:hover { border-color: rgba(34,211,238,0.4); color: #fff; background: rgba(34,211,238,0.06); }

.btn-amber {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
  color: #1a1206;
  box-shadow: 0 0 0 1px rgba(251,191,36,0.6) inset, 0 14px 36px -12px rgba(245,158,11,0.6);
  transition: transform .15s ease, filter .2s ease;
}
.btn-amber:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* ── Typography helpers ─────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #22d3ee;
}
.h2 {
  margin-top: 0.75rem;
  font-family: "Space Grotesk", Inter, system-ui;
  font-size: clamp(1.875rem, 2.4vw + 1rem, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
}
.lede {
  margin-top: 0.875rem;
  max-width: 36rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #c0c5cd;
}

/* ── Trust strip metric ─────────────────────────────────────── */
.metric { display: flex; flex-direction: column; gap: 0.25rem; }
.metric-num {
  font-family: "Space Grotesk", Inter, system-ui;
  font-size: 1.875rem; font-weight: 600;
  background: linear-gradient(180deg, #fff 0%, #c0c5cd 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
}
.metric-label { font-size: 0.8125rem; color: #9ba2ad; }

/* ── Service cards ──────────────────────────────────────────── */
.card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.card::before {
  content: ""; position: absolute; inset: -1px; border-radius: 1rem; padding: 1px;
  background: linear-gradient(135deg, rgba(34,211,238,0.5), transparent 40%, transparent 60%, rgba(245,158,11,0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .35s ease;
}
.card::after {
  content: ""; position: absolute; inset: -40% -30% auto auto; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(34,211,238,0.18), transparent 70%);
  filter: blur(24px); opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.card:hover { transform: translateY(-3px); border-color: rgba(34,211,238,0.25); }
.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; }
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 0.625rem;
  background: rgba(34,211,238,0.10);
  color: #22d3ee;
  border: 1px solid rgba(34,211,238,0.25);
  margin-bottom: 1rem;
}
.card-icon svg { width: 1.125rem; height: 1.125rem; }
.card-title { font-family: "Space Grotesk"; font-size: 1.125rem; font-weight: 600; color: #fff; margin-bottom: 0.4rem; }
.card-body { color: #c0c5cd; font-size: 0.9375rem; line-height: 1.55; }
.card-cta {
  display: inline-flex; margin-top: 1rem;
  font-size: 0.8125rem; font-weight: 500;
  color: #22d3ee;
  letter-spacing: 0.02em;
  transform: translateY(0); transition: transform .2s ease;
}
.card:hover .card-cta { transform: translateX(2px); }

/* ── Compare blocks ─────────────────────────────────────────── */
.compare {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
  overflow: hidden;
}
.compare-head { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.compare-pill {
  align-self: flex-start;
  font-family: "JetBrains Mono"; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.25rem 0.625rem; border-radius: 999px;
  border: 1px solid rgba(192,197,205,0.18); color: #9ba2ad;
}
.compare-pill-good { color: #67e8f9; border-color: rgba(34,211,238,0.35); background: rgba(34,211,238,0.08); }
.compare-title { font-family: "Space Grotesk"; font-size: 1.5rem; font-weight: 600; color: #fff; }
.compare-bad::after, .compare-good::after {
  content: ""; position: absolute; inset: -50% -10% auto auto; width: 380px; height: 380px;
  border-radius: 50%; filter: blur(80px); pointer-events: none;
}
.compare-bad::after  { background: radial-gradient(circle, rgba(239,68,68,0.10), transparent 70%); }
.compare-good::after { background: radial-gradient(circle, rgba(34,211,238,0.14), transparent 70%); }
.compare-list { display: flex; flex-direction: column; gap: 0.65rem; }
.compare-list li { display: flex; align-items: flex-start; gap: 0.65rem; color: #c0c5cd; font-size: 0.95rem; }
.compare-x, .compare-check { width: 1.05rem; height: 1.05rem; flex-shrink: 0; margin-top: 0.15rem; }
.compare-x { color: #f87171; }
.compare-check { color: #34d399; }

/* ── Stat cards ─────────────────────────────────────────────── */
.stat-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  overflow: hidden;
}
.stat-card::after {
  content: ""; position: absolute; inset: auto -30% -50% auto; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(34,211,238,0.10), transparent 70%);
  filter: blur(40px);
}
.stat-num {
  font-family: "Space Grotesk"; font-size: clamp(2rem, 1.5vw + 1.4rem, 2.75rem); font-weight: 600;
  background: linear-gradient(180deg, #fff, #c0c5cd);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
}
.stat-label { color: #c0c5cd; font-size: 0.875rem; line-height: 1.45; margin-top: 0.25rem; }

/* ── Chips ──────────────────────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: "JetBrains Mono"; font-size: 0.75rem;
  padding: 0.4rem 0.75rem; border-radius: 999px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #c0c5cd;
}

/* ── Pricing ────────────────────────────────────────────────── */
.price-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.005) 100%);
  display: flex; flex-direction: column;
}
.price-card-featured {
  border-color: rgba(245,158,11,0.35);
  background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, rgba(255,255,255,0.005) 100%);
  box-shadow: 0 30px 80px -30px rgba(245,158,11,0.35);
}
.price-name { font-family: "Space Grotesk"; font-size: 1.125rem; font-weight: 600; color: #fff; }
.price-num {
  margin-top: 0.85rem;
  font-family: "Space Grotesk"; font-size: 3rem; font-weight: 600; color: #fff; letter-spacing: -0.02em;
  line-height: 1;
}
.price-num-suffix { font-family: Inter; font-size: 0.95rem; font-weight: 500; color: #9ba2ad; margin-left: 0.25rem; }
.price-desc { color: #c0c5cd; margin-top: 0.6rem; font-size: 0.95rem; }
.price-features {
  margin-top: 1.25rem;
  display: flex; flex-direction: column; gap: 0.55rem;
  font-size: 0.9375rem; color: #dde1ea;
}
.price-features li { display: flex; align-items: flex-start; gap: 0.6rem; }
.price-check { width: 1rem; height: 1rem; color: #22d3ee; margin-top: 0.2rem; flex-shrink: 0; }

/* ── Form fields ────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field-label { font-size: 0.8125rem; color: #c0c5cd; }
.field-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.55rem;
  color: #fff;
  font-size: 0.95rem;
  transition: border-color .2s ease, background .2s ease;
}
.field-input:focus { outline: none; border-color: rgba(34,211,238,0.5); background: rgba(34,211,238,0.04); }
.field-input::placeholder { color: #777f8c; }
.contact-ic { width: 1.05rem; height: 1.05rem; color: #22d3ee; margin-top: 0.15rem; flex-shrink: 0; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer-h {
  font-family: "JetBrains Mono"; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #c0c5cd; margin-bottom: 0.85rem;
}
.footer-list { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-list a { color: #9ba2ad; transition: color .2s ease; }
.footer-list a:hover { color: #fff; }

/* ── Reveal-on-scroll ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .stars { animation: none; }
}
