
/* === PORTED closing/contact form bundle === */
.closing {
  background: var(--ink); color: var(--cream);
  padding: var(--xl) 0 var(--lg);
  position: relative; overflow: hidden;
}
.closing::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 70% at 80% 30%, rgba(225,31,38,0.12) 0%, transparent 60%);
}
.closing-bull {
  position: absolute; right: -8%; top: 10%;
  width: 56%; max-width: 760px;
  max-height: 80%;
  opacity: 0.24; pointer-events: none;
  filter: brightness(1.5) contrast(1.05) saturate(0.9) drop-shadow(0 18px 36px rgba(0,0,0,0.5));
}
.closing-bull img {
  width: 100%; height: 100%; object-fit: contain; object-position: right top;
  clip-path: inset(0 0 38% 0);
}
.closing-inner { position: relative; z-index: 2; }
.closing-display {
  font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 700;
  font-size: clamp(44px, 6.2vw, 104px); line-height: 0.9;
  letter-spacing: -0.04em;
}
.closing-display .line { display: block; }
.closing-display .gold {
  background: var(--gold-metal);
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}
.closing-row {
  margin-top: clamp(18px, 2.2vw, 36px);
  padding-top: 24px;
  border-top: 1px solid var(--cream-20);
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 4vw, 64px); align-items: center;
}
.closing-pitch { display: flex; flex-direction: column; gap: 22px; }
.closing-blurb {
  font-size: clamp(17px, 1.3vw, 21px); line-height: 1.35; color: var(--cream-60);
  max-width: 540px;
}
.closing-blurb strong { color: var(--cream); font-weight: 600; }
.closing-promise { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.closing-promise li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 13px; letter-spacing: 0.04em;
  color: var(--cream);
}
.closing-promise li::before {
  content: ""; width: 18px; height: 2px; background: var(--miami);
  flex-shrink: 0;
}

/* === Contact form === */
.contact-form {
  background: rgba(244,231,210,0.04);
  border: 1px solid rgba(244,231,210,0.18);
  padding: clamp(20px, 2vw, 30px);
  display: flex; flex-direction: column; gap: 11px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  position: relative;
}
.contact-form::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px;
  background: linear-gradient(90deg,
    var(--miami) 0%,
    var(--gold-base) 25%,
    var(--pink) 50%,
    var(--red) 75%,
    var(--miami) 100%);
  background-size: 200% 100%;
  animation: cfRainbow 5s linear infinite, cfPulse 2.6s ease-in-out infinite;
}
@keyframes cfRainbow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes cfPulse {
  0%, 100% { opacity: 0.55; height: 2px; }
  50% { opacity: 1; height: 3px; }
}
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-field { display: flex; flex-direction: column; gap: 6px; }
.cf-label {
  font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-60);
}
.cf-label em { color: var(--miami-light); font-style: normal; margin-left: 2px; }
.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 500; font-size: 14px;
  padding: 10px 14px;
  background: rgba(11,9,7,0.55);
  color: var(--cream);
  border: 1px solid rgba(244,231,210,0.18);
  outline: none;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
  width: 100%; box-sizing: border-box;
  cursor: none;
}
.cf-field textarea { resize: vertical; min-height: 96px; line-height: 1.45; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(244,231,210,0.35); }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  border-color: var(--miami);
  background: rgba(11,9,7,0.7);
  box-shadow: 0 0 0 3px rgba(0,183,212,0.18);
}
.cf-field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--cream-60) 50%), linear-gradient(135deg, var(--cream-60) 50%, transparent 50%); background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.cf-consent {
  display: grid; grid-template-columns: 22px 1fr; gap: 10px; align-items: start;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 12px; line-height: 1.4;
  color: var(--cream-60);
  cursor: none;
}
.cf-consent em { font-style: italic; color: var(--cream); }
.cf-consent input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px;
  background: rgba(11,9,7,0.55);
  border: 1.5px solid var(--cream-40);
  display: grid; place-items: center;
  cursor: none;
  margin: 2px 0 0;
  transition: border-color .2s ease, background .2s ease;
}
.cf-consent input[type="checkbox"]:checked {
  background: var(--miami);
  border-color: var(--miami);
}
.cf-consent input[type="checkbox"]:checked::after {
  content: ""; width: 10px; height: 6px;
  border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg) translate(1px, -1px);
}
.cf-submit {
  margin-top: 8px;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  padding: 16px 22px;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--miami); color: var(--ink);
  border: 2px solid var(--miami);
  cursor: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.cf-submit svg { width: 16px; height: 9px; }
