/* ============================================================
   TECHYLENS — CLONE CSS
   Design tokens, reset, layout, all component styles
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Hanken+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Design Tokens ── */
:root {
  --ink:        #0a0b0a;
  --ink-2:      #111211;
  --lime:       #00B3FF;
  --lime-bright:#3dc4ff;
  --lime-dim:   #0990cc;
  --paper:      #f5f5f0;
  --paper-dim:  #e8e8e2;
  --fog:        #6b6d6b;
  --fog-light:  #9a9c9a;
  --border:     rgba(255,255,255,0.1);
  --border-2:   rgba(255,255,255,0.06);

  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body:    'Hanken Grotesk', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius-pill:  9999px;
  --radius-card:  1.25rem;
  --radius-sm:    0.5rem;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-circ: cubic-bezier(0, 0.55, 0.45, 1);
  --ease-in-expo:  cubic-bezier(0.7, 0, 0.84, 0);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
svg { display: block; }

/* ── Text Selection ── */
::selection        { background: #00B3FF; color: #0a0b0a; }
::-moz-selection   { background: #00B3FF; color: #0a0b0a; }

/* ── Grain Texture ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ── Custom Cursor ── */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(11, 173, 245, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo),
              height 0.3s var(--ease-out-expo),
              border-color 0.3s ease,
              background 0.3s ease;
  will-change: transform;
}
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--lime);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10001;
  transform: translate(-50%, -50%);
  will-change: transform;
}
body.cursor-hover .cursor-ring {
  width: 64px; height: 64px;
  background: rgba(11, 173, 245, 0.08);
  border-color: rgba(11, 173, 245, 0.9);
}
body.cursor-text .cursor-ring {
  width: 80px; height: 80px;
  background: var(--lime);
  border-color: var(--lime);
  mix-blend-mode: difference;
}
@media (hover: none) {
  .cursor-ring, .cursor-dot { display: none; }
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--ink);
}
#preloader .pre-glow {
  position: absolute;
  left: 50%; top: 33%;
  transform: translate(-50%, -50%);
  width: 50vw; height: 30vh;
  background: rgba(11, 173, 245, 0.12);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
#preloader .pre-logo {
  position: relative;
  opacity: 0;
  transform: scale(0.85);
}
#preloader .pre-logo svg,
#preloader .pre-logo img {
  width: 90px; height: 90px;
  color: var(--lime);
}
#preloader .pre-count {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
  margin-top: 0;
  position: relative;
  letter-spacing: -0.03em;
  tabular-nums: true;
  font-variant-numeric: tabular-nums;
}
#preloader .pre-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--fog);
  margin-top: 0.75rem;
  position: relative;
}

/* ── Layout Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px)  { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ── Navigation ── */
.site-header {
  position: fixed;
  inset-x: 0; top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100vw;
  padding: 1rem 1rem 0;
}
@media (min-width: 768px) {
  .site-header {
    padding: 1.5rem 1.5rem 0;
  }
}
.nav-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  padding: 0.5rem 0.5rem 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-2);
  background: transparent;
  transition: border-color 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
  opacity: 0;
  transform: translateY(-24px);
}
@media (min-width: 1024px) {
  .nav-pill {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }
}
.nav-pill.scrolled {
  background: rgba(10, 11, 10, 0.75);
  border-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--paper);
  flex-shrink: 0;
  z-index: 1;
}
.nav-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem; height: 2rem;
  background: var(--lime);
  border-radius: 0.55rem;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 1.6rem; height: 1.6rem; color: var(--ink); }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Nav links — pinned to horizontal centre via grid */
.nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(245, 245, 240, 0.65);
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--paper);
}

/* Right side — CTA + hamburger */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
  z-index: 1;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 1.2rem;
  background: var(--lime);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--lime-bright); }
.btn-cta svg { transition: transform 0.25s ease; }
.btn-cta:hover svg { transform: translate(2px, -2px); }
.nav-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--paper);
  transition: background 0.2s ease, opacity 0.2s ease;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.05); }
