/* ============================================
   CTRL+B — Design System & Stylesheet
   Brand-driven Agency Website
   ============================================ */

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
  /* Brand Colors */
  --color-core-black: #000000;
  --color-pure-white: #FFFFFF;
  --color-electric-blue: #122AD3;
  --color-mint-grey: #DEE7E0;
  --color-signal-lime: #F1FE68;

  /* Neutral shades */
  --color-dark-900: #0A0A0A;
  --color-dark-800: #111111;
  --color-dark-700: #1A1A1A;
  --color-dark-600: #222222;
  --color-dark-500: #333333;
  --color-grey-400: #666666;
  --color-grey-300: #999999;
  --color-grey-200: #CCCCCC;

  /* Gradients */
  --gradient-lime-blue: linear-gradient(135deg, var(--color-signal-lime), var(--color-electric-blue));
  --gradient-dark: linear-gradient(180deg, var(--color-dark-900), var(--color-core-black));
  --gradient-hero-radial: radial-gradient(ellipse at 50% 0%, rgba(18, 42, 211, 0.15) 0%, transparent 60%);
  --gradient-lime-glow: radial-gradient(circle, rgba(241, 254, 104, 0.08) 0%, transparent 70%);

  /* Typography Scale */
  --font-primary: 'Poppins', sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;
  --font-thai: 'Prompt', sans-serif;

  --fs-hero: clamp(3rem, 8vw, 7rem);
  --fs-h1: clamp(2.25rem, 5vw, 4rem);
  --fs-h2: clamp(1.75rem, 4vw, 3rem);
  --fs-h3: clamp(1.25rem, 2.5vw, 1.75rem);
  --fs-h4: clamp(1rem, 2vw, 1.25rem);
  --fs-body: clamp(0.9rem, 1.2vw, 1.05rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);
  --fs-caption: 0.75rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Layout */
  --max-width: 1280px;
  --max-width-narrow: 960px;
  --header-height: 72px;

  /* Borders & Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
  --shadow-glow-lime: 0 0 40px rgba(241, 254, 104, 0.15);
  --shadow-glow-blue: 0 0 40px rgba(18, 42, 211, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 600ms;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-core-black);
  color: var(--color-pure-white);
  line-height: 1.7;
  font-size: var(--fs-body);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-accent {
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-lime { color: var(--color-signal-lime); }
.text-blue { color: var(--color-electric-blue); }
.text-grey { color: var(--color-grey-300); }

.text-gradient {
  background: var(--gradient-lime-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--dark {
  background-color: var(--color-dark-800);
}

.section-label {
  font-family: var(--font-accent);
  font-size: var(--fs-small);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-signal-lime);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--color-signal-lime);
}

.section-title {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--color-grey-300);
  max-width: 640px;
  line-height: 1.8;
}

/* ---------- Glassmorphism Card ---------- */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(241, 254, 104, 0.15);
  box-shadow: var(--shadow-glow-lime);
  transform: translateY(-4px);
}

/* ---------- Gradient Border Card ---------- */
.gradient-border-card {
  position: relative;
  background: var(--color-dark-800);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  overflow: hidden;
}

.gradient-border-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--gradient-lime-blue);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-small);
  letter-spacing: 0.03em;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-signal-lime);
  color: var(--color-core-black);
}

.btn--primary:hover {
  background: #e6f050;
  box-shadow: 0 0 30px rgba(241, 254, 104, 0.3);
  transform: translateY(-2px);
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-pure-white);
}

.btn--outline:hover {
  border-color: var(--color-signal-lime);
  color: var(--color-signal-lime);
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.header--scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  z-index: 1001;
}

.header__logo img {
  height: 32px;
  width: auto;
}

.header__logo-plus {
  color: var(--color-signal-lime);
  font-weight: 800;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__nav-link {
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--color-grey-300);
  transition: color var(--duration-fast) var(--ease-out);
  position: relative;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-signal-lime);
  transition: width var(--duration-normal) var(--ease-out);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--color-pure-white);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  width: 100%;
}

.header__cta {
  padding: 10px 24px;
  font-size: var(--fs-caption);
}

/* Hide the CTA inside nav on desktop — the desktop CTA outside nav is visible */
.header__nav .header__cta {
  display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-pure-white);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-height);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-radial);
  z-index: 0;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 254, 104, 0.06) 0%, transparent 70%);
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-md);
}

