/* ============================================
   TECHNOREP - Modern Gen Z AdTech Website v2
   ============================================ */

:root {
  /* Brand from logo */
  --tr-navy: #0b1e3f;
  --tr-navy-2: #14305f;
  --tr-cyan: #1fb6e8;
  --tr-green: #2ec472;
  --tr-cyan-soft: #b8e8f5;
  --tr-green-soft: #c4ebd5;

  /* Light theme base */
  --bg: #f4f5f1;
  --bg-2: #ecede7;
  --surface: #ffffff;
  --surface-2: #fafbf8;
  --ink: #0b1e3f;
  --ink-2: #2a3a5a;
  --ink-soft: #5a6b85;
  --ink-soft-2: #000000;
  --muted: #8a96a8;
  --line: rgba(11, 30, 63, 0.08);
  --line-strong: rgba(11, 30, 63, 0.16);

  /* Accent gradient */
  --grad: linear-gradient(135deg, #1fb6e8 0%, #2ec472 100%);
  --grad-r: linear-gradient(135deg, #2ec472 0%, #1fb6e8 100%);

  /* Type - Bricolage Grotesque (bold display) + Geist (clean body) + Geist Mono (labels) */
  --f-display: "Bricolage Grotesque", "Helvetica Neue", sans-serif;
  --f-sans: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: "Geist Mono", ui-monospace, monospace;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  width: 100%;
}

body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
  font-feature-settings: "ss01", "ss02", "cv01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  width: 100%;
  min-height: 100vh;
  position: relative;
  cursor: none;
}

@media (max-width: 1024px) {
  body { cursor: auto; }
}

/* Ensure main content never overflows viewport */
main {
  max-width: 100%;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: var(--tr-cyan); color: white; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transition: opacity 0.2s;
  mix-blend-mode: multiply;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--tr-navy);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1.5px solid var(--tr-navy);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s, opacity 0.2s;
}
.cursor-ring.hover {
  width: 60px; height: 60px;
  background: var(--tr-cyan);
  border-color: var(--tr-cyan);
}
@media (max-width: 1024px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ============================================
   ANIMATED LIGHT BACKGROUND v2
   - Aurora gradient mesh + animated geometric grid
   ============================================ */
.bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(at 0% 0%, #eef6fb 0%, transparent 50%),
    radial-gradient(at 100% 0%, #eef8f1 0%, transparent 50%),
    radial-gradient(at 50% 100%, #f3f4fb 0%, transparent 50%),
    var(--bg);
}

/* Aurora layers - soft, subtle, light theme */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform;
}
.aurora-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--tr-cyan) 0%, transparent 65%);
  top: -200px; left: -150px;
  opacity: 0.18;
  animation: aurora-drift-1 24s ease-in-out infinite;
}
.aurora-2 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--tr-green) 0%, transparent 65%);
  bottom: -250px; right: -200px;
  opacity: 0.16;
  animation: aurora-drift-2 28s ease-in-out infinite;
}
@keyframes aurora-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(150px, 100px) scale(1.1); }
  66% { transform: translate(80px, 200px) scale(0.95); }
}
@keyframes aurora-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-120px, -150px) scale(1.1); }
}

/* Animated dot grid that subtly shifts */
.dot-grid {
  position: absolute;
  inset: -10%;
  background-image: radial-gradient(circle, rgba(11, 30, 63, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 30%, transparent 80%);
  animation: grid-drift 40s linear infinite;
  opacity: 0.5;
}
@keyframes grid-drift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(28px, 28px); }
}

/* Floating geometric SVG shapes (cyan/green dots like the brand identity) */
.float-shapes {
  position: absolute;
  inset: 0;
}
.float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
  will-change: transform;
}
.fs-1 { width: 14px; height: 14px; background: var(--tr-cyan); top: 18%; left: 12%; animation: fs-bob 8s ease-in-out infinite; }
.fs-2 { width: 8px; height: 8px; background: var(--tr-green); top: 30%; left: 88%; animation: fs-bob 11s ease-in-out infinite 1s; }
.fs-3 { width: 20px; height: 20px; background: var(--tr-cyan); top: 70%; left: 8%; animation: fs-bob 9s ease-in-out infinite 2s; }
.fs-4 { width: 10px; height: 10px; background: var(--tr-green); top: 80%; left: 92%; animation: fs-bob 13s ease-in-out infinite 0.5s; }
.fs-5 { width: 6px; height: 6px; background: var(--tr-cyan); top: 50%; left: 50%; animation: fs-bob 10s ease-in-out infinite 1.5s; }
.fs-6 { width: 16px; height: 16px; background: var(--tr-green); top: 12%; left: 60%; animation: fs-bob 12s ease-in-out infinite 3s; }
.fs-7 { width: 9px; height: 9px; background: var(--tr-cyan); top: 60%; left: 75%; animation: fs-bob 14s ease-in-out infinite 0.8s; }

@keyframes fs-bob {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, -20px); }
  75% { transform: translate(-30px, 30px); }
}

/* Subtle noise for texture */
.noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.2 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;

  top: 20px;
  left: 50%;

  transform: translateX(-50%);

  z-index: 100;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: min(1320px, calc(100vw - 40px));

  padding: 12px 28px;

  background: rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);

  border: 1px solid rgba(255, 255, 255, 0.7);

  border-radius: 100px;
}

.nav.scrolled {
  top: 12px;

  padding: 10px 26px;

  background: rgba(255, 255, 255, 0.95);

  box-shadow:
    0 8px 32px rgba(11, 30, 63, 0.1),
    0 2px 6px rgba(11, 30, 63, 0.06);
}

/* ============================================
   LOGO
   ============================================ */

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 46px;

  flex-shrink: 0;

  position: relative;
  z-index: 2;
}

