/* =============================================================
   Thru Do — style.css
   Design system + component styles (mobile-first base).
   Keyframes/scroll-reveal live in animations.css.
   Media queries live in responsive.css.
   ============================================================= */

/* ---------------------------------------------------------------
   1. Design tokens
   --------------------------------------------------------------- */
:root {
  /* Midnight navy + cream + brass + emerald */
  --navy: #0B1A2E;
  --navy-2: #142339;
  --navy-3: #27344A;
  --ink: #0B1A2E;
  --ink-2: #2A3447;
  --ink-3: #5D6679;
  --cream: #F5EFE2;
  --cream-2: #EEE5D2;
  --paper: #FAF6EC;
  --paper-2: #F2EBD9;
  --line: #0B1A2E1a;
  --line-2: #0B1A2E0f;
  --brass: #B87E3E;
  --brass-deep: #8E5F2C;
  --brass-soft: #E6CFA5;
  --brass-glow: #D7A865;
  --emerald: #1F5B3A;
  --emerald-soft: #C7DBC9;

  --display: "Fraunces", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Fluid rhythm */
  --section-y: clamp(64px, 9vw, 104px);
  --wrap-x: clamp(20px, 5vw, 32px);
  --radius: 14px;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------------------------------------------------------------
   2. Reset & base
   --------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
svg { display: inline-block; vertical-align: middle; }

::selection { background: var(--navy); color: var(--cream); }

/* Subtle paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .6;
  mix-blend-mode: multiply;
}

/* ---------------------------------------------------------------
   3. Accessibility helpers
   --------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 200;
  background: var(--navy);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

/* Consistent, visible keyboard focus across the site */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 4px;
}
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------
   4. Layout
   --------------------------------------------------------------- */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--wrap-x);
  position: relative;
  z-index: 2;
}
section { padding: var(--section-y) 0; position: relative; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 48px);
  margin-bottom: clamp(36px, 5vw, 56px);
  flex-wrap: wrap;
}
.section-head .lede { margin-top: 18px; }
.section-head .meta { min-width: 220px; }

/* ---------------------------------------------------------------
   5. Typography
   --------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 7.8vw, 116px); font-weight: 300; }
h2 { font-size: clamp(34px, 4.6vw, 68px); font-weight: 300; }
h3 { font-size: clamp(23px, 2.3vw, 31px); line-height: 1.15; font-weight: 400; }

.lede { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.6; color: var(--ink-2); max-width: 56ch; text-wrap: pretty; }
.small { font-size: 14px; color: var(--ink-3); }
.italic { font-style: italic; }
.num { font-family: var(--mono); font-feature-settings: "tnum" 1, "lnum" 1; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--brass);
  box-shadow: 0 0 0 3px #B87E3E22;
  margin-left: 2px;
}

/* ---------------------------------------------------------------
   6. Logo
   --------------------------------------------------------------- */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.logo .mark {
  width: 56px; height: 56px;
  flex: 0 0 56px;
  position: relative;
  transition: transform .6s var(--ease);
}
.logo .mark svg,
.logo .mark img { width: 100%; height: 100%; display: block; object-fit: contain; }