.cf-submit:hover {
  background: var(--red); border-color: var(--red); color: var(--cream);
  transform: translateY(-1px);
}
.cf-fine {
  margin: 0; padding-top: 4px;
  font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream-40); text-align: center;
}
@media (max-width: 900px) {
  .closing-row { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
}


/* === BATCH2 lane number + grey bar === */
/* Lane num top-glyph clipping fix */
.lane-num { padding-top: 0.12em !important; overflow: visible !important; }
.lane-inner { overflow: visible !important; }
/* Homepage hero -> nav grey bar divider */
.hero-topbar { height: 44px; background: #1A1817; border-bottom: 1px solid rgba(191,191,191,0.22); display: block; width: 100%; }




  :root {
    --ink: #0B0907; --ink-60: rgba(11,9,7,0.60);
    --cream: #F4E7D2; --cream-90: rgba(244,231,210,0.90); --cream-60: rgba(244,231,210,0.60); --cream-40: rgba(244,231,210,0.40); --cream-20: rgba(244,231,210,0.20);
    --red: #E11F26; --red-deep: #B0161B;
    --miami: #00B7D4; --miami-deep: #079D9D; --miami-light: #5EE5E5;
    --pink: #FF66B2;
    --gold-base: #D4A23A; --gold-bright: #F4DC8E;
    --green: #34c759;
    --gold-metal: linear-gradient(180deg, #FFEDB2 0%, #E9C56B 28%, #A07A24 68%, #5C420F 100%);
    --line: rgba(244,231,210,0.18);
    --paper: #F0E3CB; --paper-deep: #E5D5B8;
    --ink-15: rgba(11,9,7,0.15);
    --ease: cubic-bezier(0.65, 0, 0.35, 1); --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  }
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-forma-djr-text), "DJR Text", -apple-system, system-ui, sans-serif; overflow-x: hidden; cursor: none; }
  @media (hover: none), (max-width: 900px) { body { cursor: auto; } }
  img { display: block; max-width: 100%; height: auto; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; }
  body::before { content: ""; position: fixed; inset: 0; background: repeating-linear-gradient(180deg, transparent 0 28px, rgba(60,40,15,0.025) 28px 29px), radial-gradient(ellipse at 30% 20%, rgba(180,140,60,0.06) 0%, transparent 55%); pointer-events: none; z-index: 0; opacity: 0.55; }
  .container { width: min(1340px, 94vw); margin: 0 auto; position: relative; z-index: 2; }

  /* Cursor */
  .cursor-bullseye { position: fixed; left: 0; top: 0; width: 0; height: 0; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); }
  .cursor-bullseye .bull-ring { position: absolute; left: 50%; top: 50%; width: 28px; height: 28px; border: 1.5px solid var(--green); border-radius: 50%; transform: translate(-50%, -50%); transition: width .25s, height .25s, border-color .25s; }
  .cursor-bullseye .bull-ring.r2 { width: 16px; height: 16px; }
  .cursor-bullseye .bull-ring.r3 { width: 6px; height: 6px; background: var(--green); }
  .cursor-bullseye.is-hover .bull-ring.r1 { width: 56px; height: 56px; border-color: var(--red); }
  .cursor-bullseye.is-hover .bull-ring.r2 { width: 36px; height: 36px; border-color: var(--red); }
  .cursor-bullseye.is-hover .bull-ring.r3 { background: var(--gold-bright); border-color: var(--gold-bright); }
  @media (hover: none), (max-width: 900px) { .cursor-bullseye { display: none; } }

  /* Masthead */
  .masthead { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 24px clamp(28px, 4vw, 64px); background: var(--ink); color: var(--cream); border-bottom: 1px solid rgba(244,231,210,0.08); }
  .masthead::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; background: linear-gradient(90deg, transparent, var(--miami) 30%, var(--pink) 70%, transparent); opacity: 0.5; }
  .mast-mark img { height: 56px; transition: transform .3s; }
  .mast-mark:hover img { transform: rotate(-3deg); }
  .mast-nav { display: flex; align-items: center; gap: 36px; }
  .mast-link { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream); position: relative; transition: color .25s; }
  .mast-link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: linear-gradient(90deg, var(--miami), var(--pink)); transition: right .3s; }
  .mast-link:hover, .mast-link.is-current { color: var(--miami-light); }
  .mast-link:hover::after, .mast-link.is-current::after { right: 0; }
  .btn-blue { display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px; background: var(--miami); color: var(--ink); border: 2px solid var(--miami); font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px)); transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s; }
  .btn-blue:hover { background: var(--red); border-color: var(--red); color: var(--cream); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(225,31,38,0.36); }
  .btn-blue svg { width: 14px; height: 8px; }

  /* Lane bar */
  .wt-lane-bar { margin-top: 92px; padding: 14px 0; background: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; z-index: 3; }
  .wt-lane-bar-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--cream-60); }
  .wt-lane-bar-inner strong { color: var(--green); }
  .wt-lane-bar .lane-no { padding: 4px 10px; background: rgba(52,199,89,0.12); border: 1px solid rgba(52,199,89,0.4); color: var(--green); }
  .wt-lane-bar a { color: var(--miami-light); transition: color .25s; }
  .wt-lane-bar a:hover { color: var(--red); }
  .wt-lane-bar .siblings { display: inline-flex; gap: 12px; margin-left: auto; flex-wrap: wrap; }
  .wt-lane-bar .siblings .sib { color: var(--cream-40); }
  .wt-lane-bar .siblings .sib:hover { color: var(--cream); }

  /* OPS BAR (live system status across top) */
  .wt-ops {
    background: linear-gradient(180deg, var(--ink) 0%, #060808 100%);
    border-bottom: 1px solid rgba(52,199,89,0.3);
    padding: 12px 0;
  }
  .wt-ops-inner {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
    border-left: 1px solid rgba(52,199,89,0.2);
    font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 9.5px;
    letter-spacing: 0.28em; text-transform: uppercase;
  }
  .wt-ops-cell { padding: 6px 14px; border-right: 1px solid rgba(52,199,89,0.2); color: var(--cream-60); display: flex; flex-direction: column; gap: 4px; }
  .wt-ops-cell strong { color: var(--green); font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 800; font-size: 13px; letter-spacing: -0.005em; }
  .wt-ops-cell .live::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 6px var(--green); margin-right: 6px; animation: pulse 1.5s ease-in-out infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.4); } }
  @media (max-width: 900px) { .wt-ops-inner { grid-template-columns: repeat(2, 1fr); } }

  /* HERO */
  .wt-hero { padding: 60px 0 80px; position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
  .wt-hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(36px, 4vw, 70px); align-items: center; }
  .wt-status { display: inline-flex; align-items: center; gap: 12px; padding: 6px 14px; background: rgba(52,199,89,0.12); border: 1px solid var(--green); font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--green); margin-bottom: 22px; }
  .wt-status::before { content: ""; width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 12px var(--green); animation: pulse 1.5s ease-in-out infinite; }
  .wt-hero-kicker { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 800; font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ink-60); margin-bottom: 12px; }
  .wt-hero-title { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: clamp(48px, 6.5vw, 100px); line-height: 0.95; letter-spacing: -0.03em; margin: 0 0 22px; color: var(--ink); }
  .wt-hero-title em { font-style: italic; font-weight: 700; color: var(--ink-60); }
  .wt-hero-title .green { color: #1a8a3f; }
  .wt-hero-title .gold { background: var(--gold-metal); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .wt-hero-title .accent-red { color: var(--red); }
  .wt-hero-lede { font-family: var(--font-forma-djr-text), "DJR Text"; font-size: clamp(15px, 1.05vw, 18px); line-height: 1.65; color: var(--ink); margin: 0 0 28px; max-width: 540px; }
  .wt-hero-lede strong { color: #1a8a3f; }
  .wt-hero-ctas { display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap; }
  .wt-hero-ctas .meta { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-60); }
  .wt-hero-ctas .meta strong { color: var(--red); }

  /* Uptime ring panel */
  .wt-uptime { position: relative; padding: 28px; background: linear-gradient(180deg, #060808 0%, var(--ink) 100%); border: 1px solid rgba(52,199,89,0.3); box-shadow: inset 0 1px 0 rgba(52,199,89,0.2), 0 30px 80px rgba(0,0,0,0.4); clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px)); }
  .wt-uptime-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 18px; font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase; }
  .wt-uptime-head .ttl { color: var(--green); }
  .wt-uptime-head .check { color: var(--cream-60); font-variant-numeric: tabular-nums; }

  .wt-ring-wrap { position: relative; width: 220px; height: 220px; margin: 0 auto 14px; }
  .wt-ring-wrap svg { width: 100%; height: 100%; transform: rotate(-90deg); }
  .wt-ring-bg { fill: none; stroke: rgba(244,231,210,0.08); stroke-width: 6; }
  .wt-ring-fg { fill: none; stroke: url(#wtgrad); stroke-width: 6; stroke-linecap: round; filter: drop-shadow(0 0 8px rgba(52,199,89,0.5)); }
  .wt-ring-num { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); text-align: center; }
  .wt-ring-num .pct { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: 44px; line-height: 1; letter-spacing: -0.025em; background: linear-gradient(180deg, #4dd96b 0%, #34c759 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; font-variant-numeric: tabular-nums; }
  .wt-ring-num .lbl { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 9.5px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cream-60); margin-top: 4px; }

  .wt-ring-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); margin-top: 8px; }
  .wt-ring-meta .cell { padding: 12px 10px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
  .wt-ring-meta .num { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: 18px; color: var(--green); letter-spacing: -0.015em; font-variant-numeric: tabular-nums; margin-bottom: 4px; }
  .wt-ring-meta .lb { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--cream-60); }

  @media (max-width: 1000px) { .wt-hero-grid { grid-template-columns: 1fr; } }

  /* Section common */
  .wt-section { padding: clamp(60px, 7vh, 100px) 0; position: relative; }
  .wt-section-eyebrow { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase; color: #1a8a3f; margin-bottom: 14px; display: inline-flex; align-items: center; gap: 12px; }
  .wt-section-eyebrow::before { content: "▮"; color: var(--gold-base); }
  .wt-section-h { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: clamp(36px, 5vw, 72px); line-height: 0.98; letter-spacing: -0.025em; margin: 0 0 22px; color: var(--ink); }
  .wt-section-h em { font-style: italic; font-weight: 400; color: var(--ink-60); }
  .wt-section-h .accent-red { color: var(--red); }
  .wt-section-h .green { color: #1a8a3f; }
  .wt-section-h .gold { background: var(--gold-metal); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; }
  .wt-section-deck { font-family: var(--font-forma-djr-text), "DJR Text"; font-size: clamp(15px, 1.05vw, 18px); line-height: 1.6; color: var(--ink); max-width: 720px; margin: 0 0 38px; }
  .wt-section-deck strong { color: var(--red); }

  /* Ink-section override for sections staying dark (log, closing) */
  .wt-section--ink .wt-section-eyebrow { color: var(--green); }
  .wt-section--ink .wt-section-eyebrow::before { color: var(--gold-bright); }
  .wt-section--ink .wt-section-h { color: var(--cream); }
  .wt-section--ink .wt-section-h em { color: var(--cream-40); }
  .wt-section--ink .wt-section-h .green { color: var(--green); }
  .wt-section--ink .wt-section-deck { color: var(--cream-90); }
  .wt-section--ink .wt-section-deck strong { color: var(--gold-bright); }

  /* 4 PROGRAMS */
  .wt-progs { border-top: 1px solid var(--ink-15); background: var(--paper); }
  .wt-prog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 24px; }
  .wt-prog { position: relative; padding: 26px 22px; background: var(--ink); border: 1px solid var(--line); transition: transform .35s, border-color .35s, box-shadow .35s; overflow: hidden; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)); }
  .wt-prog::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--green) 0%, var(--gold-bright) 100%); }
  .wt-prog:hover { transform: translateY(-3px); border-color: var(--red); box-shadow: 0 18px 40px rgba(225,31,38,0.18); }
  .wt-prog-head { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 12px; border-bottom: 1px solid var(--line); margin-bottom: 14px; }
  .wt-prog-ix { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: 30px; line-height: 1; letter-spacing: -0.02em; color: var(--green); }
  .wt-prog-status { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
  .wt-prog-status::before { content: ""; width: 6px; height: 6px; background: var(--green); border-radius: 50%; box-shadow: 0 0 6px var(--green); animation: pulse 1.5s ease-in-out infinite; }
  .wt-prog-name { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 800; font-size: 20px; line-height: 1.1; color: var(--cream); margin: 0 0 8px; }
  .wt-prog-desc { font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 13px; line-height: 1.55; color: var(--cream-90); margin: 0 0 14px; }
  .wt-prog-list { list-style: none; padding: 0; margin: 14px 0 0; padding-top: 12px; border-top: 1px solid var(--line); }
  .wt-prog-list li { padding: 5px 0; font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 12px; line-height: 1.45; color: var(--cream-90); display: flex; align-items: center; gap: 8px; }
  .wt-prog-list li::before { content: "▸"; color: var(--gold-bright); font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; }
  @media (max-width: 1000px) { .wt-prog-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .wt-prog-grid { grid-template-columns: 1fr; } }

  /* INCIDENT LOG */
  .wt-log-sec { border-top: 1px solid var(--line); background: var(--ink); }
  .wt-log { margin-top: 24px; border: 1px solid var(--line); background: linear-gradient(180deg, #060808 0%, var(--ink) 100%); clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px)); }
  .wt-log-head { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; border-bottom: 1px solid var(--line); background: rgba(52,199,89,0.06); font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; }
  .wt-log-head .lbl { color: var(--green); }
  .wt-log-head .tz { color: var(--cream-60); }
  .wt-log-row { display: grid; grid-template-columns: 90px 110px 1fr auto; gap: 16px; padding: 14px 22px; border-bottom: 1px solid var(--line); align-items: center; font-family: var(--font-forma-djr-text), "DJR Text"; }
  .wt-log-row:last-child { border-bottom: none; }
  .wt-log-row:hover { background: rgba(52,199,89,0.03); }
  .wt-log-time { font-weight: 800; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-bright); font-variant-numeric: tabular-nums; }
  .wt-log-sev { font-weight: 800; font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; padding: 4px 10px; }
  .wt-log-sev.info { background: rgba(52,199,89,0.12); color: var(--green); border: 1px solid rgba(52,199,89,0.4); }
  .wt-log-sev.warn { background: rgba(244,220,142,0.12); color: var(--gold-bright); border: 1px solid rgba(244,220,142,0.4); }
  .wt-log-sev.crit { background: rgba(225,31,38,0.12); color: var(--red); border: 1px solid var(--red); }
  .wt-log-msg { font-size: 13.5px; line-height: 1.45; color: var(--cream); }
  .wt-log-by { font-weight: 800; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--miami-light); }
  @media (max-width: 760px) { .wt-log-row { grid-template-columns: 1fr; gap: 4px; } }

  /* RECEIPTS */
  .wt-receipts { background: var(--ink); border-top: 1px solid var(--line); }
  .wt-rec-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 26px; max-width: 760px; }
  .wt-rec { padding: 30px 28px; background: linear-gradient(180deg, rgba(11,9,7,0.85) 0%, var(--ink) 100%); border: 1px solid rgba(52,199,89,0.4); transition: transform .35s, border-color .35s, box-shadow .35s; display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: center; clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px)); }
  .wt-rec:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 22px 50px rgba(225,31,38,0.22); }
  .wt-rec-big { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: clamp(48px, 5vw, 72px); line-height: 0.95; background: linear-gradient(180deg, #4dd96b 0%, #34c759 100%); -webkit-background-clip: text; background-clip: text; color: transparent; -webkit-text-fill-color: transparent; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
  .wt-rec-bigl { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--cream-60); }
  .wt-rec-name { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 800; font-size: 22px; line-height: 1.1; color: var(--cream); margin: 0 0 8px; }
  .wt-rec-tag { font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 9.5px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
  .wt-rec-blurb { font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 13.5px; line-height: 1.55; color: var(--cream-90); margin: 0 0 14px; }
  .wt-rec-link { display: inline-flex; align-items: center; gap: 8px; padding-top: 12px; border-top: 1px solid rgba(52,199,89,0.25); font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--miami-light); transition: color .25s; }
  .wt-rec-link svg { width: 14px; height: 8px; transition: transform .25s; }
  .wt-rec:hover .wt-rec-link { color: var(--red); }
  .wt-rec:hover .wt-rec-link svg { transform: translateX(4px); }
  @media (max-width: 760px) { .wt-rec { grid-template-columns: 1fr; } }

  /* Close */
  .wt-close { padding: 90px 0 110px; background: radial-gradient(ellipse at center, rgba(52,199,89,0.16) 0%, var(--ink) 70%); text-align: center; position: relative; overflow: hidden; border-top: 1px solid rgba(52,199,89,0.3); }
  .wt-close::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(225,31,38,0.12) 0%, transparent 55%); }
  .wt-close-inner { position: relative; max-width: 760px; margin: 0 auto; }
  .wt-close h2 { font-family: var(--font-forma-djr-display), "DJR Display"; font-weight: 900; font-size: clamp(40px, 5vw, 80px); line-height: 0.96; letter-spacing: -0.025em; color: var(--cream); margin: 0 0 18px; }
  .wt-close h2 .green { color: var(--green); }
  .wt-close h2 .accent-red { color: var(--red); }
  .wt-close p { font-family: var(--font-forma-djr-text), "DJR Text"; font-size: 17px; line-height: 1.6; color: var(--cream-90); margin: 0 auto 32px; max-width: 580px; }
  .wt-close-cta { display: inline-flex; align-items: center; gap: 14px; padding: 18px 34px; background: var(--miami); color: var(--ink); border: 2px solid var(--miami); font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 800; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; cursor: none; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px)); transition: background .25s, color .25s, border-color .25s, transform .2s, box-shadow .25s; }
  .wt-close-cta:hover { background: var(--red); border-color: var(--red); color: var(--cream); transform: translateY(-1px); box-shadow: 0 12px 30px rgba(225,31,38,0.42); }
  .wt-close-cta svg { width: 16px; height: 9px; }

  .wt-foot { background: var(--ink); padding: 32px 0; border-top: 1px solid var(--line); color: var(--cream-60); font-family: var(--font-forma-djr-text), "DJR Text"; font-weight: 700; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; }
  .wt-foot-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
  .wt-foot-inner strong { color: var(--cream); }
  .wt-foot-inner a { color: var(--miami-light); transition: color .25s; }
  .wt-foot-inner a:hover { color: var(--red); }

  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
  .reveal-1 { transition-delay: .08s; }
  .reveal-2 { transition-delay: .16s; }