.nav-logo img {
  height: 42px;
  width: auto;

  object-fit: contain;

  display: block;

  transition:
    transform 0.3s var(--ease),
    filter 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.nav-logo:hover img {
  transform: scale(1.015);
}

/* ============================================
   NAV LINKS
   ============================================ */

.nav-links {
  display: flex;
  align-items: center;

  gap: 2px;

  margin-left: auto;
}

.nav-links a {
  position: relative;

  padding: 8px 14px;

  font-size: 13.5px;
  font-weight: 500;

  color: var(--ink-2);

  border-radius: 100px;

  transition:
    color 0.25s,
    background 0.25s,
    transform 0.25s;

  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--ink);

  background: rgba(11, 30, 63, 0.04);

  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--ink);

  background: rgba(11, 30, 63, 0.06);
}

/* ============================================
   BURGER
   ============================================ */

.nav-burger {
  display: none;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
  flex-shrink: 0;
}

.nav-burger:hover {
  background: rgba(11, 30, 63, 0.06);
}

.nav-burger span {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s;
  transform-origin: center;
}

.nav-burger span:first-child {
  transform: translateY(-5px);
}

.nav-burger span:last-child {
  transform: translateY(5px);
}

/* Active (X) state - both bars cross exactly at center */
.nav-burger.active span:first-child {
  transform: translateY(0) rotate(45deg);
}

.nav-burger.active span:last-child {
  transform: translateY(0) rotate(-45deg);
}

/* ============================================
   MOBILE
   ============================================ */

@media (max-width: 1024px) {

  .nav {
    width: calc(100vw - 24px);
    gap: 12px;
    padding: 10px 10px 10px 18px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-logo {
    height: 46px;
  }

  .nav-logo img {
    height: 38px;
  }
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 100px 32px 48px;

  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    visibility 0s linear 0.35s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    visibility 0s linear 0s;
}

.mobile-menu a {
  font-family: var(--f-display);
  font-size: clamp(24px, 5.5vw, 36px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  padding: 12px 24px;
  border-radius: 14px;
  transition: color 0.25s, background 0.25s, transform 0.2s;
  width: 100%;
  text-align: center;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  color: var(--tr-cyan);
  background: rgba(31, 182, 232, 0.07);
  transform: scale(1.02);
}

.mobile-menu a.mobile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  padding: 16px 32px;
  background: var(--tr-navy);
  color: white !important;
  border-radius: 100px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  width: auto;
  transition: background 0.25s, transform 0.25s var(--ease);
}

.mobile-menu a.mobile-cta:hover {
  background: var(--tr-cyan);
  transform: scale(1.03);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 14vw, 160px) 32px 80px;
  overflow: hidden;
  isolation: isolate;
  /* Hard clip - prevent any child from bleeding out */
  clip-path: inset(0);
}

@media (max-width: 768px) {
  .hero { padding: 100px 20px 60px; }
}
@media (max-width: 480px) {
  .hero { padding: 90px 16px 48px; }
}

/* ============================================
   HERO CAROUSEL
   ============================================ */

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* Prevent carousel from creating horizontal scroll context */
  contain: strict;
}

.hero-carousel-track {
  display: flex;
  width: max-content;
  height: 100%;
  animation: hero-carousel-scroll 90s linear infinite;
  will-change: transform;
}

.hero-slide {
  position: relative;
  width: 100vw;
  min-width: 100vw;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;

  transform: scale(1.02);

  filter:
    brightness(0.88)
    contrast(1.04)
    opacity(0.5)
    saturate(1.02);
}

/* LIGHT OVERLAY */
.hero-carousel-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(244,245,241,0.16),
      rgba(244,245,241,0.24)
    );

  z-index: 1;
}

/* CONTENT ABOVE */
.hero-inner,
.floating-cards,
.scroll-hint {
  position: relative;
  z-index: 3;
}

/* SMOOTH LOOP */
@keyframes hero-carousel-scroll {

  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-600vw);
  }
}

.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 36px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--tr-green);
  border-radius: 50%;
  position: relative;
}

.badge-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  background: var(--tr-green);
  border-radius: 50%;
  opacity: 0.4;
  animation: ping 1.8s ease-out infinite;
}

@keyframes ping {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.hero-headline {

  font-family: var(--f-display);

  font-weight: 700;

  font-size: clamp(40px, 6vw, 92px);

  line-height: 1;

  letter-spacing: -0.045em;

  color: var(--ink);

  margin-bottom: 48px;

  max-width: 1400px;
}

.hero-headline .line {
  display: block;
}

/* ============================================
   ROTATOR FIX
   ============================================ */

.rotator-wrap {

  position: relative;

  display: block;

  height: 1.12em;

  overflow: hidden;

  width: 100%;
}

.rotator {

  display: flex;

  flex-direction: column;

  animation: rotator-cycle 16s infinite;

  will-change: transform;
}

.rotator-item {

  display: block;
  text-shadow: 0 8px 16px rgba(11, 30, 63, 0.12);
  height: 1.12em;

  line-height: 1.12em;

  white-space: nowrap;

  background: var(--grad);

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
}

/* ============================================
   ANIMATION
   ============================================ */

@keyframes rotator-cycle {

  0%, 20% {
    transform: translateY(0);
  }

  25%, 45% {
    transform: translateY(-1.12em);
  }

  50%, 70% {
    transform: translateY(-2.24em);
  }

  75%, 95% {
    transform: translateY(-3.36em);
  }

  100% {
    transform: translateY(0);
  }
}

.hero-sub {

  font-size: clamp(15px, 1.3vw, 18px);

  color: var(--ink-soft-2);

  line-height: 1.65;

  max-width: 640px;

  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {

  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 12px;

  padding: 16px 24px;

  background: var(--tr-navy);

  color: white !important;

  font-size: 15px;

  font-weight: 500;

  border-radius: 100px;

  overflow: hidden;

  transition: transform 0.3s var(--ease);
}

.btn-primary::before {

  content: "";

  position: absolute;

  inset: 0;

  background: var(--grad);

  opacity: 0;

  transition: opacity 0.35s var(--ease);
}

.btn-primary > * {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: scale(1.03);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-arrow {

  width: 28px;

  height: 28px;

  border-radius: 50%;

  background: white;

  color: var(--tr-navy);

  display: flex;

  align-items: center;

  justify-content: center;

  transition: transform 0.3s var(--ease);
}

.btn-primary:hover .btn-arrow {
  transform: rotate(-45deg);
}

.btn-secondary {

  display: inline-flex;

  align-items: center;

  padding: 16px 24px;

  background: transparent;

  color: var(--ink) !important;

  font-size: 15px;

  font-weight: 500;

  border: 1px solid var(--line-strong);

  border-radius: 100px;

  transition:
    background 0.25s,
    border-color 0.25s;
}

.btn-secondary:hover {
  background: rgba(11, 30, 63, 0.04);
  border-color: var(--ink);
}

/* Floating stat cards */
.floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  padding: 18px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(11, 30, 63, 0.08);
  min-width: 200px;
  pointer-events: auto;
}

.fc-1 {
  top: 12%;
  right: -1%;
  animation: float-1 6s ease-in-out infinite;
}

.fc-2 {
  top: 60%;
  right: -10%;
  animation: float-2 7s ease-in-out infinite;
}

.fc-3 {
  top: 78%;
  right: 10%;
  animation: float-3 8s ease-in-out infinite;
}

@keyframes float-1 {
  0%,100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-14px) rotate(-2deg);
  }
}

