/* =========================================================
   RH Fardin — Editorial portfolio
   Space Grotesk · cool-neutral bg · deep purple #5c3fd2
   ========================================================= */

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

:root {
  --font: 'Space Grotesk', system-ui, -apple-system, sans-serif;

  --bg:         #eef0f5;
  --bg-2:       #ffffff;
  --bg-3:       #e3e6ee;
  --bg-strong:  #1a1530;          /* deep section bands */

  --text:       #0d0d12;
  --text-soft:  #3b3b42;
  --text-mute:  #6b6b75;
  --text-pale:  #b9b9c2;

  --accent:        #5c3fd2;  /* deep purple — user's brand */
  --accent-2:      #7c3aed;
  --accent-soft:   #c7b8f7;
  --accent-pale:   #ede9fe;
  --accent-glow:   rgba(92, 63, 210, 0.45);

  --stroke:     rgba(13, 13, 18, 0.10);
  --stroke-2:   rgba(13, 13, 18, 0.18);

  --shadow-card:  0 12px 30px -10px rgba(13,13,18,0.10), 0 4px 10px -4px rgba(13,13,18,0.05);
  --shadow-soft:  0 30px 80px -20px rgba(92,63,210,0.28), 0 8px 24px -10px rgba(13,13,18,0.10);
  --shadow-pop:   0 18px 50px -18px rgba(92,63,210,0.55), 0 6px 14px -6px rgba(13,13,18,0.12);

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --radius-pill: 999px;

  --container: 1280px;
  --pad: clamp(1.25rem, 4vw, 3rem);

  --ease: cubic-bezier(.2,.7,.2,1);
  --t-fast: .25s;
  --t-med:  .45s;
  --t-slow: .8s;

  /* category dot colors */
  --c-purple: #8b5cf6;
  --c-blue:   #3b82f6;
  --c-violet: #6d28d9;
  --c-orange: #f97316;
  --c-yellow: #facc15;
  --c-pink:   #ec4899;
  --c-green:  #22c55e;
  --c-teal:   #14b8a6;
}

/* ---------------- BASE ---------------- */

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.55;
  letter-spacing: -0.005em;
  font-weight: 400;
}
::selection { background: var(--accent); color: #fff; }

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

h1,h2,h3,h4 {
  font-family: var(--font);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.025em;
}

em {
  font-family: var(--font);
  font-style: italic;
  font-weight: 500;
}

[data-lucide], .lucide {
  width: 1em; height: 1em;
  stroke-width: 1.7;
  vertical-align: middle;
  flex-shrink: 0;
}

/* subtle grain texture */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 1px 1px, var(--text) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}

/* scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-soft) 100%);
  z-index: 100;
  transition: width .15s linear;
  box-shadow: 0 0 12px var(--accent-glow);
  border-radius: 0 3px 3px 0;
}

/* floating sparkles in hero */
.sparkles {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.spark {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: spark-fade 6s var(--ease) infinite;
  box-shadow: 0 0 12px var(--accent-glow);
}
.spark-1 { top: 12%; left: 18%; animation-delay: 0s; }
.spark-2 { top: 22%; right: 14%; animation-delay: 1.5s; }
.spark-3 { top: 55%; left: 8%; animation-delay: 3s; }
.spark-4 { top: 62%; right: 9%; animation-delay: 4.5s; }
@keyframes spark-fade {
  0%, 100% { opacity: 0; transform: scale(0.5); }
  50%      { opacity: 0.55; transform: scale(1); }
}

/* ---------------- NAV ---------------- */

.nav {
  position: fixed; top: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: calc(100% - 2rem);
  max-width: var(--container);
  pointer-events: none;
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  pointer-events: auto;
}
.logo {
  font-family: var(--font);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}
.logo em {
  font-style: normal;
  font-weight: 700;
}
.nav-right { display: flex; align-items: center; gap: .75rem; }

.btn-talk {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .65rem 1.1rem .65rem 1.25rem;
  border-radius: var(--radius-pill);
  background: var(--text);
  color: var(--bg-2);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--t-fast) var(--ease);
}
.btn-talk [data-lucide] { width: 14px; height: 14px; transition: transform var(--t-fast) var(--ease); }
.btn-talk:hover { transform: translateY(-2px); background: #2a2a32; box-shadow: var(--shadow-pop); }
.btn-talk:hover [data-lucide] { transform: translate(2px, -2px); }

.menu-btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-card);
  color: var(--text);
  transition: all var(--t-fast) var(--ease);
}
.menu-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.menu-btn [data-lucide] { width: 18px; height: 18px; }

/* overlay menu */
.overlay-menu {
  position: fixed; inset: 0;
  z-index: 60;
  background: var(--bg);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-med) var(--ease);
}
.overlay-menu.open { opacity: 1; pointer-events: auto; }
.overlay-inner { text-align: center; position: relative; }
.menu-close {
  position: absolute; top: -8rem; right: -1rem;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
}
.menu-close [data-lucide] { width: 18px; height: 18px; }
.overlay-links { display: grid; gap: 1rem; }
.overlay-links a {
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  transition: color var(--t-fast) var(--ease);
}
.overlay-links a:hover { color: var(--accent); }
.overlay-foot {
  margin-top: 3rem;
  display: flex; justify-content: center; gap: 2rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.overlay-foot a:hover { color: var(--accent); }

/* ---------------- HERO ---------------- */

.hero {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6.5rem var(--pad) 2.5rem;
  text-align: center;
}

.hero-award {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem 1.1rem;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-card);
}
.hero-award [data-lucide] {
  width: 16px; height: 16px;
  color: var(--accent);
}

.hero-stage {
  position: relative;
  min-height: 620px;
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
}