/* === Responsive baseline + hero font fallback === */
  img, svg { max-width: 100%; height: auto; }
  @media (max-width: 600px) {
    .ib-hero-title { font-size: clamp(40px, 11vw, 56px); }
    .ib-section-h, .ib-close h2 { font-size: clamp(30px, 9vw, 42px); }
    .ib-bench-body h3 { font-size: clamp(26px, 8vw, 38px); }
    .ib-rec-big { font-size: clamp(36px, 11vw, 52px); }
  }
  @media (max-width: 380px) {
    .ib-hero-title { font-size: 38px; }
  }
/* === IMAGE QUALITY SAFEGUARDS === */
/* Optimize rendering for raster images on retina */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}
/* Force smooth interpolation for explicitly sized photos */
img[src*="storyblok"], img[src*="webp"], img[src*=".jpg"], img[src*=".png"] {
  image-rendering: auto;
}
/* Object-position defaults so portraits don't get face-cropped */
img.headshot, [class*="-headshot"] img, [class*="team-card"] img, [class*="ds-team"] img, [class*="ds-roster"] img {
  object-fit: cover;
  object-position: center top;
}



/* Cap image display sizes proportional to Storyblok source resolution so upscale-blur stops */
img[src*="storyblok.com/f/1023744/380x640/"] { max-width: 570px; }
img[src*="storyblok.com/f/1023744/262x357/"] { max-width: 393px; }
img[src*="storyblok.com/f/1023744/600x918/"] { max-width: 900px; }
img[src*="storyblok.com/f/1023744/1083x747/"] { max-width: 1625px; }
img[src*="storyblok.com/f/1023744/1137x762/"] { max-width: 1705px; }
img[src*="storyblok.com/f/1023744/381623/"] { max-width: 100%; }
@media (min-width: 1101px) {
  .work-grid { max-width: 1140px; margin: 0 auto; }
}


