@font-face{
  font-family:'Outfit';
  src:url('assets/fonts/outfit.woff2') format('woff2');
  font-weight:100 900; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Inter';
  src:url('assets/fonts/inter.woff2') format('woff2');
  font-weight:100 900; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Inter';
  src:url('assets/fonts/inter-italic.woff2') format('woff2');
  font-weight:100 900; font-style:italic; font-display:swap;
}

:root{
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --bg: #1a1a1a;
  --surface: #222222;
  --surface-2: #272727;
  --border: #343434;
  --text: #f9f9fb;
  --text-muted: #d8d8dc;
  --text-faint: #b0b0b6;
  --fucsia: #d97cb5;
  --fucsia-strong: #e18ec0;
  --fucsia-soft: rgba(217,124,181,0.14);
  --purple-chip: #3b1029;
  --purple-chip-text: #f0c6de;
  --mint-chip: #123328;
  --mint-chip-text: #a9e6cf;

  --result: #a9e6cf;
  --result-dim: #7fd4b6;
  --max: 1100px;
  --max-narrow: 760px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
::selection{ background: rgba(217,124,181,0.4); color: #fff; }
a{ color: inherit; text-decoration: none; }
h1,h2,h3{ font-family: var(--display); font-weight: 600; margin:0; letter-spacing: -0.01em; }
p{ margin:0; }
img{ max-width:100%; display:block; }

a:focus-visible, button:focus-visible, summary:focus-visible{
  outline: 2px solid var(--fucsia);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.eyebrow{
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  display:flex;
  align-items:center;
  gap:9px;
}
.eyebrow::before{
  content:"";
  width: 14px;
  height: 2px;
  background: var(--fucsia);
  display:inline-block;
  border-radius: 2px;
}

.stitch{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 20px;
  height: 20px;
  flex-shrink:0;
  color: var(--fucsia);
}
.stitch svg{ width:100%; height:100%; }

header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(26,26,26,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
nav.wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height: 72px;
}
.logo{
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  text-transform: lowercase;
  display:inline-flex;
  flex-direction:column;
  gap: 3px;
}
.logo span{ color: var(--text-muted); font-weight: 400; }
.navlinks{
  display:flex;
  align-items:center;
  gap: 30px;
  font-size: 14.5px;
  color: var(--text-muted);
}
.navlinks a:not(.cta){ transition: color .2s ease; }
.navlinks a:not(.cta):hover{ color: var(--text); }
.navlinks .cta{
  color: var(--bg);
  background: var(--text);
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 13.5px;
  transition: background .2s ease;
}
.navlinks .cta:hover{ background: var(--fucsia); color: #1a1a1a; }

.nav-toggle{
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0 9px; margin-right: -9px;
  background: none; border: 0; cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.nav-toggle span{
  display: block; height: 2px; width: 100%; background: var(--text); border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
header.is-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
header.is-open .nav-toggle span:nth-child(2){ opacity: 0; }
header.is-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.caret{ width: 9px; height: 6px; flex-shrink: 0; transition: transform .18s ease; }
.heart{ width: 13px; height: 13px; color: var(--fucsia-strong); vertical-align: -2px; }

.navdrop{ position: relative; }
.navdrop > a{ display:flex; align-items:center; gap:5px; cursor:pointer; }
.navdrop:hover .navdrop-menu, .navdrop:focus-within .navdrop-menu{ opacity:1; visibility:visible; transform: translateY(0); }
.navdrop-menu{
  position:absolute; top: 34px; left: -16px; width: 240px;
  background: var(--surface); border:1px solid var(--border); border-radius: 12px;
  padding: 8px; opacity:0; visibility:hidden; transform: translateY(-6px);
  transition: all .18s ease; box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}
.navdrop-menu a{ display:flex; flex-direction:column; gap:2px; padding: 10px 12px; border-radius: 8px; font-size: 13.5px; }
.navdrop-menu a:hover{ background: var(--surface-2); }
.navdrop-menu a .t{ color: var(--text); font-weight:500; }
.navdrop-menu a .s{ color: var(--text-faint); font-size:12px; }
.navdrop-menu a.current .t{ color: var(--fucsia-strong); }

.btn{
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14.5px;
  font-weight: 500;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition: all .2s ease;
}
.btn-primary{ background: var(--text); color: var(--bg); }
.btn-primary:hover{ background: var(--fucsia); color: #1a1a1a; }
.btn-ghost{ border: 1.5px solid var(--border); color: var(--text); }
.btn-ghost:hover{ border-color: var(--fucsia); color: var(--fucsia-strong); }

section{ padding: 76px 0; border-top: 1px solid var(--border); }
.section-head{ margin-bottom: 44px; max-width: 62ch; }
.section-head h2{ font-size: clamp(23px, 2.6vw, 30px); margin-top: 12px; }

.tag{
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--purple-chip-text);
  background: var(--purple-chip);
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
}
.tag.mint{ color: var(--mint-chip-text); background: var(--mint-chip); }

.work-list{ display:flex; flex-direction:column; }

.work-item{
  padding: 20px 16px;
  margin: 0 -8px;
  border-top: 1px solid var(--border);
  display:grid;
  grid-template-columns: 76px minmax(0, 1fr) 284px 104px;
  gap: 24px;
  align-items:center;
  transition: background .2s ease;
  border-radius: 8px;
}
.work-list a.work-item:last-child{ border-bottom: 1px solid var(--border); }
.work-item{ position: relative; }
@media (hover: hover){
  a.work-item:hover{ background: var(--surface-2); }
  a.work-item:hover .work-main h3{ color: var(--fucsia-strong); }
  a.work-item:hover .work-main p{ color: var(--text); }
  a.work-item:hover .tag.mint{ background: rgba(169,230,207,0.20); }
}
a.work-item:active{ background: var(--surface-2); }
a.work-item:active .work-main h3{ color: var(--fucsia-strong); }
.work-main h3, .work-main p{ transition: color .18s ease; }
.tag{ transition: background .18s ease; }
a.work-item::after{ content: ""; position: absolute; inset: 0; border-radius: 8px; }
.work-thumb{
  width: 76px; height: 76px; border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: var(--surface);
  border: 1px solid var(--border);
  flex-shrink:0;
  color: var(--text);
  transition: color .2s ease, border-color .2s ease;
}

.work-thumb svg{ width: 30px; height: 30px; }
.work-item:hover .work-thumb{ color: var(--fucsia-strong); border-color: var(--fucsia-strong); }

.work-item{ align-items: start; }
.work-thumb, .work-tags, .work-arrow{
  align-self: center; margin-top: 0;
  justify-self: end; margin-top: 4px; }
.work-tags{ align-self: center; margin-top: 0; }
.work-main h3{ font-size: 20px; font-weight: 600; margin-bottom: 5px; }
.work-main p{ color: var(--text-muted); font-size: 14px; max-width: 44ch; }
.work-tags{ display:flex; flex-wrap:wrap; gap: 8px; justify-content: flex-start; align-content: center; }
.work-arrow{
  justify-self: end;
  align-self: center; margin-top: 0;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color: var(--text-faint);
  transition: all .2s ease;
  justify-self:end;
}
.work-item:hover .work-arrow{
  justify-self: end; color: #1a1a1a; background: var(--fucsia-strong); border-color: var(--fucsia-strong); transform: translateX(4px); }

@media (max-width: 700px){
  .work-item{
    grid-template-columns: 56px minmax(0, 1fr) 18px;
    gap: 0 14px;
    margin: 0 -28px; padding: 18px 28px; border-radius: 0;
    align-items: start;
  }
  a.work-item::after{ border-radius: 0; }
  .work-thumb{
    width: 56px; height: 56px; border-radius: 12px;
    grid-column: 1; grid-row: 1; justify-self: start; margin-top: 3px;
  }
  .work-thumb svg{ width: 24px; height: 24px; }
  .work-main{ grid-column: 2; grid-row: 1; }
  .work-main h3{ font-size: 17.5px; }
  .work-main p{ max-width: none; }
  .work-arrow{
    display: flex; grid-column: 3; grid-row: 1;
    align-self: start; justify-self: end; margin-top: 5px;
    width: auto; height: auto; border: 0; border-radius: 0;
    background: none; color: var(--text-faint);
  }
  .work-arrow svg{ width: 18px; height: 18px; }
  a.work-item:active .work-arrow{ color: var(--fucsia-strong); background: none; transform: none; }
  .work-tags{
    display: flex; flex-wrap: wrap; gap: 8px;
    grid-column: 2; grid-row: 2; justify-self: start; margin-top: 10px;
  }
}

footer{ padding: 76px 0 32px; margin-top: 40px; border-top: 1px solid var(--border); }
.footer-cta{
  text-align:left; max-width: 820px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
  padding: 64px 60px;
}
@media (max-width: 760px){
  footer{ padding: 56px 0 28px; }
  .footer-cta{ padding: 36px 22px; border-radius: 16px; }
  .footer-cta h2{ max-width: none; }
  .footer-actions .btn{ width: 100%; justify-content: center; }
  .footer-bottom{ margin-top: 44px; }
}
.footer-cta h2{ font-size: clamp(26px, 3.4vw, 40px); max-width: 22ch; line-height: 1.18; margin: 0; }
.footer-cta p{ margin: 16px 0 0; color: var(--text-muted); font-size: 16px; max-width: 480px; }
.footer-actions{ margin-top: 30px; display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-start; }
.footer-bottom{
  margin-top: 64px; padding-top: 22px; border-top: 1px solid var(--border);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap: 14px;
  font-size: 13px; color: var(--text-faint);
}
.footer-links{ display:flex; gap:22px; }
.footer-links a{ color: var(--fucsia-strong); font-weight: 500; }
.footer-links a:hover{ color: var(--text); }
.footer-note{ margin-top: 16px; font-size: 13.5px; color: var(--text-muted); }
.footer-note a{ color: var(--fucsia-strong); font-weight: 600; }
.footer-note a:hover{ color: var(--text); }

@media (max-width: 900px){ .navlinks{ gap: 20px; } }

@media (max-width: 760px){
  .nav-toggle{ display: flex; }
  nav.wrap{ height: 62px; }
  .navlinks{
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 6px 0 16px; font-size: 16px;
    box-shadow: 0 18px 34px rgba(0,0,0,0.42);
    max-height: calc(100vh - 62px); overflow-y: auto;
  }
  header.is-open .navlinks{ display: flex; }
  .navlinks > a{ padding: 13px 28px; color: var(--text); }
  .navdrop{ position: static; }
  .navdrop > a{ padding: 13px 28px; color: var(--text-faint); font-size: 13px;
    text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; pointer-events: none; }
  .navdrop > a .caret{ display: none; }
  .navdrop-menu{
    position: static; opacity: 1; visibility: visible; transform: none;
    width: auto; background: none; border: 0; box-shadow: none;
    padding: 0 0 8px; transition: none;
  }
  .navdrop-menu a{ padding: 11px 28px 11px 40px; font-size: 15px; }
  .navdrop-menu a .s{ font-size: 12.5px; }
  .navlinks .cta{ margin: 12px 28px 0; justify-content: center; text-align: center;
    display: flex; padding: 12px 18px; font-size: 15px; }
}

.band{ padding: 72px 0; }
.band-dark{ background: var(--bg); }

.band-row{
  display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items:start;
}
@media (max-width: 860px){
.band-row{ grid-template-columns: 1fr !important; gap: 28px; }
}
.band-row h2{ font-size: clamp(21px, 2.3vw, 26px); margin-bottom: 14px; }
.band-row p{ font-size: 15px; line-height: 1.68; margin-bottom: 12px; max-width: 52ch; }
.band-row ul{ margin: 10px 0 0; padding-left: 18px; max-width: 52ch; }
.band-row li{ font-size: 14.5px; line-height: 1.65; margin-bottom: 7px; }
.band-row li::marker{ color: var(--fucsia); }

.case-back{
  display:inline-flex; align-items:center; gap:8px;
  font-size: 13.5px; color: var(--text-faint); font-weight: 500;
  margin-bottom: 28px;
}
.case-back:hover{ color: var(--fucsia-strong); }

.case-hero-photo{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 440px;
  display:flex;
  align-items:flex-end;
  background-size: cover;
  background-position: center;
  margin-bottom: 40px;
}
.case-hero-photo::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(15,15,16,0.94) 0%, rgba(15,15,16,0.75) 32%, rgba(15,15,16,0.15) 60%, rgba(15,15,16,0) 78%);
}
.case-hero-photo-content{
  position: relative; z-index:2;
  max-width: 50%;
  padding: 44px;
}
.case-hero-photo-content .eyebrow{ color: rgba(255,255,255,0.65); }
.case-hero-photo-content .eyebrow::before{ background: var(--fucsia-strong); }
.case-hero-photo-content h1{ font-size: clamp(28px, 3.4vw, 40px); color:#fff; line-height:1.18; margin-top:14px; }
.case-hero-photo-content h2{ font-size: clamp(24px, 2.8vw, 32px); color:#fff; line-height:1.22; margin-top:14px; }
.case-hero-photo-content .lede{ margin-top:14px; font-size:16px; color:rgba(255,255,255,0.82); max-width:44ch; }
.case-hero-photo-content ul{ margin-top:18px; padding-left:18px; }
.case-hero-photo-content ul li{ color:rgba(255,255,255,0.85); font-size:14.5px; line-height:1.6; margin-bottom:8px; }
.case-hero-photo-content ul li strong{ color:#fff; }
@media (max-width: 760px){
  .case-hero-photo{
    display: block; min-height: 0;
    background-size: 0 0;
    background-color: var(--surface);
    border: 1px solid var(--border); border-radius: 14px;
    overflow: hidden; margin-bottom: 32px;
  }
  .case-hero-photo::before{
    content: ""; position: static; inset: auto;
    display: block; width: 100%; aspect-ratio: 16 / 9;
    background-image: inherit;
    background-size: cover;
    background-position: right center;
  }
  .case-hero-photo-content{ max-width: 100%; padding: 22px 20px 26px; }
  .case-hero-photo-content h1{ font-size: clamp(25px, 6.6vw, 32px); }
  .case-hero-photo-content h2{ font-size: clamp(22px, 6vw, 28px); }
  .case-hero-photo-content .lede{ font-size: 15px; color: var(--text-muted); }
  .case-hero-photo-content .eyebrow{ color: var(--text-faint); }
  .case-hero-photo-content ul li{ color: var(--text-muted); }
  .case-hero-photo-content ul li strong{ color: var(--text); }
}

.case-bio{ display:flex; align-items:center; gap:22px; margin-bottom:40px; margin-top:56px; }
.case-bio img{ width:76px; height:76px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.case-bio p{ font-size:14.5px; color:var(--text-muted); line-height:1.6; margin:0; }
.case-bio p strong{ color:var(--text); }
.case-bio p a{ color:var(--fucsia-strong); font-weight:500; }
@media (max-width: 640px){
  .case-bio{ flex-direction: column; align-items: flex-start; gap: 16px; }
}

.meta-strip{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 0;
  font-size: 13.5px; color: var(--text-faint);
  padding: 14px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.meta-strip .item{ padding: 0 20px; border-right: 1px solid var(--border); }
.meta-strip .item:first-child{ padding-left:0; }
.meta-strip .item:last-child{ border-right:none; }
.meta-strip strong{ color: var(--text-muted); font-weight:500; }
@media (max-width: 700px){
  .meta-strip{ flex-direction:column; align-items:flex-start; gap:8px; }
  .meta-strip .item{ border-right:none; padding: 0; }
}

.glance-intro{ max-width: 78ch; }
.glance-intro p{ font-size: 19px; line-height:1.6; color: var(--text); font-family: var(--display); font-weight:400; }
.glance-intro p strong{ font-weight:600; color: var(--text); }
.glance-role-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items:start; }
.glance-role-row .glance-intro p{ font-size: 17px; }
.glance-role-row .ownership-box p{ font-size: 14px; line-height:1.6; }
@media (max-width: 860px){ .glance-role-row{ grid-template-columns: 1fr; gap: 28px; } }

.case-section{ margin-bottom: 64px; }
.case-section h2{ font-size: clamp(21px, 2.4vw, 27px); margin-bottom: 18px; }
.case-section .lede{ font-size: 17px; color: var(--text-muted); line-height: 1.7; max-width: 68ch; margin-bottom: 20px; }
.case-section p{ font-size: 15.5px; color: var(--text-muted); line-height: 1.7; max-width: 68ch; margin-bottom: 14px; }
.case-section ul{ margin: 0 0 14px; padding-left: 20px; max-width: 68ch; }
.case-section li{ font-size: 15.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.case-section li strong{ color: var(--text); font-weight: 600; }

.ownership-box{
  border: 1px solid var(--fucsia-strong);
  background: var(--fucsia-soft);
  border-radius: 14px;
  padding: 26px 28px;
  margin-bottom: 20px;
  max-width: 68ch;
}
.ownership-box .eyebrow{ color: var(--fucsia-strong); margin-bottom: 10px; }
.ownership-box .eyebrow::before{ background: var(--fucsia-strong); }
.ownership-box p{ color: var(--text); margin-bottom: 0; }

.impact-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 8px; }
.impact-stat{ border: 1px solid var(--border); border-radius: 14px; padding: 20px 18px; }
.impact-stat .num{ font-family: var(--display); font-size: 24px; font-weight: 700; color: var(--result); margin-bottom: 8px; display:flex; align-items:center; gap:6px; }
.impact-stat .num.pending{ font-size: 14px; color: var(--text-faint); font-weight: 600; font-family: var(--sans); }
.impact-stat .num.pending svg{ color: var(--result); flex-shrink:0; }
.impact-stat p{ font-size: 14px; color: var(--text-muted); line-height: 1.5; margin:0; }

@media (max-width: 900px){ .impact-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px){ .impact-grid{ grid-template-columns: 1fr !important; gap: 12px; } }

.flow{
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  align-items: start;
  margin-top: 8px;
}
.flow-node{
  position: relative;
  padding: 0 16px 0 0;
}
.flow-node .fn-icon{
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color: var(--fucsia-strong);
  margin-bottom: 14px;
  position: relative;
}
.flow-node{ transition: none; }
.flow-node .fn-icon{ transition: background .4s ease, color .4s ease, border-color .4s ease; }
.flow-node.active .fn-icon{ background: var(--fucsia-strong); color: #1a1a1a; border-color: var(--fucsia-strong); }
.flow-node.active h4{ color: var(--fucsia-strong); transition: color .4s ease; }
.flow-node .fn-icon::after{
  content:"";
  position:absolute; top: 50%; left: calc(100% + 3px); width: calc(100% - 3px); height:1px;
  background: var(--border);
  display:block;
}
.flow-node:last-child .fn-icon::after{ display:none; }
.flow-node h4, .flow-node h3{ font-family: var(--display); font-size:14px; font-weight:600; margin-bottom:6px; }
.flow-node p{ font-size: 14px; color: var(--text-muted); line-height:1.5; }

@media (max-width: 1000px) and (min-width: 861px){
  .flow{ grid-template-columns: repeat(3, 1fr) !important; gap: 24px 0; }
}
@media (max-width: 640px){
  .flow{ grid-template-columns: 1fr !important; gap: 26px 0; }
  .flow-node{ padding-right: 0; }
}
@media (max-width: 860px){
  .flow{ grid-template-columns: 1fr; gap: 24px; }
  .flow-node .fn-icon::after{ display:none; }
}

.flow-featured-wrap{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 40px;
  margin-top: 28px;
}
.flow.flow-featured{ grid-template-columns: repeat(6, 1fr); gap: 0; margin-top: 0; }
.flow-featured .fn-icon{
  width: 60px; height: 60px; border-radius: 16px;
  margin-bottom: 18px;
}
.flow-featured .fn-icon svg{ width: 24px; height: 24px; }
.flow-featured .fn-icon::after{ top: 30px; height: 2px; left: calc(100% + 4px); width: calc(100% - 4px); }
.flow-featured h4, .flow-featured h3{ font-size: 16px; margin-bottom: 8px; }
.flow-featured p{ font-size: 13.5px; line-height: 1.55; }
.flow-featured .flow-node{ padding: 0 18px 0 0; transition: transform .4s ease; }
.flow-featured .flow-node.active{ transform: translateY(-3px); }
.flow-featured .flow-node.active .fn-icon{ box-shadow: 0 4px 12px rgba(217,124,181,0.18); }

@media (max-width: 1000px) and (min-width: 861px){
  .flow.flow-featured{ grid-template-columns: repeat(3, 1fr); gap: 32px 0; }
}
@media (max-width: 860px){
  .flow-featured-wrap{ padding: 32px 24px; border-radius: 18px; }
  .flow.flow-featured{ grid-template-columns: 1fr; gap: 28px; }
}
.shot-caption{ font-size: 14px; color: var(--text-faint); margin-top: 10px; text-align: center; }

.shot-float{ margin-bottom: 16px; }
.shot-float img{ width:100%; height:auto; display:block; }

.shot-placeholder{
  border: 1.5px dashed var(--border);
  border-radius: 14px;
  padding: 28px 16px;
  margin-bottom: 16px;
  text-align: center;
  color: var(--text-faint);
}
.shot-placeholder .icon{ font-size: 20px; margin-bottom: 8px; opacity: 0.7; }
.shot-placeholder .label{ font-size: 14px; line-height: 1.5; }
.shot-placeholder .label strong{ color: var(--text-muted); font-weight: 600; display:block; margin-bottom: 3px; }
.case-links{
  display:flex; justify-content:space-between; gap: 20px; flex-wrap:wrap;
  margin-top: 48px;
  padding-top: 32px; border-top: 1px solid var(--border);
  font-size: 14.5px;
}
.case-links a{ color: var(--text-muted); font-weight: 500; transition: color .2s ease; }
.case-links a:hover{ color: var(--fucsia-strong); }

.band-adjacent{ border-top: 1px solid var(--border); }
.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;
}
.ba-compare{
  display:grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items:start;
  margin-top: 8px;
}
.ba-col{ }
.ba-col .ba-label{
  display:inline-flex; align-items:center; gap:8px;
  font-family: var(--display); font-weight:600; font-size:13px;
  text-transform:uppercase; letter-spacing:.04em;
  margin-bottom:16px;
}
.ba-col.before .ba-label{ color: var(--text-faint); }
.ba-col.after .ba-label{ color: var(--fucsia-strong); }
.ba-col ul{ padding-left:0; list-style:none; }
.ba-col li{
  font-size:14.5px; line-height:1.55; padding: 10px 0 10px 26px; position:relative;
  border-bottom: 1px solid var(--border); color: var(--text-muted);
}
.ba-col.before li::before{ content:"×"; position:absolute; left:0; color: var(--text-faint); font-weight:700; }
.ba-col.after li::before{ content:"✓"; position:absolute; left:0; color: var(--fucsia-strong); font-weight:700; }
.ba-col li:last-child{ border-bottom:none; }
.ba-divider{ display:flex; align-items:center; justify-content:center; color: var(--fucsia-strong); padding-top: 40px; }
@media (max-width: 760px){
  .ba-compare{ grid-template-columns: 1fr; gap: 28px; }
  .ba-divider{ display:none; }
}

.tradeoff-box{
  border-left: 3px solid var(--fucsia-strong);
  background: var(--surface);
  padding: 22px 26px;
  border-radius: 0 14px 14px 0;
  margin-top: 28px;
}
.tradeoff-box .eyebrow{ margin-bottom: 10px; }
.tradeoff-box p{ font-size: 14.5px; line-height: 1.65; color: var(--text-muted); margin: 0; }
.tradeoff-box p strong{ color: var(--text); font-weight: 600; }

.shot-placeholder{ display: none; }
html.draft .shot-placeholder{ display: block; }
html:not(.draft) .band-row:has(.shot-placeholder){ grid-template-columns: 1fr; }
html:not(.draft) .band-row-media:has(> .shot-placeholder){ display: none; }
html:not(.draft) .shot:has(> .shot-placeholder){ display: none; }
html:not(.draft) .shot:has(> .shot-placeholder) + .shot-caption{ display: none; }
html:not(.draft) .step-shot:has(> .shot-placeholder){ display: none; }
html:not(.draft) .step-panel:has(.shot-placeholder){ grid-template-columns: 1fr; }
html:not(.draft) .band-row:has(> .band-row-media > .shot-placeholder){ grid-template-columns: 1fr; }

html.draft .shot-placeholder::before{
  content: "BORRADOR — no se publica";
  display: block;
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fucsia-strong);
  margin-bottom: 10px;
}

.footer-note{ font-size: 14px; }
.shot-float video{ width: 100%; height: auto; display: block; }
.shot-float{ margin-bottom: 0; }
.shot-float + .shot-caption{ margin-top: 12px; text-align: center; }

.band-row.align-center{ align-items: center; }

.impact-stat{ display: flex; flex-direction: column; }
.impact-stat .num{ min-height: 38px; align-items: center; margin-bottom: 12px; }
.impact-stat .num.pending{ margin-bottom: 12px; }

.impact-stat .num img{ height: 34px; width: auto; display: block; }

.stamp{
  display: inline-flex;
  align-items: center;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--result);
  border: 1.5px solid var(--result-dim);
  border-radius: 6px;
  padding: 5px 10px;
  line-height: 1;
}

.logo{ --logo-inset: 5px; gap: 1.5px; }

.footer-bottom .logo{ --logo-inset: 4px; gap: 1px; }

.hero-kicker{ white-space: normal; min-height: 2.6em; }
@media (min-width: 720px){ .hero-kicker{ min-height: 1.6em; } }

@media (prefers-reduced-motion: reduce){
  .hero-kicker .rotator,
  .flow-node,
  .flow-node .fn-icon,
  .flow-featured .flow-node{ transition: none !important; }
}

.hotspot-figure{ margin: 0; }
.hotspot-stage{ position: relative; display: block; line-height: 0; }
.hotspot-stage img{ width: 100%; height: auto; display: block; border-radius: 14px; }

.hotspot{
  position: absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: var(--fucsia-strong);
  color: #1a1a1a;
  font-family: var(--display);
  font-size: 13px; font-weight: 700; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; padding: 0;
  transition: transform .18s ease, box-shadow .18s ease;
}
.hotspot:hover{ transform: translate(-50%, -50%) scale(1.12); }
.hotspot[aria-expanded="true"]{
  box-shadow: 0 0 0 5px rgba(217,124,181,0.28);
  transform: translate(-50%, -50%) scale(1.12);
}
.hotspot:focus-visible{ outline: 2px solid var(--fucsia); outline-offset: 3px; }

.hotspot-list{ display: none; }
@media (max-width: 720px){
  .hotspot{ width: 26px; height: 26px; font-size: 12px; }
  .hotspot-list{
    display: block; margin: 24px 0 0; padding: 0;
    list-style: none; counter-reset: hs;
  }
  .hotspot-list li{
    counter-increment: hs;
    position: relative;
    padding: 0 0 20px 44px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
  }
  .hotspot-list li:last-child{ border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .hotspot-list li::before{
    content: counter(hs, decimal-leading-zero);
    position: absolute; left: 0; top: 1px;
    font-family: var(--display); font-weight: 700; font-size: 13px;
    color: var(--fucsia-strong);
  }
  .hotspot-figure{ display: flex; flex-direction: column; }
  .hotspot-figure .shot-caption{ order: 1; margin-top: 12px; }
  .hotspot-list{ order: 2; }
  .hotspot-list h3{ font-size: 15.5px; font-weight: 600; margin-bottom: 6px; }
  .hotspot-list p{ font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }
}

@media (prefers-reduced-motion: reduce){
  .hotspot{ transition: none; }
}
.spec-dialog{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  color: var(--text);
  padding: 0;
  max-width: min(920px, 92vw);
  width: 100%;
}
.spec-dialog::backdrop{ background: rgba(10,10,11,0.78); }
.spec-dialog .sd-body{ padding: 26px 30px 22px; }
.spec-dialog .sd-crop{ background: #fff; border-bottom: 1px solid var(--border); }
.spec-dialog .sd-n{
  font-family: var(--display); font-size: 12px; font-weight: 700;
  color: var(--fucsia-strong); letter-spacing: .06em; display:block; margin-bottom: 8px;
}
.spec-dialog h3{ font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.spec-dialog p{ font-size: 15px; line-height: 1.65; color: var(--text-muted); margin: 0; max-width: 68ch; }

.sd-foot{
  display:flex; align-items:center; justify-content:space-between; gap: 16px;
  border-top: 1px solid var(--border); padding: 14px 30px;
}
.sd-nav{ display:flex; gap: 8px; }
.sd-btn{
  font-family: var(--sans); font-size: 13.5px; font-weight: 500;
  color: var(--text-muted); background: transparent;
  border: 1px solid var(--border); border-radius: 100px;
  padding: 8px 16px; cursor: pointer;
  transition: border-color .18s ease, color .18s ease;
}
.sd-btn:hover:not(:disabled){ border-color: var(--fucsia); color: var(--fucsia-strong); }
.sd-btn:disabled{ opacity: .4; cursor: default; }
.sd-count{ font-size: 13px; color: var(--text-faint); }


.case-tags{ display: flex; gap: 8px; flex-wrap: wrap; }
.case-tag{
  font-family: var(--display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,0.14);
  padding: 6px 12px; border-radius: 100px;
  backdrop-filter: blur(4px); white-space: nowrap;
}
@media (min-width: 1000px){
  .case-hero-photo-content:has(.case-tags--four){ max-width: 62%; }
  .case-tags--four{ flex-wrap: nowrap; }
  .case-tags--four .case-tag{ padding: 6px 11px; letter-spacing: 0.03em; }
}

@media (min-width: 861px){
  .glance-role-row > div:first-child{ padding-top: 27px; }
}

.flow-nolink .fn-icon::after{ display: none; }

.spec-dialog[open]{ height: min(680px, 90vh); display: flex; flex-direction: column; }
.spec-dialog .sd-crop{
  flex: 0 0 380px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.spec-dialog .sd-crop img{ max-height: 380px; width: auto; max-width: 100%; object-fit: contain; }
.spec-dialog .sd-crop[hidden]{ display: none; }
.spec-dialog .sd-body{ flex: 1 1 auto; overflow-y: auto; min-height: 0; }
.spec-dialog .sd-foot{ flex: 0 0 auto; }
@media (max-width: 900px){
  .spec-dialog[open]{ height: min(560px, 90vh); }
  .spec-dialog .sd-crop{ flex-basis: 240px; }
  .spec-dialog .sd-crop img{ max-height: 240px; }
}
@media (max-width: 720px){
  .spec-dialog{ max-width: 94vw; border-radius: 14px; }
  .spec-dialog[open]{ height: min(86vh, 640px); }
  .spec-dialog .sd-crop{ flex-basis: 200px; }
  .spec-dialog .sd-crop img{ max-height: 200px; }
  .spec-dialog .sd-body{ padding: 20px 20px 16px; }
  .spec-dialog h3{ font-size: 17px; }
  .spec-dialog p{ font-size: 14.5px; }
  .sd-foot{ flex-wrap: wrap; gap: 10px; padding: 14px 20px; }
  .sd-nav{ width: 100%; }
  .sd-btn{ flex: 1 1 auto; justify-content: center; text-align: center; padding: 10px 8px; }
}

.box-title{
  font-family: var(--display);
  font-size: 15px; font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.pillars{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.pillar{ display:flex; flex-direction:column; gap: 12px; }
.pillar h3{ font-size: 16.5px; font-weight: 600; }
.pillar p{ font-size: 14px; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 700px){ .pillars{ grid-template-columns: 1fr; } }

.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items:start; }
.two-col p{ margin: 0 0 14px; }
.two-col p:last-child{ margin-bottom: 0; }
@media (max-width: 860px){ .two-col{ grid-template-columns: 1fr; gap: 24px; } }

.footer-cta .eyebrow{ margin-bottom: 20px; }

.track{ display: flex; flex-direction: column; margin-top: 8px; }

.track-head{
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.track-head span{
  font-family: var(--display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint);
}
.track-head span:last-child{ color: var(--fucsia-strong); }

.track-step{
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px;
  padding: 30px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.track-step:last-child{ border-bottom: none; }
.track-what h3{ font-size: 18.5px; font-weight: 600; margin-bottom: 10px; line-height: 1.3; }
.track-what p{ font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.track-mine{ border-left: 2px solid var(--fucsia-strong); padding-left: 24px; }
.track-mine p{ font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.track-mine p + p{ margin-top: 12px; }
.track-mine strong{ color: var(--text); font-weight: 600; }

@media (max-width: 860px){
  .track-head{ display: none; }
  .track-step{ grid-template-columns: 1fr; gap: 18px; }
  .track-mine{ padding-left: 18px; }
  .track-mine::before{
    content: "My part";
    display: block; margin-bottom: 8px;
    font-family: var(--display); font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; color: var(--fucsia-strong);
  }
}

html.js .reveal{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s cubic-bezier(.2,.6,.2,1);
}
html.js .reveal.is-in{ opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce){
  html.js .reveal{ opacity: 1; transform: none; transition: none; }
}

@media (min-width: 861px){
  .track-step{ padding: 44px 0; }
}

.track-shot{ margin-top: 18px; }
.track-shot img{ width: 100%; height: auto; display: block; border-radius: 10px; }
.track-shot .cap{ font-size: 13.5px; color: var(--text-faint); margin-top: 15px; }

.track-shot--phone img{
  max-width: 210px;
  margin-left: auto; margin-right: auto;
  border: 1px solid var(--border);
}
.track-shot--phone .cap{ text-align: center; }

.annotated{ display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.annotated .shot-col img{ width: 100%; height: auto; display: block; border-radius: 12px; border: 1px solid var(--border); }
.annotated ol{ margin: 0; padding: 0; list-style: none; counter-reset: ann; }
.annotated li{
  counter-increment: ann;
  position: relative;
  padding: 0 0 20px 44px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.annotated li:last-child{ border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.annotated li::before{
  content: counter(ann, decimal-leading-zero);
  position: absolute; left: 0; top: 1px;
  font-family: var(--display); font-weight: 700; font-size: 13px;
  color: var(--fucsia-strong);
}
.annotated li h3, .annotated li h4{ font-family: var(--display); font-size: 15.5px; font-weight: 600; margin-bottom: 6px; }
.annotated li .es{ font-size: 13.5px; color: var(--text-faint); margin-bottom: 6px; }
.annotated li p{ font-size: 14.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }
@media (max-width: 800px){
  .annotated{ grid-template-columns: 1fr; gap: 28px; }
  .annotated .shot-col{ max-width: 240px; margin: 0 auto; }
}

.screen-strip{
  display: flex; gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 0 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.screen-strip::-webkit-scrollbar{ height: 8px; }
.screen-strip::-webkit-scrollbar-thumb{ background: var(--border); border-radius: 4px; }
.screen-strip::-webkit-scrollbar-thumb:hover{ background: var(--fucsia); }
.screen-strip figure{ margin: 0; flex: 0 0 auto; width: 190px; scroll-snap-align: start; }
.screen-strip img{ width: 100%; height: auto; display: block; }
.screen-strip figcaption{
  font-size: 13px; color: var(--text-faint); line-height: 1.45;
  margin-top: 18px; text-align: center;
}
.strip-hint{
  font-size: 13.5px; color: var(--text-faint);
  display: flex; align-items: center; gap: 8px; margin-top: 4px;
}

.stitch-list{ list-style: none; padding-left: 0; margin: 0; }
.stitch-list li{ position: relative; padding-left: 34px; margin-bottom: 12px; }
.stitch-list li::before{
  content: "";
  position: absolute; left: 0; top: 0.45em;
  width: 20px; height: 8px;
  background-color: var(--fucsia);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath d='M2 8 Q6.5 1 10 8 T18 8' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath d='M2 8 Q6.5 1 10 8 T18 8' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.case-hero-photo-content .stitch-list li::before{ background-color: var(--fucsia-strong); }

.annotated .shot-col{ position: relative; }
.ann-pin{
  position: absolute; left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--fucsia-strong); color: #1a1a1a;
  font-family: var(--display); font-size: 11.5px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px var(--bg);
  border: 0; padding: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.ann-pin:focus-visible,
.ann-pin.is-active{
  transform: translate(-50%, -50%) scale(1.28);
  box-shadow: 0 0 0 3px var(--bg), 0 0 0 6px rgba(225,142,192,0.32);
}
@media (hover: hover){
  .ann-pin:hover{
    transform: translate(-50%, -50%) scale(1.28);
    box-shadow: 0 0 0 3px var(--bg), 0 0 0 6px rgba(225,142,192,0.32);
  }
}
.annotated li{ transition: border-color .18s ease; cursor: pointer; }
.annotated li > *{ transition: color .18s ease, opacity .18s ease; }
.annotated li.is-active::before{ color: var(--fucsia-strong); }
.annotated li.is-active h3{ color: var(--fucsia-strong); }
.annotated li.is-active p{ color: var(--text); }
.annotated ol.has-active li:not(.is-active) > *{ opacity: 0.5; }
@media (prefers-reduced-motion: reduce){
  .ann-pin, .annotated li, .annotated li > *{ transition: none; }
}
@media (max-width: 800px){ .ann-pin{ width: 22px; height: 22px; font-size: 11px; } }

.findings{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 26px;
}
.findings .finding{
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.findings .finding .stitch{ display: flex; margin-bottom: 12px; }
.findings .finding h3{
  font-family: var(--display);
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
  line-height: 1.3;
}
@media (max-width: 760px){
  .findings{ grid-template-columns: 1fr !important; gap: 20px; }
}
.findings .finding p{
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 1000px){ .findings{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .findings{ grid-template-columns: 1fr 1fr; gap: 20px; } }
@media (max-width: 420px){ .findings{ grid-template-columns: 1fr; } }

.fronts-intro{
  border-bottom: 1px solid var(--border);
  padding-bottom: 34px;
  margin-bottom: 40px;
}

.ba-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  margin-top: 26px;
}
.ba-stage{
  display: grid;                 
  background: var(--ba-bg, #1a1a1a);
}
.ba-frame{
  grid-area: 1 / 1;              
  align-self: center;
  margin: 0;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.ba-frame.is-active{ opacity: 1; pointer-events: auto; }
.ba-frame img{ display: block; width: 100%; height: auto; }
@media (prefers-reduced-motion: reduce){ .ba-frame{ transition: none; } }

.ba-bar{
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);   
}
.ba-switch{
  display: inline-flex;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px;
  flex-shrink: 0;
}
.ba-switch button{
  font-family: var(--display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 8px 17px;
  border: 0; border-radius: 100px;
  background: transparent;
  color: var(--text-faint);
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.ba-switch button:hover{ color: var(--text); }
.ba-switch button[aria-selected="true"]{
  background: var(--fucsia-strong);
  color: #1a1a1a;
}
.ba-note{
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-faint);
  margin: 0;
}
.ba-note[hidden]{ display: none; }
.ba-note strong{ color: var(--text-muted); font-weight: 600; }
@media (max-width: 620px){
  .ba-bar{ flex-direction: column; align-items: flex-start; gap: 12px; }
  .ba-note{ text-align: left; }
}

.argument{
  border-left: 2px solid var(--fucsia-strong);
  padding: 4px 0 4px 26px;
  margin-top: 38px;
}
.argument .arg-label{
  font-family: var(--display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--fucsia-strong);
  display: block; margin-bottom: 10px;
}
.argument h3{
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 600; color: var(--text);
  margin: 0 0 12px; line-height: 1.3;
}
.argument > p{
  font-size: 15px; line-height: 1.65;
  color: var(--text-muted); margin: 0; max-width: 66ch;
}
.argument .sides{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px; margin-top: 22px; max-width: 74ch;
}
.argument .side{
  border-top: 1px solid var(--border);
  padding-top: 12px;
  font-size: 14.5px; line-height: 1.55;
  color: var(--text-muted); margin: 0;
}
.argument .side strong{ display: block; color: var(--text); font-weight: 600; margin-bottom: 3px; }
@media (max-width: 620px){ .argument .sides{ grid-template-columns: 1fr; } }

.argument .reveal-btn{
  font-family: var(--display); font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--fucsia-strong); background: transparent;
  border: 1px solid rgba(225,142,192,0.32); border-radius: 100px;
  padding: 10px 18px; cursor: pointer; margin-top: 22px;
  transition: background .18s ease, border-color .18s ease;
}
.argument .reveal-btn:hover,
.argument .reveal-btn:focus-visible{
  background: rgba(225,142,192,0.09);
  border-color: var(--fucsia-strong);
}
.argument .outcome{ margin-top: 20px; max-width: 68ch; }
.argument .outcome[hidden]{ display: none; }
.argument .verdict{
  font-family: var(--display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 8px; display: block;
}
.argument .verdict.won{ color: var(--result); }
.argument .verdict.lost{ color: var(--text-faint); }
.argument .outcome p{ font-size: 15px; line-height: 1.65; color: var(--text-muted); margin: 0; }
.argument .outcome p strong{ color: var(--text); font-weight: 600; }

.band-row p.shot-caption,
.band-row .shot-caption{ max-width: none; width: 100%; margin-left: 0; margin-right: 0; }

.front-eyebrow{
  font-family: var(--display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 10px;
}
.front-eyebrow .n{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fucsia-strong);
}
.front-eyebrow .n::after{
  content: "";
  display: inline-block;
  width: 16px; height: 1px;
  background: var(--fucsia-strong);
  vertical-align: middle;
  margin-left: 10px;
  opacity: 0.55;
}

.argument .sides{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 18px;
  align-items: stretch;
  margin-top: 24px;
  max-width: 78ch;
}
.argument .side{
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
  background: var(--surface);
}
.argument .side .who{
  display: block;
  font-family: var(--display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 9px;
}
.argument .side p{ margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }
.argument .side.mine{ border-color: var(--border); background: var(--surface); }
.argument .vs{
  align-self: center;
  font-family: var(--display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-faint);
}
@media (max-width: 680px){
  .argument .sides{ grid-template-columns: 1fr; gap: 12px; }
  .argument .vs{ justify-self: start; }
}

.note-aside{
  border-left: 2px solid var(--border);
  padding: 2px 0 2px 20px;
  margin-top: 34px;
  max-width: 66ch;
}
.note-aside .note-label{
  display: block;
  font-family: var(--display);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--fucsia-strong);
  margin-bottom: 8px;
}
.note-aside p{
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-faint);
  margin: 0;
}
.note-aside p strong{ color: var(--text-muted); font-weight: 600; }

.section-lede{ max-width: 80%; }

.band > .wrap > h2,
.band > .wrap > .lede,
.band > .wrap > .fronts-intro > h2,
.band > .wrap > .fronts-intro > .lede,
.case-section > h2,
.case-section > .lede,
.argument h3{ max-width: 80%; }

@media (max-width: 860px){
  .section-lede,
  .band > .wrap > h2,
  .band > .wrap > .lede,
  .band > .wrap > .fronts-intro > h2,
  .band > .wrap > .fronts-intro > .lede,
  .case-section > h2,
  .case-section > .lede,
  .argument h3{ max-width: none; }
}

.facts{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
  margin-top: 26px;
}
.facts div{
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  font-size: 15px;
  color: var(--text-muted);
}
.facts div strong{ color: var(--text); font-weight: 600; }
@media (max-width: 620px){ .facts{ grid-template-columns: 1fr; } }

.took{ list-style: none; padding: 0; margin: 28px 0 0; }
.took li{
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 0 36px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.took li:first-child{ border-top: 1px solid var(--border); }
.took .t-answer{ grid-column: 2; }
.took .t-where{
  grid-column: 1;
  font-family: var(--display);
  font-size: 16px; font-weight: 600;
  color: var(--fucsia-strong);
  line-height: 1.35;
}
.took .t-where small{
  display: block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 3px;
}
.took .t-claim{
  font-family: var(--display);
  font-size: 16.5px; font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin: 0 0 9px;
}
.took .t-what + .t-what{ margin-top: 12px; }
.took .t-what{
  font-size: 15px; line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.took .t-what strong{ color: var(--text); font-weight: 600; }
@media (max-width: 700px){
  .took li{ grid-template-columns: 1fr; gap: 8px; }
  .took .t-where, .took .t-answer{ grid-column: 1; }
  .took .t-claim{ margin-top: 4px; }
  .took .t-where::before, .took .t-answer::before{
    display: block; margin-bottom: 7px;
    font-family: var(--display); font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
  }
  .took .t-where::before{ content: "Your posting"; color: var(--text-faint); }
  .took .t-answer::before{ content: "My evidence"; color: var(--fucsia-strong); margin-top: 14px; }
}

.board-filters{
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 22px;
}
.board-filters button{
  font-family: var(--display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent; color: var(--text-faint);
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.board-filters button:hover{ color: var(--text); }
.board-filters button[aria-pressed="true"]{
  border-color: var(--fucsia-strong);
  background: var(--fucsia-soft);
  color: var(--fucsia-strong);
}
.board{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
  align-items: start;
}
.board-col{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}
.board-col > h3{
  font-family: var(--display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-faint);
  margin: 2px 4px 14px;
  display: flex; align-items: center; justify-content: space-between;
}
.board-col > h3 .count{ color: var(--text-faint); font-weight: 600; }
.card{
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 13px;
  margin-bottom: 10px;
  transition: opacity .2s ease, border-color .2s ease;
}
.card:last-child{ margin-bottom: 0; }
.card p{
  font-size: 14.5px; line-height: 1.45;
  color: var(--text); margin: 0 0 9px;
}
.card .lbl{
  display: inline-block;
  font-family: var(--display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px;
}
.card .lbl[data-label="professional"]{ background: rgba(225,142,192,0.18); color: var(--fucsia-strong); }
.card .lbl[data-label="projects"]{ background: rgba(169,230,207,0.16); color: var(--result); }
.card .lbl[data-label="personal"]{ background: rgba(255,255,255,0.08); color: var(--text-faint); }
.card .labels{ display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.card .lbl-priority{
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.06); color: var(--text-faint);
  border: 1px solid var(--border);
  padding: 2px 7px;
}
.card .lbl-priority svg{ width: 10px; height: 10px; flex-shrink: 0; }
.card.is-priority{ border-color: rgba(255,255,255,0.18); }
.card.is-dimmed{ opacity: 0.28; }
@media (max-width: 760px){ .board{ grid-template-columns: 1fr; } }

.band > .wrap > .lede,
.band > .wrap > .fronts-intro > .lede{ color: var(--text-muted); }

.hero-avatar{
  width: 138px; height: 138px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border: 2px solid var(--fucsia-strong);
}

.took .t-where small + small{ margin-top: 1px; }

.pillars--even .pillar h3{ min-height: 2.6em; }
@media (max-width: 900px){ .pillars--even .pillar h3{ min-height: 0; } }

.ficha{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 24px;
  display: grid;
  grid-template-columns: 182px 1fr;
  gap: 0 32px;
  align-items: stretch;
  margin-top: 32px;
}
.ficha .swap{
  grid-column: 1; grid-row: 1;
  position: relative;
  border: 0; padding: 0; background: none;
  width: 100%; cursor: pointer; display: block;
  aspect-ratio: 4 / 5;
}
.ficha .swap img{
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 12px;
  transition: opacity .35s ease;
}
.ficha .swap .p-old{ position: absolute; inset: 0; opacity: 0; }
.ficha .swap:hover .p-old,
.ficha .swap:focus-visible .p-old,
.ficha .swap.is-flipped .p-old{ opacity: 1; }
.ficha .swap:hover .p-now,
.ficha .swap:focus-visible .p-now,
.ficha .swap.is-flipped .p-now{ opacity: 0; }

.ficha .cap{
  grid-column: 1; grid-row: 2;
  margin-top: 12px;
  text-align: center;
  display: grid;                 
}
.ficha .cap > span{ grid-area: 1 / 1; transition: opacity .25s ease; }
.ficha .v-chip{
  display: inline-block;
  font-family: var(--display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--result);
  background: var(--mint-chip);
  border-radius: 100px;
  padding: 5px 12px;
}
.ficha .v-note{
  display: block;
  font-size: 12px; line-height: 1.45;
  color: var(--text-faint);
  margin-top: 8px;
}
.ficha .cap .c-old{ opacity: 0; visibility: hidden; }
.ficha .swap:hover ~ .cap .c-now,
.ficha .swap:focus-visible ~ .cap .c-now,
.ficha .swap.is-flipped ~ .cap .c-now{ opacity: 0; visibility: hidden; }
.ficha .swap:hover ~ .cap .c-old,
.ficha .swap:focus-visible ~ .cap .c-old,
.ficha .swap.is-flipped ~ .cap .c-old{ opacity: 1; visibility: visible; }

.ficha dl{
  grid-column: 2; grid-row: 1;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  column-gap: 32px;
}
.ficha dl > div{
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--border);
}
.ficha dt{
  font-family: var(--display);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--text-faint);
  flex: 0 0 84px;
}
.ficha dd{
  margin: 0;
  font-family: var(--display);
  font-size: 14.5px; font-weight: 600;
  color: var(--text); line-height: 1.35;
}
.ficha dd a{ color: var(--fucsia-strong); text-decoration: none; }

@media (prefers-reduced-motion: reduce){
  .ficha .swap img, .ficha .cap > span{ transition: none; }
}
@media (max-width: 800px){
  .ficha{ grid-template-columns: 1fr; gap: 20px; }
  .ficha .swap{ grid-column: 1; grid-row: 1; max-width: 182px; margin-left: auto; margin-right: auto; }
  .ficha .cap{ text-align: center; }
  .ficha .cap{ grid-column: 1; grid-row: 2; }
  .ficha dl{ grid-column: 1; grid-row: 3; grid-template-columns: 1fr; grid-auto-rows: auto; }
  .ficha dl > div{ padding: 11px 0; }
}

.hero-avatar{
  width: 138px; height: 138px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border: 2px solid var(--fucsia-strong);
}

@media (max-width: 700px){
}

.ficha-note{
  border-left: 2px solid var(--fucsia-strong);
  padding: 2px 0 2px 20px;
  margin-top: 30px;
  max-width: 74ch;
}
.ficha-note p{
  margin: 0;
  font-size: 14px; line-height: 1.6;
  color: var(--text-muted);
}
.ficha-note p strong{ color: var(--text); font-weight: 600; }
@media (max-width: 800px){
  .ficha-note{ grid-column: 1; grid-row: 4; margin-top: 4px; }
}


/* ============================================================
   Reduced motion: lo que faltaba
   Los componentes con movimiento fuerte (reveal, flow, hotspots,
   pins, ficha, rotator) ya estaban cubiertos mas arriba.
   Esto cierra los tres huecos que quedaban.
   ============================================================ */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .nav-toggle span,
  .caret,
  .navdrop-menu{ transition: none !important; }
}

/* ============================================================
   Impresion
   El sitio pinta con tokens pensados para fondo oscuro, asi que
   en papel se redefinen los tokens y no cada selector. Eso arregla
   de una vez todo el texto claro, incluidas las cajas y las fichas.
   ============================================================ */
@media print{
  @page{ margin: 15mm 14mm; }

  :root{
    --bg: #ffffff;
    --surface: #f6f4f1;
    --surface-2: #f1eeea;
    --border: #d5d2ce;
    --text: #1a1a1a;
    --text-muted: #333333;
    --text-faint: #5f5f5f;
    --fucsia: #a8477f;
    --fucsia-strong: #a8477f;
    --fucsia-soft: rgba(168,71,127,0.10);
    --purple-chip: #f1e6ee;
    --purple-chip-text: #6d2350;
    --mint-chip: #e4f3ed;
    --mint-chip-text: #14513c;
    --result: #14513c;
    --result-dim: #2c6b54;
    --max: none;
  }

  html, body{ background:#fff !important; color:#1a1a1a !important; font-size:10.5pt; }

  /* lo que en papel no se puede usar */
  header, .nav-toggle, .navdrop-menu, .footer-actions,
  .footer-links, .board-filters, .ba-switch, .reveal-btn,
  .shot-placeholder{ display:none !important; }

  .band, footer{ background:#fff !important; padding:0 !important; margin:0 0 16pt !important; }
  .wrap{ max-width:none !important; padding:0 !important; }
  main{ margin:0 !important; }

  /* el hero: la foto es decorativa, el texto es el que importa */
  .case-hero-photo{
    min-height:0 !important; background-image:none !important;
    border-radius:0 !important; margin-bottom:18pt !important;
    border-bottom:0.5pt solid #d5d2ce;
  }
  .case-hero-photo::before{ display:none !important; }
  .case-hero-photo-content{ max-width:none !important; padding:0 0 12pt !important; }
  .case-hero-photo-content .eyebrow{ color:#a8477f !important; }
  .case-hero-photo-content h1,
  .case-hero-photo-content h2,
  .case-hero-photo-content p,
  .case-hero-photo-content .lede,
  .case-hero-photo-content ul li,
  .case-hero-photo-content ul li strong{ color:#1a1a1a !important; }

  /* los chips del hero son blanco sobre blanco en papel */
  .case-tag{
    color:#6d2350 !important;
    background:#f1e6ee !important;
    border:0.4pt solid #e0cfda !important;
  }
  .case-hero-photo-content .stitch-list li::before{ background-color:#a8477f !important; }

  /* el estado revelado, sin depender del scroll */
  html.js .reveal{ opacity:1 !important; transform:none !important; }

  /* nada partido a la mitad */
  h1, h2, h3{ break-after:avoid; page-break-after:avoid; }
  figure, img, .shot-float, .track-shot, .tradeoff-box, .argument,
  .took li, .findings .finding, .job{ break-inside:avoid; page-break-inside:avoid; }
  img, .shot-float, .track-shot{ max-width:100% !important; height:auto !important; }

  /* en papel un link es texto: que se vea adonde iba */
  a{ color:#1a1a1a !important; text-decoration:none !important; }
  main a[href^="http"]::after{
    content:" (" attr(href) ")";
    font-size:8pt; color:#5f5f5f; word-break:break-all;
  }
  .footer-note{ font-size:8pt !important; color:#5f5f5f !important; }
}

.col-wall{
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-top: 18px; padding: 22px;
  border: 1px solid var(--border); border-radius: 14px;
  background: var(--surface);
}
.col-chip{
  font-family: var(--sans);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.03em;
  color: var(--text-faint);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px 9px;
  white-space: nowrap;
}
@media (max-width: 700px){
  .col-wall{ padding: 16px; gap: 6px; }
  .col-chip{ font-size: 10.5px; padding: 4px 7px; }
}


.shot-video{
  display: block; width: 100%; height: auto;
  border-radius: 14px; background: var(--bg);
}

.track--three .track-head,
.track--three .track-step{ grid-template-columns: 1fr 1fr 232px; gap: 0 36px; }
.track--three .track-head span:nth-child(2){ color: var(--fucsia-strong); }
.track--three .track-head span:last-child{ color: var(--text-faint); }
.track--three .track-mine{ border-left: 2px solid var(--fucsia-strong); padding-left: 24px; }
.track--three .track-shot{ margin-top: 0; }
.track--three .track-shot img{ border-radius: 0; border: 0; max-width: 100%; }
@media (max-width: 1000px){
  .track--three .track-head,
  .track--three .track-step{ grid-template-columns: 1fr 1fr 190px; gap: 0 26px; }
}
@media (max-width: 860px){
  .track--three .track-head{ display: none; }
  .track--three .track-step{ grid-template-columns: 1fr; gap: 20px; }
  .track--three .track-shot{ max-width: 230px; }
}

.board--two{ grid-template-columns: 1fr 1fr; }
@media (max-width: 760px){ .board--two{ grid-template-columns: 1fr; } }

.nda-note{
  display: flex; align-items: flex-start; gap: 14px;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface);
  padding: 16px 18px; margin-bottom: 40px;
}
.nda-note svg{ width: 17px; height: 17px; flex-shrink: 0; color: var(--fucsia-strong); margin-top: 2px; }
.nda-note p{ font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.nda-note strong{ color: var(--text); font-weight: 600; }

.stepper{ margin-top: 30px; }
.stepper-tabs{ display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.stepper-tabs button{
  display: inline-flex; align-items: baseline; gap: 8px;
  font-family: var(--display); font-size: 13.5px; font-weight: 600;
  color: var(--text-muted); background: var(--surface);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 9px 16px; cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}
.stepper-tabs button .n{ font-size: 11.5px; color: var(--text-faint); }
@media (hover: hover){ .stepper-tabs button:hover{ color: var(--text); border-color: var(--text-faint); } }
.stepper-tabs button[aria-selected="true"]{ color: #1a1a1a; background: var(--fucsia-strong); border-color: var(--fucsia-strong); }
.stepper-tabs button[aria-selected="true"] .n{ color: rgba(26,26,26,0.6); }
.stepper-panels{ display: grid; }
.step-panel{
  grid-area: 1 / 1;
  display: grid; grid-template-columns: 310px 1fr; gap: 44px; align-items: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease;
}
.step-panel.is-active{ opacity: 1; visibility: visible; }
.step-panel img{ width: 100%; height: auto; display: block; }
.step-copy h3{ font-family: var(--display); font-size: 19px; font-weight: 600; margin-bottom: 12px; }
.step-copy p{ font-size: 15px; line-height: 1.7; color: var(--text-muted); }
.step-copy p + p{ margin-top: 14px; }
html:not(.js) .stepper-tabs{ display: none; }
html:not(.js) .step-panel{ opacity: 1; visibility: visible; grid-area: auto; margin-bottom: 40px; }
@media (max-width: 860px){
  .step-panel{ grid-template-columns: 1fr; gap: 24px; }
}

.ficha-quote{
  grid-column: 2; grid-row: 2;
  margin-top: 20px; padding-top: 0;
  text-align: center; align-self: center;
  font-size: 15.5px; line-height: 1.6; color: var(--text-muted);
}
.ficha-quote em{ font-style: italic; }
.ficha-quote span em{ font-style: normal; }
.ficha-quote span{ display: block; margin-top: 8px; font-size: 12.5px; color: var(--text-faint); font-style: normal; }
@media (max-width: 800px){ .ficha-quote{ grid-column: 1; grid-row: auto; } }

.step-shot video{ width: 100%; height: auto; display: block; border-radius: 0; }