@keyframes float-2 {
  0%,100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-18px) rotate(2deg);
  }
}

@keyframes float-3 {
  0%,100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(-1deg);
  }
}

.fc-label {
  font-family: var(--f-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
}

.fc-value {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.fc-bar {
  height: 4px;
  background: rgba(11, 30, 63, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.fc-fill {
  height: 100%;
  width: var(--w);
  background: var(--grad);
  border-radius: 2px;
  animation: fill-grow 2.5s var(--ease) 0.5s both;
}

@keyframes fill-grow {
  from {
    width: 0;
  }
}

.fc-pulse {
  display: flex;
  gap: 4px;
}

.fc-pulse span {
  width: 6px;
  height: 16px;
  background: var(--tr-cyan);
  border-radius: 2px;
  animation: pulse-bar 1.4s ease-in-out infinite;
}

.fc-pulse span:nth-child(2) {
  animation-delay: 0.2s;
  background: var(--tr-green);
}

.fc-pulse span:nth-child(3) {
  animation-delay: 0.4s;
  background: var(--tr-cyan);
}

@keyframes pulse-bar {
  0%,100% {
    transform: scaleY(0.4);
  }

  50% {
    transform: scaleY(1);
  }
}

.fc-mini {
  font-size: 11px;
  color: var(--ink-soft);
}

@media (max-width: 1100px) {
  .floating-cards {
    display: none;
  }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--ink-soft);
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--tr-cyan);
  animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ============================================
   FADE / REVEAL
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-in-up 0.9s var(--ease-out) forwards;
}
.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.2s; }
.fade-in.delay-3 { animation-delay: 0.4s; }
.fade-in.delay-4 { animation-delay: 0.55s; }
@keyframes fade-in-up { to { opacity: 1; transform: translateY(0); } }

.hero-headline .line {
  opacity: 0;
  transform: translateY(40px);
  animation: line-rise 1s var(--ease-out) forwards;
}
.hero-headline .line:nth-child(1) { animation-delay: 0.15s; }
.hero-headline .line:nth-child(2) { animation-delay: 0.3s; }
@keyframes line-rise { to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   MARQUEE
   ============================================ */
.marquee-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
.marquee {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  animation: marquee-scroll 35s linear infinite;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.marquee-track span:not(.m-dot) {
  transition: color 0.3s;
}
.marquee:hover .marquee-track span:not(.m-dot) { color: var(--tr-cyan); }
.m-dot {
  font-size: 0.4em;
  color: var(--tr-green);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION LABELS
   ============================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.sl-line {
  width: 32px;
  height: 1px;
  background: var(--tr-cyan);
}

/* ============================================
   WHO WE ARE
   ============================================ */
.who-we-are {
  padding: 120px 0 80px;
}
.who-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}
.who-heading {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.who-heading em {
  font-style: normal;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.who-right {
  padding-top: 16px;
}
.who-para {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.who-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}
.who-pills span {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  transition: all 0.3s var(--ease);
}
.who-pills span:hover {
  background: var(--tr-navy);
  color: white;
  border-color: var(--tr-navy);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .who-we-are { padding: 80px 0 60px; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 80px 0 120px;
}
.about-header {
  max-width: 800px;
  margin-bottom: 64px;
}
.about-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.about-card {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
}
.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(11, 30, 63, 0.1);
  border-color: var(--line-strong);
}
.about-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease);
}
.about-card.alt::before {
  background: var(--grad-r);
}
.about-card:hover::before { transform: scaleX(1); }

.ac-number {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}
.ac-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--tr-cyan);
  padding: 6px 12px;
  background: rgba(31, 182, 232, 0.1);
  border-radius: 100px;
  margin-bottom: 20px;
}
.about-card.alt .ac-tag {
  color: var(--tr-green);
  background: rgba(46, 196, 114, 0.1);
}
.about-card h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 32px;
}
.ac-italic {
  font-weight: 500;
  color: var(--ink-soft);
}
.ac-list {
  list-style: none;
  margin-bottom: 32px;
}
.ac-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 15px;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.ac-list li:last-child { border-bottom: none; }
.ac-bullet {
  width: 8px; height: 8px;
  background: var(--tr-cyan);
  border-radius: 50%;
  flex-shrink: 0;
}
.about-card.alt .ac-bullet { background: var(--tr-green); }

.ac-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: gap 0.3s var(--ease);
}
.ac-link:hover { gap: 14px; }

@media (max-width: 900px) {
  .about { padding: 60px 0 80px; }
  .about-cards { grid-template-columns: 1fr; }
  .about-card { padding: 28px; }
}

