﻿/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --bg:           #080808;
  --bg-surface:   #0f0f0f;
  --bg-card:      #111111;
  --text:         #FFFFFF;
  --muted:        rgba(255, 255, 255, 0.4);
  --muted-2:      rgba(255, 255, 255, 0.12);
  --accent-gold:  #FF2D78;
  --accent-teal:  #2DD4BF;
  --border:       rgba(255, 255, 255, 0.07);
  --border-hover: rgba(200, 169, 110, 0.4);

  --font-display: 'DM Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --radius:       12px;
  --transition:   0.3s ease;

  --section-gap: 130px;
  --container:   1200px;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ─── Grain ──────────────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 9998;
  animation: grainShift 0.15s steps(2) infinite;
}
@keyframes grainShift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-3%, 2%); }
  50%  { transform: translate(2%, -3%); }
  75%  { transform: translate(-2%, -2%); }
  100% { transform: translate(3%, 1%); }
}

/* ─── Utilities ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.section { padding-block: var(--section-gap); }
.contact.section {
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255,45,120,0.09) 0%, transparent 65%), var(--bg);
}
.contact.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 48px;
}

/* ─── Scroll progress bar ────────────────────────────────────── */
.scroll-bar {
  position: fixed; top: 0; left: 0;
  height: 1.5px; width: 0%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
  z-index: 9999; pointer-events: none;
}

/* ─── Custom cursor ──────────────────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9997;
}
.cursor__dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid rgba(200, 169, 110, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.35s cubic-bezier(0.16,1,0.3,1),
              height 0.35s cubic-bezier(0.16,1,0.3,1),
              border-color 0.35s ease;
}
body.cursor--hover .cursor__ring {
  width: 56px; height: 56px;
  border-color: var(--accent-gold);
}
@media (hover: none) { .cursor { display: none; } }

/* ─── Button ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, transform 0.2s ease;
  cursor: pointer;
  will-change: transform;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--accent-gold);
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.btn:hover { color: var(--bg); }
.btn:hover::before { transform: translateY(0); }

/* ─── Fade-in ────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* SEO-only h1 — canvas renders the actual visible text */
.hero__wordmark--seo {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px clamp(24px, 5vw, 80px);
  transition: background var(--transition), border-bottom var(--transition),
              backdrop-filter var(--transition), padding var(--transition);
}
.nav.scrolled {
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding-block: 14px;
}
.nav.scrolled .nav__cta {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}
.nav.scrolled .nav__cta:hover {
  background: var(--accent-gold);
  color: var(--bg);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
}
.nav__descriptor {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text);
  text-transform: uppercase;
}
.nav__clock-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__clock-dot {
  width: 8px; height: 8px;
  fill: var(--accent-gold);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
.nav__clock {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.nav__cta {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 20px;
  border-radius: 2px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.nav__cta:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

/* ─── Mobile Overlay ─────────────────────────────────────────── */
.nav-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 40px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay__close {
  position: absolute; top: 28px; right: 28px;
  font-size: 32px; color: var(--muted);
  transition: color var(--transition);
}
.nav-overlay__close:hover { color: var(--text); }
.nav-overlay__links { display: flex; flex-direction: column; align-items: center; gap: 36px; }
.nav-overlay__link {
  font-family: var(--font-display);
  font-size: clamp(36px, 10vw, 58px);
  font-weight: 300; color: var(--accent-gold);
  transition: color var(--transition);
}
.nav-overlay__link:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════════════════
   HERO — full screen, centered, canvas background
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%; min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
/* Mouse-tracking ambient glow */
.hero__glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,120,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.15s ease, top 0.15s ease;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 40px; left: clamp(24px, 5vw, 80px);
  display: flex; align-items: center; gap: 16px;
  z-index: 1;
  opacity: 0;
  animation: fadeInUp 1s ease 1.8s forwards;
}
.hero__scroll-hint span {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 48px; height: 1px;
  background: var(--muted-2); position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--accent-gold);
  animation: scrollSlide 2s ease-in-out 2s infinite;
}
@keyframes scrollSlide {
  0%   { left: -100%; }
  50%  { left: 0%; }
  100% { left: 100%; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Marquee ────────────────────────────────────────────────── */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 18px;
  overflow: hidden;
  background: var(--bg-surface);
}
.marquee-inner {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-set {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-set span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding-inline: 28px;
  transition: color 0.2s ease;
}
.marquee-sep { color: var(--accent-gold) !important; padding-inline: 0 !important; font-size: 9px !important; }
.marquee-section:hover .marquee-inner { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-dist, -50%)); }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES — horizontal side-scroll (offground pattern)
═══════════════════════════════════════════════════════════════ */
.services-scroll {
  height: 600vh;
  position: relative;
}
.services-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}