@media (min-width: 1024px) { .nav-hamburger { display: none; } }
/* Always show CTA on desktop */
.btn-cta-wrap { display: none; }
@media (min-width: 640px) { .btn-cta-wrap { display: block; } }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  padding: 7rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo), visibility 0.5s;
  visibility: hidden;
}
.mobile-drawer.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-drawer nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--paper);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-drawer-cta { margin-top: 2rem; }
.mobile-drawer-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 2.75rem; height: 2.75rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  padding-top: 5.5rem;
  padding-bottom: 15vh;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,245,240,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,245,240,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.hero-gradient-l {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,11,10,0.9) 0%, rgba(10,11,10,0.5) 50%, transparent 100%);
}
.hero-gradient-b {
  position: absolute;
  inset-x: 0; bottom: 0;
  height: 40%;
  background: linear-gradient(to top, var(--ink) 0%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  color: rgba(245,245,240,0.7);
  margin-bottom: 1.75rem;
  opacity: 0;
  max-width: 100%;
}
@media (max-width: 768px) {
  .hero-badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    white-space: normal;
  }
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  opacity: 0;
  max-width: 760px;
}
.hero-headline .accent { color: var(--lime); }
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(245,245,240,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  opacity: 0;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  background: var(--lime);
  color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 0.25s ease;
}
.btn-primary:hover { background: var(--lime-bright); }
.btn-primary svg { transition: transform 0.25s ease; }
.btn-primary:hover svg { transform: translate(2px, -2px); }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border: 1px solid var(--border);
  color: var(--paper);
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 500;
  transition: border-color 0.25s ease, background 0.25s ease;
}
@media (max-width: 768px) {
  .btn-primary, .btn-secondary {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
}
.btn-secondary:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
}
@media (max-width: 768px) {
  .hero-trust {
    display: none;
  }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--fog-light);
}
.trust-item svg { color: var(--lime); flex-shrink: 0; }
.hero-divider { width: 1px; height: 20px; background: var(--border); }

/* Hero Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
}
.scroll-indicator-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.scroll-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(208,243,103, 0.4);
  border-radius: 50%;
}
.scroll-dot {
  width: 4px;
  height: 4px;
  background: var(--lime);
  border-radius: 50%;
}
.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--fog-light);
  text-transform: uppercase;
}
.scroll-indicator-right {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
  60% { transform: translateY(-3px); }
}

/* Hover Reveal Images */
.hero-reveal-images {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.reveal-img {
  position: absolute;
  width: 280px;
  height: 380px;
  border-radius: 1rem;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  transform: scale(0.92) rotate(0deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}
.reveal-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── Ticker / Marquee ── */
.ticker-section {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 1.25rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker-inner {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 120s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: rgba(245,245,240,0.65);
}
.ticker-star {
  color: var(--lime);
  font-size: 0.8rem;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Work / Portfolio ── */
.section {
  padding: 6rem 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  }
.section-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--lime);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: rgba(245,245,240,0.6);
  max-width: 480px;
  line-height: 1.7;
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) { .work-grid { grid-template-columns: 1fr; } }
.work-card {
  position: relative;
  display: block;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-2);
  overflow: hidden;
  background: var(--ink-2);
  cursor: pointer;
  text-decoration: none;
}
.work-card:first-child { grid-row: span 1; }

.work-card-img-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.work-card-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s var(--ease-out-expo);
}
.work-card:hover .work-card-img-wrapper img {
  transform: scale(1.05);
}

.work-card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,11,10,1) 0%, rgba(10,11,10,0.4) 40%, transparent 100%);
  opacity: 1;
  transition: opacity 0.5s ease;
}
.work-card:hover .work-card-grad {
  opacity: 0;
}

.work-card-accent {
  position: absolute;
  inset: 0;
  background: var(--a);
  opacity: 0;
  transition: opacity 0.5s ease;
  overflow: hidden;
}
.work-card:hover .work-card-accent {
  opacity: 1;
}

.work-card-logo {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  opacity: 0.15;
  transition: transform 0.7s var(--ease-out-expo);
}
.work-card:hover .work-card-logo {
  transform: rotate(6deg);
}

.work-card-content {
  position: absolute;
  inset: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 10;
}

.work-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.work-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  background: rgba(10,11,10,0.6);
  color: var(--paper);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  transition: background 0.5s ease, color 0.5s ease;
}
.work-card:hover .work-pill {
  background: var(--ink);
  color: var(--a);
}

.work-year {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(245,245,240,0.8);
  transition: color 0.5s ease;
}
.work-card:hover .work-year {
  color: rgba(10,11,10,0.7);
}

.work-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.work-card-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 700;
  color: var(--paper);
  line-height: 1;
  margin: 0;
  transition: color 0.5s ease;
}
.work-card:hover .work-card-text h3 {
  color: var(--ink);
}

.work-card-text p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(245,245,240,0.6);
  margin-top: 0.5rem;
  margin-bottom: 0;
  transition: color 0.5s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.work-card:hover .work-card-text p {
  color: rgba(10,11,10,0.6);
}

.work-card-btn {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--a);
  color: var(--aon);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
.work-card:hover .work-card-btn {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--a);
}

.work-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border-2);
}
.work-card-tags span {
  font-size: 0.75rem;
  color: rgba(245,245,240,0.7);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-2);
}