.halo {
  position: absolute;
  top: 4%; left: 50%;
  transform: translateX(-50%);
  width: min(1000px, 95vw);
  height: 780px;
  background:
    radial-gradient(50% 60% at 50% 55%, var(--accent-soft) 0%, var(--accent-pale) 30%, transparent 70%),
    radial-gradient(30% 35% at 50% 50%, rgba(92,63,210,0.22) 0%, transparent 70%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  animation: halo-breathe 12s var(--ease) infinite;
}
@keyframes halo-breathe {
  0%,100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50%     { transform: translateX(-50%) scale(1.04); opacity: .9; }
}

.hero-headline {
  position: relative;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0;
}
.hero-headline .line { display: block; }
.hero-headline .sans {
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.025em;
  margin-bottom: -0.32em;
  color: var(--text);
}
.hero-headline .sans strong { font-weight: 700; }
.hero-headline .display-italic em {
  font-weight: 500;
  font-style: italic;
  font-size: clamp(4.5rem, 13vw, 11rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: var(--text);
}

.hero-portrait {
  position: relative;
  z-index: 2;
  width: clamp(300px, 38vw, 500px);
  height: clamp(380px, 48vw, 640px);
  object-fit: cover;
  object-position: top center;
  border-radius: 280px 280px 60px 60px / 320px 320px 60px 60px;
  filter: grayscale(1) contrast(1.12);
  margin-top: -3rem;
  margin-bottom: -1.25rem;
  -webkit-mask-image: linear-gradient(to bottom, black 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 84%, transparent 100%);
}

.hero-pill-left {
  position: absolute;
  bottom: 16%;
  left: 4%;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem 1.1rem;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--text-soft);
  box-shadow: var(--shadow-card);
  z-index: 3;
  white-space: nowrap;
}
.hero-pill-left .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: .45; }
}

.hero-blurb {
  position: absolute;
  bottom: 8%; right: 4%;
  max-width: 260px;
  text-align: left;
  z-index: 3;
}
.hero-blurb p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.hero-foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.trust-stack {
  display: flex; align-items: center; gap: 1rem;
  text-align: left;
}
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  border: 2px solid var(--bg);
  margin-left: -10px;
  box-shadow: var(--shadow-card);
  object-fit: cover;
  object-position: top center;
  background: var(--bg-3);
  overflow: hidden;
}
.avatar-stack .av:first-child { margin-left: 0; }
.av-more { background: var(--text); color: var(--bg-2); }

.trust-stack p {
  font-size: 0.88rem;
  color: var(--text-soft);
  max-width: 320px;
  line-height: 1.45;
}
.trust-stack strong { color: var(--text); font-weight: 600; }

.btn-cta {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: 1.15rem 2rem;
  background: var(--text);
  color: var(--bg-2);
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--t-fast) var(--ease);
  box-shadow: var(--shadow-card);
}
.btn-cta [data-lucide] {
  width: 18px; height: 18px;
  background: var(--bg-2);
  color: var(--text);
  border-radius: 50%;
  padding: 6px;
  box-sizing: content-box;
  transition: transform var(--t-fast) var(--ease);
}
.btn-cta:hover { transform: translateY(-3px); background: #2a2a32; box-shadow: var(--shadow-pop); }
.btn-cta:hover [data-lucide] { transform: translateX(2px); color: var(--text); }

/* ---------------- VALUE PROP BANNER ---------------- */

.value-headline {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--text);
  max-width: 880px;
  margin: 0 auto 3rem;
  text-align: center;
}
.value-headline strong { font-weight: 700; }
.value-headline em { color: var(--accent); font-weight: 500; }
.value-headline .soft { color: var(--text-mute); font-weight: 400; }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.value-card {
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--accent-pale);
  color: var(--accent);
  margin-bottom: .35rem;
}
.value-icon [data-lucide] { width: 22px; height: 22px; stroke-width: 1.8; }
.value-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
}
.value-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ---------------- TRUST STRIP ---------------- */

.trust-strip {
  position: relative; z-index: 2;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 2.5rem var(--pad);
  margin-top: 2rem;
  background: rgba(255,255,255,0.5);
}
.trust-caption {
  text-align: center;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.75rem;
}
.trust-row {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.trust-row.logos { gap: 2rem 3rem; }
.trust-word {
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: #5a5a65;
  transition: color var(--t-fast) var(--ease);
}
.trust-word:hover { color: var(--accent); }
.trust-dot {
  color: var(--text-pale);
  font-size: 1.3rem;
}
.trust-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
}
.trust-logo img {
  max-height: 100%;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.05) brightness(0.5);
  opacity: 0.55;
  transition: filter var(--t-med) var(--ease), opacity var(--t-med) var(--ease), transform var(--t-fast) var(--ease);
}
.trust-logo:hover img {
  filter: grayscale(0) contrast(1) brightness(1);
  opacity: 1;
  transform: scale(1.06);
}

/* logo marquee */
.logo-marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.logo-track {
  display: inline-flex;
  align-items: center;
  gap: 5rem;
  white-space: nowrap;
  animation: logo-scroll 45s linear infinite;
  padding-right: 5rem;
  will-change: transform;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: .95rem;
  color: var(--text);
  transition: opacity var(--t-med) var(--ease), filter var(--t-med) var(--ease);
  opacity: 0.46;
  flex-shrink: 0;
}
.brand-chip img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 14px;
  opacity: 1;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-med) var(--ease);
}
.brand-chip img[src*="logo-atb"],
.brand-chip img[src*="logo-voip"] {
  border-radius: 50%;
}
.brand-chip span {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  white-space: nowrap;
  color: #000;
}
.brand-chip:hover { opacity: .74; }
.brand-chip:hover img {
  transform: scale(1.05);
  opacity: 1;
}
.brand-chip.wordmark-only { padding-left: .15rem; }

@media (max-width: 900px) {
  .trust-strip { padding: 2rem var(--pad); }
  .trust-dot { display: none; }
  .trust-word { font-size: 0.95rem; }
  .trust-row.logos { gap: 1.25rem 1.75rem; }
  .trust-logo { height: 36px; }
  .logo-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }
  .logo-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto;
    padding-right: 0;
    white-space: normal;
    animation: none;
    transform: none !important;
  }
  .logo-track > [aria-hidden="true"] { display: none; }
  .brand-chip {
    min-width: 0;
    gap: .55rem;
    padding: .65rem .7rem;
    border: 1px solid var(--stroke);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.48);
    opacity: .7;
  }
  .brand-chip img {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }
  .brand-chip span {
    min-width: 0;
    font-size: clamp(.78rem, 2.6vw, .98rem);
    line-height: 1.12;
    white-space: normal;
  }
}

