*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #fafafa;
  --white: #ffffff;
  --text: #0f0f0f;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --green: #16a34a;
  --amber: #f59e0b;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --font: "Inter", -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
  --radius: 12px;
  --transition: all 0.25s ease;
}
html {
  scroll-behavior: smooth;
}
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
  font-size: 0.88rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
*:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}
.fg input:focus-visible,
.fg textarea:focus-visible {
  outline: none;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  display: block;
}

/* DOT GRID BACKGROUND */
.grid-bg {
  background-image: radial-gradient(
    circle,
    var(--gray-300) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
@keyframes heroUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 6%;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-cta {
  padding: 0.5rem 1.15rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1002;
  position: relative;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  display: block;
  transition: var(--transition);
  transform-origin: center;
}
.nav-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-burger.active span:nth-child(2) {
  opacity: 0;
}
.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE OVERLAY - lives outside <nav> to avoid backdrop-filter stacking context */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 2000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.mobile-overlay.open {
  display: flex;
}
.mob-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
.mob-links a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-700);
  letter-spacing: -0.02em;
  transition: var(--transition);
}
.mob-links a:hover {
  color: var(--accent);
}
.mob-links .nav-cta {
  padding: 0.75rem 2.25rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 10px;
  font-size: 1.1rem;
}
.mob-links .nav-cta:hover {
  background: var(--accent-hover) !important;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 6% 5rem;
  text-align: center;
  position: relative;
}
.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
}

/* Open to Work badge */
.otw-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: #ecfdf5;
  color: var(--green);
  border: 1px solid #bbf7d0;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.otw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

/* Available pill */
.avail-pill {
  display: inline-block;
  padding: 0.45rem 1.1rem;
  background: var(--gray-900);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Headline */
.hero-headline {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.hero-headline .hl-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero-headline .hl-accent::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--amber);
  border-radius: 3px;
  z-index: -1;
  opacity: 0.7;
}

/* Subtitle */
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 2rem;
}