/* ── Let's Build — Slide / Shake / Break ── */
.lets-build-section {
  position: relative;
  height: 100vh;
  background: var(--ink);
}
/* Fixed full-viewport flash overlay */
.lb-flash {
  position: fixed;
  inset: 0;
  background: #00B3FF;
  opacity: 0;
  pointer-events: none;
  z-index: 200;
}
/* Ripple wave — originates from viewport centre */
.lb-ripple {
  position: fixed;
  top: 50vh;
  left: 50vw;
  pointer-events: none;
  z-index: 195;
}
.lb-ripple-ring {
  position: absolute;
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  border-radius: 50%;
  border: 1px solid rgba(11, 173, 245, 0.85);
  transform: scale(0);
  opacity: 0;
  will-change: transform, opacity;
}
/* Shockwave fill — first ring is a translucent disc, not just a border */
.lb-ripple-fill {
  border: none;
  background: rgba(11, 173, 245, 0.10);
}
.lets-build-sticky {
  position: relative;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
/* Single-line headline using flex row */
.lets-build-headline {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.lb-word {
  display: inline-flex;
  overflow: visible;
}
.lb-word-accent { color: var(--lime); }
/* Char spans injected by JS */
.lb-char {
  display: inline-block;
  will-change: transform, opacity;
}
/* ── Crack canvas — positioned over the headline by JS ── */
.lb-crack-canvas {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  will-change: opacity;
}
/* ── Split slabs — two clones clipped by the crack polygon ── */
.lb-slab {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}


/* ── Services Section ── */
.services-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-2);
}
.services-list {
  position: relative;
}
.service-item {
  position: relative;
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border-2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: background-color 0.5s ease, color 0.5s ease;
  color: var(--paper);
}
.service-item:hover {
  background-color: var(--paper);
  color: var(--ink);
}

.service-left {
  display: flex;
  align-items: baseline;
  gap: 2rem;
}

.service-right {
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(245,245,240,0.4);
  transition: color 0.5s ease;
}
.service-item:hover .service-num {
  color: rgba(10,11,10,0.5);
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  white-space: nowrap;
}

.service-desc {
  font-size: 0.875rem;
  color: rgba(245,245,240,0.6);
  max-width: 380px;
  line-height: 1.5;
  transition: color 0.5s ease;
}
.service-item:hover .service-desc {
  color: rgba(10,11,10,0.7);
}

.service-arrow {
  width: 2.5rem; height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-out-expo);
  flex-shrink: 0;
}
.service-item:hover .service-arrow {
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .service-item {
    gap: 1rem;
  }
  .service-desc {
    display: none; /* Hide on smaller screens */
  }
  .service-title {
    white-space: normal;
    line-height: 1.1;
  }
  .service-right {
    gap: 0;
  }
}
@media (max-width: 768px) {
  .service-item {
    padding: 1.5rem clamp(1rem, 4vw, 1.5rem);
  }
  .service-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  .service-left {
    gap: 1rem;
  }
}

/* ── Service Hover Card ── */
.service-hover-card {
  position: fixed;
  top: 0; left: 0;
  width: 280px;
  height: 200px;
  border-radius: 16px;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  transform: scale(0.8) translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  will-change: transform, opacity;
  overflow: hidden;
}

/* Base Gradient Background */
.shc-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d0f367 0%, #91ae2c 100%);
  z-index: -2;
  transition: background 0.3s ease;
}

/* Dot Pattern Texture */
.shc-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(10,11,10,0.25) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: -1;
  opacity: 0.6;
}

.shc-top-left {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(10,11,10,0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.shc-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.shc-logo {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 90px; height: 90px;
  color: rgba(10,11,10,0.06);
  z-index: 1;
  transform: rotate(-10deg);
}
.shc-logo svg {
  width: 100%; height: 100%;
}

/* ── The Approach Section ── */
.approach-section {
  background-color: var(--paper);
  color: var(--ink);
  padding: 8rem 0;
}
.approach-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
}
.approach-sticky-col {
  position: sticky;
  top: 7rem;
  align-self: flex-start;
}
.approach-title {
  color: var(--ink);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  margin-top: 1rem;
}
.approach-sub {
  color: rgba(10,11,10,0.6);
  max-width: 400px;
  margin-top: 0;
  font-size: 1.125rem;
}
.approach-steps {
  display: flex;
  flex-direction: column;
}
.approach-step {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(10,11,10,0.1);
  padding: 2.5rem 0;
}
.approach-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(10,11,10,0.4);
  padding-top: 0.25rem;
}
.approach-step-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.approach-step-desc {
  font-size: 1.1rem;
  color: rgba(10,11,10,0.6);
  line-height: 1.6;
  max-width: 450px;
}
@media (max-width: 991px) {
  .approach-container {
    grid-template-columns: 1fr;
  }
  .approach-sticky-col {
    position: relative;
    top: 0;
    margin-bottom: 3rem;
  }
}