/* ---------------- SECTIONS ---------------- */

.section {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6rem var(--pad);
}
.section.narrow { padding: 4rem var(--pad); }

.section-head {
  margin-bottom: 3.5rem;
  max-width: 760px;
}
.section-head.between {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap;
  max-width: none;
  gap: 1.5rem;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}
.section-lead {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 580px;
  margin-top: 1rem;
}

.slash-eyebrow {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-mute);
  margin-bottom: .75rem;
}

.eyebrow-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-card);
}
.eyebrow-pill [data-lucide] { width: 14px; height: 14px; color: var(--accent); }

.display-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}
.display-title em {
  font-style: italic;
  font-weight: 500;
  font-size: 1.05em;
  color: var(--accent);
}
.display-title.big { font-size: clamp(2.5rem, 6vw, 4.2rem); }

.text-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  padding: .65rem 1rem;
  border: 1px solid var(--stroke-2);
  border-radius: var(--radius-pill);
  transition: all var(--t-fast) var(--ease);
}
.text-link:hover { background: var(--text); color: var(--bg-2); border-color: var(--text); }
.text-link [data-lucide] { width: 14px; height: 14px; transition: transform var(--t-fast) var(--ease); }
.text-link:hover [data-lucide] { transform: translate(2px,-2px); }

/* ---------------- SHOWCASE TILES (no purple tint) ---------------- */

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.showcase-tile {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  background: var(--bg-3);
}
.showcase-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.showcase-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow) var(--ease);
}
.showcase-tile:hover img { transform: scale(1.04); }
.showcase-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,18,0.78) 0%, rgba(13,13,18,0.35) 35%, transparent 55%);
  pointer-events: none;
}
.showcase-content {
  position: absolute; inset: 0;
  padding: 2rem 2rem 1.75rem;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: .65rem;
  color: #fff;
}
.showcase-content h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 600;
}
.showcase-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  max-width: 380px;
}
.showcase-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  width: max-content;
  font-weight: 500;
}
.showcase-stats {
  display: flex; gap: 1.5rem;
  margin-bottom: .5rem;
  padding: .85rem 1rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  width: max-content;
  max-width: 100%;
  flex-wrap: wrap;
}
.showcase-stats > div { display: flex; flex-direction: column; gap: .1rem; }
.showcase-stats strong {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.showcase-stats span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.78);
}

.works-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.work-tile {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  background: var(--bg-3);
}
.work-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.work-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow) var(--ease);
}
.work-tile:hover img { transform: scale(1.04); }
.work-tile-shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,18,0.78) 0%, rgba(13,13,18,0.35) 35%, transparent 55%);
  pointer-events: none;
}
.work-tile-meta {
  position: absolute;
  left: 2rem; right: 2rem; bottom: 1.75rem;
  color: #fff;
}
.work-tile-meta h4 {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 600;
  margin-bottom: .35rem;
}
.work-tile-meta span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

/* ---------------- SKILLS ---------------- */

