/* ═══════════════════════════════════════════
   WEB DESIGN LOS ANGELES — "LIVING SHOWCASE"
   Page-specific styles — visceral, premium, alive
   ═══════════════════════════════════════════ */

/* ── CUSTOM CURSOR ── */
.wd-cursor-dot {
  position: fixed;
  width: 16px;
  height: 16px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: rgba(59,130,246,0.08);
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transform: translate3d(-50%,-50%,0) scale(1);
  transition: transform 0.2s cubic-bezier(0.16,1,0.3,1), background 0.2s;
  will-change: transform;
}
.wd-cursor-dot.wd-cursor--hover {
  transform: translate3d(-50%,-50%,0) scale(2);
  background: rgba(59,130,246,0.15);
}
@media (hover: none), (pointer: coarse) {
  .wd-cursor-dot { display: none !important; }
}

/* ── GRAIN OVERLAY (global, via body::before in style.css is 0.022, we add page-level) ── */
/* Already handled by the global body::before noise — no duplication needed */

/* ── HERO ── */
.wd-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--nav-h);
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.wd-hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
@media (hover: hover) {
  .wd-hero__canvas { pointer-events: all; }
}
.wd-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.wd-hero__label {
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.wd-hero__label.wd-revealed { opacity: 1; transform: translateY(0); }

.wd-hero__h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text);
}
.wd-hero__h1 .wd-word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              filter 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.wd-hero__h1 .wd-word.wd-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.wd-hero__h1 .highlight {
  background: linear-gradient(135deg, #60a5fa, #3b82f6, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wd-hero__sub {
  color: var(--text-2);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1) 0s,
              filter 0.6s cubic-bezier(0.16,1,0.3,1) 0s,
              transform 0.6s cubic-bezier(0.16,1,0.3,1) 0s;
}
.wd-hero__sub.wd-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.wd-hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1) 0s,
              transform 0.6s cubic-bezier(0.16,1,0.3,1) 0s;
}
.wd-hero__ctas.wd-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── MAGNETIC BUTTON GLOW ── */
.wd-magnetic {
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}
.wd-magnetic:hover {
  box-shadow: 0 0 40px rgba(59,130,246,0.3);
}

/* ── LIVE PERFORMANCE PROOF ── */
.wd-live-proof {
  padding: 60px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.wd-live-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.wd-live-proof__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.wd-live-proof__card:hover {
  border-color: var(--border-accent);
  box-shadow: 0 0 40px rgba(59,130,246,0.08);
}
.wd-live-proof__icon {
  color: var(--accent);
  margin-bottom: 12px;
  opacity: 0.7;
}
.wd-live-proof__value {
  font-family: var(--mono);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}
.wd-live-proof__label {
  font-size: .78rem;
  color: var(--text-3);
  line-height: 1.4;
}
.wd-live-proof__note {
  text-align: center;
  color: var(--text-3);
  font-size: .85rem;
  margin-top: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* (transform/ugly/beautiful CSS removed — page itself is the demo) */

/* ── WHAT'S INCLUDED (preserved from old modules) ── */
.wd-modules {
  padding: 100px 0;
  background: var(--bg-2);
}
.wd-modules__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.wd-module {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
}
.wd-module:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.wd-module__head { padding: 20px 24px 16px; }
.wd-module__name {
  font-family: var(--mono);
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
}
.wd-module__version {
  font-family: var(--mono);
  font-size: .65rem;
  color: #8a90b0;
  background: var(--surface-2);
  padding: 2px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-left: 8px;
}
.wd-module__desc {
  font-size: .82rem;
  color: var(--text-2);
  margin-top: 8px;
  line-height: 1.5;
}
.wd-module__meta {
  display: flex;
  gap: 16px;
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: .65rem;
  color: #8a90b0;
}
.wd-module__meta .green { color: var(--green); }
.wd-module__readme {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.22,1,.36,1), padding .4s;
  background: #0d1117;
  font-size: .78rem;
  color: var(--text-2);
  line-height: 1.7;
  padding: 0 24px;
}
.wd-module.open .wd-module__readme {
  max-height: 300px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.wd-module__readme-title {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.wd-module__readme ul { margin: 8px 0 0 16px; }
.wd-module__readme li {
  color: var(--text-2);
  font-size: .78rem;
  margin-bottom: 4px;
  position: relative;
  padding-left: 16px;
}
.wd-module__readme li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
}
.wd-module__expand {
  display: block;
  width: 100%;
  padding: 10px;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: .65rem;
  color: #8a90b0;
  cursor: pointer;
  transition: color .2s;
}
.wd-module__expand:hover { color: var(--accent); }
.wd-module.open .wd-module__expand { color: var(--accent); }

/* ── SCROLL TIMELINE (Process) ── */
.wd-timeline {
  padding: 100px 0;
  position: relative;
}
.wd-timeline__track {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
  padding-left: 40px;
}
.wd-timeline__line {
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background: var(--surface-3);
}
.wd-timeline__fill {
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--accent), #6366f1);
  z-index: 1;
  transition: height 0.1s linear;
  box-shadow: 0 0 8px rgba(59,130,246,0.4);
}
/* Particles flowing down the line */
.wd-timeline__fill::before,
.wd-timeline__fill::after {
  content: '';
  position: absolute;
  left: -1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  animation: wd-particle-flow 2s linear infinite;
  opacity: 0.7;
}
.wd-timeline__fill::after {
  animation-delay: -1s;
}
@keyframes wd-particle-flow {
  0% { top: 0; opacity: 0.7; }
  100% { top: 100%; opacity: 0; }
}

.wd-timeline__node {
  position: relative;
  padding: 0 0 60px 32px;
}
.wd-timeline__node:last-child { padding-bottom: 0; }
.wd-timeline__dot {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--surface-3);
  border: 2px solid var(--surface-3);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.wd-timeline__node.wd-lit .wd-timeline__dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 16px rgba(59,130,246,0.5), 0 0 32px rgba(59,130,246,0.2);
}
.wd-timeline__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-3);
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
}
.wd-timeline__node.wd-lit .wd-timeline__title {
  color: var(--text);
  opacity: 1;
  transform: translateX(0);
}
.wd-timeline__desc {
  color: var(--text-3);
  font-size: .9rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1) 0.15s;
}
.wd-timeline__node.wd-lit .wd-timeline__desc {
  color: var(--text-2);
  opacity: 1;
  transform: translateX(0);
}