/* ============================================
   CAPABILITIES
   ============================================ */
.capabilities {
  padding: 120px 0;
  position: relative;
}
.cap-header {
  text-align: center;
  margin-bottom: 80px;
}
.cap-header .section-label { justify-content: center; }
.cap-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  padding-bottom: 0.1em;
}
.cap-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.05em;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.cap-item {
  position: relative;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
  overflow: hidden;
}
.cap-item::before {
  content: attr(data-num);
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.cap-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s;
}
.cap-item:hover {
  background: var(--tr-navy);
  color: white;
}
.cap-item:hover h4,
.cap-item:hover p { color: white; }
.cap-item:hover .cap-icon { color: var(--tr-cyan); transform: scale(1.1) rotate(-5deg); }
.cap-item:hover::before { color: rgba(255,255,255,0.5); }

.cap-icon {
  width: 56px; height: 56px;
  color: var(--tr-navy);
  margin-bottom: 28px;
  transition: transform 0.5s var(--ease), color 0.4s;
}
.cap-icon svg { width: 100%; height: 100%; }
.cap-item h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--ink);
  transition: color 0.4s;
}
.cap-item p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  transition: color 0.4s;
}

@media (max-width: 900px) {
  .cap-grid { grid-template-columns: 1fr 1fr; }
  .capabilities { padding: 80px 0; }
}
@media (max-width: 600px) {
  .cap-grid { grid-template-columns: 1fr; }
}

/* ============================================
   WHY TECHNOREP
   ============================================ */
.why {
  padding: 100px 0;
}
.why-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.why-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  padding-bottom: 0.08em;
}
.why-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-list { }
.why-item {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr 60px;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease);
}
.why-item:first-child { border-top: 1px solid var(--line); }
.why-item:hover { padding: 32px 24px; }
.why-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.why-item:hover::before { opacity: 1; }

.why-num {
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--tr-cyan);
  letter-spacing: 0.05em;
}
.why-text {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.why-line {
  height: 1px;
  background: var(--ink);
  width: 0;
  transition: width 0.6s var(--ease);
}
.why-item:hover .why-line { width: 100%; background: var(--tr-cyan); height: 2px; }

@media (max-width: 768px) {
  .why-header { grid-template-columns: 1fr; gap: 24px; }
  .why-item { grid-template-columns: 60px 1fr; gap: 16px; padding: 24px 0; }
  .why-item:hover { padding: 24px 16px; }
  .why-line { display: none; }
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  padding: 140px 0;
  margin: 0 32px 32px;
  border-radius: 32px;
  overflow: hidden;
  background: var(--tr-navy);
  color: white;
}
.fc-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.fc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}
.fc-orb-1 {
  width: 500px; height: 500px;
  background: var(--tr-cyan);
  top: -200px; left: -100px;
  animation: orb-float-a 18s ease-in-out infinite;
}
.fc-orb-2 {
  width: 600px; height: 600px;
  background: var(--tr-green);
  bottom: -300px; right: -150px;
  animation: orb-float-b 22s ease-in-out infinite;
}
@keyframes orb-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 100px) scale(1.15); }
}
@keyframes orb-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-100px, -80px) scale(1.1); }
}
.fc-container {
  position: relative;
  text-align: center;
  z-index: 1;
}
.fc-heading {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: white;
  margin-bottom: 32px;
  padding-bottom: 0.05em;
}
.fc-heading em {
  font-style: normal;
  background: linear-gradient(135deg, var(--tr-cyan), var(--tr-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fc-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.fc-btn {
  background: white;
  color: var(--tr-navy) !important;
}
.fc-btn .btn-arrow {
  background: var(--tr-navy);
  color: white;
}
.fc-btn:hover { transform: scale(1.04); }
.fc-btn::before {
  background: var(--grad);
}
.fc-btn:hover { color: white !important; }
.fc-btn:hover .btn-arrow { background: white; color: var(--tr-navy); }

@media (max-width: 768px) {
  .final-cta { margin: 0 16px 16px; padding: 72px 20px; }
  .fc-heading { font-size: clamp(40px, 12vw, 80px); }
}
@media (max-width: 480px) {
  .final-cta { margin: 0 8px 12px; padding: 56px 16px; border-radius: 24px; }
  .fc-heading { font-size: clamp(34px, 13vw, 64px); }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--tr-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;

  padding-bottom: 60px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  height: 44px;
  width: auto;

  margin-bottom: 20px;

  display: block;
}

.footer-brand p {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;

  color: rgba(255, 255, 255, 0.9);

  letter-spacing: -0.01em;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 32px;
}

.footer-col h5 {
  font-family: var(--f-mono);
  font-size: 11px;

  text-transform: uppercase;
  letter-spacing: 0.15em;

  color: rgba(255, 255, 255, 0.5);

  margin-bottom: 20px;

  font-weight: 500;
}

.footer-col a {
  display: block;

  font-size: 14px;

  color: rgba(255, 255, 255, 0.85);

  margin-bottom: 10px;

  transition:
    color 0.25s,
    transform 0.25s;
}

.footer-col a:hover {
  color: var(--tr-cyan);
  transform: translateX(4px);
}

/* ============================================
   FOOTER SOCIALS - UPDATED
   ============================================ */

.footer-socials {
  display: flex;
  align-items: center;

  gap: 14px;

  margin-top: 24px;
}

.footer-socials a {

  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.06);

  border: 1px solid rgba(255,255,255,0.08);

  border-radius: 50%;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: rgba(255,255,255,0.92);

  box-shadow:
    0 4px 14px rgba(0,0,0,0.12);

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease,
    color 0.3s ease;

  margin-bottom: 0;
}

.footer-socials a svg {

  width: 20px;
  height: 20px;

  opacity: 0.95;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* HOVER */
.footer-socials a:hover {

  background:
    linear-gradient(
      135deg,
      #1fb6e8 0%,
      #2ec472 100%
    );

  border-color: transparent;

  color: white;

  transform: translateY(-4px);

  box-shadow:
    0 14px 30px rgba(31,182,232,0.20),
    0 8px 18px rgba(46,196,114,0.18);
}

.footer-socials a:hover svg {
  transform: scale(1.08);
  opacity: 1;
}

.footer-bottom {
  position: relative;
  padding-top: 48px;
}

/* The big TECHNOREP wordmark - uses the actual logo (white variant) so the original brand font is preserved as the core identity */
.footer-wordmark {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 20px;
}
.footer-wordmark img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  opacity: 0.92;
  user-select: none;
  -webkit-user-drag: none;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 48px; padding-bottom: 40px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { padding-top: 40px; }
  .footer-meta { flex-direction: column; gap: 8px; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ============================================
   INTERNAL PAGE - Generic
   ============================================ */
.page-hero {
  padding: 160px 0 64px;
}
@media (max-width: 768px) {
  .page-hero { padding: 110px 0 40px; }
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.page-eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--tr-cyan);
  border-radius: 50%;
}
.page-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 1100px;
  padding-bottom: 0.1em;
}
.page-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Extra right padding so descenders/wide letters don't clip */
  padding-right: 0.05em;
  display: inline-block;
}
.page-lede {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 720px;
}

/* PRODUCT PAGE */
.intro-section {
  padding: 60px 0 100px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro-body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.intro-emphasis {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.intro-emphasis em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .intro-section { padding: 40px 0 60px; }
  .intro-body { font-size: 16px; }
}

/* ACTIVATION SECTION */
.activation {
  padding: 100px 0;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.activation-header {
  max-width: 800px;
  margin-bottom: 64px;
}
.activation-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 32px;
  padding-bottom: 0.08em;
}
.activation-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.activation-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.activation-caps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.act-cap {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.act-cap:hover {
  transform: translateY(-4px);
  border-color: var(--tr-cyan);
}
.act-cap-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.act-cap-num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--tr-cyan);
}
.act-cap h4 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.act-cap p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.activation-closing {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-align: center;
  padding: 48px 0;
}
.activation-closing span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 768px) {
  .activation-caps { grid-template-columns: 1fr; gap: 16px; }
  .activation { padding: 60px 0; }
  .act-cap { padding: 20px; }
  .act-cap h4 { font-size: 18px; }
}