/* ── Stats ── */
.stats-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  padding: 2rem;
  border: 1px solid var(--border-2);
  border-radius: var(--radius-card);
  background: rgba(255,255,255,0.02);
  text-align: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.stat-item:hover {
  border-color: rgba(11, 173, 245,0.2);
  background: rgba(11, 173, 245,0.03);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(245,245,240,0.55);
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 6rem 0;
  border-top: 1px solid var(--border-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  border-color: rgba(11, 173, 245,0.15);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--lime);
  font-size: 0.875rem;
}
.testimonial-text {
  font-size: 0.9375rem;
  color: rgba(245,245,240,0.75);
  line-height: 1.7;
  margin-bottom: 0;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.author-avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ink);
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
}
.author-role {
  font-size: 0.75rem;
  color: var(--fog-light);
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border-2);
  overflow: hidden;
}
.footer-cta-section {
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  background: #00B3FF;
}
.footer-cta-glow {
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  width: 50vw; height: 40vh;
  background: radial-gradient(ellipse, rgba(255,255,255,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.footer-cta-label::before { content: ''; width: 20px; height: 1px; background: rgba(0,0,0,0.4); }
.footer-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 0;
  cursor: default;
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}
.footer-cta-headline:hover { color: var(--ink); }
.footer-cta-sub {
  font-size: 1.0625rem;
  color: rgba(0,0,0,0.55);
  margin-bottom: 2.5rem;
}
.footer-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,0.35);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s ease;
}
.footer-cta-link:hover { border-color: var(--ink); }

/* Footer Marquee Strips */
.footer-marquee-wrap {
  padding: 2rem 0;
  border-top: 1px solid var(--border-2);
  border-bottom: 1px solid var(--border-2);
  overflow: hidden;
}
.footer-marquee-inner {
  display: flex;
  width: max-content;
  animation: ticker-scroll 22s linear infinite;
}
.footer-marquee-inner.reverse {
  animation-direction: reverse;
  animation-duration: 18s;
}
.footer-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  white-space: nowrap;
}
.footer-marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,245,240,0.35);
}
.footer-marquee-item svg { color: var(--lime); opacity: 0.5; }

.footer-bottom {
  padding: 2.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--paper);
}
.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem; height: 1.75rem;
  background: var(--lime);
  border-radius: 0.45rem;
}
.footer-logo-icon svg { width: 1.4rem; height: 1.4rem; color: var(--ink); }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.footer-meta {
  font-size: 0.75rem;
  color: var(--fog);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.footer-links a {
  width: 2rem; height: 2rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,245,240,0.5);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-links a:hover {
  border-color: rgba(11, 173, 245,0.4);
  color: var(--lime);
}

/* ── Utility ── */
.hidden { display: none !important; }
.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;
}
.overflow-hidden { overflow: hidden; }

/* ── Scroll Animations Helpers ── */
[data-reveal] { opacity: 0; transform: translateY(32px); }
[data-reveal="fade"] { transform: none; }

/* ── What We Do Section ── */
.wwd-section {
  background: var(--ink);
  padding: 6rem 0;
  color: var(--paper);
}
.wwd-label {
  margin-bottom: 0;
}
.wwd-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 56rem;
  margin-bottom: 5rem;
  line-height: 1.1;
}
.wwd-title .word {
  overflow: hidden;
  display: inline-flex;
  vertical-align: bottom;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
}
.wwd-title .word-inner {
  display: inline-block;
  transform: translateY(110%);
}

.wwd-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 3rem;
}
@media (min-width: 992px) {
  .wwd-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.wwd-stat {
  opacity: 0;
  transform: translateY(24px);
}
.wwd-stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 3.75rem);
  color: var(--lime);
  line-height: 1;
}
.wwd-stat-label {
  font-size: 0.875rem;
  color: rgba(245,245,240,0.6);
  margin-top: 0.75rem;
}

/* ── Services Page Specific Styles ── */
.page-services {
  /* padding removed to allow hero bg to reach the top edge */
}
.services-hero {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 992px) {
  .services-hero {
    flex-direction: row;
    justify-content: space-between;
  }
  .sh-left {
    flex: 1;
    padding-right: 2rem;
  }
  .sh-right {
    width: 350px;
    margin-top: 0 !important;
  }
}
.sh-list-item:hover {
  background: var(--lime) !important;
  color: var(--ink) !important;
  border-color: var(--lime) !important;
}