.skills-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: center;
  margin-bottom: 4.5rem;
}
.skill-pill {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .55rem 1rem .55rem .55rem;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.skill-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.skill-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.skill-dot [data-lucide] { width: 14px; height: 14px; stroke-width: 2; }

.c-purple { background: var(--c-purple); }
.c-blue   { background: var(--c-blue);   }
.c-violet { background: var(--c-violet); }
.c-orange { background: var(--c-orange); }
.c-yellow { background: var(--c-yellow); color: #6b5a09; }
.c-pink   { background: var(--c-pink);   }
.c-green  { background: var(--c-green);  }
.c-teal   { background: var(--c-teal);   }

/* ---------------- MANIFESTO ---------------- */

.manifesto {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}
.hallo {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.manifesto-text {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}
.manifesto-text strong {
  color: var(--text);
  font-weight: 700;
}
.manifesto-text .soft {
  color: var(--text-mute);
  font-weight: 400;
}

/* ---------------- STATS STRIP ---------------- */

.stats-section {
  position: relative; z-index: 2;
  background: var(--bg-3);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  padding: 4rem var(--pad);
}
.stats-strip {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat {
  text-align: center;
  position: relative;
}
.stat strong {
  display: inline-block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
  position: relative;
}
.stat strong small {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--accent);
}
.stat strong::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -.6rem;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
}
.stat span {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  font-weight: 500;
}

@media (max-width: 720px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
}

/* ---------------- PROCESS ---------------- */

.process-section { padding-top: 5rem; }
.process-stage {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.proc-card {
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.proc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.proc-num {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.14em;
  margin-bottom: 1.25rem;
}
.proc-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: .65rem;
}
.proc-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.5;
}

.squiggle {
  width: 100px; height: 60px;
  color: var(--accent);
  align-self: center;
}
.squiggle-2 { transform: scaleY(-1); }

/* ---------------- TESTIMONIALS ---------------- */

.testi-section .testi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  max-width: 1080px;
  margin: 0 auto;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem 2.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.testi-grid .reveal.in:nth-child(5) { transition-delay: .32s; }
.testi-grid .reveal.in:nth-child(6) { transition-delay: .40s; }
@media (max-width: 1024px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .testi-grid { grid-template-columns: 1fr; }
}
.testi-block { position: relative; }
.testi-mark {
  width: 28px; height: 28px;
  color: var(--accent-soft);
  margin-bottom: 1rem;
  opacity: .9;
}
.testi-block p {
  font-size: 1.02rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.testi-meta {
  display: flex; align-items: center; gap: .85rem;
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: var(--bg-3);
  border: 2px solid var(--bg-2);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}
.testi-meta strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}
.testi-meta span {
  font-size: 0.8rem;
  color: var(--text-mute);
}

/* ---------------- SELECTED GRID ---------------- */

.selected-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.sel-card {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.sel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.sel-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-3);
}
.sel-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--t-slow) var(--ease);
}
.sel-card:hover .sel-image img { transform: scale(1.04); }
.sel-meta {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
}
.sel-meta h4 {
  font-size: 1.15rem;
  font-weight: 600;
}
.sel-tags { display: flex; gap: .4rem; flex-wrap: wrap; }
.sel-tag {
  display: inline-block;
  padding: .35rem .75rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  background: var(--bg-3);
  border: 1px solid var(--stroke);
}
.sel-tag.c-purple { background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.25); color: #6d28d9; }
.sel-tag.c-blue   { background: rgba(59,130,246,0.12); border-color: rgba(59,130,246,0.25); color: #1d4ed8; }
.sel-tag.c-violet { background: rgba(109,40,217,0.14); border-color: rgba(109,40,217,0.28); color: #4c1d95; }
.sel-tag.c-orange { background: rgba(249,115,22,0.12); border-color: rgba(249,115,22,0.25); color: #c2410c; }
.sel-tag.c-yellow { background: rgba(250,204,21,0.18); border-color: rgba(250,204,21,0.35); color: #854d0e; }
.sel-tag.c-pink   { background: rgba(236,72,153,0.12); border-color: rgba(236,72,153,0.25); color: #be185d; }
.sel-tag.c-green  { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.25); color: #15803d; }
.sel-tag.c-teal   { background: rgba(20,184,166,0.12); border-color: rgba(20,184,166,0.25); color: #0f766e; }

/* ---------------- SKYROCKET CTA ---------------- */

.skyrocket-section { padding: 5rem var(--pad); }
.skyrocket-card {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: 5rem 3rem;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.sky-halo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 140%;
  background: radial-gradient(50% 50% at 50% 50%, var(--accent-pale) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.skyrocket-card > * { position: relative; z-index: 1; }
.sky-headline {
  font-size: clamp(2rem, 5.4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: .5rem 0 1rem;
}
.sky-headline em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.skyrocket-card > p {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.55;
}
.sky-actions {
  display: flex; gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .skyrocket-card { padding: 3rem 1.75rem; }
}

/* ---------------- CONTACT ---------------- */

.contact-section { padding-top: 3rem; }
.contact-shell {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: 4rem;
  box-shadow: var(--shadow-soft);
}
.contact-head .display-title { margin: .75rem 0 1.25rem; }
.contact-head > p {
  color: var(--text-soft);
  margin-bottom: 1.75rem;
  max-width: 460px;
}
.contact-list {
  display: grid;
  gap: .85rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stroke);
  margin-bottom: 1.5rem;
}
.contact-list li {
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  gap: 1rem;
}
.contact-list span:first-child {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 500;
}
.contact-list span:first-child [data-lucide] { width: 14px; height: 14px; color: var(--accent); }
.contact-list a:hover { color: var(--accent); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .85rem 1.4rem;
  border-radius: var(--radius-pill);
  background: var(--text);
  color: var(--bg-2);
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--t-fast) var(--ease);
  box-shadow: var(--shadow-card);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pop);
}

.socials-block {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--stroke-2);
}
.socials-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: .85rem;
}
.socials { display: flex; gap: .6rem; flex-wrap: wrap; }

.contact-form { display: grid; gap: 1rem; }
.field { display: grid; gap: .5rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  text-transform: uppercase;
}
.field input,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  resize: vertical;
  transition: all var(--t-fast) var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-2);
  box-shadow: 0 0 0 4px var(--accent-pale);
}
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
  display: inline-flex; align-items: center;
  padding: .55rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--bg);
  border: 1px solid var(--stroke);
  font-size: 0.85rem;
  color: var(--text-soft);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
}
.chip input { position: absolute; opacity: 0; }
.chip:hover { color: var(--text); border-color: var(--stroke-2); }
.chip:has(input:checked) {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg-2);
}
.btn-send {
  display: inline-flex; justify-content: center; align-items: center; gap: .6rem;
  padding: 1.05rem 1.5rem;
  background: var(--text);
  color: var(--bg-2);
  border-radius: var(--radius-pill);
  font-size: 0.98rem;
  font-weight: 500;
  width: 100%;
  transition: all var(--t-fast) var(--ease);
  box-shadow: var(--shadow-card);
}
.btn-send [data-lucide] { width: 16px; height: 16px; transition: transform var(--t-fast) var(--ease); }
.btn-send:hover { transform: translateY(-2px); box-shadow: var(--shadow-pop); }
.btn-send:hover [data-lucide] { transform: translateX(3px); }
.form-note {
  font-size: 0.78rem;
  color: var(--text-mute);
  text-align: center;
  margin-top: -.25rem;
}
.form-success {
  display: none;
  align-items: center; gap: 1rem;
  padding: 1.25rem;
  background: var(--accent-pale);
  border: 1px solid rgba(92,63,210,0.2);
  border-radius: var(--radius);
  margin-top: .5rem;
  animation: rise .5s var(--ease);
}
.form-success.show { display: flex; }
@keyframes rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.check-big {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent); color: #fff;
  flex-shrink: 0;
}
.check-big [data-lucide] { width: 18px; height: 18px; stroke-width: 2.5; }
.form-success strong { display: block; font-size: 0.95rem; font-weight: 600; }
.form-success span { font-size: 0.85rem; color: var(--text-soft); }

/* ---------------- FOOTER ---------------- */

.footer {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(180deg, var(--bg) 0%, #e6e8ee 100%);
  margin-top: 5rem;
  overflow: hidden;
}

/* CTA hook */
.footer-cta {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 5rem var(--pad) 4.5rem;
}
.footer-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 3rem;
  align-items: center;
}
.footer-cta .slash-eyebrow { margin-bottom: .25rem; }
.footer-hook {
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--text);
}
.footer-hook em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.footer-hook-sub {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 480px;
  line-height: 1.55;
}
.btn-cta.footer-btn {
  padding: 1.25rem 2.25rem;
  white-space: nowrap;
  box-shadow: 0 14px 36px -10px rgba(13,13,18,0.35), 0 0 0 6px rgba(92,63,210,0.06);
}
.btn-cta.footer-btn:hover {
  box-shadow: 0 18px 44px -10px rgba(92,63,210,0.45), 0 0 0 8px rgba(92,63,210,0.12);
}