/* Capability chips */
.hero-caps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.cap-chip {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-300);
  color: var(--gray-700);
  transition: var(--transition);
}
.cap-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cap-chip.filled {
  background: var(--gray-900);
  color: var(--white);
  border-color: var(--gray-900);
}
.cap-chip.filled:hover {
  background: var(--text);
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-dark {
  padding: 0.85rem 1.8rem;
  background: var(--gray-900);
  color: var(--white);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--gray-900);
  transition: var(--transition);
}
.btn-dark:hover {
  background: var(--text);
}
.btn-ghost {
  padding: 0.85rem 1.8rem;
  border: 2px solid var(--gray-300);
  color: var(--gray-700);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-ghost:hover {
  border-color: var(--gray-900);
  color: var(--gray-900);
}

/* MARQUEE */
.marquee {
  background: var(--gray-900);
  color: var(--white);
  padding: 0.75rem 0;
  overflow: hidden;
}
.mq-track {
  display: flex;
  white-space: nowrap;
  animation: mscroll 30s linear infinite;
}
.mq-track span {
  padding: 0 2rem;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mq-track .dot {
  color: var(--accent);
}
@keyframes mscroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* UTILITIES */
.sec {
  padding: 5rem 6%;
}
.sec-alt {
  background: var(--gray-100);
}
.lbl {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.ttl {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--text);
}
.sub-text {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

/* STORY */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1080px;
}
.story-photo img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 3/4;
  position: sticky;
  top: 6rem;
}
.story-beats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.beat {
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  box-shadow: var(--shadow);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.beat:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}
.beat-yr {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.beat-h {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.beat-p {
  color: var(--gray-500);
  font-size: 0.91rem;
  line-height: 1.7;
}

/* WORK */
.work-hd {
  padding: 0 6%;
  margin-bottom: 2rem;
}
.work-rail {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 6% 1.5rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gray-200) transparent;
}
.work-rail::-webkit-scrollbar {
  height: 6px;
}
.work-rail::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 6px;
}
.work-rail::after {
  content: "";
  flex: 0 0 1px;
}
.wc {
  position: relative;
  flex: 0 0 300px;
  min-width: 260px;
  height: 420px;
  border-radius: 24px;
  scroll-snap-align: center;
  cursor: pointer;
  background: var(--gray-100);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.wc-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wc:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}
.wc-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.05) 55%,
    transparent 100%
  );
}
.wc-lbl {
  position: absolute;
  bottom: 1.5rem;
  left: 1.25rem;
  right: 1.25rem;
  color: white;
}
.wc-t {
  font-weight: 800;
  font-size: clamp(0.92rem, 1.6vw, 1.2rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wc-s {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.3rem;
}
.wc-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* EXPERIENCE (replaces Journey) */
.exp-list {
  max-width: 720px;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.exp-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}
.exp-item:first-child {
  padding-top: 0;
}
.exp-item:last-child {
  border-bottom: none;
}
.exp-co {
  font-weight: 800;
  font-size: 1.05rem;
}
.exp-dates {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.2rem;
}
.exp-role {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.exp-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.exp-metric {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: rgba(37, 99, 235, 0.08);
  color: var(--accent);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-right: 0.4rem;
  margin-top: 0.5rem;
}

/* SKILLS */
.sk-hd {
  padding: 0 6%;
  margin-bottom: 2rem;
}
.sk-rail {
  display: flex;
  gap: 1.25rem;
  padding: 0.5rem 6% 1.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.sk-rail::-webkit-scrollbar {
  display: none;
}
.sk-card {
  flex: 0 0 clamp(250px, 26vw, 320px);
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
}
.sk-ttl {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.15rem;
  color: var(--accent);
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.chip {
  padding: 0.4rem 0.8rem;
  background: rgba(37, 99, 235, 0.06);
  color: var(--accent);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}
.chip:hover {
  background: var(--accent);
  color: white;
}

/* PROOF / RECOMMENDATIONS */
.rg {
  display: flex;
  overflow: hidden;
  width: 100%;
}
.rp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  min-width: 100%;
}
.rc {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.rc-q {
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}
.rc-t {
  font-style: italic;
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.25rem;
}
.rc-a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}
.rc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}
.rc-nm {
  font-weight: 700;
  font-size: 0.9rem;
}
.rc-rl {
  font-size: 0.78rem;
  color: var(--gray-500);
}
.rn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.ra {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
}
.ra:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.rc-cnt {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* YOUTUBE */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 840px;
  margin-top: 2.5rem;
}
.yt-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.yt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.yt-emb {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.yt-emb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.yt-emb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yt-facade {
  cursor: pointer;
}
.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 44px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.2s;
  z-index: 1;
}
.yt-facade:hover .yt-play {
  background: #e00;
}
.yt-inf {
  padding: 1rem 1.25rem;
}
.yt-t {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--gray-700);
}

/* CONTACT */
.ct-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 960px;
}
.ct-info p {
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.ct-lnks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ct-lnk {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--gray-700);
}
.ct-lnk:hover {
  color: var(--accent);
}
.ct-lnk-resume {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  width: fit-content;
}
.ct-lnk-resume:hover {
  background: var(--accent-hover) !important;
  color: var(--white) !important;
}
.fg {
  margin-bottom: 1.1rem;
}
.fg label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.35rem;
  color: var(--gray-700);
}
.fg input,
.fg textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  background: var(--white);
  transition: border-color 0.2s;
}
.fg input:focus,
.fg textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.fg textarea {
  height: 110px;
  resize: vertical;
}
.form-btn {
  width: 100%;
  padding: 0.85rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.form-btn:hover {
  background: var(--accent-hover);
}
.form-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.fst {
  margin-top: 0.7rem;
  font-size: 0.85rem;
}
.fst.ok {
  color: var(--green);
}
.fst.err {
  color: #dc2626;
}

/* PRD SECTION */
.prd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@keyframes prd-enter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.prd-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 1.35rem 1.35rem 1.1rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.prd-item.in-view {
  animation: prd-enter 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.prd-item:nth-child(1) { animation-delay: 0ms; }
.prd-item:nth-child(2) { animation-delay: 50ms; }
.prd-item:nth-child(3) { animation-delay: 100ms; }
.prd-item:nth-child(4) { animation-delay: 150ms; }
.prd-item:nth-child(5) { animation-delay: 200ms; }
.prd-item:nth-child(6) { animation-delay: 250ms; }
.prd-item:nth-child(7) { animation-delay: 300ms; }
.prd-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.prd-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prd-tag {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}
.prd-nm {
  font-size: 0.93rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 0.4rem;
}
.prd-sub {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.5;
  flex: 1;
}
.prd-dl {
  margin-top: 1.1rem;
  padding: 0.55rem 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  width: 100%;
}
.prd-dl:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}
.prd-case-link {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s ease;
}
.prd-case-link:hover {
  color: var(--accent-hover);
}

/* PRD GATE MODAL */
.prd-gate {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.prd-gate-bd {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.prd-gate-panel {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  text-align: center;
}
.prd-gate-doc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.prd-gate-panel h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.prd-gate-panel > p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.prd-gate-form {
  text-align: left;
}
.prd-skip {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: color 0.2s;
}
.prd-skip:hover {
  color: var(--gray-700);
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: var(--text);
  color: var(--white);
  padding: 2.5rem 6%;
  text-align: center;
}
.ft-logo {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.ft-tag {
  opacity: 0.4;
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
}
.ft-lnks {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ft-lnks a {
  color: var(--white);
  opacity: 0.5;
  font-size: 0.85rem;
}
.ft-lnks a:hover {
  opacity: 1;
  color: var(--accent);
}

@media (max-width: 1024px) {
  .prd-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .sec,
  .work-hd,
  .sk-hd {
    padding-left: 5%;
    padding-right: 5%;
  }
  .nav-links {
    display: none !important;
  }
  .nav-burger {
    display: flex;
  }
  .hero {
    padding: 7rem 5% 4rem;
    min-height: auto;
  }
  .hero-headline {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .hero-sub {
    font-size: 0.92rem;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-photo {
    display: none;
  }
  .story-photo img {
    position: static;
  }
  .exp-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .rp {
    grid-template-columns: 1fr;
  }
  .ct-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .wc {
    border-radius: 20px;
    flex: 0 0 72vw;
    min-width: 220px;
    max-width: 300px;
    height: 340px;
  }
  .work-rail {
    padding-left: 5%;
    padding-right: 5%;
    gap: 1rem;
    padding-bottom: 1rem;
    scroll-padding: 0 5%;
  }
  .sk-rail {
    padding-left: 5%;
    padding-right: 5%;
  }
  .sk-card {
    flex: 0 0 80vw;
    min-width: 240px;
  }
  .prd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-caps {
    gap: 0.4rem;
  }
  .cap-chip {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
  .yt-grid {
    grid-template-columns: 1fr;
  }
  .beat {
    padding: 1.15rem 1.25rem;
  }
  .ttl {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
}
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .wc {
    flex: 0 0 80vw;
    max-width: 280px;
    height: 300px;
  }
  .avail-pill {
    font-size: 0.65rem;
    padding: 0.35rem 0.85rem;
  }
  .prd-grid {
    grid-template-columns: 1fr;
  }
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 1040px;
  margin: 0 auto;
  counter-reset: service-num;
}
.srv-card {
  background: #ffffff;
  padding: 1.6rem 1.6rem 1.35rem;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  position: relative;
  counter-increment: service-num;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.srv-card::before {
  content: "0" counter(service-num);
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #d1d5db;
}
.srv-card:hover {
  border-color: #9ca3af;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.srv-h {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
  color: #111827;
  padding-right: 1.8rem;
}
.srv-p {
  color: #6b7280;
  font-size: 0.83rem;
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.srv-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}
.srv-tools span {
  padding: 0.18rem 0.5rem;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  border-radius: 4px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.srv-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.58rem 1rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.srv-btn:hover {
  background: #111827;
  color: #ffffff;
  border-color: #111827;
}

/* NEWSLETTER SECTION */
.nl-section {
  background: var(--gray-900);
  padding: 4rem 6%;
}
.nl-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.nl-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.nl-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.nl-desc {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.nl-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.nl-topics span {
  padding: 0.25rem 0.65rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: #d1d5db;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}
.nl-proof {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 1rem;
  font-weight: 500;
}
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.nl-form input {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.nl-form input::placeholder { color: #6b7280; }
.nl-form input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
}
.nl-form button {
  padding: 0.85rem 1.5rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.nl-form button:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.nl-fine {
  font-size: 0.75rem;
  color: #4b5563;
  margin-top: 0.5rem;
}
@media (max-width: 700px) {
  .nl-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* NEWSLETTER COMPACT (legacy) */
.nl-compact {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .nl-compact {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
  }
}
.nl-txt h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.nl-txt p {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin: 0;
}
.nl-inline-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 350px;
}
.nl-inline-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nl-inline-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 112, 243, 0.1);
}
.nl-inline-form button {
  white-space: nowrap;
}

/* STATS BAR */
.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid var(--gray-200);
  transition: background 0.2s;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: var(--gray-100);
}
.stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 600;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 680px) {
  .stat-item {
    flex: 1 1 45%;
    border-right: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}

/* INSTAGRAM / BUILD IN PUBLIC */
.ig-section {
  background: var(--gray-900);
  color: var(--white);
  padding: 5rem 6%;
  text-align: center;
}
.ig-section .lbl {
  color: #9ca3af;
}
.ig-handle {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.ig-desc {
  font-size: 1rem;
  color: #9ca3af;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.ig-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.ig-topic {
  padding: 0.35rem 0.9rem;
  border: 1px solid #374151;
  border-radius: 50px;
  font-size: 0.78rem;
  color: #9ca3af;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.ig-topic:hover {
  border-color: #6b7280;
  color: var(--white);
}
.ig-cards {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.ig-card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s;
}
.ig-card:hover {
  border-color: #4b5563;
  transform: translateY(-2px);
}
.ig-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.ig-card-txt {
  font-size: 0.88rem;
  color: #d1d5db;
  line-height: 1.5;
  font-weight: 500;
}
.ig-btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  background: var(--white);
  color: var(--gray-900);
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background 0.2s, transform 0.15s;
  margin-top: 0.5rem;
}
.ig-btn:hover {
  background: var(--gray-200);
  transform: translateY(-1px);
}