/* Top header — dots + progress line */
.services-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
  padding: 70px clamp(24px, 5vw, 80px) 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  pointer-events: none;
}
.services-header__dots {
  display: flex;
  gap: 40px;
}
.svc-dot {
  display: flex;
  align-items: center;
  gap: 10px;
}
.svc-dot__fill {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--muted-2);
  transition: background 0.4s ease, transform 0.4s ease;
}
.svc-dot.active .svc-dot__fill {
  background: var(--accent-gold);
  transform: scale(1.4);
}
.svc-dot span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color 0.4s ease;
}
.svc-dot.active span { color: var(--muted); }

/* Horizontal progress line */
.services-header__progress {
  width: 120px;
  height: 1px;
  background: var(--border);
  position: relative;
}
.services-header__progress-bar {
  position: absolute;
  top: 0; left: 0; height: 100%;
  width: 0%;
  background: var(--accent-gold);
  transition: width 0.08s linear;
}

/* Horizontal slide strip */
.slides-container {
  display: flex;
  height: 100%;
  will-change: transform;
}

/* Each slide occupies one viewport width */
.slide-ele {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.slide-ele__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(70px, 8.4vw, 126px) clamp(16px, 3.5vw, 56px);
  align-items: center;
  height: 100%;
}
.slide-ele__text-wrap--1 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 112px;
  padding-bottom: 56px;
  height: 100%;
  max-width: 360px;
}
.slide-ele__text-wrap--2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 70px;
  height: 100%;
  max-width: 360px;
}
.slide-ele__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide-ele .eyebrow { margin-bottom: 28px; }
.slide-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}
.slide-headline em {
  font-style: italic;
  color: var(--accent-gold);
}
.slide-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
}
.slide-list-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 24px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}
.service-list li {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  color: var(--muted);
  padding-block: 16px;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s ease;
  cursor: default;
}
.service-list li:first-child { border-top: 1px solid var(--border); }
.service-list li:hover { color: var(--text); }
.slide-arrow {
  color: var(--accent-gold);
  opacity: 0.35;
}

/* ─── Visual: Browser Mockup (Website Design) ───────────────── */
.vis-browser {
  position: relative;
  width: clamp(260px, 26vw, 420px);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,45,120,0.08),
    0 40px 80px rgba(0,0,0,0.6),
    0 0 80px rgba(255,45,120,0.05);
  animation: browserFloat 9s ease-in-out infinite;
}
@keyframes browserFloat {
  0%   { transform: translateY(0px) rotate(-2deg); }
  20%  { transform: translateY(-18px) rotate(-0.8deg); }
  45%  { transform: translateY(-10px) rotate(-2.5deg); }
  70%  { transform: translateY(-22px) rotate(-1.2deg); }
  100% { transform: translateY(0px) rotate(-2deg); }
}