/* CAMPAIGN STORY */
.campaign-story {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .campaign-story { padding: 60px 0; }
  .cs-header { margin-bottom: 48px; }
}
.cs-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cs-header .section-label { justify-content: center; }
.cs-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 0.08em;
}
.cs-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cs-intro {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cs-steps {
  position: relative;
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 48px;
}
.cs-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.cs-step:hover {
  transform: translateX(8px);
  border-color: var(--tr-cyan);
}
.cs-step-num {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.cs-step-num strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 52px;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 8px;
}
.cs-step h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}
.cs-step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.cs-result {
  margin: 48px auto 0;
  max-width: 900px;
  padding: 48px;
  background: var(--tr-navy);
  color: white;
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cs-result::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(31, 182, 232, 0.3), transparent 60%),
              radial-gradient(ellipse at bottom left, rgba(46, 196, 114, 0.3), transparent 60%);
}
.cs-result-label {
  position: relative;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--tr-cyan);
  margin-bottom: 16px;
}
.cs-result-text {
  position: relative;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

@media (max-width: 768px) {
  .cs-step { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .cs-step:hover { transform: none; }
  .cs-result { padding: 32px 24px; }
}

/* SPORTS OOH */
.sports {
  padding: 100px 0;
  position: relative;
}
.sports-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sports-left .sports-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 32px;
  padding-bottom: 0.08em;
}
.sports-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sports-lead {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.sports-right {
  display: grid;
  gap: 16px;
}
.sports-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.sports-card:hover {
  transform: translateY(-4px);
  border-color: var(--tr-green);
}
.sports-card h4 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--ink);
}
.sports-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.sports-offer {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.so-block {
  padding: 40px;
  background: var(--tr-navy);
  color: white;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.so-block::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: var(--tr-cyan);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.so-block.green::before { background: var(--tr-green); }
.so-block h4 {
  position: relative;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--tr-cyan);
  margin-bottom: 24px;
}
.so-block.green h4 { color: var(--tr-green); }
.so-block ul {
  position: relative;
  list-style: none;
}
.so-block li {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 14px;
}
.so-block li:last-child { border-bottom: none; }
.so-block li::before {
  content: "→";
  color: var(--tr-cyan);
  font-weight: 400;
  flex-shrink: 0;
}
.so-block.green li::before { color: var(--tr-green); }

.sports-closing {
  margin-top: 64px;
  text-align: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.sports-closing em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 900px) {
  .sports-grid, .sports-offer { grid-template-columns: 1fr; gap: 32px; }
  .sports { padding: 60px 0; }
  .so-block { padding: 28px; }
  .so-block li { font-size: 17px; }
  .sports-offer { margin-top: 40px; }
}
@media (max-width: 600px) {
  .so-block li { font-size: 15px; }
  .sports-closing { margin-top: 40px; }
}

/* HAVE A BRIEF */
.brief-cta {
  margin: 0 32px 64px;
  padding: 100px 48px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brief-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 30, 63, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 30, 63, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}
.brief-cta-content { position: relative; }
.brief-cta h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 24px;
  padding-bottom: 0.05em;
}
.brief-cta h2 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brief-cta p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 36px;
}

@media (max-width: 768px) {
  .brief-cta { margin: 0 16px 32px; padding: 56px 20px; border-radius: 24px; }
  .brief-cta h2 { font-size: clamp(40px, 12vw, 80px); }
}
@media (max-width: 480px) {
  .brief-cta { margin: 0 8px 24px; padding: 48px 16px; border-radius: 20px; }
}