.sd-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media (min-width: 992px) {
  .sd-grid {
    flex-direction: row;
  }
  .sd-left {
    width: 35%;
    padding-right: 4rem;
  }
  .sd-right {
    width: 65%;
  }
}
@media (max-width: 767px) {
  .sd-process-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── New Footer Styles ── */
.new-footer {
  font-family: var(--font-body);
}

.nf-marquee-wrap {
  position: relative;
  width: 100%;
}
.nf-marquee {
  display: flex;
  width: max-content;
  animation: nfMarqueeScroll 150s linear infinite;
}
.nf-marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nf-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
}
.nf-star {
  color: var(--lime);
  opacity: 0.7;
}

@keyframes nfMarqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.nf-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .nf-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.nf-col-brand {
  display: flex;
  flex-direction: column;
}
.nf-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  color: var(--paper);
}
.nf-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--lime);
  border-radius: 0.55rem;
  flex-shrink: 0;
}
.nf-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: -0.015em;
}
.nf-bio {
  margin-top: 1.25rem;
  max-width: 20rem;
  color: rgba(245,245,240,0.6);
}

.nf-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.nf-col-title {
  color: rgba(245,245,240,0.4);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}
.nf-link {
  font-size: 0.875rem;
  color: rgba(245,245,240,0.8);
  text-decoration: none;
  transition: color 0.3s;
}
.nf-link:hover {
  color: var(--lime);
}
.nf-link-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nf-icon {
  width: 1rem;
  height: 1rem;
  color: var(--lime);
}

.nf-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,245,240,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(245,245,240,0.6);
}
@media (min-width: 640px) {
  .nf-bottom {
    flex-direction: row;
  }
}
.nf-bottom-tagline {
  font-family: var(--font-mono);
  letter-spacing: 0.025em;
}

/* ── Start Conversation CTA ── */
.contact-section {
  color: var(--ink);
}
@media (min-width: 640px) {
  .contact-bottom-row {
    flex-direction: row !important;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.cta-fade-up {
  opacity: 0;
  transform: translateY(28px);
}

/* Update Hero Canvas */
.hero-canvas {
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 10;
}

/* Contact Rotating Logo */
.contact-rotating-logo {
  pointer-events: none;
  position: absolute;
  right: -6rem;
  top: -6rem;
  opacity: 0.08;
  color: #0a0b0a;
}
.contact-rotating-logo svg,
.contact-rotating-logo img {
  width: 28rem;
  height: 28rem;
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ════════════════════════════════════════════════════
     WHAT WE DO SECTION
════════════════════════════════════════════════════ */
.what-we-do-section {
  background-color: var(--ink);
  padding: 6rem 0;
}
@media (min-width: 640px) {
  .what-we-do-section {
    padding: 8rem 0;
  }
}
.wwd-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wwd-headline {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.1;
  color: var(--paper);
  margin-top: 0;
  max-width: 56rem;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) {
  .wwd-headline {
    font-size: 4rem;
  }
}
.wwd-stats {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 3rem;
}
@media (min-width: 1024px) {
  .wwd-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.wwd-number {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}
@media (min-width: 640px) {
  .wwd-number {
    font-size: 3.75rem;
  }
}
.wwd-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--fog);
}


/* Hide default system cursor */
* {
  cursor: none !important;
}

/* Let's Build Shards */
.lb-shard {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
}

/* What We Do Word Highlight */
.wwd-word {
  color: rgba(255, 255, 255, 0.15); /* Dim initial state */
}

/* ── Services Page Hero ── */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center top;
  z-index: 1;
  pointer-events: none;
  mask-image: radial-gradient(circle at center 30%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center 30%, black 20%, transparent 80%);
}

.hero-glow-orb {
  position: absolute;
  left: 50%;
  top: 0;
  height: 40vh;
  width: 70vw;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 179, 255, 0.15); /* brand blue with opacity */
  filter: blur(120px);
  z-index: 0;
  pointer-events: none;
}

.hero-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8rem; /* 32 in tailwind */
  background: linear-gradient(to top, var(--ink), transparent);
  z-index: 1;
  pointer-events: none;
}

.service-nav-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  color: var(--fog-light);
  text-decoration: none;
  transition: color 0.3s ease;
  white-space: nowrap;
}
}