.vis-browser__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vis-browser__dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.vis-browser__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.vis-browser__dots span:first-child { background: #FF2D78; opacity: 0.8; }
.vis-browser__url {
  flex: 1;
  height: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 5px;
  font-size: 9px;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  padding-left: 10px;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
}

.vis-browser__body {
  padding: 14px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vis-browser__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vis-browser__nav-logo {
  width: 56px; height: 7px;
  background: #FF2D78;
  border-radius: 4px;
  opacity: 0.7;
}
.vis-browser__nav-links {
  display: flex;
  gap: 8px;
}
.vis-browser__nav-links span {
  width: 26px; height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.vis-browser__nav-active {
  background: rgba(255,45,120,0.5) !important;
}

.vis-browser__hero {
  height: 90px;
  background: linear-gradient(135deg, rgba(255,45,120,0.12) 0%, rgba(45,212,191,0.07) 100%);
  border: 1px solid rgba(255,45,120,0.12);
  border-radius: 9px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  position: relative;
  overflow: hidden;
}
.vis-browser__hero::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: shimmer 3s ease-in-out 0.5s infinite;
}
.vis-browser__hero-text {
  width: 65%; height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}
.vis-browser__hero-text--sm {
  width: 45%; height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}
.vis-browser__hero-btn {
  width: 52px; height: 18px;
  background: #FF2D78;
  border-radius: 4px;
  opacity: 0.8;
  margin-top: 4px;
}

.vis-browser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.vis-browser__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: cardBorderPulse 4s ease-in-out infinite;
}
.vis-browser__card:nth-child(2) { animation-delay: 1.3s; }
.vis-browser__card:nth-child(3) { animation-delay: 2.6s; }
@keyframes cardBorderPulse {
  0%, 100% { border-color: rgba(255,255,255,0.06); }
  50%       { border-color: rgba(255,45,120,0.28); }
}
.vis-browser__card-line {
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}
.vis-browser__card-line--sm {
  width: 60%;
  background: rgba(255,255,255,0.06);
}

.vis-browser__cursor {
  position: absolute;
  width: 9px; height: 9px;
  background: #FF2D78;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,45,120,0.9), 0 0 22px rgba(255,45,120,0.5);
  animation: cursorPath 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}
@keyframes cursorPath {
  0%   { top: 38%; left: 22%; opacity: 1; }
  12%  { top: 52%; left: 68%; opacity: 1; }
  25%  { top: 74%; left: 50%; opacity: 0.4; }
  26%  { top: 30%; left: 30%; opacity: 0.4; }
  27%  { top: 30%; left: 30%; opacity: 1; }
  42%  { top: 44%; left: 78%; opacity: 1; }
  56%  { top: 68%; left: 20%; opacity: 1; }
  70%  { top: 56%; left: 55%; opacity: 1; }
  85%  { top: 78%; left: 72%; opacity: 0.4; }
  86%  { top: 38%; left: 22%; opacity: 0.4; }
  87%  { top: 38%; left: 22%; opacity: 1; }
  100% { top: 38%; left: 22%; opacity: 1; }
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 200%; }
}

/* ─── Visual: Social Cards (Social Media) ────────────────────── */
.vis-social {
  position: relative;
  width: clamp(220px, 24vw, 360px);
  height: clamp(280px, 32vw, 460px);
}
.vis-social__card {
  position: absolute;
  width: 78%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}
.vis-social__card--back {
  bottom: 0; right: 0;
  border-color: rgba(45,212,191,0.15);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 40px rgba(45,212,191,0.06);
  animation: cardBackFloat 9s ease-in-out infinite;
}
.vis-social__card--front {
  top: 0; left: 0;
  border-color: rgba(255,45,120,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), 0 0 50px rgba(255,45,120,0.08);
  animation: cardFrontFloat 7s ease-in-out infinite;
  z-index: 1;
}
@keyframes cardBackFloat {
  0%   { transform: rotate(5deg) translateY(0px); }
  30%  { transform: rotate(7deg) translateY(-14px); }
  60%  { transform: rotate(4deg) translateY(-6px); }
  100% { transform: rotate(5deg) translateY(0px); }
}
@keyframes cardFrontFloat {
  0%   { transform: rotate(-3deg) translateY(0px); }
  25%  { transform: rotate(-1.5deg) translateY(-18px); }
  55%  { transform: rotate(-4.5deg) translateY(-8px); }
  80%  { transform: rotate(-2deg) translateY(-16px); }
  100% { transform: rotate(-3deg) translateY(0px); }
}