/* TECHAIWA */
.techaiwa-hero {
  padding: 160px 0 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .techaiwa-hero { padding: 120px 0 48px; }
  .ta-title { font-size: clamp(44px, 14vw, 96px); }
  .ta-subtitle { font-size: clamp(18px, 4vw, 28px); margin-bottom: 40px; }
}
.ta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--tr-cyan);
  padding: 8px 18px;
  background: rgba(31, 182, 232, 0.1);
  border-radius: 100px;
  margin-bottom: 32px;
}
.ta-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(48px, 10vw, 160px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin-bottom: 32px;
  padding-bottom: 0.05em;
}
.ta-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ta-subtitle {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  max-width: 800px;
  margin: 0 auto 60px;
}

.ta-intro {
  padding: 80px 32px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ta-intro { padding: 48px 20px; }
}
.ta-intro p {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.ta-intro p strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05em;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.ta-split {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ta-block {
  padding: 48px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease);
}
.ta-block:hover { transform: translateY(-6px); }
.ta-block.dark {
  background: var(--tr-navy);
  color: white;
}
.ta-block.dark::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(31, 182, 232, 0.3), transparent 60%);
}
.ta-block-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 14px;
  background: rgba(31, 182, 232, 0.1);
  color: var(--tr-cyan);
  border-radius: 100px;
  margin-bottom: 28px;
  position: relative;
}
.ta-block.dark .ta-block-tag {
  background: rgba(46, 196, 114, 0.15);
  color: var(--tr-green);
}
.ta-block h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 0.05em;
}
.ta-block h3 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ta-block.dark h3 em {
  background: linear-gradient(135deg, var(--tr-cyan), var(--tr-green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ta-block p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
}
.ta-block:not(.dark) p { color: var(--ink-soft); }
.ta-block.dark p { color: rgba(255,255,255,0.8); }

@media (max-width: 900px) {
  .ta-split { grid-template-columns: 1fr; padding: 40px 0; }
  .ta-block { padding: 32px; }
}

/* LEAD GEN */
.lg-hero {
  padding: 160px 0 64px;
}
@media (max-width: 768px) {
  .lg-hero { padding: 120px 0 48px; }
  .lg-title { font-size: clamp(40px, 12vw, 100px); margin-bottom: 24px; }
  .lg-lead { font-size: clamp(17px, 4vw, 24px); }
}
.lg-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(44px, 8vw, 124px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 32px;
  padding-bottom: 0.05em;
}
.lg-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lg-lead {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink-2);
  max-width: 720px;
  margin-bottom: 16px;
}
.lg-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 680px;
  line-height: 1.6;
}

.lg-services {
  padding: 80px 0 120px;
}
.lg-section-label {
  margin-bottom: 60px;
}
.lg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
}
.lg-card {
  position: relative;
  padding: 48px;
  background: white;
  transition: background 0.5s var(--ease);
  cursor: pointer;
}
.lg-card:hover { background: var(--tr-navy); color: white; }
.lg-card:hover .lg-card-num { color: var(--tr-cyan); }
.lg-card:hover h3 { color: white; }
.lg-card:hover p { color: rgba(255,255,255,0.75); }
.lg-card:hover .lg-card-icon { color: var(--tr-cyan); transform: rotate(45deg); }

.lg-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}
.lg-card-num {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--muted);
  transition: color 0.4s;
}
.lg-card-icon {
  width: 40px; height: 40px;
  color: var(--ink);
  transition: transform 0.5s var(--ease), color 0.4s;
}
.lg-card-icon svg { width: 100%; height: 100%; }
.lg-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: var(--ink);
  transition: color 0.4s;
}
.lg-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  transition: color 0.4s;
}

@media (max-width: 768px) {
  .lg-grid { grid-template-columns: 1fr; }
  .lg-card { padding: 28px 24px; }
  .lg-card[style*="grid-column"] { grid-column: 1 !important; }
  .lg-card h3 { font-size: 22px; }
  .lg-services { padding: 48px 0 64px; }
  .lg-section-label { margin-bottom: 40px; }
}

/* CONTACT PAGE */
.contact-page {
  padding: 180px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-left { }
.contact-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 140px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 32px;
  padding-bottom: 0.05em;
}
.contact-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 540px;
}
.contact-info { }
.contact-info-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-block:last-child { border-bottom: none; }
.contact-info-label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-info-value {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.contact-info-value a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}
.contact-info-value a:hover {
  color: var(--tr-cyan);
}
.contact-info-value a svg {
  width: 24px; height: 24px;
  transition: transform 0.3s var(--ease);
}
.contact-info-value a:hover svg { transform: rotate(-45deg); }

.contact-form {
  padding: 40px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  position: sticky;
  top: 100px;
}
.form-title {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  color: var(--ink);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid transparent;
  border-radius: 12px;
  font-family: var(--f-sans);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--tr-cyan);
  background: white;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--tr-navy);
  color: white;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--f-sans);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.3s, transform 0.3s var(--ease);
}
.form-submit:hover {
  background: var(--tr-cyan);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { position: static; padding: 28px; }
  .contact-page { padding: 120px 0 60px; }
  .contact-title { font-size: clamp(48px, 14vw, 100px); }
}
@media (max-width: 480px) {
  .contact-form { padding: 20px; border-radius: 20px; }
  .contact-title { font-size: clamp(40px, 15vw, 72px); }
  .contact-lead { font-size: 15px; margin-bottom: 32px; }
  .contact-info-value { font-size: clamp(16px, 4.5vw, 22px) !important; }
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
  padding: 100px 0 120px;
  position: relative;
}

.team-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.team-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 20px;
}

.team-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.team-lead {
  font-size: clamp(15px, 1.25vw, 17px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 500px;
  margin: 0 auto;
}

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto 56px;
}