/* ── KINETIC TYPOGRAPHY ── */
.wd-kinetic {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .wd-kinetic { min-height: 50vh; }
}
.wd-kinetic__glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59,130,246,0.05) 0%, transparent 55%);
  pointer-events: none;
  transition: opacity 1s;
}
.wd-kinetic__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.wd-kinetic__text {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
}
/* Each word — CSS-only staggered reveal */
.wd-kinetic__text .kw {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) scale(0.8);
  filter: blur(8px);
  transition: opacity 0.6s cubic-bezier(.16,1,.3,1),
              transform 0.7s cubic-bezier(.16,1,.3,1),
              filter 0.6s ease,
              color 0.4s ease 0.3s,
              text-shadow 0.8s ease;
  transition-delay: var(--d, 0s);
}
.wd-kinetic__text.active .kw {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
/* Key words — accent glow after arrival */
.wd-kinetic__text.active .kw[data-key] {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(59,130,246,0.4), 0 0 60px rgba(59,130,246,0.15);
}
.wd-kinetic__text.active .kw[data-accent] {
  color: var(--text);
}

/* ── INDUSTRIES (3D Tilt Cards) ── */
.wd-industries {
  padding: 100px 0;
}
.wd-industries__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.wd-ind {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  color: var(--text);
  display: block;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s;
}
.wd-ind:hover {
  color: var(--text);
}
/* Spotlight gradient inside card */
.wd-ind::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(59,130,246,0.06), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.wd-ind:hover::before { opacity: 1; }
.wd-ind__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.wd-ind__live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: .6rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.wd-ind__live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: wd-live-pulse 2s ease-in-out infinite;
}
@keyframes wd-live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: .6; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.wd-ind h3 { font-size: 1.05rem; margin-bottom: 8px; }
.wd-ind p {
  color: var(--text-2);
  font-size: .82rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.wd-ind__chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
}
.wd-ind__bar {
  flex: 1;
  background: var(--accent-soft);
  border-radius: 2px 2px 0 0;
  min-width: 4px;
  transition: height .6s cubic-bezier(.22,1,.36,1);
}
.wd-ind__bar:nth-child(even) { background: rgba(59,130,246,0.12); }
.wd-ind__bar:last-child { background: var(--accent); opacity: .6; }
.wd-ind__link {
  display: block;
  margin-top: 12px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
}