/* gradient divider */
.footer-divider {
  height: 1px;
  margin: 0 var(--pad);
  background: linear-gradient(90deg,
    transparent 0%,
    var(--stroke-2) 25%,
    var(--accent) 50%,
    var(--stroke-2) 75%,
    transparent 100%);
  opacity: .55;
}

/* main grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 3.5rem var(--pad) 3rem;
  position: relative;
  z-index: 2;
}
.footer-brand .logo {
  font-size: 2.2rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-bio {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 360px;
  margin-bottom: 1.25rem;
}
.footer-location {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: 0.85rem;
  color: var(--text-mute);
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  padding: .55rem .95rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}
.footer-location [data-lucide] {
  width: 14px; height: 14px;
  color: var(--accent);
}

.footer-col h4 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1.35rem;
}
.footer-col ul { display: grid; gap: .7rem; }
.footer-col a {
  color: var(--text-soft);
  font-size: 0.93rem;
  font-weight: 500;
  transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
  display: inline-block;
}
.footer-col a:hover { color: var(--accent); }
.connect-list a {
  display: inline-flex; align-items: center; gap: .55rem;
}
.connect-list [data-lucide] {
  width: 14px; height: 14px;
  color: var(--text-mute);
  transition: color var(--t-fast) var(--ease);
}
.connect-list a:hover [data-lucide] { color: var(--accent); }

/* giant italic watermark */
.footer-watermark {
  position: absolute;
  left: 50%; bottom: 5.5rem;
  transform: translateX(-50%);
  font-size: clamp(8rem, 22vw, 22rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--accent);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}
.footer-watermark em { font-style: italic; font-weight: 500; }

/* bottom strip */
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.75rem var(--pad) 2rem;
  font-size: 0.85rem;
  color: var(--text-mute);
  position: relative;
  z-index: 2;
}
.footer-bottom::before {
  content: '';
  position: absolute;
  top: 0; left: var(--pad); right: var(--pad);
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--stroke-2) 30%,
    var(--stroke-2) 70%,
    transparent 100%);
}
.bottom-left {
  display: flex; align-items: center;
  gap: 1.25rem; flex-wrap: wrap;
}
.crafted { display: inline-flex; align-items: center; gap: .4rem; }
.crafted [data-lucide] {
  width: 13px; height: 13px;
  color: #ec4899; fill: #ec4899;
  animation: heartbeat 1.5s var(--ease) infinite;
}
@keyframes heartbeat {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.15); }
}
.bottom-socials {
  display: flex; gap: .5rem;
}
.to-top {
  display: inline-flex; align-items: center; gap: .35rem;
  color: var(--text-soft);
  padding: .5rem .9rem;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-pill);
  font-weight: 500;
  font-size: 0.85rem;
  transition: all var(--t-fast) var(--ease);
}
.to-top [data-lucide] { width: 13px; height: 13px; transition: transform var(--t-fast) var(--ease); }
.to-top:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.to-top:hover [data-lucide] { transform: translateY(-2px); }

/* ---------------- BRAND-COLORED SOCIALS ---------------- */

.brand-social {
  width: 44px; height: 44px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  transition: all var(--t-fast) var(--ease);
  position: relative;
}
.brand-social [data-lucide] {
  width: 18px; height: 18px;
  transition: transform var(--t-fast) var(--ease);
}
.brand-social:hover {
  transform: translateY(-3px);
}
.brand-social:hover [data-lucide] { transform: scale(1.1); }