/* Card */
.team-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 1px 2px rgba(11, 30, 63, 0.04),
    0 8px 32px rgba(11, 30, 63, 0.06);
  /* transform is handled entirely by JS tilt - no CSS transition on it */
  transition: box-shadow 0.35s var(--ease-out);
  position: relative;
  isolation: isolate;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.team-card:hover {
  /* transform handled by JS tilt; only upgrade shadow on hover */
  box-shadow:
    0 4px 8px rgba(11, 30, 63, 0.05),
    0 16px 48px rgba(11, 30, 63, 0.11);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-card-inner {
  display: flex;
  flex-direction: column;
}

/* Image area */
.team-img-wrap {
  position: relative;
  background: linear-gradient(135deg, rgba(31,182,232,0.08) 0%, rgba(46,196,114,0.08) 100%);
  padding: 36px 32px 0;
  display: flex;
  justify-content: center;
}

.team-img-placeholder {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tr-cyan) 0%, var(--tr-green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
}

.team-img-placeholder.tp-alt {
  background: linear-gradient(135deg, var(--tr-green) 0%, var(--tr-cyan) 100%);
}

.tip-initials {
  font-family: var(--f-display);
  font-size: 42px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 2;
}

/* Real photo - covers the circle; initials show as fallback underneath */
.team-profile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  z-index: 3;
  display: block;
}

/* Hide initials once image loads successfully */
.team-profile-img:not([src=""]) + .tip-initials {
  display: none;
}

.tip-gradient {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
}

.tip-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: tip-pulse 3s ease-in-out infinite;
}
.tip-ring-1 {
  inset: -14px;
  border-color: rgba(31,182,232,0.3);
  animation-delay: 0s;
}
.tip-ring-2 {
  inset: -28px;
  border-color: rgba(46,196,114,0.18);
  animation-delay: 0.6s;
}
@keyframes tip-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.04); }
}

/* Role badge - floats over the image at bottom */
.team-role-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 6px 10px;
  background: var(--tr-navy);
  color: white;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(11,30,63,0.2);
  z-index: 2;
}

.role-dot {
  width: 7px;
  height: 7px;
  background: var(--tr-green);
  border-radius: 50%;
  position: relative;
}
.role-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  background: var(--tr-green);
  border-radius: 50%;
  opacity: 0.35;
  animation: ping 1.8s ease-out infinite;
}

/* Body */
.team-card-body {
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.team-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.team-name {
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}

.team-exp-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: linear-gradient(135deg, rgba(31,182,232,0.1) 0%, rgba(46,196,114,0.1) 100%);
  border: 1px solid rgba(31,182,232,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--f-mono);
  color: var(--tr-navy-2);
  white-space: nowrap;
  flex-shrink: 0;
}

.team-bio {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* Brands */
.team-brands {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tb-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--f-mono);
}

.tb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tb-list span {
  padding: 4px 10px;
  background: rgba(11,30,63,0.05);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background 0.2s, border-color 0.2s;
}

.team-card:hover .tb-list span {
  background: rgba(31,182,232,0.06);
  border-color: rgba(31,182,232,0.18);
}

/* Skills */
.team-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.team-skills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-2);
}

.team-skills span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

/* Stats strip */
.team-stats {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow: 0 4px 24px rgba(11,30,63,0.07);
}

.ts-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.ts-num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.ts-label {
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 500;
  max-width: 120px;
  line-height: 1.4;
}

.ts-divider {
  width: 1px;
  height: 48px;
  background: var(--line-strong);
  border-radius: 1px;
  margin: 0 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
  .team-card-inner {
    flex-direction: row;
    align-items: stretch;
  }
  .team-img-wrap {
    padding: 32px 24px;
    width: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 0;
  }
  .team-img-placeholder {
    width: 100px;
    height: 100px;
  }
  .tip-initials { font-size: 30px; }
  .team-role-badge { bottom: -10px; font-size: 11px; }
  .team-stats {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 28px 24px;
  }
  .ts-divider { display: none; }
}

@media (max-width: 640px) {
  .team { padding: 60px 0 80px; }
  .team-header { margin-bottom: 48px; }
  .team-card-inner { flex-direction: column; }
  .team-img-wrap { width: 100%; padding: 32px 24px 0; }
  .team-card-body { padding: 36px 24px 24px; }
  .team-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px 20px;
    border-radius: 16px;
  }
  .ts-num { font-size: clamp(24px, 7vw, 36px); }
}

/* Staggered reveal for team cards */
.team-grid .team-card.reveal:nth-child(1) { transition-delay: 0s; }
.team-grid .team-card.reveal:nth-child(2) { transition-delay: 0.1s; }

/* Utility */
.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   GLOBAL RESPONSIVE - All Screen Sizes
   ============================================ */

/* === TABLET (768px – 1024px) === */
@media (max-width: 1024px) {
  /* Hero inner */
  .hero-inner { padding: 0; }

  /* Why section */
  .why-item { grid-template-columns: 80px 1fr 40px; gap: 24px; }

  /* Final CTA */
  .final-cta { margin: 0 20px 20px; }

  /* Page hero */
  .page-hero { padding: 140px 0 60px; }
}