/* Two-tile "Thru Do" wordmark logo */
.logo .mark.tddo {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: stretch;
  gap: 3px;
  font-family: var(--sans);
}
.logo .mark.tddo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: .01em;
  line-height: 1;
  padding: 9px 13px;
}
.logo .mark.tddo .lb-thru { background: #1C4B34; color: #F5EFE2; border-radius: 11px 4px 4px 11px; }
.logo .mark.tddo .lb-do   { background: #C9A24B; color: #1C4B34; border-radius: 4px 11px 11px 4px; }
.logo .wm {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.logo .wm small {
  display: block;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: none;
  color: var(--ink-3);
  margin-top: 6px;
  white-space: nowrap;
}

/* ---------------------------------------------------------------
   7. Navigation
   --------------------------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 15px;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--ink); }
.nav-links a:hover::after,
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; }

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle .bars {
  position: relative;
  width: 20px; height: 14px;
}
.nav-toggle .bars span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s ease, top .3s var(--ease);
}
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 6px; }
.nav-toggle .bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 76px 0 auto 0;
  z-index: 49;
  background: color-mix(in oklab, var(--paper) 97%, transparent);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 12px var(--wrap-x) 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, transform .35s var(--ease), visibility .3s;
}
.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu a:not(.btn) {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 300;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line-2);
}
.mobile-menu .btn { margin-top: 18px; justify-content: center; }

/* ---------------------------------------------------------------
   8. Buttons
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: .04em;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: transform .2s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, #ffffff22 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .7s ease;
}
.btn:hover { background: var(--navy-2); box-shadow: 0 14px 32px -12px #0B1A2E80; }
.btn:hover::before { transform: translateX(100%); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 14px; height: 14px; transition: transform .25s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn.ghost { background: transparent; color: var(--ink); border-color: #0B1A2E2e; }
.btn.ghost:hover { background: #0B1A2E0a; box-shadow: none; }
.btn.brass { background: var(--brass); border-color: var(--brass); color: #fff; }
.btn.brass:hover { background: var(--brass-deep); border-color: var(--brass-deep); box-shadow: 0 14px 32px -12px #B87E3E80; }

/* ---------------------------------------------------------------
   9. Hero
   --------------------------------------------------------------- */
.hero { padding: clamp(40px, 6vw, 64px) 0 clamp(56px, 8vw, 80px); position: relative; overflow: hidden; }
.hero-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.hero h1 .it { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 8px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8' preserveAspectRatio='none'><path d='M2 5 Q 50 1, 100 4 T 198 4' stroke='%23B87E3E' stroke-width='1.5' fill='none' stroke-linecap='round'/></svg>") center/100% 100% no-repeat;
  opacity: 0;
  animation: swash 1.6s 1.1s var(--ease) forwards;
  transform-origin: left;
  transform: scaleX(0);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink-3);
  flex-wrap: wrap;
  font-size: 13px;
}
.hero-meta .pip { width: 4px; height: 4px; border-radius: 99px; background: var(--ink-3); opacity: .5; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }

/* Orbit centerpiece */
.orbit-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  justify-self: end;
  will-change: transform;
}
.orbit-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #E6CFA555 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, #1F5B3A15 0%, transparent 55%);
  filter: blur(8px);
}
.orbit { position: absolute; inset: 0; width: 100%; height: 100%; }
.orbit-ring { position: absolute; border: 1px dashed #0B1A2E22; border-radius: 50%; }
.orbit-ring.r1 { inset: 8%; }
.orbit-ring.r2 { inset: 22%; border-style: solid; border-color: #0B1A2E18; }
.orbit-ring.r3 { inset: 36%; border-style: dashed; border-color: #0B1A2E1a; }
.orbit-core {
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #2A3447 0%, #0B1A2E 60%, #050C1A 100%);
  box-shadow:
    inset 0 -8px 24px #00000066,
    inset 0 8px 18px #ffffff10,
    0 30px 60px -20px #0B1A2E80,
    0 0 0 1px #00000020;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.orbit-core::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffffff22, transparent 50%);
}
.orbit-core .label {
  color: var(--brass-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.orbit-core .label .big {
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -0.01em;
  text-transform: none;
  display: block;
  margin-top: 4px;
}

/* Orbit nodes */
.node {
  position: absolute;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-2);
  box-shadow: 0 10px 22px -10px #0B1A2E30;
  z-index: 3;
}
.node svg { width: 22px; height: 22px; }
.node .tip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  background: var(--paper);
  padding: 3px 8px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
}
.node.n1 { top: 11%; left: 50%; transform: translate(-50%, -50%); }
.node.n2 { top: 78%; left: 78%; transform: translate(-50%, -50%); }
.node.n3 { top: 78%; left: 22%; transform: translate(-50%, -50%); }

.node-sm {
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.node-sm svg { width: 16px; height: 16px; color: var(--ink-2); }
.node-sm.s1 { top: 16%; left: 84%; transform: translate(-50%, -50%); }
.node-sm.s2 { top: 50%; left: 96%; transform: translate(-50%, -50%); }
.node-sm.s3 { top: 96%; left: 50%; transform: translate(-50%, -50%); }
.node-sm.s4 { top: 50%; left: 4%; transform: translate(-50%, -50%); }
.node-sm.s5 { top: 16%; left: 16%; transform: translate(-50%, -50%); }

/* Orbital pulse tracks */
.orbit-track { position: absolute; top: 50%; left: 50%; pointer-events: none; z-index: 3; }
.orbit-track.t1 { width: 84%; height: 84%; }
.orbit-track.t2 { width: 56%; height: 56%; }
.pulse {
  position: absolute;
  top: 0; left: 50%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px #B87E3E33, 0 0 18px #B87E3E88;
  transform: translate(-50%, -50%);
}
.pulse.p2 { background: var(--emerald); box-shadow: 0 0 0 4px #1F5B3A22, 0 0 18px #1F5B3A55; }

/* ---------------------------------------------------------------
   10. Stats strip
   --------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: clamp(48px, 7vw, 80px);
}
.stat { padding: 28px 4px; border-right: 1px solid var(--line-2); transition: background .3s ease; }
.stat:last-child { border-right: none; }
.stat:hover { background: #0B1A2E08; }
.stat .k { font-family: var(--display); font-size: clamp(36px, 4vw, 46px); line-height: 1; letter-spacing: -0.02em; font-weight: 300; }
.stat .k .unit { font-family: var(--sans); font-size: 14px; color: var(--ink-3); margin-left: 4px; vertical-align: 8px; letter-spacing: 0; font-weight: 400; }
.stat .l { font-size: 11px; color: var(--ink-3); margin-top: 10px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--mono); }

/* ---------------------------------------------------------------
   11. Marquee
   --------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
  padding: 20px 0;
  margin: 0 calc(var(--wrap-x) * -1);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-2);
  font-weight: 300;
}
.marquee-item .dot { width: 6px; height: 6px; border-radius: 99px; background: var(--brass); display: inline-block; }

/* ---------------------------------------------------------------
   12. Manifesto
   --------------------------------------------------------------- */
.manifesto { border-top: 1px solid var(--line); padding-top: clamp(36px, 5vw, 56px); }
.manifesto p {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
  margin: 0;
}
.manifesto p .muted { color: var(--ink-3); }
.manifesto p .it { font-style: italic; color: var(--brass-deep); font-weight: 400; }
.manifesto-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: end; }
.doings { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; font-size: 15px; }
.doings .item {
  padding: 14px 0;
  border-top: 1px solid var(--line-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-2);
  transition: padding .3s ease, color .3s ease;
}
.doings .item:hover { padding-left: 8px; color: var(--ink); }
.doings .item .n { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .06em; }

/* ---------------------------------------------------------------
   13. How it works — steps
   --------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.step {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.step::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.step:hover::before { transform: scaleX(1); }
.step:hover { background: #FFFCF2; }
.step:last-child { border-right: none; }
.step .n { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .16em; text-transform: uppercase; }
.step h3 { margin-top: 80px; font-size: 26px; }
.step p { color: var(--ink-2); font-size: 15.5px; margin: 12px 0 0; max-width: 36ch; line-height: 1.55; }
.step .icon {
  position: absolute;
  top: 32px; right: 28px;
  width: 32px; height: 32px;
  color: var(--brass-deep);
  opacity: .55;
  transition: opacity .3s ease, transform .5s ease;
}
.step:hover .icon { opacity: 1; transform: rotate(8deg); }

/* ---------------------------------------------------------------
   14. Packages — horizontal carousel
   --------------------------------------------------------------- */
.pkg-stage { position: relative; padding: 8px 0 16px; }
.pkg-controls { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; }
.pkg-dots { display: flex; gap: 8px; align-items: center; }
.pkg-dots button {
  width: 24px; height: 4px;
  border-radius: 99px;
  background: #0B1A2E22;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, width .25s ease;
}
.pkg-dots button[aria-current="true"] { background: var(--navy); width: 40px; }
.pkg-arrows { display: flex; gap: 10px; }
.pkg-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pkg-arrow:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); box-shadow: 0 12px 24px -10px #0B1A2E55; }
.pkg-arrow:active { transform: scale(.95); }
.pkg-arrow[disabled] { opacity: .35; cursor: not-allowed; background: transparent; color: var(--ink); border-color: var(--line); }
.pkg-arrow svg { width: 18px; height: 18px; }

.pkg-scroller {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 0;
  padding: 8px 4px 24px;
  margin: 0 -4px;
  scrollbar-width: none;
}
.pkg-scroller::-webkit-scrollbar { display: none; }

.pkg {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 300px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s ease, background .3s ease, border-color .3s ease;
  box-shadow: 0 4px 12px -8px #0B1A2E20;
}
.pkg.is-active { transform: translateY(-8px); box-shadow: 0 30px 60px -25px #0B1A2E40; border-color: #0B1A2E25; }
.pkg.is-active.featured { box-shadow: 0 30px 60px -20px #0B1A2E80, 0 0 0 1px var(--brass); }
.pkg.featured {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--cream);
  border-color: var(--navy);
}
.pkg.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(500px 300px at 80% 100%, #B87E3E25, transparent 60%),
    radial-gradient(400px 280px at 20% 0%, #1F5B3A22, transparent 60%);
}
.pkg.featured h3,
.pkg.featured .price-fig { color: var(--cream); }
.pkg.featured .pack-row { border-color: #ffffff1a; }
.pkg.featured .pack-row .l { color: #ffffff80; }
.pkg.featured .pack-row .v { color: var(--cream); }
.pkg.featured .price-sub { color: #ffffff80; }
.pkg.featured .pack-name .tag { color: #ffffff80; }
.pkg.featured .price .ccy { color: #ffffffa0; }
.pkg .badge {
  position: absolute;
  top: 18px; right: 20px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pkg.featured .badge { color: var(--brass-soft); }
.pkg .badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 99px;
  background: var(--brass);
  box-shadow: 0 0 8px var(--brass-glow);
}
.pack-name { display: flex; justify-content: space-between; align-items: baseline; }
.pack-name h3 { font-size: 30px; font-weight: 400; }
.pack-name .tag { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.price { display: flex; align-items: baseline; gap: 6px; margin-top: -4px; }
.price-fig { font-family: var(--display); font-size: 60px; line-height: 1; letter-spacing: -0.03em; font-weight: 300; }
.price .ccy { font-family: var(--display); font-size: 34px; color: var(--ink-3); align-self: flex-start; margin-top: 8px; font-weight: 300; }
.price-sub { font-size: 13px; color: var(--ink-3); margin-top: 6px; font-family: var(--mono); }
.pkg-desc { font-size: 14px; line-height: 1.55; color: var(--ink-3); margin-top: 14px; max-width: 30ch; }
.pkg.featured .pkg-desc { color: #ffffff99; }
.pack-rows { display: flex; flex-direction: column; gap: 0; margin-top: 6px; }
.pack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line-2);
  font-size: 13.5px;
}
.pack-row .l { color: var(--ink-3); font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em; }
.pack-row .v { color: var(--ink); font-family: var(--mono); font-size: 14px; font-feature-settings: "tnum" 1; }
.pack-list { list-style: none; margin: 6px 0 22px; padding: 0; display: flex; flex-direction: column; }
.pack-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--line-2);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-2);
}
.pack-list li::before {
  content: "✓";
  flex: none;
  color: var(--brass);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.6;
}
.pkg.featured .pack-list li { border-color: #ffffff1a; color: #ffffffcc; }
.pkg.featured .pack-list li::before { color: var(--brass-glow); }
.pkg .btn { margin-top: auto; justify-content: center; width: 100%; }
.pkg.featured .btn { background: var(--brass); border-color: var(--brass); color: #fff; }
.pkg.featured .btn:hover { background: var(--brass-deep); border-color: var(--brass-deep); box-shadow: 0 14px 32px -10px #B87E3E80; }

/* ---------------------------------------------------------------
   15. Audience + Why
   --------------------------------------------------------------- */
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.audience { display: flex; flex-direction: column; gap: 0; }
.audience .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid var(--line-2);
  font-family: var(--display);
  font-size: 24px;
  font-weight: 300;
  transition: padding .3s ease;
  cursor: default;
}
.audience .row:hover { padding-left: 10px; }
.audience .row:last-child { border-bottom: 1px solid var(--line-2); }
.audience .row .meta { font-family: var(--mono); font-size: 11px; color: var(--ink-3); letter-spacing: .08em; text-transform: uppercase; }

.why { display: grid; grid-template-columns: 1fr; gap: 0; }
.why .pt { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--line-2); }
.why .pt:last-child { border-bottom: 1px solid var(--line-2); }
.why .pt .ico { width: 24px; height: 24px; flex: 0 0 24px; margin-top: 2px; color: var(--brass-deep); transition: transform .4s var(--ease); }
.why .pt:hover .ico { transform: scale(1.15) rotate(-6deg); }
.why .pt h4 { font-family: var(--display); font-size: 22px; margin: 0 0 4px; font-weight: 400; }
.why .pt p { margin: 0; font-size: 15px; color: var(--ink-2); line-height: 1.55; }

/* ---------------------------------------------------------------
   16. Founder
   --------------------------------------------------------------- */
.founder {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-2);
}
.founder::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(800px 300px at -10% 110%, #B87E3E25, transparent 60%),
    radial-gradient(600px 400px at 110% -10%, #1F5B3A15, transparent 60%);
}
.founder .portrait {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  background:
    linear-gradient(135deg, #0B1A2E18 0%, transparent 50%),
    linear-gradient(45deg, var(--brass-soft), var(--cream-2));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 50px -25px #0B1A2E40;
}
.founder .portrait .ph {
  font-family: var(--display);
  font-style: italic;
  font-size: 140px;
  font-weight: 300;
  color: #ffffff;
  mix-blend-mode: overlay;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  letter-spacing: -0.04em;
}
.founder .portrait .label {
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--paper);
  padding: 6px 10px;
  border-radius: 99px;
}
.founder h3 { font-size: 34px; font-weight: 400; }
.founder blockquote {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.25;
  font-weight: 300;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
  position: relative;
}
.founder blockquote::before { content: "\201C"; color: var(--brass-deep); font-size: 54px; line-height: 0; vertical-align: -12px; margin-right: 6px; }
.founder .sig { display: flex; align-items: center; gap: 14px; margin-top: 8px; color: var(--ink-2); font-size: 14px; flex-wrap: wrap; }
.founder .sig .nm { font-family: var(--display); font-style: italic; font-size: 22px; color: var(--ink); font-weight: 400; }
.founder .sig .pip { width: 4px; height: 4px; border-radius: 99px; background: var(--ink-3); opacity: .5; display: inline-block; }

/* ---------------------------------------------------------------
   17. CTA
   --------------------------------------------------------------- */
.cta {
  background: linear-gradient(160deg, var(--navy) 0%, #07111F 100%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(56px, 8vw, 96px) clamp(28px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px #0B1A2E;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 400px at 90% 110%, #B87E3E35, transparent 60%),
    radial-gradient(500px 400px at 10% 0%, #1F5B3A55, transparent 60%);
}
.cta-ring {
  position: absolute;
  border: 1px solid #ffffff10;
  border-radius: 50%;
  width: 600px; height: 600px;
  right: -200px; bottom: -200px;
}
.cta-ring::before,
.cta-ring::after { content: ""; position: absolute; border: 1px dashed #ffffff14; border-radius: 50%; }
.cta-ring::before { inset: 60px; }
.cta-ring::after { inset: 120px; border-style: solid; border-color: #ffffff08; }
.cta h2 { color: var(--cream); max-width: 14ch; position: relative; }
.cta h2 .it { font-style: italic; color: var(--brass-soft); font-weight: 400; }
.cta .sub { color: #ffffffa0; margin-top: 14px; max-width: 48ch; font-size: 16px; line-height: 1.6; position: relative; }
.cta .actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; position: relative; z-index: 1; }
.cta .btn { background: var(--brass); color: #fff; border-color: var(--brass); }
.cta .btn:hover { background: var(--brass-deep); border-color: var(--brass-deep); box-shadow: 0 16px 32px -10px #B87E3E88; }
.cta .small { color: #ffffff70; }

/* ---------------------------------------------------------------
   18. Footer
   --------------------------------------------------------------- */
footer { padding: 56px 0; border-top: 1px solid var(--line); position: relative; z-index: 2; }
.foot { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.3fr; gap: 32px; }
.foot h5 { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 14px; font-weight: 500; }
.foot a { display: block; color: var(--ink-2); text-decoration: none; font-size: 15px; padding: 5px 0; transition: color .2s ease, transform .25s ease; }
.foot nav a:hover { color: var(--ink); transform: translateX(3px); }
.foot .brand p { color: var(--ink-3); font-size: 15px; line-height: 1.6; max-width: 40ch; margin-top: 16px; }

/* Footer logo: slightly smaller mark, larger wordmark */
.foot .brand .logo { display: inline-flex; }
.foot .brand .logo .mark { display: inline-block; width: 50px; height: 50px; flex: 0 0 50px; }
.foot .brand .logo .mark.tddo { display: inline-flex; width: auto; height: auto; flex: 0 0 auto; }
.foot .brand .logo .wm { font-size: 16px; letter-spacing: .26em; }
.foot .brand .logo .wm small { font-size: 11px; margin-top: 7px; }

/* Footer prominent email */
.foot-email {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink) !important;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px !important;
  background: var(--cream);
  transition: background .25s ease, border-color .25s ease, transform .2s ease;
}
.foot-email svg { width: 17px; height: 17px; color: var(--brass-deep); }
.foot-email:hover { background: #fff; border-color: #0B1A2E2e; transform: translateY(-1px); }

/* Footer contact area */
.foot-contact .contact-line {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 0 !important;
  border-top: 1px solid var(--line-2);
  font-size: 14.5px;
  color: var(--ink-2);
}
.foot-contact .contact-line:first-of-type { border-top: none; }
.foot-contact .contact-line svg { width: 20px; height: 20px; flex: 0 0 20px; color: var(--brass-deep); transition: transform .3s var(--ease); }
.foot-contact .contact-line:hover { color: var(--ink); transform: none; }
.foot-contact .contact-line:hover svg { transform: scale(1.12); }
.foot-contact .contact-line span { display: flex; flex-direction: column; line-height: 1.3; }
.foot-contact .contact-line .c-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  color: var(--ink-3);
  font-size: 12.5px;
  font-family: var(--mono);
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------
   19. Cursor glow (desktop pointer only)
   --------------------------------------------------------------- */
.cursor-glow {
  position: fixed;
  width: 380px; height: 380px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, #B87E3E18, transparent 65%);
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity .4s ease;
  mix-blend-mode: multiply;
  will-change: left, top;
}

/* ---------------------------------------------------------------
   20. Testimonials
   --------------------------------------------------------------- */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tm-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px -8px #0B1A2E20;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .3s ease;
}
.tm-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px 220px at 100% 0%, #B87E3E12, transparent 60%);
  opacity: 0;
  transition: opacity .4s ease;
}
.tm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -28px #0B1A2E45;
  border-color: #0B1A2E22;
}
.tm-card:hover::before { opacity: 1; }
.tm-stars { display: inline-flex; gap: 3px; }
.tm-stars svg { width: 17px; height: 17px; fill: var(--brass); }
.tm-more { display: flex; justify-content: center; margin-top: clamp(32px, 4vw, 44px); }
.tm-card blockquote {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.tm-person { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.tm-avatar { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; overflow: hidden; box-shadow: 0 6px 16px -8px #0B1A2E55; }
.tm-avatar svg { width: 100%; height: 100%; display: block; }
.tm-meta { display: flex; flex-direction: column; line-height: 1.35; }
.tm-meta .nm { font-family: var(--sans); font-weight: 600; font-size: 15px; color: var(--ink); }
.tm-meta .role { font-family: var(--mono); font-size: 11.5px; color: var(--ink-3); letter-spacing: .02em; }

/* ---------------------------------------------------------------
   21. Metrics strip (expertise)
   --------------------------------------------------------------- */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(40px, 5vw, 56px);
}
.metric { padding: 26px 4px; border-right: 1px solid var(--line-2); transition: background .3s ease; }
.metric:last-child { border-right: none; }
.metric:hover { background: #0B1A2E08; }
.metric .k { font-family: var(--display); font-size: clamp(34px, 3.6vw, 44px); line-height: 1; letter-spacing: -0.02em; font-weight: 300; }
.metric .k .unit { font-family: var(--sans); font-size: 14px; color: var(--ink-3); margin-left: 2px; vertical-align: 6px; font-weight: 400; }
.metric .l { font-size: 11.5px; color: var(--ink-3); margin-top: 10px; letter-spacing: .1em; text-transform: uppercase; font-family: var(--mono); }

/* ---------------------------------------------------------------
   22. Expertise — capability cards
   --------------------------------------------------------------- */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cap-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s ease, border-color .3s ease;
  box-shadow: 0 4px 12px -8px #0B1A2E18;
}
.cap-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), var(--brass-glow));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.cap-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px #0B1A2E40; border-color: #0B1A2E22; }
.cap-card:hover::after { transform: scaleX(1); }
.cap-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 13px;
  background: linear-gradient(150deg, var(--cream), var(--cream-2));
  border: 1px solid var(--line-2);
  color: var(--ink);
  margin-bottom: 20px;
  transition: transform .4s var(--ease), color .3s ease;
}
.cap-ico svg { width: 25px; height: 25px; }
.cap-card:hover .cap-ico { transform: translateY(-2px) rotate(-4deg); color: var(--brass-deep); }
.cap-card h3 { font-size: 23px; font-weight: 400; }
.cap-card p { margin: 10px 0 16px; font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.cap-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-block;
  padding-top: 14px;
  border-top: 1px solid var(--line-2);
  width: 100%;
}

/* ---------------------------------------------------------------
   23. Portfolio — project cards
   --------------------------------------------------------------- */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proj-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px -8px #0B1A2E18;
  transition: transform .45s var(--ease), box-shadow .45s ease, border-color .3s ease;
}
.proj-card:hover { transform: translateY(-7px); box-shadow: 0 34px 64px -28px #0B1A2E50; border-color: #0B1A2E22; }
.proj-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--line-2);
}
.proj-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #ffffff10, transparent 50%);
  pointer-events: none;
}
.proj-cat {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  background: color-mix(in oklab, var(--paper) 86%, transparent);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid var(--line-2);
  padding: 5px 11px;
  border-radius: 999px;
}
/* Distinct gradient per category */
.shot-a { background: linear-gradient(150deg, #E6CFA5, #F2EBD9); }
.shot-b { background: linear-gradient(150deg, #C7DBC9, #EEE5D2); }
.shot-c { background: linear-gradient(150deg, #27344A, #0B1A2E); }
.shot-d { background: linear-gradient(150deg, #D7A865, #B87E3E); }
.shot-e { background: linear-gradient(150deg, #DCE4EC, #EEE5D2); }
.shot-f { background: linear-gradient(150deg, #142339, #27344A); }

/* Mock UI building blocks inside the shots */
.proj-shot .shot-ui {
  width: 72%;
  background: #ffffffce;
  border-radius: 9px;
  padding: 12px;
  box-shadow: 0 18px 36px -18px #0B1A2E66;
  transition: transform .5s var(--ease);
}
.proj-card:hover .shot-ui,
.proj-card:hover .shot-phone,
.proj-card:hover .shot-chat,
.proj-card:hover .shot-chart,
.proj-card:hover .shot-flow { transform: translateY(-4px) scale(1.02); }
.shot-ui .bar { height: 8px; width: 46%; border-radius: 99px; background: var(--brass); margin-bottom: 9px; }
.shot-ui .block { height: 26px; border-radius: 6px; background: #0B1A2E18; }
.shot-ui .block.lg { height: 40px; margin-bottom: 9px; }
.shot-ui .block.sm { height: 16px; margin-top: 8px; }
.shot-ui .row { display: flex; gap: 7px; }
.shot-ui .cell { flex: 1; height: 22px; border-radius: 6px; background: #0B1A2E12; }
.shot-ui .cell.tall { height: 46px; }
.shot-phone {
  width: 92px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 12px;
  box-shadow: 0 20px 40px -16px #0B1A2E77;
  transition: transform .5s var(--ease);
}
.shot-phone .phone-notch { width: 30px; height: 5px; border-radius: 99px; background: #0B1A2E33; margin: 0 auto 12px; }
.shot-phone .phone-block { height: 38px; border-radius: 8px; background: linear-gradient(135deg, #1F5B3A, #143A26); margin-bottom: 10px; }
.shot-phone .phone-line { height: 7px; border-radius: 99px; background: #0B1A2E18; margin-bottom: 7px; }
.shot-phone .phone-line.short { width: 60%; }
.shot-chat { width: 74%; display: flex; flex-direction: column; gap: 9px; transition: transform .5s var(--ease); }
.shot-chat .msg { height: 18px; border-radius: 9px; }
.shot-chat .msg.in { width: 70%; background: #ffffff33; border: 1px solid #ffffff2e; }
.shot-chat .msg.out { width: 80%; align-self: flex-end; background: var(--brass); }
.shot-chat .msg.short { width: 45%; }
.shot-chart { width: 70%; height: 56%; display: flex; align-items: flex-end; gap: 9px; transition: transform .5s var(--ease); }
.shot-chart .cbar { flex: 1; border-radius: 5px 5px 0 0; background: #0B1A2E; opacity: .82; }
.shot-chart .cbar:nth-child(even) { background: var(--navy-3); }
.shot-flow { width: 78%; display: flex; align-items: center; transition: transform .5s var(--ease); }
.shot-flow .dot { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 50%; background: #fff; border: 2px solid var(--brass); box-shadow: 0 8px 18px -8px #0B1A2E66; }
.shot-flow .link { flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--brass) 0 6px, transparent 6px 12px); }
.proj-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.proj-body h3 { font-size: 22px; font-weight: 400; }
.proj-body p { margin: 0; font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }
.tech-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 8px; }
.tech-badges .tech {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .03em;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--line-2);
  border-radius: 99px;
  padding: 4px 11px;
  transition: background .25s ease, color .25s ease;
}
.proj-card:hover .tech-badges .tech { background: var(--cream); }

/* ---------------------------------------------------------------
   24. Floating WhatsApp button
   --------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: clamp(18px, 3vw, 28px);
  bottom: clamp(18px, 3vw, 28px);
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -8px #25D36699, 0 4px 10px -2px #00000040;
  transition: transform .25s var(--ease), box-shadow .25s ease;
}
.wa-float svg { width: 34px; height: 34px; position: relative; z-index: 1; }
.wa-float .wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: 0;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: 0 20px 38px -8px #25D366aa, 0 6px 14px -2px #00000050; }
.wa-float:active { transform: scale(1.02); }
