:root {
  --ink: #122033;
  --muted: #5f6f84;
  --line: rgba(20,42,72,0.15);
  --paper: rgba(255,255,255,0.9);
  --soft: #f5f8fb;
  --blue: #1664ff;
  --cyan: #00b7ff;
  --night: #14213d;
  --green: #13a66d;
  --shadow: 0 24px 72px rgba(20,33,61,0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(245,248,251,0.96)),
    url("/assets/nyc/nyc-waterfront-one-world.webp") center top / cover fixed no-repeat;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; }

.focus-home {
  min-height: 100vh;
  overflow-x: hidden;
}

.focus-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 12px 38px rgba(20,33,61,0.08);
  backdrop-filter: blur(18px);
}

.focus-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.focus-brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  background: var(--night);
}

.focus-current {
  justify-self: center;
  padding: 8px 12px;
  border: 1px solid rgba(22,100,255,0.18);
  border-radius: 999px;
  color: var(--night);
  background: rgba(22,100,255,0.08);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.focus-links {
  display: flex;
  gap: 8px;
}

.focus-links a {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.focus-links a.is-active,
.focus-links a:hover {
  color: var(--night);
  background: rgba(20,33,61,0.08);
}

.focus-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 22px;
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 18px;
}

.focus-copy,
.current-task-card,
.focus-section {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.focus-copy {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 5vw, 70px);
  position: relative;
  overflow: hidden;
}

.focus-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.72) 54%, rgba(22,100,255,0.14) 100%),
    url("/assets/nyc/nyc-sunset-wire.jpg") center / cover no-repeat;
  z-index: -2;
}

.focus-copy::after {
  content: "";
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 36px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), rgba(20,33,61,0.08));
  z-index: -1;
}