/* Service Detail Overhaul Utility Classes */
.rounded-card {
  border-radius: var(--radius-card);
}
.accent-surface {
  background-color: var(--a);
}
.bg-dots {
  background-image: radial-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
}
.text-ink\\/25 {
  color: rgba(10, 11, 10, 0.25);
}
.text-ink\\/15 {
  color: rgba(10, 11, 10, 0.15);
}
.text-ink\\/70 {
  color: rgba(10, 11, 10, 0.7);
}
.text-ink {
  color: var(--ink);
}
.bg-white\\/10 {
  background-color: rgba(255,255,255,0.1);
}
.border-white\\/10 {
  border-color: rgba(255,255,255,0.1);
}
.border-white\\/15 {
  border-color: rgba(255,255,255,0.15);
}
.gap-px {
  gap: 1px;
}
.scroll-mt-28 {
  scroll-margin-top: 7rem;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.transition-transform {
  transition-property: transform;
}
.transition-opacity {
  transition-property: opacity;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
}
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

.group:hover .group-hover\\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\\:opacity-0 { opacity: 0; }
.group:hover .group-hover\\:opacity-100 { opacity: 1; }
.group:hover .group-hover\\:rotate-6 { transform: rotate(6deg); }
.group:hover .group-hover\\:text-ink\\/70 { color: rgba(10, 11, 10, 0.7); }
.group:hover .group-hover\\:text-ink { color: var(--ink); }
.group:hover .group-hover\\:bg-lime-bright { background-color: var(--lime-bright); }

/* Extracted Utilities from Navbar Digital */
.font-display { font-family: 'Bricolage Grotesque', sans-serif; }
.font-mono { font-family: var(--font-mono, monospace); }
.eyebrow {
  font-family: var(--font-mono, monospace);
  letter-spacing: .28em;
  text-transform: uppercase;
  font-size: .72rem;
}
.rounded-card { border-radius: 1.5rem; }
.bg-ink-soft { background-color: #121413; }
.text-huge { font-size: clamp(2rem, 5vw, 4.5rem); }


/* Custom Service Detail Image Hover Effects */
.sd-image-wrapper:hover .sd-base-img { transform: scale(1.05); }
.sd-image-wrapper:hover .sd-gradient-overlay { opacity: 0 !important; }
.sd-image-wrapper:hover .sd-accent-overlay { opacity: 1 !important; }
.sd-image-wrapper:hover .sd-star-icon { transform: rotate(6deg); }
.sd-image-wrapper:hover .sd-text-top { color: rgba(10, 11, 10, 0.7) !important; }
.sd-image-wrapper:hover .sd-text-bottom { color: var(--ink) !important; font-weight: 700 !important; }

@media (min-width: 769px) { .work-card-featured { grid-column: span 2; } }


/* ── CONTACT DETAILS SECTION ── */
.cd-section {
  background-color: var(--ink);
  padding: 5rem 1.5rem;
}
@media (min-width: 640px) {
  .cd-section { padding: 7rem 1.5rem; }
}

.cd-grid {
  display: grid;
  max-width: 72rem;
  margin: 0 auto;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .cd-grid { grid-template-columns: 1fr 1.1fr; }
}

.cd-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Info Cards */
.cd-info-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  background-color: var(--ink-2);
  padding: 1.25rem;
  text-decoration: none;
  transition: border-color 0.3s ease;
}
a.cd-info-card:hover {
  border-color: rgba(0, 179, 255, 0.4);
}

.cd-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(0, 179, 255, 0.1);
  color: #00b3ff;
  flex-shrink: 0;
}

.cd-info-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--fog);
  margin-bottom: 0.25rem;
}
.cd-info-value {
  color: var(--paper);
  transition: color 0.3s ease;
}
a.cd-info-card:hover .cd-info-value {
  color: #00b3ff;
}

/* Booking Card */
.cd-book-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 179, 255, 0.3);
  background: linear-gradient(to bottom right, rgba(0, 179, 255, 0.1), transparent);
  padding: 1.5rem;
}
.cd-book-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #00b3ff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.cd-book-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--paper);
  margin-top: 1rem;
}
.cd-book-desc {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--fog);
  margin-top: 0.5rem;
}
.cd-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 3.5rem;
  padding: 0 1.75rem;
  border-radius: 9999px;
  background-color: #00b3ff;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  margin-top: 1.25rem;
  transition: all 0.3s ease;
}
.cd-book-btn:hover {
  filter: brightness(1.1);
}
.cd-book-btn svg {
  transition: transform 0.3s ease;
}
.cd-book-btn:hover svg {
  transform: translate(2px, -2px);
}

/* Map Card */
.cd-map-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  height: 16rem;
}
.cd-map-card iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(1) invert(0.92) hue-rotate(180deg);
  border: none;
}

/* Form Card */
.cd-form-card {
  border-radius: var(--radius-card);
  border: 1px solid rgba(255,255,255,0.1);
  background-color: #121413;
  padding: 1.5rem;
}
@media (min-width: 640px) {
  .cd-form-card { padding: 2rem; }
}
.cd-form-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .cd-form-grid { grid-template-columns: 1fr 1fr; }
  .cd-form-col-span-2 { grid-column: span 2; }
}