/* contact section: match homepage (tightened) */
.closing{padding:clamp(44px,5vw,76px) 0 clamp(36px,4vw,60px);}
.closing-display{font-size:clamp(38px,4.8vw,78px);line-height:0.92;}
.closing-row{margin-top:clamp(14px,1.6vw,26px);padding-top:20px;gap:clamp(28px,3.2vw,52px);align-items:center;}
.contact-form{padding:clamp(18px,1.8vw,26px);gap:10px;}
.cf-field input,.cf-field select,.cf-field textarea{padding:9px 13px;}
.cf-field textarea{min-height:80px;}
.closing-blurb{max-width:480px;}

/* contact: shine background + tighter (Alex) */
.closing{padding:clamp(38px,4.2vw,64px) 0 clamp(32px,3.4vw,52px);}
.closing::before{background:radial-gradient(155% 80% at 50% -6%,rgba(248,240,224,0.46) 0%,rgba(244,231,210,0.20) 24%,rgba(244,231,210,0.06) 46%,transparent 64%),radial-gradient(62% 62% at 80% 26%,rgba(0,183,212,0.16) 0%,transparent 60%),radial-gradient(55% 55% at 16% 92%,rgba(225,31,38,0.10) 0%,transparent 62%) !important;}
.closing::after{content:"";position:absolute;left:0;right:0;top:0;height:1px;pointer-events:none;background:linear-gradient(90deg,transparent,rgba(244,231,210,0.35),rgba(0,183,212,0.4),rgba(244,231,210,0.35),transparent);}
.closing-inner{max-width:1180px;margin:0 auto;}
.closing-display{font-size:clamp(34px,4.2vw,68px);line-height:0.94;}
.closing-row{margin-top:clamp(10px,1.2vw,20px);padding-top:16px;gap:clamp(24px,2.8vw,46px);align-items:center;}