/* ── DOM SURGERY ── */
.wd-surgery { padding: 100px 0; }
.wd-surgery__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

/* Browser chrome */
.wd-surgery__browser {
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f5f5f5;
  transition: background 0.8s;
}
.wd-surgery__browser.clean { background: var(--bg); }
.wd-surgery__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.wd-surgery__dots { display: flex; gap: 6px; }
.wd-surgery__dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--surface-3);
}
.wd-surgery__dots span:nth-child(1) { background: #ef4444; }
.wd-surgery__dots span:nth-child(2) { background: #f59e0b; }
.wd-surgery__dots span:nth-child(3) { background: #22c55e; }
.wd-surgery__url {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--text-3);
}
.wd-surgery__lock { margin-right: 4px; font-size: .6rem; }
.wd-surgery__metrics {
  display: flex;
  gap: 8px;
}
.wd-surgery__metric {
  font-family: var(--mono);
  font-size: .6rem;
  padding: 2px 8px;
  border-radius: 3px;
  background: var(--surface);
  color: var(--text-3);
  transition: all 0.6s;
}
.wd-surgery__metric--bad { color: #ef4444; }
.wd-surgery__metric--good { color: var(--green) !important; }

/* Preview viewport */
.wd-surgery__viewport {
  min-height: 300px;
  padding: 0;
  overflow: hidden;
  transition: all 0.6s;
}

/* Preview site states */
.sp { font-family: Arial, sans-serif; font-size: 12px; transition: all 0.6s; }
.sp-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px;
  background: #e0e0e0; border-bottom: 2px solid #ccc;
  transition: all 0.6s;
}
.sp-nav.clean {
  background: var(--bg); border-bottom: 1px solid var(--border);
}
.sp-links { font-size: 10px; display: flex; gap: 10px; }
.sp-links.clean span { color: var(--text-3) !important; text-decoration: none !important; font-family: var(--sans); }
.sp-logo.clean { font-family: var(--mono) !important; color: var(--text) !important; font-size: 12px; }
.sp-hero {
  padding: 16px;
  background: #f5f5f5;
  transition: all 0.6s;
}
.sp-hero.clean {
  background: var(--bg);
  padding: 24px 16px;
}
.sp-hero.clean > div:first-child {
  font-family: var(--sans) !important; color: var(--text) !important;
  font-size: 16px !important; line-height: 1.2 !important;
}
.sp-hero.clean > div:nth-child(2) {
  font-family: var(--sans) !important; color: var(--text-2) !important;
  font-size: 11px !important;
}
.sp-btn-ugly {
  display: inline-block;
  padding: 4px 14px; background: #0066cc; color: #fff;
  font-size: 10px; border: 2px outset #0066cc; cursor: default;
  transition: all 0.6s;
}
.sp-btn-ugly.clean {
  background: linear-gradient(135deg, var(--accent), #6366f1);
  border: none; border-radius: 4px;
  padding: 6px 18px; font-weight: 600; font-size: 10px;
  box-shadow: 0 0 12px rgba(59,130,246,0.3);
}
.sp-blocks {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px;
  padding: 10px 16px;
  transition: all 0.6s;
}
.sp-block {
  background: #e8e8e8; border: 1px solid #ccc;
  padding: 8px; text-align: center; font-size: 10px;
  transition: all 0.6s;
}
.sp-block.clean {
  background: var(--surface); border-color: var(--border);
  border-radius: var(--radius); color: var(--text-2);
}
.sp-footer {
  padding: 6px 16px; background: #e0e0e0; border-top: 1px solid #ccc;
  font-size: 9px; color: #888; text-align: center;
  transition: all 0.6s;
}
.sp-footer.clean {
  background: var(--surface-2); border-color: var(--border);
  color: var(--text-3);
}

/* Schema badge (injected by JS) */
.sp-schema-badge {
  position: absolute; bottom: 8px; right: 8px;
  font-family: var(--mono); font-size: 9px;
  padding: 3px 8px; border-radius: 3px;
  background: rgba(34,197,94,0.1); color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
  opacity: 0; transition: opacity 0.4s;
}
.sp-schema-badge.visible { opacity: 1; }

/* Code editor */
.wd-surgery__editor {
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d1117;
  display: flex;
  flex-direction: column;
}
.wd-surgery__tabs {
  display: flex;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.wd-surgery__tab {
  padding: 8px 16px;
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--text-3);
  border-right: 1px solid var(--border);
}
.wd-surgery__tab--active {
  color: var(--text);
  background: #0d1117;
  border-bottom: 2px solid var(--accent);
}
.wd-surgery__code {
  flex: 1;
  padding: 16px;
  overflow: auto;
  min-height: 280px;
  max-height: 380px;
}
.wd-surgery__code pre {
  margin: 0;
  font-family: var(--mono);
  font-size: .7rem;
  line-height: 1.8;
  color: var(--text-2);
  transition: opacity 0.2s;
}
.wd-surgery__code .hl-tag { color: #7ee787; }
.wd-surgery__code .hl-attr { color: #79c0ff; }
.wd-surgery__code .hl-str { color: #a5d6ff; }
.wd-surgery__code .hl-del { color: #ef4444; text-decoration: line-through; opacity: 0.6; }
.wd-surgery__code .hl-add { color: #22c55e; }
.wd-surgery__code .hl-comment { color: #8b949e; font-style: italic; }
.wd-surgery__code .hl-cursor {
  display: inline-block;
  width: 2px; height: 14px;
  background: var(--accent);
  animation: surgery-blink 1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}
@keyframes surgery-blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.wd-surgery__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: .6rem;
  color: var(--text-3);
}
.wd-surgery__step-label { color: var(--accent); }

/* Step buttons */
.wd-surgery__steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.wd-surgery__dot-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--text-3);
  cursor: pointer;
  transition: all 0.3s;
}
.wd-surgery__dot-btn span {
  color: var(--accent);
  margin-right: 4px;
  font-weight: 700;
}
.wd-surgery__dot-btn.active {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-soft);
  box-shadow: 0 0 16px rgba(59,130,246,0.15);
}
.wd-surgery__dot-btn.done {
  border-color: var(--green);
  color: var(--green);
}
.wd-surgery__dot-btn.done span { color: var(--green); }

/* ── CTA SECTION ── */
.wd-cta {
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.wd-cta__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59,130,246,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.wd-cta h2 { margin-bottom: 16px; }
.wd-cta__sub {
  color: var(--text-2);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}
.wd-cta__promise {
  margin-top: 24px;
  color: var(--text-3);
  font-size: .9rem;
}
.wd-cta__promise .wd-word {
  display: inline-block;
  opacity: 0;
  filter: blur(4px);
  transform: translateY(6px);
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1),
              filter 0.4s cubic-bezier(0.16,1,0.3,1),
              transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.wd-cta__promise .wd-word.wd-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ── BLOG CARDS (existing from style.css .cards, just section padding) ── */
/* uses .cards and .card from style.css */

/* ── PIPELINE (preserved layout for SEO content under modules) ── */
.wd-pipeline { padding: 100px 0; background: var(--bg-2); }
.wd-pipeline__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.wd-pipeline__track::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--surface-3);
  z-index: 0;
}
.wd-pipeline__line {
  position: absolute;
  top: 40px;
  left: 60px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #6366f1);
  z-index: 1;
  transition: width 1.5s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 0 12px rgba(59,130,246,0.3);
}
.wd-pipeline__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.wd-pipeline__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-3);
  transition: all .6s cubic-bezier(.22,1,.36,1);
}
.wd-pipeline__icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color .6s;
}
.wd-pipeline__node.active .wd-pipeline__icon {
  border-color: var(--accent);
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #6366f1);
  box-shadow: 0 0 30px rgba(59,130,246,0.3);
}
.wd-pipeline__node.active .wd-pipeline__icon::before {
  border-color: rgba(59,130,246,0.2);
  animation: wd-pulse 2s ease-in-out infinite;
}
@keyframes wd-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}
.wd-pipeline__label {
  margin-top: 16px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text-3);
  transition: color .4s;
}
.wd-pipeline__node.active .wd-pipeline__label { color: var(--text); }
.wd-pipeline__num {
  font-family: var(--mono);
  font-size: .65rem;
  color: #8a90b0;
  margin-top: 4px;
}
.wd-pipeline__log {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: .68rem;
  color: #8a90b0;
  text-align: center;
  min-height: 80px;
  line-height: 1.8;
}
.wd-pipeline__log span {
  display: block;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s ease;
}
.wd-pipeline__log span.visible {
  opacity: 1;
  transform: translateY(0);
}
.wd-pipeline__log .green { color: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .wd-modules__grid { grid-template-columns: repeat(2, 1fr); }
  .wd-industries__grid { grid-template-columns: repeat(2, 1fr); }
  .wd-live-proof__grid { grid-template-columns: repeat(2, 1fr); }
  .wd-pipeline__track { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .wd-pipeline__track::before { display: none; }
  .wd-pipeline__line { display: none; }
}
@media (max-width: 768px) {
  .wd-hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 24px);
    padding-bottom: 40px;
  }
  .wd-hero__h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .wd-hero__sub { font-size: 1rem; }
  .wd-hero__ctas { flex-direction: column; align-items: center; }

  /* Live proof */
  .wd-live-proof__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .wd-live-proof__card { padding: 16px; }
  .wd-live-proof__value { font-size: 1.2rem; }

  /* Surgery: stack vertically */
  .wd-surgery__split { grid-template-columns: 1fr; }
  .wd-surgery__code { max-height: 240px; min-height: 200px; }
  .wd-surgery__metrics { display: none; }
  .wd-surgery__dot-btn { font-size: .58rem; padding: 5px 10px; }
  .wd-surgery { padding: 60px 0; }

  .wd-modules__grid { grid-template-columns: 1fr; }
  .wd-industries__grid { grid-template-columns: 1fr; }

  /* Pipeline */
  .wd-pipeline__track { grid-template-columns: 1fr; gap: 24px; }
  .wd-pipeline__track::before { display: none; }
  .wd-pipeline__line { display: none; }
  .wd-pipeline__node { flex-direction: row; gap: 16px; align-items: flex-start; }
  .wd-pipeline__icon { width: 48px; height: 48px; flex-shrink: 0; font-size: .6rem; }
  .wd-pipeline__icon::before { display: none; }
  .wd-pipeline__node.active .wd-pipeline__icon { box-shadow: 0 0 16px rgba(59,130,246,0.25); }
  .wd-pipeline__label { margin-top: 0; font-size: .88rem; }
  .wd-pipeline__log { text-align: left; min-height: auto; font-size: .6rem; word-break: break-word; }

  /* Timeline */
  .wd-timeline__track { padding-left: 32px; }
  .wd-timeline__node { padding-left: 24px; padding-bottom: 40px; }
  .wd-timeline__dot { left: -24px; }
  .wd-timeline__title { font-size: 1rem; }
  .wd-timeline__desc { font-size: .85rem; }

  .wd-pipeline, .wd-diff, .wd-modules, .wd-industries,
  .wd-timeline, .wd-cta { padding: 60px 0; }
  .wd-testimonial { padding: 80px 0; }
  .wd-testimonial__quote-mark { font-size: 120px; top: 10%; left: 5%; }
}
@media (max-width: 480px) {
  .wd-hero__ctas .btn { width: 100%; justify-content: center; }
  .wd-live-proof__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .wd-live-proof__card { padding: 12px; }
  .wd-live-proof__value { font-size: 1rem; }
  .wd-diff__val { min-width: 40px; font-size: .75rem; }
  .wd-pipeline__icon { width: 40px; height: 40px; }
  .wd-ind h3 { font-size: .95rem; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  .wd-hero__h1 .wd-word,
  .wd-hero__sub,
  .wd-hero__ctas,
  .wd-hero__label,
  .wd-testimonial__text .wd-word,
  .wd-cta__promise .wd-word,
  .wd-timeline__title,
  .wd-timeline__desc {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
  .wd-cursor-dot { display: none !important; }
  .wd-timeline__fill,
  .wd-diff__bar-fill,
  .wd-pipeline__line,
  .wd-pipeline__log span,
  .wd-ind__bar {
    transition: none !important;
  }
  .wd-ind__live-dot,
  .wd-pipeline__node.active .wd-pipeline__icon::before,
  .wd-timeline__fill::before,
  .wd-timeline__fill::after {
    animation: none !important;
  }
}

/* ── CURSOR NONE ON BODY (desktop only) ── */
@media (hover: hover) and (pointer: fine) {
  body.wd-custom-cursor,
  body.wd-custom-cursor a,
  body.wd-custom-cursor button,
  body.wd-custom-cursor input,
  body.wd-custom-cursor select,
  body.wd-custom-cursor textarea {
    cursor: none !important;
  }
}