.cd-input-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--fog);
}
.cd-input-label span.req {
  color: #00b3ff;
}
.cd-input {
  width: 100%;
  height: 3rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  background-color: var(--ink);
  color: var(--paper);
  padding: 0 1rem;
  margin-top: 0.5rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}
.cd-input:focus {
  outline: none;
  border-color: #00b3ff;
}
.cd-textarea {
  height: auto;
  min-height: 8rem;
  padding: 0.75rem 1rem;
  resize: none;
}
.cd-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.25rem;
  border-radius: 9999px;
  background-color: #00b3ff;
  color: var(--ink);
  font-weight: 500;
  border: none;
  cursor: pointer;
  margin-top: 0;
  transition: all 0.3s ease;
}
.cd-submit:hover {
  filter: brightness(1.1);
}
.cd-form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--fog-dim);
  margin-top: 1rem;
}


/* ── ABOUT INTRO SECTION ── */
.about-intro-section {
  background-color: var(--ink);
  padding: 6rem 1.5rem;
}
@media (min-width: 640px) {
  .about-intro-section { padding: 8rem 1.5rem; }
}

.about-intro-grid {
  display: grid;
  max-width: 72rem;
  margin: 0 auto;
  gap: 3rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.about-intro-heading {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--paper);
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.25em;
  row-gap: 0;
}
@media (min-width: 640px) {
  .about-intro-heading { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .about-intro-heading { font-size: 4rem; }
}

.about-intro-image-wrapper {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-intro-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 11, 10, 0.5), transparent, transparent);
}

.about-intro-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  border-radius: 9999px;
  background-color: #00b3ff;
  color: var(--ink);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}


/* ── ABOUT STATS SECTION ── */
.about-stats-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #121413;
  padding: 4rem 1.5rem;
}

.about-stats-grid {
  display: grid;
  max-width: 72rem;
  margin: 0 auto;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
  row-gap: 2.5rem;
}
@media (min-width: 1024px) {
  .about-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.about-stats-number {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: #00b3ff;
  font-weight: 700;
}
@media (min-width: 640px) {
  .about-stats-number {
    font-size: 3.75rem;
  }
}

.about-stats-label {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--fog);
}


/* ── ABOUT VALUES SECTION ── */
.about-values-section {
  background-color: var(--paper);
  color: var(--ink);
  padding: 6rem 1.5rem;
}
@media (min-width: 640px) {
  .about-values-section { padding: 8rem 1.5rem; }
}

.about-values-container {
  max-width: 72rem;
  margin: 0 auto;
}

.about-values-eyebrow {
  color: rgba(10, 11, 10, 0.5); /* ink/50 */
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0;
}

.about-values-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 1.25rem;
  max-width: 48rem;
}

.about-values-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid rgba(10, 11, 10, 0.1);
  background-color: rgba(10, 11, 10, 0.1);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-values-card-wrapper {
  height: 100%;
}

.about-values-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  background-color: var(--paper);
  padding: 2rem;
  transition: background-color 500ms ease;
}
.about-values-card:hover {
  background-color: #00b3ff;
}

.about-values-num {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: rgba(10, 11, 10, 0.4);
}

.about-values-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1.2;
  margin-top: 0;
}

.about-values-desc {
  color: rgba(10, 11, 10, 0.6);
  margin-top: 0.75rem;
  font-size: 1rem;
}

.about-values-dark-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  background-color: var(--ink);
  color: var(--paper);
  padding: 2rem;
}

.about-values-dark-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
}
.about-values-dark-text span {
  color: #00b3ff;
}



/* Hide Approach elements initially for GSAP right slide */
.approach-title, .approach-sub, .approach-step {
  opacity: 0;
}

/* ── Project Hero Image ── */
.project-hero-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 1.5rem; /* rounded-card */
  border: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) {
  .project-hero-image-wrap {
    aspect-ratio: 16 / 8;
  }
}
.project-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.project-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,11,10,0.7) 0%, transparent 50%, transparent 100%);
  pointer-events: none;
}
.project-hero-url {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(245,245,240,0.8);
  pointer-events: none;
}
.project-hero-btn {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--lime); /* Brand color instead of bg-lime */
  color: #0a0b0a;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.project-hero-btn:hover {
  transform: scale(1.05);
  background-color: var(--lime-bright);
}
.project-hero-icon {
  width: 1rem;
  height: 1rem;
}