.brand-li { background: rgba(10,102,194,0.10); color: #0A66C2; }
.brand-li:hover { background: #0A66C2; color: #fff; box-shadow: 0 8px 20px rgba(10,102,194,0.35); }

.brand-x  { background: rgba(13,13,18,0.06); color: var(--text); }
.brand-x:hover  { background: var(--text); color: #fff; box-shadow: 0 8px 20px rgba(13,13,18,0.30); }

.brand-ig { background: linear-gradient(45deg, rgba(225,48,108,0.08), rgba(247,141,17,0.08)); color: #E1306C; }
.brand-ig:hover {
  background: linear-gradient(45deg, #FCAF45 0%, #E1306C 50%, #833AB4 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(225,48,108,0.35);
}

.brand-fb { background: rgba(24,119,242,0.10); color: #1877F2; }
.brand-fb:hover { background: #1877F2; color: #fff; box-shadow: 0 8px 20px rgba(24,119,242,0.35); }

.brand-dr { background: rgba(234,76,137,0.10); color: #EA4C89; }
.brand-dr:hover { background: #EA4C89; color: #fff; box-shadow: 0 8px 20px rgba(234,76,137,0.35); }

/* bottom strip socials — larger, more breathable */
.bottom-socials .brand-social {
  width: 48px; height: 48px;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
}
.bottom-socials .brand-social [data-lucide] { width: 19px; height: 19px; }
.bottom-socials { gap: .65rem; }
.bottom-socials .brand-li { color: #0A66C2; }
.bottom-socials .brand-li:hover { background: #0A66C2; color: #fff; border-color: #0A66C2; }
.bottom-socials .brand-x  { color: var(--text); }
.bottom-socials .brand-x:hover { background: var(--text); color: #fff; border-color: var(--text); }
.bottom-socials .brand-ig { color: #E1306C; }
.bottom-socials .brand-ig:hover {
  background: linear-gradient(45deg, #FCAF45 0%, #E1306C 50%, #833AB4 100%);
  color: #fff; border-color: transparent;
}
.bottom-socials .brand-fb { color: #1877F2; }
.bottom-socials .brand-fb:hover { background: #1877F2; color: #fff; border-color: #1877F2; }
.bottom-socials .brand-dr { color: #EA4C89; }
.bottom-socials .brand-dr:hover { background: #EA4C89; color: #fff; border-color: #EA4C89; }

/* availability pill in footer */
.availability-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: var(--bg-2);
  border: 1px solid rgba(34,197,94,0.35);
  padding: .55rem .95rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card), 0 0 0 4px rgba(34,197,94,0.08);
  transition: all var(--t-fast) var(--ease);
}
.availability-pill:hover {
  box-shadow: var(--shadow-card), 0 0 0 6px rgba(34,197,94,0.15);
}
.availability-pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e, 0 0 20px rgba(34,197,94,0.4);
  animation: pulse 2s var(--ease) infinite;
}
.footer-meta-row {
  display: flex; flex-wrap: wrap; gap: .65rem;
  margin-top: .25rem;
}

/* footer sparkles */
.footer-cta { position: relative; }
.footer-spark {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.footer-spark.spark-large {
  top: 18%; right: 20%;
  width: 10px; height: 10px;
  background: var(--accent);
  box-shadow: 0 0 30px var(--accent), 0 0 60px var(--accent-glow);
  animation: spark-fade 5s var(--ease) infinite;
}
.footer-spark.spark-small {
  top: 65%; left: 38%;
  width: 6px; height: 6px;
  background: var(--accent-2);
  box-shadow: 0 0 18px var(--accent-glow);
  animation: spark-fade 7s var(--ease) infinite 2s;
}

/* footer-col link micro-animation */
.footer-col li {
  position: relative;
}
.footer-col li a {
  position: relative;
  display: inline-block;
}
.footer-col li a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--accent);
  transition: width var(--t-fast) var(--ease);
}
.footer-col li a:hover::after { width: 100%; }

/* logo subtle hover */
.logo {
  transition: color var(--t-fast) var(--ease);
}
.logo:hover { color: var(--accent); }

/* refined card shadow rhythm — multi-layer for premium feel */
.value-card, .price-card, .sel-card, .proc-card, .showcase-tile, .work-tile, .faq-item, .stat {
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

/* ---------------- REVEAL ---------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.stagger-low.reveal { transform: translateY(60px); }
.stagger-high.reveal { transform: translateY(0); }
.stagger-low.reveal.in { transform: translateY(40px); opacity: 1; }
.stagger-high.reveal.in { transform: translateY(-20px); opacity: 1; }

.skills-row .reveal.in:nth-child(2) { transition-delay: .05s; }
.skills-row .reveal.in:nth-child(3) { transition-delay: .1s; }
.skills-row .reveal.in:nth-child(4) { transition-delay: .15s; }
.skills-row .reveal.in:nth-child(5) { transition-delay: .2s; }
.skills-row .reveal.in:nth-child(6) { transition-delay: .25s; }
.skills-row .reveal.in:nth-child(7) { transition-delay: .3s; }
.skills-row .reveal.in:nth-child(8) { transition-delay: .35s; }

.works-row .reveal.in:nth-child(2) { transition-delay: .08s; }
.works-row .reveal.in:nth-child(3) { transition-delay: .16s; }
.works-row .reveal.in:nth-child(4) { transition-delay: .24s; }

.selected-grid .reveal.in:nth-child(2) { transition-delay: .08s; }
.selected-grid .reveal.in:nth-child(3) { transition-delay: .16s; }
.selected-grid .reveal.in:nth-child(4) { transition-delay: .24s; }

.testi-grid .reveal.in:nth-child(2) { transition-delay: .08s; }
.testi-grid .reveal.in:nth-child(3) { transition-delay: .16s; }
.testi-grid .reveal.in:nth-child(4) { transition-delay: .24s; }

.value-grid .reveal.in:nth-child(2) { transition-delay: .08s; }
.value-grid .reveal.in:nth-child(3) { transition-delay: .16s; }

.stats-strip .reveal.in:nth-child(2) { transition-delay: .06s; }
.stats-strip .reveal.in:nth-child(3) { transition-delay: .12s; }
.stats-strip .reveal.in:nth-child(4) { transition-delay: .18s; }

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .works-row { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .process-stage {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .squiggle { display: none; }
  .stagger-low, .stagger-high { transform: none !important; }
  .stagger-low.reveal.in, .stagger-high.reveal.in { transform: translateY(0) !important; }
  .selected-grid { grid-template-columns: 1fr; }
  .testi-section .testi-row,
  .testi-grid { grid-template-columns: 1fr; }
  .contact-shell { grid-template-columns: 1fr; padding: 2.5rem; gap: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .hero { padding: 6rem 1.25rem 2rem; }
  .hero-portrait { margin-top: -1.5rem; }
  .hero-pill-left { position: static; margin-bottom: 1rem; }
  .hero-blurb { position: static; max-width: 100%; text-align: center; margin-top: 1rem; }
  .hero-foot { flex-direction: column; gap: 1.5rem; }
  .trust-stack { flex-direction: column; text-align: center; align-items: center; }
  .works-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-tag { text-align: left; }
  .section { padding: 4rem 1.25rem; }
}

/* ---------------- PRICING ---------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.price-card.featured {
  background: linear-gradient(180deg, #1a1530 0%, #2a1f56 100%);
  color: #fff;
  border-color: rgba(255,255,255,0.1);
  box-shadow: var(--shadow-soft);
}
.price-ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: .35rem .9rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-pop);
  white-space: nowrap;
}
.price-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .85rem;
}
.price-card.featured .price-tag { color: var(--accent-soft); }
.price-head h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: .5rem;
}
.price-head p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.price-card.featured .price-head p { color: rgba(255,255,255,0.7); }
.price-amount {
  display: flex; align-items: baseline; gap: .25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--stroke);
}
.price-card.featured .price-amount { border-bottom-color: rgba(255,255,255,0.12); }
.price-amount sup {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-soft);
  margin-right: .15rem;
}
.price-card.featured .price-amount sup { color: rgba(255,255,255,0.6); }
.price-amount strong {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--text);
}
.price-card.featured .price-amount strong { color: #fff; }
.price-amount span {
  font-size: 0.9rem;
  color: var(--text-mute);
  margin-left: .25rem;
}
.price-card.featured .price-amount span { color: rgba(255,255,255,0.55); }
.price-list {
  display: grid;
  gap: .65rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.price-list li {
  display: flex; align-items: center; gap: .55rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.price-card.featured .price-list li { color: rgba(255,255,255,0.85); }
.price-list li [data-lucide] {
  width: 14px; height: 14px;
  color: var(--accent);
  background: var(--accent-pale);
  border-radius: 50%;
  padding: 3px;
  stroke-width: 3;
  flex-shrink: 0;
}
.price-card.featured .price-list li [data-lucide] {
  background: rgba(199,184,247,0.18);
  color: var(--accent-soft);
}
.price-cta {
  display: inline-flex; justify-content: center; align-items: center;
  gap: .5rem;
  padding: .95rem 1.25rem;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1.5px solid var(--text);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--t-fast) var(--ease);
  margin-top: auto;
}
.price-card.featured .price-cta {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.price-cta:hover {
  background: var(--text);
  color: var(--bg-2);
  transform: translateY(-2px);
}
.price-card.featured .price-cta:hover {
  background: var(--accent-soft);
  color: var(--bg-strong);
  border-color: var(--accent-soft);
}
.price-cta.primary {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg-2);
}
.price-cta.primary:hover {
  background: #2a2a32;
  border-color: #2a2a32;
  box-shadow: var(--shadow-pop);
}
.price-cta [data-lucide] {
  width: 14px; height: 14px;
  transition: transform var(--t-fast) var(--ease);
}
.price-cta:hover [data-lucide] { transform: translateX(3px); }
.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.pricing-note a {
  color: var(--accent);
  font-weight: 500;
  transition: opacity var(--t-fast) var(--ease);
}
.pricing-note a:hover { opacity: 0.7; }

.pricing-grid .reveal.in:nth-child(2) { transition-delay: .08s; }
.pricing-grid .reveal.in:nth-child(3) { transition-delay: .16s; }

/* ---------------- FAQ ---------------- */

.faq-list {
  display: grid;
  gap: .75rem;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-fast) var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-soft); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color var(--t-fast) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon {
  width: 22px; height: 22px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--t-med) var(--ease);
  background: var(--accent-pale);
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq-body {
  padding: 0 1.75rem 1.5rem;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
  animation: faqOpen .35s var(--ease);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.faq-list .reveal.in:nth-child(2) { transition-delay: .04s; }
.faq-list .reveal.in:nth-child(3) { transition-delay: .08s; }
.faq-list .reveal.in:nth-child(4) { transition-delay: .12s; }
.faq-list .reveal.in:nth-child(5) { transition-delay: .16s; }
.faq-list .reveal.in:nth-child(6) { transition-delay: .20s; }
.faq-list .reveal.in:nth-child(7) { transition-delay: .24s; }
.faq-list .reveal.in:nth-child(8) { transition-delay: .28s; }

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .faq-item summary { padding: 1.1rem 1.4rem; font-size: 1rem; }
  .faq-body { padding: 0 1.4rem 1.25rem; }
  .footer-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-watermark { font-size: clamp(6rem, 30vw, 12rem); bottom: 5rem; }
}

/* ---------------- SUBPAGES ---------------- */

.subpage-hero {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 9rem var(--pad) 4rem;
  text-align: center;
}
.subpage-hero .slash-eyebrow { font-size: 1.05rem; }
.subpage-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: .75rem 0 1.25rem;
}
.subpage-title em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}
.subpage-lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.55;
}
.back-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: 0.92rem;
  color: var(--text-mute);
  font-weight: 500;
  margin-bottom: 1.5rem;
  transition: color var(--t-fast) var(--ease);
}
.back-link:hover { color: var(--text); }
.back-link [data-lucide] { width: 14px; height: 14px; }

/* resume image stack */
.resume-stack {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.resume-stack img {
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--stroke);
}
.resume-actions {
  display: flex; gap: .75rem; justify-content: center;
  margin-top: 2rem; flex-wrap: wrap;
}

/* certifications */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.cert-card {
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.cert-card.featured { grid-column: 1 / -1; }
.cert-image {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  display: grid; place-items: center;
}
.cert-image img { max-width: 100%; max-height: 280px; }
.cert-meta h3 { font-size: 1.35rem; font-weight: 600; margin-bottom: .35rem; }
.cert-meta .cert-issuer {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: .65rem;
}
.cert-meta p { font-size: 0.94rem; color: var(--text-soft); line-height: 1.5; }
.cert-claimed {
  display: grid; gap: .65rem;
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--stroke-2);
}
.cert-claimed-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.cert-claimed-item [data-lucide] {
  width: 16px; height: 16px;
  color: var(--accent);
  background: var(--accent-pale);
  border-radius: 50%;
  padding: 4px;
  stroke-width: 2.5;
}

/* case study */
.case-stack {
  display: grid;
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}
.case-card {
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--t-med) var(--ease);
}
.case-card:hover { box-shadow: var(--shadow-soft); }
.case-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .85rem;
}
.case-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
.case-card > p {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.case-metrics {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--stroke);
  flex-wrap: wrap;
}
.case-metric strong {
  display: block;
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--text);
  margin-bottom: .25rem;
}
.case-metric span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-mute);
}

/* service landing (audit/brief) */
.service-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}
.service-block h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.service-block p {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.service-checks {
  display: grid; gap: .75rem;
  margin-bottom: 2rem;
}
.service-checks li {
  display: flex; align-items: center; gap: .65rem;
  font-size: 0.96rem;
  color: var(--text-soft);
}
.service-checks li [data-lucide] {
  width: 16px; height: 16px;
  color: var(--accent);
  background: var(--accent-pale);
  border-radius: 50%;
  padding: 4px;
  stroke-width: 2.5;
  flex-shrink: 0;
}
.service-aside {
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 6rem;
}
.service-aside h4 {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 1rem;
}
.service-aside .price {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: .35rem;
}
.service-aside .price sup { font-size: 1.05rem; font-weight: 500; color: var(--text-soft); margin-right: .15rem; }
.service-aside .price span { font-size: 0.95rem; color: var(--text-mute); margin-left: .35rem; }
.service-aside .price-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--stroke);
}
.service-aside ul { display: grid; gap: .55rem; margin-bottom: 1.75rem; }
.service-aside ul li {
  font-size: 0.88rem; color: var(--text-soft);
  display: flex; align-items: center; gap: .5rem;
}
.service-aside ul li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* coming-soon style page (blog/shop) */
.coming-soon {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}
.coming-soon p {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.coming-soon-card {
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.coming-soon-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, var(--accent-pale) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.coming-soon-card > * { position: relative; z-index: 1; }
.coming-soon-card .icon {
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--accent-pale);
  color: var(--accent);
  margin: 0 auto 1.5rem;
}
.coming-soon-card .icon [data-lucide] { width: 28px; height: 28px; }
.coming-soon-card h3 {
  font-size: 1.65rem;
  font-weight: 600;
  margin-bottom: .65rem;
}

@media (max-width: 1024px) {
  .cert-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-aside { position: relative; top: 0; }
}

/* ---------------- MOBILE POLISH ---------------- */

@media (max-width: 720px) {
  :root { --pad: clamp(1rem, 5vw, 1.4rem); }

  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }
  .grain {
    width: 100dvw;
    height: 100dvh;
    right: auto;
    bottom: auto;
  }
  .nav {
    top: .85rem;
    left: .5rem;
    right: auto;
    width: calc(100dvw - 1rem);
    max-width: calc(100dvw - 1rem);
    transform: none;
  }
  .logo {
    font-size: clamp(1.08rem, 5vw, 1.28rem);
    letter-spacing: -0.015em;
  }
  .nav-right { gap: .45rem; }
  .btn-talk {
    padding: .58rem .85rem;
    gap: .35rem;
    font-size: .84rem;
  }
  .btn-talk [data-lucide] { width: 13px; height: 13px; }
  .menu-btn {
    width: 40px;
    height: 40px;
  }

  .overlay-menu {
    place-items: stretch;
    width: 100dvw;
    height: 100dvh;
    right: auto;
    bottom: auto;
    overflow-y: auto;
  }
  .overlay-inner {
    width: 100%;
    min-height: 100dvh;
    display: grid;
    align-content: center;
    padding: 5rem 1.25rem 2rem;
  }
  .menu-close {
    position: fixed;
    top: 1rem;
    left: calc(100dvw - 3.75rem);
    right: auto;
    z-index: 2;
  }
  .overlay-links {
    gap: .85rem;
  }
  .overlay-links a {
    font-size: clamp(2.1rem, 12vw, 3.6rem);
    line-height: .96;
  }
  .overlay-foot {
    flex-direction: column;
    gap: .75rem;
  }

  .hero {
    padding: 5.25rem var(--pad) 2.25rem;
  }
  .hero-stage {
    min-height: auto;
    justify-content: flex-start;
  }
  .halo {
    top: 0;
    width: min(88dvw, 360px);
    height: 560px;
  }
  .hero-headline .sans {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    margin-bottom: -.18em;
  }
  .hero-headline .display-italic em {
    font-size: clamp(3.5rem, 20vw, 5.2rem);
    line-height: .9;
  }
  .hero-portrait {
    width: clamp(240px, 78vw, 320px);
    height: clamp(310px, 100vw, 410px);
    margin-top: -1.25rem;
    margin-bottom: -.5rem;
  }
  .hero-blurb p {
    max-width: 32rem;
    margin: 0 auto;
    font-size: .94rem;
  }
  .hero-foot {
    margin-top: 1.5rem;
  }
  .trust-stack p {
    max-width: 19rem;
  }
  .btn-cta {
    justify-content: center;
    width: 100%;
    max-width: 24rem;
    padding: 1rem 1.25rem;
  }

  .section {
    padding: 4.25rem var(--pad);
  }
  .section.narrow {
    padding: 3.4rem var(--pad);
  }
  .section-head {
    margin-bottom: 2rem;
  }
  .section-head.between {
    align-items: flex-start;
  }
  .section-lead {
    font-size: .96rem;
  }
  .display-title,
  .display-title.big {
    font-size: clamp(2.05rem, 10vw, 3rem);
    line-height: 1.04;
  }
  .value-headline {
    margin-bottom: 2rem;
  }

  .showcase-grid,
  .works-row {
    gap: 1rem;
  }
  .showcase-content,
  .work-tile-meta {
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.05rem;
  }
  .showcase-content {
    padding: 1.2rem;
  }
  .showcase-content h3,
  .work-tile-meta h4 {
    font-size: clamp(1.15rem, 6vw, 1.55rem);
  }
  .showcase-content p,
  .work-tile-meta span {
    font-size: .86rem;
  }

  .skills-row {
    justify-content: stretch;
    margin-bottom: 2.5rem;
  }
  .skill-pill {
    width: 100%;
    padding: .65rem .85rem;
  }
  .manifesto-text {
    font-size: clamp(1.5rem, 8vw, 2.1rem);
  }
  .stats-strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .stat {
    text-align: left;
  }
  .stat strong::after {
    left: 0;
    transform: none;
  }

  .process-section {
    padding-top: 4rem;
  }
  .pricing-grid {
    max-width: none;
  }
  .price-card,
  .case-card,
  .cert-card,
  .coming-soon-card,
  .service-aside {
    padding: 1.5rem;
  }
  .price-amount strong {
    font-size: clamp(2.25rem, 14vw, 3rem);
  }

  .contact-shell {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
  }
  .chips {
    display: grid;
    grid-template-columns: 1fr;
  }
  .chip {
    justify-content: center;
  }

  .subpage-hero {
    padding: 7rem var(--pad) 3rem;
  }
  .subpage-title {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }
  .subpage-lead {
    font-size: .98rem;
  }
  .resume-actions {
    flex-direction: column;
  }

  .footer {
    margin-top: 3rem;
  }
  .footer-cta {
    padding: 4rem var(--pad) 3rem;
  }
  .footer-hook {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }
  .footer-hook-sub {
    font-size: .95rem;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
  }
  .footer-watermark {
    bottom: 5.25rem;
  }
}

@media (max-width: 360px) {
  .btn-talk span { display: none; }
  .btn-talk {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
  }
  .btn-talk [data-lucide] { width: 16px; height: 16px; }
  .hero-headline .display-italic em {
    font-size: clamp(3.25rem, 19vw, 4.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