.hero__eyebrow {
  font-family: var(--font-accent);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.3em;
  color: var(--color-signal-lime);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: 800;
  margin-bottom: var(--space-md);
  line-height: 1.05;
}

.hero__title-bold {
  position: relative;
  display: inline-block;
}

.hero__title-bold::after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  left: -0.05em;
  right: -0.05em;
  height: 0.35em;
  background: var(--color-signal-lime);
  opacity: 0.25;
  z-index: -1;
  border-radius: 2px;
}

.hero__desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--color-grey-300);
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-grey-400);
  font-size: var(--fs-caption);
  letter-spacing: 0.1em;
  animation: float 2s ease-in-out infinite;
}

.hero__scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-signal-lime), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   ABOUT / THE BOLD SYSTEM
   ============================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.about__text p {
  color: var(--color-grey-300);
  margin-bottom: var(--space-md);
  line-height: 1.9;
}

.about__text p strong {
  color: var(--color-pure-white);
  font-weight: 600;
}

.bold-system {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.bold-system__item {
  text-align: center;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all var(--duration-normal) var(--ease-out);
}

.bold-system__item:hover {
  border-color: rgba(241, 254, 104, 0.2);
  background: rgba(241, 254, 104, 0.03);
}

.bold-system__icon {
  font-size: 2rem;
  margin-bottom: var(--space-xs);
}

.bold-system__label {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.bold-system__desc {
  font-size: var(--fs-caption);
  color: var(--color-grey-400);
}

/* ============================================
   SERVICES
   ============================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.service-card {
  position: relative;
  padding: var(--space-lg) var(--space-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all var(--duration-slow) var(--ease-out);
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-lime-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.service-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(241, 254, 104, 0.12);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-lime);
}

.service-card__number {
  font-family: var(--font-accent);
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.service-card__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.service-card__title {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.service-card__desc {
  font-size: var(--fs-small);
  color: var(--color-grey-300);
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.service-card__process {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-card__step {
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-grey-300);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.service-card:hover .service-card__step {
  background: rgba(241, 254, 104, 0.08);
  color: var(--color-signal-lime);
}

/* ============================================
   WORK / CASE STUDIES
   ============================================ */
.work__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
  group: work;
}

.work-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.6) 40%,
    rgba(0, 0, 0, 0.2) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.work-card:hover .work-card__overlay {
  opacity: 1;
}

.work-card:hover .work-card__image {
  transform: scale(1.05);
}

.work-card__tag {
  font-family: var(--font-accent);
  font-size: var(--fs-caption);
  letter-spacing: 0.15em;
  color: var(--color-signal-lime);
  margin-bottom: 4px;
  text-transform: uppercase;
}

.work-card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.work-card__meta {
  font-size: var(--fs-small);
  color: var(--color-grey-300);
  line-height: 1.6;
}

/* Featured work card (full width) */
.work-card--featured {
  grid-column: span 2;
  aspect-ratio: 21 / 9;
}

/* Always-visible label on non-hover */
.work-card__label-static {
  position: absolute;
  bottom: var(--space-md);
  left: var(--space-md);
  z-index: 2;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.work-card:hover .work-card__label-static {
  opacity: 0;
}

.work-card__label-static .work-card__tag,
.work-card__label-static .work-card__title {
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Permanent dark gradient at bottom for readability */
.work-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.work-card__overlay {
  z-index: 2;
}

.work-card__label-static {
  z-index: 2;
}

/* ============================================
   STATS / EXPERIENCE SNAPSHOT
   ============================================ */
.stats {
  padding: var(--space-2xl) 0;
  background: var(--color-dark-800);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-item {
  padding: var(--space-md);
}

.stat-item__number {
  font-family: var(--font-accent);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: var(--space-xs);
  background: var(--gradient-lime-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item__label {
  font-size: var(--fs-small);
  color: var(--color-grey-300);
  font-weight: 500;
}

.stat-item__sub {
  font-size: var(--fs-caption);
  color: var(--color-grey-400);
  margin-top: 4px;
}

/* ============================================
   TEAM
   ============================================ */
.team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.team-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all var(--duration-normal) var(--ease-out);
}

.team-card:hover {
  border-color: rgba(241, 254, 104, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--color-dark-600);
}

.team-card__info {
  flex: 1;
}

.team-card__name {
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 2px;
}

.team-card__role {
  font-size: var(--fs-caption);
  color: var(--color-signal-lime);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-xs);
}

.team-card__bio {
  font-size: var(--fs-small);
  color: var(--color-grey-300);
  line-height: 1.7;
}

.team-card__brands {
  font-size: var(--fs-caption);
  color: var(--color-grey-400);
  margin-top: var(--space-xs);
  font-style: italic;
}

/* ============================================
   HOUSE OF DUCK CREATIVE
   ============================================ */
.duck-section {
  background: var(--color-dark-800);
  position: relative;
  overflow: hidden;
}

.duck-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(18, 42, 211, 0.1), transparent 70%);
  pointer-events: none;
}

.duck__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-top: var(--space-xl);
}