.vis-social__img {
  height: 110px;
  position: relative;
  overflow: hidden;
}
.vis-social__img--pink {
  background: linear-gradient(135deg, rgba(255,45,120,0.3) 0%, rgba(255,45,120,0.08) 60%, rgba(45,212,191,0.1) 100%);
}
.vis-social__img--teal {
  background: linear-gradient(135deg, rgba(45,212,191,0.3) 0%, rgba(45,212,191,0.08) 60%, rgba(255,45,120,0.08) 100%);
}
.vis-social__img::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: shimmer 2.8s ease-in-out infinite;
}

.vis-social__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px 6px;
}
.vis-social__avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vis-social__avatar--pink {
  background: linear-gradient(135deg, #FF2D78, #ff85b0);
}
.vis-social__avatar--teal {
  background: linear-gradient(135deg, #2DD4BF, #6ee7da);
}
.vis-social__lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.vis-social__lines span {
  height: 5px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
}
.vis-social__lines span:first-child { width: 65%; }
.vis-social__lines span:last-child  { width: 40%; background: rgba(255,255,255,0.06); }

.vis-social__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 12px;
}
.vis-social__icon {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
}
.vis-social__icon--liked {
  color: #FF2D78;
  animation: heartPulse 2.2s ease-in-out infinite;
}
.vis-social__icon--comment { font-size: 12px; }
.vis-social__count {
  font-size: 10px;
  font-family: var(--font-body);
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
  margin-left: auto;
}
@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  15%       { transform: scale(1.5); }
  30%       { transform: scale(0.92); }
  45%       { transform: scale(1.25); }
  60%       { transform: scale(1); }
}

.vis-social__notif {
  position: absolute;
  top: 12px; right: 12px;
  width: 10px; height: 10px;
  background: #FF2D78;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255,45,120,0.5);
  animation: notifPing 2.5s ease-out infinite;
}
@keyframes notifPing {
  0%   { box-shadow: 0 0 0 0 rgba(255,45,120,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,45,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,120,0); }
}