/* === MOBILE (max 768px) === */
@media (max-width: 768px) {
  /* Global spacing */
  section { scroll-margin-top: 80px; }

  /* Hero */
  .hero-headline { font-size: clamp(36px, 10vw, 64px); margin-bottom: 24px; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-ctas { gap: 10px; }
  .btn-primary, .btn-secondary { padding: 14px 20px; font-size: 14px; }
  .hero-badge { font-size: 12px; margin-bottom: 24px; }

  /* Marquee - slow down on mobile */
  .marquee-track { animation-duration: 20s; }

  /* Who we are */
  .who-we-are { padding: 60px 0 40px; }

  /* About */
  .about-header { margin-bottom: 40px; }
  .about-cards { gap: 16px; }
  .about-card { padding: 24px; }

  /* Capabilities */
  .capabilities { padding: 60px 0; }
  .cap-header { margin-bottom: 48px; }
  .cap-item { padding: 28px 24px; }

  /* Why */
  .why { padding: 60px 0; }
  .why-item { grid-template-columns: 56px 1fr; gap: 12px; padding: 20px 0; }
  .why-item:hover { padding: 20px 12px; }
  .why-text { font-size: clamp(18px, 4.5vw, 26px); }

  /* Final CTA */
  .final-cta { margin: 0 12px 12px; padding: 64px 20px; border-radius: 24px; }

  /* Footer */
  .footer { padding: 60px 0 20px; }
  .footer-brand p { font-size: 17px; }
  .footer-logo { height: 36px; }

  /* Page hero */
  .page-hero { padding: 110px 0 48px; }
  .page-title { font-size: clamp(40px, 11vw, 80px); }

  /* Intro grid */
  .intro-section { padding: 40px 0 60px; }

  /* Contact */
  .contact-page { padding: 120px 0 60px; }
  .contact-title { font-size: clamp(44px, 12vw, 80px); }

  /* Lead Gen */
  .lg-hero { padding: 120px 0 60px; }
  .lg-services { padding: 48px 0 80px; }
  .lg-card { padding: 28px 24px; }
  .lg-card h3 { font-size: 24px; }
}

/* === SMALL MOBILE (max 480px) === */
@media (max-width: 480px) {
  /* Container padding */
  .container { padding: 0 16px; }

  /* Nav */
  .nav { width: calc(100% - 16px); padding: 8px 8px 8px 16px; }
  .nav-logo img { height: 34px; }

  /* Hero headline small */
  .hero-headline { font-size: clamp(32px, 11vw, 52px); letter-spacing: -0.025em; }

  /* Buttons */
  .btn-primary, .btn-secondary { padding: 13px 18px; font-size: 14px; }
  .btn-arrow { width: 24px; height: 24px; }
  .btn-arrow svg { width: 13px; height: 13px; }

  /* Capabilities - single col already set, fix padding */
  .cap-item { padding: 24px 20px; }
  .cap-icon { width: 44px; height: 44px; margin-bottom: 20px; }
  .cap-item h4 { font-size: 18px; }

  /* Why */
  .why-item { grid-template-columns: 44px 1fr; gap: 10px; }
  .why-num { font-size: 12px; }

  /* About cards */
  .about-card { padding: 20px; }

  /* Footer */
  .footer-cols { gap: 24px; }
  .footer-meta { font-size: 10px; }

  /* Final CTA */
  .final-cta { margin: 0 8px 8px; padding: 56px 16px; border-radius: 20px; }
  .fc-sub { font-size: 15px; }

  /* Forms */
  .contact-form { padding: 20px; }
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 12px 14px; font-size: 14px; }

  /* TechAiWA */
  .ta-block { padding: 24px; }
  .ta-block h3 { font-size: clamp(22px, 7vw, 32px); }

  /* Lead gen cards */
  .lg-card { padding: 24px 20px; }
  .lg-card h3 { font-size: 22px; }

  /* Page hero */
  .page-hero { padding: 96px 0 40px; }
  .page-title { font-size: clamp(36px, 13vw, 64px); }
}

/* === LANDSCAPE MOBILE === */
@media (max-height: 600px) and (orientation: landscape) {
  .hero { min-height: 100svh; padding-top: 90px; padding-bottom: 40px; }
  .hero-headline { font-size: clamp(28px, 5vw, 56px); margin-bottom: 16px; }
  .hero-sub { margin-bottom: 24px; }
  .mobile-menu { padding-top: 80px; gap: 4px; }
  .mobile-menu a { font-size: clamp(22px, 4vh, 32px); padding: 6px 16px; }
}

/* === LARGE DESKTOP (1440px+) === */
@media (min-width: 1440px) {
  .hero { padding: 160px 48px 100px; }
  .hero-headline { font-size: clamp(80px, 6.5vw, 120px); }
  .who-grid { gap: 120px; }
  .about-cards { gap: 32px; }
  .cap-item { padding: 48px 40px; }
}

/* ============================================
   ANIMATION QUALITY IMPROVEMENTS
   ============================================ */

/* Smoother reveal staggering - give each reveal element its own delay based on position */
.cap-grid .cap-item.reveal:nth-child(1) { transition-delay: 0s; }
.cap-grid .cap-item.reveal:nth-child(2) { transition-delay: 0.07s; }
.cap-grid .cap-item.reveal:nth-child(3) { transition-delay: 0.14s; }
.cap-grid .cap-item.reveal:nth-child(4) { transition-delay: 0.21s; }
.cap-grid .cap-item.reveal:nth-child(5) { transition-delay: 0.28s; }
.cap-grid .cap-item.reveal:nth-child(6) { transition-delay: 0.35s; }

.why-list .why-item.reveal:nth-child(1) { transition-delay: 0s; }
.why-list .why-item.reveal:nth-child(2) { transition-delay: 0.08s; }
.why-list .why-item.reveal:nth-child(3) { transition-delay: 0.16s; }
.why-list .why-item.reveal:nth-child(4) { transition-delay: 0.24s; }

/* Better hover states on touch devices - prevent sticky hover */
@media (hover: none) {
  .cap-item:hover { background: rgba(255, 255, 255, 0.7); color: inherit; }
  .cap-item:hover h4, .cap-item:hover p { color: inherit; }
  .cap-item:hover .cap-icon { transform: none; color: var(--tr-navy); }
  .about-card:hover { transform: none; box-shadow: none; }
  .about-card:hover::before { transform: scaleX(0); }
  .why-item:hover { padding: 24px 0; }
  .why-item:hover::before { opacity: 0; }
  .who-pills span:hover { background: rgba(255, 255, 255, 0.7); color: var(--ink-2); border-color: var(--line); transform: none; }
  .nav-cta:hover { transform: none; }
  .btn-primary:hover { transform: none; }
  .btn-secondary:hover { background: transparent; }
  .lg-card:hover { background: white; color: var(--ink); }
  .lg-card:hover h3, .lg-card:hover p { color: inherit; }
  .ta-block:hover { transform: none; }
}

/* Improve text rendering on all screens */
h1, h2, h3, h4 {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}