.focus-eyebrow,
.card-top span,
.path-step span,
.path-step em,
.focus-footer span {
  margin: 0;
  color: var(--blue);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.focus-copy h1 {
  max-width: 820px;
  margin: 12px 0 16px;
  font-size: clamp(3.4rem, 8.8vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.focus-copy p,
.current-task-card p,
.path-step p,
.proof-grid p,
.help-section p,
.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.focus-copy > p {
  max-width: 760px;
  color: #26384d;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
}

.focus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.focus-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(20,33,61,0.18);
  border-radius: 12px;
  color: var(--night);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.focus-button.primary {
  color: #fff;
  border-color: var(--night);
  background: var(--night);
}

.current-task-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: 24px;
  overflow: hidden;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-top strong {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: var(--night);
  background: rgba(22,100,255,0.10);
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

.current-task-card h2 {
  margin: auto 0 12px;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.signal-line {
  position: relative;
  height: 80px;
  margin-top: 26px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(22,100,255,0.08), rgba(0,183,255,0.12));
  overflow: hidden;
}

.signal-line::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 2px;
  background: rgba(20,33,61,0.18);
}

.signal-line i {
  position: absolute;
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--blue);
  animation: travel 4.8s linear infinite;
}

.signal-line i:nth-child(2) { animation-delay: 1.4s; background: var(--cyan); }
.signal-line i:nth-child(3) { animation-delay: 2.8s; background: var(--green); }

@keyframes travel {
  from { transform: translateX(18px); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  to { transform: translateX(338px); opacity: 0; }
}

.focus-section {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto;
  padding: clamp(20px, 3vw, 34px);
}

.section-head {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 20px;
}

.section-head h2,
.help-section h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.path-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.path-step {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  text-decoration: none;
  opacity: 0.66;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.path-step strong {
  font-size: 1.18rem;
  line-height: 1.05;
}

.path-step p {
  flex: 1;
}

.path-step em {
  color: var(--muted);
  font-style: normal;
}

.path-step.is-active {
  opacity: 1;
  border-color: rgba(22,100,255,0.42);
  background: rgba(22,100,255,0.08);
}

.path-step:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.proof-grid article {
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.74);
}

.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.help-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
}

.help-section div {
  display: grid;
  gap: 10px;
  max-width: 790px;
}

.focus-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 34px;
  padding: 16px 0;
}

.focus-footer a {
  color: var(--night);
  font-weight: 900;
}

@media (max-width: 1060px) {
  .focus-nav,
  .focus-hero,
  .focus-section {
    width: min(100% - 24px, 760px);
  }

  .focus-nav,
  .focus-hero,
  .help-section {
    grid-template-columns: 1fr;
  }

  .focus-current {
    justify-self: stretch;
    text-align: center;
  }

  .path-board,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .path-step,
  .current-task-card,
  .focus-copy {
    min-height: auto;
  }

  .current-task-card {
    gap: 18px;
  }

  .focus-links {
    justify-content: stretch;
  }

  .focus-links a {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 640px) {
  body { background-attachment: scroll; }

  .focus-copy,
  .current-task-card,
  .focus-section {
    border-radius: 18px;
  }

  .focus-copy h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  .focus-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Neon rollback: keep the focused path, restore the electric NYC command-center feel. */
body.focus-home {
  color: #f4f8ff !important;
  background:
    linear-gradient(180deg, rgba(3, 5, 8, 0.18), #030508 680px),
    linear-gradient(90deg, rgba(3, 5, 8, 0.96), rgba(3, 5, 8, 0.72) 56%, rgba(3, 5, 8, 0.9)),
    url("/assets/nyc/nyc-dusk-silhouette.webp") top right / min(1180px, 94vw) auto no-repeat,
    radial-gradient(circle at 82% 10%, rgba(56, 216, 255, 0.18), transparent 30rem),
    linear-gradient(90deg, rgba(244, 248, 255, 0.026) 1px, transparent 1px),
    linear-gradient(rgba(244, 248, 255, 0.022) 1px, transparent 1px),
    #030508 !important;
  background-size: auto, auto, min(1180px, 94vw) auto, auto, 38px 38px, 38px 38px, auto !important;
}

.focus-nav {
  border-color: rgba(56, 216, 255, 0.18);
  background: linear-gradient(90deg, rgba(5, 8, 13, 0.94), rgba(5, 8, 13, 0.76));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.focus-brand,
.focus-links a:hover,
.focus-links a.is-active,
.focus-footer a {
  color: #f4f8ff;
}

.focus-brand span {
  color: #031018;
  background: #38d8ff;
  box-shadow: 0 0 22px rgba(56, 216, 255, 0.48);
}

.focus-current {
  color: #38d8ff;
  border-color: rgba(56, 216, 255, 0.28);
  background: rgba(56, 216, 255, 0.08);
  box-shadow: inset 0 0 18px rgba(56, 216, 255, 0.08);
}

.focus-links a {
  color: #b7c5d4;
}

.focus-links a.is-active,
.focus-links a:hover {
  background: rgba(56, 216, 255, 0.12);
}

.focus-copy,
.current-task-card,
.focus-section {
  color: #f4f8ff;
  border-color: rgba(56, 216, 255, 0.18);
  background: rgba(8, 13, 20, 0.82);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.focus-copy::before {
  background:
    linear-gradient(90deg, rgba(4, 7, 11, 0.96), rgba(4, 7, 11, 0.78) 58%, rgba(4, 7, 11, 0.42)),
    linear-gradient(180deg, rgba(56, 216, 255, 0.08), transparent 56%),
    url("/assets/nyc/nyc-sunset-wire.jpg") center / cover no-repeat;
  z-index: -2;
}

.focus-copy::after {
  left: 36px;
  right: 36px;
  bottom: 28px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #38d8ff, rgba(56, 216, 255, 0.18));
  box-shadow: 0 0 22px rgba(56, 216, 255, 0.62);
  z-index: 0;
}

.focus-eyebrow,
.card-top span,
.path-step span,
.path-step em,
.focus-footer span {
  color: #38d8ff;
}

.focus-copy h1,
.current-task-card h2,
.section-head h2,
.help-section h2 {
  color: #f8fbff !important;
  text-shadow: 0 0 34px rgba(56, 216, 255, 0.18);
}

.focus-copy > p,
.focus-copy p,
.current-task-card p,
.path-step p,
.proof-grid p,
.help-section p,
.section-head p {
  color: #d5e0ec !important;
}

.focus-button {
  color: #f4f8ff;
  border-color: rgba(244, 248, 255, 0.18);
  background: rgba(244, 248, 255, 0.06);
}

.focus-button.primary {
  color: #031018;
  border-color: #38d8ff;
  background: #38d8ff;
  box-shadow: 0 0 28px rgba(56, 216, 255, 0.38);
}

.current-task-card {
  position: relative;
}

.current-task-card::before {
  content: "";
  position: absolute;
  inset: 16px 16px auto auto;
  width: 150px;
  height: 150px;
  background: url("/assets/nyc/icon-waterfront-one-world.svg") center / contain no-repeat;
  opacity: 0.34;
  filter: drop-shadow(0 0 18px rgba(56, 216, 255, 0.55));
  pointer-events: none;
}

.card-top,
.current-task-card h2,
.current-task-card p,
.current-task-card .focus-button,
.signal-line {
  position: relative;
  z-index: 1;
}

.card-top strong {
  color: #031018;
  background: #38d8ff;
  box-shadow: 0 0 22px rgba(56, 216, 255, 0.38);
}

.signal-line {
  border: 1px solid rgba(56, 216, 255, 0.16);
  background: linear-gradient(90deg, rgba(56, 216, 255, 0.08), rgba(56, 216, 255, 0.16));
}

.signal-line::before {
  background: rgba(213, 224, 236, 0.22);
}

.signal-line i,
.signal-line i:nth-child(2),
.signal-line i:nth-child(3) {
  background: #38d8ff;
  box-shadow: 0 0 18px rgba(56, 216, 255, 0.75);
}

.path-step,
.proof-grid article {
  border-color: rgba(56, 216, 255, 0.14);
  background: rgba(5, 8, 13, 0.64);
  opacity: 0.78;
}

.path-step strong,
.proof-grid strong {
  color: #f8fbff;
}

.path-step.is-active {
  border-color: rgba(56, 216, 255, 0.48);
  background: rgba(56, 216, 255, 0.10);
  box-shadow: inset 0 0 34px rgba(56, 216, 255, 0.06);
}

.path-step:hover {
  border-color: rgba(56, 216, 255, 0.46);
}

.help-section {
  background:
    linear-gradient(90deg, rgba(8, 13, 20, 0.9), rgba(8, 13, 20, 0.72)),
    url("/assets/nyc/icon-hudson-approach.svg") right center / 260px auto no-repeat;
}

@media (max-width: 640px) {
  .focus-copy h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
    line-height: 0.94;
  }

  .focus-copy,
  .current-task-card,
  .focus-section {
    background: rgba(8, 13, 20, 0.90);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}