.duck__text h3 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.duck__text p {
  color: var(--color-grey-300);
  line-height: 1.9;
  margin-bottom: var(--space-md);
}

.duck__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.duck__visual-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-dark-600);
}

.duck__visual-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 254, 104, 0.04) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact__title {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-sm);
}

.contact__subtitle {
  font-size: var(--fs-body);
  color: var(--color-grey-300);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.contact__info {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.contact__info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact__info-label {
  font-size: var(--fs-caption);
  color: var(--color-grey-400);
}

.contact__info-value {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-pure-white);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copy {
  font-size: var(--fs-caption);
  color: var(--color-grey-400);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-grey-300);
  font-size: 1.1rem;
  transition: all var(--duration-fast) var(--ease-out);
}

.footer__social-link:hover {
  border-color: var(--color-signal-lime);
  color: var(--color-signal-lime);
  background: rgba(241, 254, 104, 0.05);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 100ms; }
.reveal--delay-2 { transition-delay: 200ms; }
.reveal--delay-3 { transition-delay: 300ms; }
.reveal--delay-4 { transition-delay: 400ms; }
.reveal--delay-5 { transition-delay: 500ms; }
.reveal--delay-6 { transition-delay: 600ms; }

/* Slide from left */
.reveal--left {
  transform: translateX(-40px);
}

.reveal--left.reveal--visible {
  transform: translateX(0);
}

/* Slide from right */
.reveal--right {
  transform: translateX(40px);
}

.reveal--right.reveal--visible {
  transform: translateX(0);
}

/* Scale up */
.reveal--scale {
  transform: scale(0.92);
}

.reveal--scale.reveal--visible {
  transform: scale(1);
}

/* ============================================
   INDUSTRIES MARQUEE
   ============================================ */
.industries-marquee {
  overflow: hidden;
  padding: var(--space-md) 0;
  position: relative;
}

.industries-marquee::before,
.industries-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.industries-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--color-core-black), transparent);
}

.industries-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--color-core-black), transparent);
}

.industries-track {
  display: flex;
  gap: var(--space-xl);
  animation: marquee 25s linear infinite;
  width: max-content;
}

.industries-track span {
  font-family: var(--font-accent);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: 0.15em;
  color: var(--color-grey-400);
  white-space: nowrap;
  text-transform: uppercase;
}

.industries-track span::after {
  content: '●';
  margin-left: var(--space-xl);
  color: var(--color-signal-lime);
  font-size: 0.5em;
  vertical-align: middle;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

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

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
  }

  /* Mobile navigation */
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--space-xl);
    gap: var(--space-md);
    transition: right var(--duration-normal) var(--ease-out);
    border-left: 1px solid rgba(255,255,255,0.05);
  }

  .header__nav.active {
    right: 0;
  }

  .header__nav-link {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: flex;
  }

  .header__cta--desktop {
    display: none;
  }

  /* Show the CTA inside nav on mobile */
  .header__nav .header__cta {
    display: inline-flex;
  }

  /* Grid adjustments */
  .services__grid {
    grid-template-columns: 1fr;
  }

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

  .work-card--featured {
    grid-column: span 1;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .team-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .bold-system {
    grid-template-columns: 1fr 1fr;
  }

  .contact__info {
    flex-direction: column;
    align-items: center;
  }

  /* Work card overlay always visible on mobile */
  .work-card__overlay {
    opacity: 1;
  }

  .work-card__label-static {
    display: none;
  }

  .hero__title {
    letter-spacing: -0.03em;
  }
}

@media (max-width: 480px) {
  .bold-system {
    grid-template-columns: 1fr;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }

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

/* ============================================
   CURSOR GLOW (hero only, desktop)
   ============================================ */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(241, 254, 104, 0.04) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-glow--active {
  opacity: 1;
}

/* ============================================
   MOBILE OVERLAY
   ============================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}