/* ─── Visual: Automation Network ────────────────────────────── */
.vis-automation {
  position: relative;
  width: clamp(240px, 24vw, 340px);
  height: clamp(240px, 24vw, 340px);
  flex-shrink: 0;
}
.vis-auto__svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  overflow: visible;
}
.vis-auto__line {
  stroke: rgba(45,212,191,0.22);
  stroke-width: 1;
  fill: none;
  animation: autoLineGlow 3s ease-in-out infinite;
}
.vis-auto__line--cross {
  stroke: rgba(255,45,120,0.12);
}
.vis-auto__line:nth-child(1) { animation-delay: 0s; }
.vis-auto__line:nth-child(2) { animation-delay: 0.5s; }
.vis-auto__line:nth-child(3) { animation-delay: 1.0s; }
.vis-auto__line:nth-child(4) { animation-delay: 1.5s; }
.vis-auto__line:nth-child(5) { animation-delay: 2.0s; }
.vis-auto__line:nth-child(6) { animation-delay: 2.5s; }
.vis-auto__line:nth-child(7) { animation-delay: 0.8s; }
.vis-auto__line:nth-child(8) { animation-delay: 1.6s; }
.vis-auto__line:nth-child(9) { animation-delay: 2.4s; }
@keyframes autoLineGlow {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}
.vis-auto__center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(45,212,191,0.12);
  border: 1px solid rgba(45,212,191,0.5);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 0 28px rgba(45,212,191,0.18), 0 0 60px rgba(45,212,191,0.06);
  animation: autoCenterPulse 3s ease-in-out infinite;
}
@keyframes autoCenterPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(45,212,191,0.12), 0 0 50px rgba(45,212,191,0.04); }
  50%       { box-shadow: 0 0 38px rgba(45,212,191,0.32), 0 0 72px rgba(45,212,191,0.12); }
}
.vis-auto__center-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent-teal);
  line-height: 1.4;
}
.vis-auto__travel-dot {
  fill: var(--accent-teal);
  filter: drop-shadow(0 0 3px rgba(45,212,191,0.9));
}
.vis-auto__node {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--muted);
  white-space: nowrap;
}
.vis-auto__node--teal {
  border-color: rgba(45,212,191,0.30);
  color: rgba(45,212,191,0.85);
}
.vis-auto__node--pink {
  border-color: rgba(255,45,120,0.25);
  color: rgba(255,45,120,0.80);
}
.vis-auto__node--1 { top:  3%; left: 50%; animation: autoF1 8.0s ease-in-out infinite; }
.vis-auto__node--2 { top: 22%; left: 83%; animation: autoF2 7.0s ease-in-out infinite; }
.vis-auto__node--3 { top: 63%; left: 83%; animation: autoF3 9.0s ease-in-out infinite; }
.vis-auto__node--4 { top: 82%; left: 50%; animation: autoF4 6.5s ease-in-out infinite; }
.vis-auto__node--5 { top: 63%; left: 17%; animation: autoF5 8.5s ease-in-out infinite; }
.vis-auto__node--6 { top: 22%; left: 17%; animation: autoF6 7.5s ease-in-out infinite; }
@keyframes autoF1 { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,calc(-50% - 8px))} }
@keyframes autoF2 { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,calc(-50% + 9px))} }
@keyframes autoF3 { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,calc(-50% - 10px))} }
@keyframes autoF4 { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,calc(-50% + 7px))} }
@keyframes autoF5 { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,calc(-50% - 9px))} }
@keyframes autoF6 { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,calc(-50% + 8px))} }