/* ── Challenge & Solution ── */
.cs-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .cs-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
  }
}
.cs-content-col {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.cs-text {
  margin-top: 1rem;
  font-size: 1.25rem;
  line-height: 1.625;
  color: rgba(245,245,240,0.8);
}
.cs-sticky-panel {
  align-self: flex-start;
}
@media (min-width: 1024px) {
  .cs-sticky-panel {
    position: sticky;
    top: 7rem;
  }
}
.cs-card {
  background-color: var(--ink-soft, #161816);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.5rem;
  padding: 2rem;
}
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
  list-style: none;
  padding: 0;
}
.cs-tag {
  background-color: rgba(255,255,255,0.05);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(245,245,240,0.8);
}
.cs-card-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
  background-color: var(--lime);
  color: #0a0b0a;
  font-weight: 500;
  font-size: 0.875rem;
  height: 2.75rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.cs-btn:hover {
  background-color: var(--lime-bright);
}
.cs-btn-icon {
  width: 1.1em;
  height: 1.1em;
  transition: transform 0.3s ease;
}
.cs-btn:hover .cs-btn-icon {
  transform: translate(2px, -2px);
}

/* ── Client Review ── */
.review-section {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 6rem 0;
}
@media (min-width: 640px) {
  .review-section {
    padding: 8rem 0;
  }
}
.bg-lime {
  background-color: var(--lime); /* Cyan brand color */
}
.text-ink {
  color: var(--ink); /* Dark text */
}
.review-container {
  max-width: 56rem; /* max-w-4xl */
  margin: 0 auto;
}
.review-quote-icon {
  color: rgba(10,11,10,0.3); /* text-ink/30 */
  margin-bottom: 0;
}
.review-blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 5vw, 2.25rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
}
.review-author-block {
  margin-top: 2rem;
}
.review-author-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.review-author-title {
  font-size: 0.875rem;
  color: rgba(10,11,10,0.6); /* text-ink/60 */
}

/* ── More Work ── */
.more-work-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.more-work-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  color: var(--paper);
  margin-top: 1.25rem;
  margin-bottom: 0;
  line-height: 1.1;
}
.more-work-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .more-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.more-work-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background-color: var(--ink-soft, #161816);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  text-decoration: none;
  transition: border-color 0.3s ease;
}
.more-work-card:hover {
  border-color: rgba(0, 179, 255, 0.4); /* lime/40 equivalent for #00B3FF */
}
.more-work-img-wrap {
  position: relative;
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}
.more-work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.more-work-content {
  flex: 1;
}
.more-work-cat {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--fog);
  display: block;
}
.more-work-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  color: var(--paper);
  margin-top: 0;
  margin-bottom: 0;
  transition: color 0.3s ease;
}
.more-work-card:hover .more-work-title {
  color: var(--lime);
}
.more-work-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--lime);
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.more-work-card:hover .more-work-icon {
  transform: rotate(180deg) translateX(-4px); /* Moves it to the right visually because it's rotated */
}

/* ── All Work Back Button ── */
.all-work-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--fog);
  text-decoration: none;
  transition: color 0.3s ease;
  }
.all-work-btn:hover {
  color: var(--lime);
}
.all-work-icon {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s ease;
}
.all-work-btn:hover .all-work-icon {
  transform: translateX(-4px);
}

/* ── Project Meta Tags ── */
.project-meta-tags {
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--lime);
}
.meta-slash {
  color: var(--fog);
}

/* Footer Social Icons */
.nf-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: rgba(0, 179, 255, 0.1);
  color: #00b3ff;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
}
.nf-social-icon:hover {
  transform: translateY(-3px);
  background-color: rgba(0, 179, 255, 0.2);
}

/* Responsive Grid Classes for Services Page */
.resp-grid-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .resp-grid-main { grid-template-columns: 1fr 1fr; }
}

.resp-grid-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 1024px) {
  .resp-grid-benefits { grid-template-columns: 1fr 1fr; }
}

.resp-grid-process {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  gap: 1px;
  background-color: rgba(255,255,255,0.1);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .resp-grid-process { grid-template-columns: 1fr 1fr; }
}

/* Force image blocks to be first on mobile */
@media (max-width: 1023px) {
  .order-first-mobile {
    order: -1 !important;
  }
}


/* Keep Scrolling Indicator */
.keep-scrolling-indicator {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 45;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.1s ease;
}
.keep-scrolling-indicator.hidden {
  opacity: 0;
  visibility: hidden;
}
.ks-text {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--lime);
  text-transform: uppercase;
  animation: ksBounce 2s infinite ease-in-out;
}
.ks-line {
  width: 1px;
  height: 24px;
  background: var(--lime);
  opacity: 0.5;
}
@keyframes ksBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