/* ═══════════════════════════════════════════════════════════════
   WORD SLIDE — scroll-driven horizontal reveal
═══════════════════════════════════════════════════════════════ */
.tagline-section {
  padding-block: var(--section-gap);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--border);
}
#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.tagline-content {
  position: relative;
  z-index: 1;
}
.tagline-words {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 4vw, 64px);
}
.word-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(1em, 3vw, 3em);
}
.word-group {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 96px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  will-change: transform, opacity;
  opacity: 0;
}
.word-group.in-view {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* ─── Stats ──────────────────────────────────────────────────── */
.stats {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 90px;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(24px, 5vw, 80px);
}
.stat {
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 82px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat__plus {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--accent-gold);
  vertical-align: top;
  line-height: 1.2;
}
.stat__label {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
}

/* ─── Work ───────────────────────────────────────────────────── */
.work__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.work__divider {
  width: 40px; height: 2px;
  background: var(--accent-gold);
  border-radius: 1px;
  margin-bottom: 16px;
}
.work__headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400; color: var(--text);
  line-height: 1.2; margin: 0;
}
.work__subtitle {
  font-size: 14px; color: var(--muted);
  max-width: 240px; text-align: right;
  line-height: 1.7; margin: 0;
}
.work__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.work-card {
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.work-card:hover { transform: translateY(-6px); }
.work-card__img {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
  transform: translateZ(0);
}
.work-card__img svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.work-card__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.work-card__reveal {
  position: absolute; inset: 0;
  background: var(--bg); z-index: 1;
  transform-origin: bottom;
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.work-card.revealed .work-card__reveal { transform: scaleY(0); }
.work-card__img--1 { background: linear-gradient(135deg, #0d0005 0%, #080408 100%); }
.work-card__img--2 { background: #080808; }
.work-card__img--3 { background: linear-gradient(135deg, #050810 0%, #040708 100%); }
.work-card__overlay {
  position: absolute; inset: 0;
  background: rgba(8,8,8,0.84);
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 24px;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: var(--radius);
  z-index: 2;
}
.work-card:hover .work-card__overlay { opacity: 1; }
.work-card__overlay-tag {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}
.work-card__overlay-tag--teal { color: var(--accent-teal); }
.work-card__overlay-tag--blue { color: #378ADD; }
.work-card__overlay-title {
  font-size: 15px; font-weight: 500;
  color: var(--text); margin: 0 0 10px;
  line-height: 1.4;
}
.work-card__overlay-desc {
  font-size: 12px; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin: 0 0 18px;
}
.work-card__overlay-btn {
  font-size: 11px; font-weight: 500;
  padding: 7px 16px; border-radius: 20px;
  border: 1px solid rgba(255,45,120,0.45);
  color: var(--accent-gold);
  background: transparent;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s;
}
.work-card__overlay-btn:hover { background: rgba(255,45,120,0.15); }
.work-card__overlay-btn--teal {
  border-color: rgba(45,212,191,0.45);
  color: var(--accent-teal);
}
.work-card__overlay-btn--teal:hover { background: rgba(45,212,191,0.12); }
.work-card__overlay-btn--blue {
  border-color: rgba(55,138,221,0.45);
  color: #378ADD;
}
.work-card__overlay-btn--blue:hover { background: rgba(55,138,221,0.12); }
.work-card__info { padding: 16px 4px 20px; }
.work-card__tag {
  display: block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
}
.work-card__tag--teal { color: var(--accent-teal); }
.work-card__tag--blue { color: #378ADD; }
.work-card__badge {
  font-size: 10px; font-weight: 500;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.04em;
  background: rgba(255,45,120,0.08);
  color: rgba(255,45,120,0.65);
  border: 1px solid rgba(255,45,120,0.2);
}
.work-card__badge--teal {
  background: rgba(45,212,191,0.08);
  color: rgba(45,212,191,0.65);
  border-color: rgba(45,212,191,0.2);
}
.work-card__badge--blue {
  background: rgba(55,138,221,0.08);
  color: rgba(55,138,221,0.65);
  border-color: rgba(55,138,221,0.2);
}
.work-card__title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 400; color: var(--text);
  margin: 0 0 4px;
}
.work-card__sub {
  font-size: 12px; color: var(--muted); margin: 0 0 10px;
}
.work__footer {
  display: flex; justify-content: center;
  margin-top: 64px;
}
.work__cta { text-decoration: none; }

/* ─── Contact ────────────────────────────────────────────────── */
.contact__inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}
.contact__headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.contact__sub { font-size: 15px; font-weight: 300; color: var(--muted); margin-bottom: 52px; }

/* ─── Form ───────────────────────────────────────────────────── */
.form { text-align: left; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form__field { position: relative; }
.form__field input {
  width: 100%; background: var(--bg-surface);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 22px 18px 10px;
  color: var(--text); font-size: 15px; font-weight: 300;
  outline: none; transition: border-color 0.3s ease;
}
.form__field input:focus { border-color: rgba(255,45,120,0.5); }
.form__field label {
  position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%);
  font-size: 14px; font-weight: 300; color: var(--muted);
  pointer-events: none;
  transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}
.form__field input:focus ~ label,
.form__field input:not(:placeholder-shown) ~ label {
  top: 10px; transform: none;
  font-size: 10px; color: var(--accent-gold);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.form__textarea {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 16px 18px;
  color: var(--text);
  font-size: 15px;
  font-weight: 300;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s ease;
  resize: vertical;
  min-height: 140px;
}
.form__textarea:focus { border-color: rgba(255,45,120,0.5); }
.form__textarea::placeholder { color: var(--muted); font-weight: 300; }
.form .btn { margin-top: 28px; width: 100%; text-align: center; }
.form__success { margin-top: 16px; font-size: 14px; color: var(--accent-teal); text-align: center; min-height: 20px; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  margin-top: 80px;
}
.footer__copy {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 14px 0;
  margin: 0;
}
.footer__img-wrap {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.footer__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.35);
  pointer-events: none;
}
.footer__banner {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

/* ─── About / Story ──────────────────────────────────────────── */
.about { border-top: 1px solid var(--border); }
.about__intro {
  max-width: 720px;
  margin-bottom: 72px;
}
.about__intro .eyebrow { margin-bottom: 24px; }
.about__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.about__headline em { font-style: italic; color: var(--accent-gold); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.about__body {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about__details {
  display: flex;
  flex-direction: column;
  margin: 40px 0 48px;
  border-top: 1px solid var(--border);
}
.about__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 16px;
  border-bottom: 1px solid var(--border);
  gap: 24px;
}
.about__detail-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  flex-shrink: 0;
}
.about__detail-value {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  text-align: right;
}
.about__visual-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__monogram {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__monogram-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,45,120,0.3);
  animation: aboutRingPulse 4s ease-in-out infinite;
}
.about__monogram-ring--1 { width: 160px; height: 160px; animation-delay: 0s; }
.about__monogram-ring--2 { width: 240px; height: 240px; animation-delay: 1.2s; }
.about__monogram-ring--3 { width: 320px; height: 320px; animation-delay: 2.4s; }
@keyframes aboutRingPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.about__monogram-glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,45,120,0.22) 0%, transparent 70%);
}
.about__monogram-letter {
  font-family: var(--font-display);
  font-size: 180px;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,45,120,0.8);
  text-shadow: 0 0 60px rgba(255,45,120,0.25);
  line-height: 1;
  position: relative;
  z-index: 1;
  user-select: none;
  letter-spacing: -0.05em;
}

/* ─── Process ────────────────────────────────────────────────── */
.process { border-top: 1px solid var(--border); }
.process__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: end;
  margin-bottom: 72px;
}
.process__header .eyebrow { margin-bottom: 20px; }
.process__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}
.process__headline em { font-style: italic; color: var(--accent-gold); }
.process__sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  align-self: end;
}
.process__steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}
.process__step {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.process__step:nth-child(odd) { padding-right: 64px; border-right: 1px solid var(--border); }
.process__step:nth-child(even) { padding-left: 64px; }
.process__num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  padding-top: 4px;
}
.process__step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.process__step-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── Testimonials ───────────────────────────────────────────── */
.testimonials { border-top: 1px solid var(--border); }
.testimonials__header { margin-bottom: 64px; }
.testimonials__header .eyebrow { margin-bottom: 20px; }
.testimonials__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(255,45,120,0.2); }
.testimonial-card__quote-mark {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 0.7;
  color: var(--accent-gold);
  opacity: 0.45;
  user-select: none;
}
.testimonial-card__text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  flex: 1;
}
.testimonial-card__stars {
  color: var(--accent-gold);
  font-size: 12px;
  letter-spacing: 3px;
}
.testimonial-card__divider { height: 1px; background: var(--border); }
.testimonial-card__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
}
.testimonial-card__biz {
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

/* ─── Pricing ────────────────────────────────────────────────── */
.pricing { border-top: 1px solid var(--border); }
.pricing__header { margin-bottom: 64px; }
.pricing__header .eyebrow { margin-bottom: 20px; }
.pricing__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 16px;
}
.pricing__sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.12); }
.pricing-card--featured { border-color: rgba(255,45,120,0.35); background: rgba(255,45,120,0.04); }
.pricing-card--featured:hover { border-color: rgba(255,45,120,0.6); }
.pricing-card--teal:hover { border-color: rgba(45,212,191,0.25); }
.pricing-card__badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--accent-gold);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 24px;
  align-self: flex-start;
}
.pricing-card__service {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.pricing-card--teal .pricing-card__service { color: var(--accent-teal); }
.pricing-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.pricing-card__desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.pricing-card__divider { height: 1px; background: var(--border); margin-bottom: 24px; }
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.pricing-card__feature::before {
  content: '✓';
  color: var(--accent-gold);
  font-size: 11px;
  font-weight: 500;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card--teal .pricing-card__feature::before { color: var(--accent-teal); }
.pricing-card__cta {
  display: block;
  width: 100%;
  padding: 14px 24px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  border-radius: 2px;
  transition: background 0.35s ease, color 0.35s ease;
  text-decoration: none;
}
.pricing-card__cta:hover { background: var(--accent-gold); color: var(--bg); }
.pricing-card--teal .pricing-card__cta { border-color: var(--accent-teal); color: var(--accent-teal); }
.pricing-card--teal .pricing-card__cta:hover { background: var(--accent-teal); color: var(--bg); }
.pricing__footnote {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--border); }
.faq__header { margin-bottom: 64px; }
.faq__header .eyebrow { margin-bottom: 20px; }
.faq__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  border-top: 1px solid var(--border);
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.faq__item[open] .faq__question { color: var(--accent-gold); }
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__answer {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  padding-bottom: 24px;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .slide-ele__inner {
    grid-template-columns: 1fr 1fr;
    padding-inline: clamp(56px, 7vw, 98px) clamp(16px, 3.5vw, 42px);
  }
  .slide-ele__visual { display: none; }
  .work__grid { grid-template-columns: 1fr 1fr; }
  .work-card:nth-child(3) { grid-column: span 2; max-width: 50%; }
  .work__subtitle { max-width: 200px; }
  .work-card__overlay { padding: 18px; }
  .work-card__overlay-title { font-size: 13px; margin-bottom: 8px; }
  .work-card__overlay-desc { font-size: 11px; line-height: 1.6; margin-bottom: 12px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 768px) {
  :root { --section-gap: 90px; }

  .nav__descriptor { display: none; }
  .nav__cta { display: none; }
  .nav__clock { display: none; }
  .nav__clock-dot { display: none; }
  .nav__hamburger { display: flex; }

  .hero__wordmark { font-size: clamp(72px, 20vw, 120px); }

  .services-scroll { height: 450vh; }
  .slide-ele__inner {
    grid-template-columns: 1fr;
    padding-inline: 24px;
    gap: 0;
    align-content: center;
  }
  .slide-ele__text-wrap--1 { padding-top: 120px; padding-bottom: 0; height: auto; }
  .slide-ele__text-wrap--2 { padding-bottom: 60px; height: auto; }
  .services-header { display: none; }

  .tagline-section { padding-block: 80px; }
  .word-group { font-size: clamp(28px, 9vw, 56px); }

  .work__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .work__subtitle { text-align: left; max-width: 100%; }
  .work__grid { grid-template-columns: 1fr; }
  .work-card:nth-child(3) { grid-column: auto; max-width: 100%; }
  .work__footer { margin-top: 48px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }

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

  .about { position: relative; overflow: hidden; }
  .about__intro { position: relative; z-index: 1; }
  .about__grid { grid-template-columns: 1fr; position: relative; z-index: 1; }
  .about__visual-wrap {
    display: flex;
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
  }
  .about__monogram { width: 260px; height: 260px; }
  .about__monogram-letter { font-size: 130px; }
  .about__monogram-ring--1 { width: 120px; height: 120px; }
  .about__monogram-ring--2 { width: 190px; height: 190px; }
  .about__monogram-ring--3 { width: 260px; height: 260px; }
  .about__monogram-glow { width: 150px; height: 150px; }
  .about__detail { flex-direction: column; align-items: flex-start; gap: 4px; }
  .about__detail-value { text-align: left; }

  .process__header { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .process__step:nth-child(odd) { padding-right: 0; border-right: none; }
  .process__step:nth-child(even) { padding-left: 0; }

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

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

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

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: none !important; }
  .hero__scroll-hint { display: none; }
}

