/* ============================================================
   Land Your First NED — event landing page styles
   Scoped to .ned-page; depends on assets/colors_and_type.css
   ============================================================ */

.ned-page {
  font-family: var(--font-sans);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  position: relative;
}
.ned-page * { box-sizing: border-box; }

/* The outer artboard clips; the scroll container for our sticky header
   is .ned-page itself. */

/* ---------- Primitives ---------- */
.ned-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) {
  .ned-container { padding: 0 24px; }
}

.ned-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--igl-blue-400);
  font-weight: 500;
  margin: 0;
}
.ned-eyebrow--muted { color: var(--igl-blue-400); }

.ned-rule {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ---------- Header ---------- */
.ned-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 48px;
  background: rgba(18, 15, 41, 0);
  backdrop-filter: saturate(140%) blur(0px);
  -webkit-backdrop-filter: saturate(140%) blur(0px);
  border-bottom: 1px solid transparent;
  transition: background 320ms var(--ease-standard),
              border-color 320ms var(--ease-standard),
              backdrop-filter 320ms var(--ease-standard);
}
.ned-header.is-scrolled {
  background: rgba(18, 15, 41, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--border);
}
.ned-header__left  { justify-self: start; display: flex; align-items: center; gap: 20px; }
.ned-header__divider {
  width: 1px; height: 22px; background: var(--border-strong);
  justify-self: center;
}
.ned-header__right { justify-self: end; display: flex; align-items: center; gap: 24px; }
.ned-header__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.ned-header img.ned-logo { height: 22px; display: block; }

/* Odgers Berndtson lock-up — supplied wordmark PNG (white ODGERS + checker
   accent, ~5.39:1 aspect). Height-match the iGL wordmark. */
.ned-odgers-logo {
  height: 22px;
  width: auto;
  display: block;
}
.ned-footer .ned-odgers-logo { height: 26px; }

/* Header nav (desktop inline nav removed, right side carries CTA) */
.ned-header__nav {
  display: flex; gap: 24px;
  font-size: 13px; color: var(--fg-muted);
}
.ned-header__nav a { color: inherit; text-decoration: none; transition: color 180ms; }
.ned-header__nav a:hover { color: var(--fg); }
@media (max-width: 900px) {
  .ned-header__nav { display: none; }
  .ned-header { padding: 16px 24px; grid-template-columns: 1fr auto 1fr; }
}

/* ---------- Buttons ---------- */
.ned-btn {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 16px 26px;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: background 180ms var(--ease-standard),
              color 180ms, border-color 180ms, opacity 180ms;
}
.ned-btn--primary {
  background: var(--igl-blue-400);
  color: var(--igl-ink);
}
.ned-btn--primary:hover { background: var(--igl-blue-300); }
.ned-btn--primary:active { opacity: 0.85; }

.ned-btn--secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.ned-btn--secondary:hover { border-color: var(--fg); }

.ned-btn--sm { padding: 10px 16px; font-size: 13px; }
.ned-btn--lg { padding: 20px 32px; font-size: 16px; }

.ned-btn__arrow {
  display: inline-block;
  transition: transform 220ms var(--ease-standard);
}
.ned-btn:hover .ned-btn__arrow { transform: translateX(3px); }

/* Navy button variant (used in Variation C) */
.ned-btn--navy {
  background: var(--fg);
  color: var(--igl-ink);
}
.ned-btn--navy:hover { background: var(--igl-mist); }

/* ---------- Reveal animation ---------- */
.ned-reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 720ms var(--ease-standard),
              transform 720ms var(--ease-standard);
  will-change: opacity, transform;
}
.ned-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Hero ---------- */
.ned-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 160px 0 120px;
  overflow: hidden;
}
.ned-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.02);
}
.ned-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(18,15,41,0.55) 0%,
    rgba(18,15,41,0.78) 55%,
    rgba(18,15,41,0.98) 100%);
}
.ned-hero__bg--left::after {
  background: linear-gradient(100deg,
    rgba(18,15,41,0.92) 0%,
    rgba(18,15,41,0.72) 50%,
    rgba(18,15,41,0.55) 100%);
}
.ned-hero__content { position: relative; z-index: 2; max-width: 920px; }

.ned-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin: 20px 0 28px;
  text-wrap: balance;
}
.ned-hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 44ch;
  margin: 0 0 48px;
  text-wrap: pretty;
}

/* Hero meta row: date / location / price — a boardroom ledger */
.ned-hero__meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  margin-bottom: 40px;
  max-width: 720px;
}
@media (max-width: 720px) {
  .ned-hero__meta { grid-template-columns: 1fr; gap: 14px; }
}
.ned-hero__metaItem { display: flex; flex-direction: column; gap: 6px; }
.ned-hero__metaLabel {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.ned-hero__metaValue {
  font-size: 16px;
  color: var(--fg);
  letter-spacing: -0.005em;
  font-weight: 500;
}
.ned-hero__metaSub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-muted);
  margin-top: 2px;
}

.ned-hero__cta {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.ned-hero__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.ned-hero__seats {
  flex-basis: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--danger);
  margin-top: -4px;
}

/* ---------- Section scaffolding ---------- */
.ned-section {
  padding: 112px 0;
  position: relative;
}
.ned-section--tight { padding: 80px 0; }
.ned-section--dark  { background: #0d0b1e; }

.ned-sectionHead {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 56px;
  margin-bottom: 64px;
  align-items: baseline;
}
@media (max-width: 860px) {
  .ned-sectionHead { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
}
.ned-sectionHead__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.ned-sectionHead__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  max-width: 22ch;
}
.ned-sectionHead__lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 20px 0 0;
  max-width: 58ch;
  text-wrap: pretty;
}

/* ---------- The promise / two-up copy blocks ---------- */
.ned-promise__grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 56px;
}
@media (max-width: 860px) { .ned-promise__grid { grid-template-columns: 1fr; gap: 16px; } }
.ned-promise p:not(.ned-eyebrow) {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin: 0 0 20px;
  max-width: 30ch;
  text-wrap: balance;
}
.ned-promise p:not(.ned-eyebrow):last-child { margin-bottom: 0; }
.ned-promise em { color: var(--igl-blue-400); font-style: italic; }

/* Promise body: copy on the left, doc preview on the right at desktop.
   Stacks below on narrow screens. */
.ned-promise__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}
@media (max-width: 980px) {
  .ned-promise__body { grid-template-columns: 1fr; gap: 40px; }
}
.ned-promise__copy > p:last-child { margin-bottom: 0; }

/* NED action plan — document preview placeholder.
   Swap <PromiseDoc> for the real graphic when ready. */
.ned-promiseDoc {
  margin: 0;
  position: relative;
}
.ned-promiseDoc__placeholder {
  aspect-ratio: 5 / 6.2;
  width: 100%;
  border: 1px dashed var(--border-strong);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px;
  text-align: center;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.02) 0 8px,
      rgba(255,255,255,0.00) 8px 16px
    ),
    rgba(255,255,255,0.015);
  color: var(--fg-muted);
}
.ned-promiseDoc__placeholderTag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--igl-blue-400);
}
.ned-promiseDoc__placeholderTitle {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--fg);
  max-width: 28ch;
  line-height: 1.4;
}
.ned-promiseDoc__placeholderNote {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

/* ---------- Who this is for (for/not for list) ---------- */
.ned-audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
@media (max-width: 860px) { .ned-audience { grid-template-columns: 1fr; } }
.ned-audience__col {
  padding: 40px 40px 40px 0;
  border-right: 1px solid var(--border);
}
.ned-audience__col:last-child {
  border-right: 0;
  padding-left: 40px;
  padding-right: 0;
}
@media (max-width: 860px) {
  .ned-audience__col {
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .ned-audience__col:last-child { padding: 32px 0 0; border-bottom: 0; }
}
.ned-audience__head {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ned-audience__dot {
  width: 18px; height: 18px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(61, 220, 151, 0.14);
  color: var(--success);
}
.ned-audience__col--neg .ned-audience__dot {
  background: rgba(239, 77, 93, 0.14);
  color: var(--danger);
}
.ned-audience__list { list-style: none; padding: 0; margin: 0; }
.ned-audience__list li {
  padding: 16px 0;
  border-top: 1px solid var(--border);
  font-size: 16px;
  line-height: 1.5;
  color: var(--fg);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
}
.ned-audience__list li:first-child { border-top: 0; padding-top: 4px; }
.ned-audience__col--neg .ned-audience__list li { color: var(--fg-muted); }
.ned-audience .ned-audience__icon {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}
.ned-audience .ned-audience__icon--pos {
  background: rgba(61, 220, 151, 0.12);
  color: var(--success);
  box-shadow: inset 0 0 0 1px rgba(61, 220, 151, 0.22);
}
.ned-audience .ned-audience__icon--neg {
  background: rgba(239, 77, 93, 0.10);
  color: #ff7a87;
  box-shadow: inset 0 0 0 1px rgba(239, 77, 93, 0.22);
}
/* Reinforce the "For / Not for" dot colours at the head of each column. */
.ned-audience .ned-audience__col--pos .ned-audience__dot {
  background: rgba(61, 220, 151, 0.14);
  color: var(--success);
}
.ned-audience .ned-audience__col--neg .ned-audience__dot {
  background: rgba(239, 77, 93, 0.14);
  color: var(--danger);
}
.ned-audience .ned-audience__col--pos .ned-audience__head { color: var(--success); }
.ned-audience .ned-audience__col--neg .ned-audience__head { color: var(--danger); }

/* ---------- Agenda — vertical boardroom ledger ---------- */
.ned-agenda {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border-strong);
}
.ned-agenda__row {
  display: grid;
  grid-template-columns: 128px 1fr auto;
  gap: 40px;
  padding: 28px 0 28px;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
  position: relative;
  cursor: pointer;
  transition: background 180ms var(--ease-standard);
}
.ned-agenda__row:hover { background: rgba(10, 191, 219, 0.03); }
.ned-agenda__row:last-child { border-bottom: 1px solid var(--border-strong); }
@media (max-width: 720px) {
  .ned-agenda__row { grid-template-columns: 80px 1fr; gap: 20px; }
  .ned-agenda__row .ned-agenda__meta { grid-column: 1 / -1; margin-left: 100px; }
}
.ned-agenda__time {
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--igl-blue-400);
  font-variant-numeric: tabular-nums;
  padding-top: 4px;
}
.ned-agenda__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ned-agenda__kind {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-subtle);
}
.ned-agenda__ttl {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin: 0;
  text-wrap: balance;
}
.ned-agenda__who {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: -0.005em;
  margin-top: 2px;
}
.ned-agenda__who em {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--fg-subtle);
}
.ned-agenda__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  white-space: nowrap;
  padding-top: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ned-agenda__chev {
  display: inline-block;
  transition: transform 220ms var(--ease-standard);
  color: var(--fg-muted);
}
.ned-agenda__row.is-open .ned-agenda__chev { transform: rotate(90deg); color: var(--igl-blue-400); }

/* Expandable detail */
.ned-agenda__detail {
  grid-column: 2 / 4;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 360ms var(--ease-standard),
              opacity 260ms var(--ease-standard),
              padding 260ms var(--ease-standard);
  padding: 0;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 62ch;
}
.ned-agenda__row.is-open .ned-agenda__detail {
  max-height: 220px;
  opacity: 1;
  padding: 8px 0 4px;
}
@media (max-width: 720px) {
  .ned-agenda__detail { grid-column: 1 / -1; margin-left: 100px; }
}

/* Ledger total row (capacity) */
.ned-agenda__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0 0;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ---------- Speakers ---------- */
.ned-speakers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
@media (max-width: 900px) { .ned-speakers { grid-template-columns: 1fr; } }
.ned-speaker {
  background: var(--bg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.ned-speaker__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #23224a 0%, #14294d 100%);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.ned-speaker__portrait::after {
  /* subtle flute pattern on portrait */
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.03) 0 2px,
    transparent 2px 8px
  );
  mix-blend-mode: overlay;
}
.ned-speaker__initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.12);
  user-select: none;
}
.ned-speaker__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--fg);
  margin: 0;
}
.ned-speaker__role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0;
}
.ned-speaker__bio {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
}

/* Placeholder speaker (Joe Bloggs) */
.ned-speaker--placeholder .ned-speaker__portrait {
  background:
    linear-gradient(180deg, #2a2a36 0%, #1a1a24 100%);
  filter: grayscale(1) contrast(0.92);
}
.ned-speaker--placeholder .ned-speaker__portrait::before {
  /* diagonal hatch */
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255,255,255,0.04) 0 1px,
    transparent 1px 10px
  );
}
.ned-speaker--placeholder .ned-speaker__initials {
  color: rgba(255,255,255,0.08);
}
.ned-speaker--placeholder .ned-speaker__name {
  color: var(--fg-muted);
}
.ned-speaker__tba {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(18,15,41,0.85);
  border: 1px solid var(--border-strong);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  border-radius: 2px;
  z-index: 2;
}
.ned-speaker__tba-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--warn);
  box-shadow: 0 0 0 3px rgba(246,195,67,0.15);
}

/* ---------- Why this is different ---------- */
.ned-diff {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 860px) { .ned-diff { grid-template-columns: 1fr; } }
.ned-diff__cell {
  background: var(--bg);
  padding: 36px 32px 36px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.ned-diff__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--igl-blue-400);
  padding-top: 4px;
  min-width: 30px;
}
.ned-diff__ttl {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin: 0 0 10px;
  text-wrap: balance;
}
.ned-diff__body {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  max-width: 48ch;
}

/* ---------- Pricing / application ---------- */
.ned-apply {
  position: relative;
  overflow: hidden;
}
.ned-apply__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.3;
}
.ned-apply__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(18,15,41,0.92) 0%,
    rgba(18,15,41,0.98) 100%);
}
.ned-apply__container { position: relative; z-index: 2; }

.ned-apply__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-end;
  margin-bottom: 56px;
}
@media (max-width: 860px) { .ned-apply__head { grid-template-columns: 1fr; gap: 24px; } }

.ned-apply__price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.ned-apply__priceLabel {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.ned-apply__priceValue {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.ned-apply__priceNote {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-top: 6px;
}

/* Form */
.ned-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 28px;
  padding: 40px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}
@media (max-width: 720px) { .ned-form { grid-template-columns: 1fr; padding: 28px 24px; } }
.ned-form__field { display: flex; flex-direction: column; gap: 8px; }
.ned-form__field--full { grid-column: 1 / -1; }
.ned-form__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.ned-form__input,
.ned-form__textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-strong);
  padding: 10px 0;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--fg);
  letter-spacing: -0.005em;
  outline: none;
  transition: border-color 180ms var(--ease-standard);
  width: 100%;
}
.ned-form__input::placeholder,
.ned-form__textarea::placeholder { color: var(--fg-subtle); }
.ned-form__input:focus,
.ned-form__textarea:focus { border-bottom-color: var(--igl-blue-400); }
.ned-form__textarea {
  resize: vertical; min-height: 72px; line-height: 1.5;
}
.ned-form__field.is-error .ned-form__input,
.ned-form__field.is-error .ned-form__textarea {
  border-bottom-color: var(--danger);
}
.ned-form__err {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--danger);
  margin-top: -2px;
  min-height: 14px;
}
.ned-form__footer {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.ned-form__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* Submitted state — centred, plain message. No icon, no animation. */
.ned-form--submitted {
  padding: 72px 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ned-form__submittedMsg {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--fg);
  max-width: 46ch;
  text-wrap: balance;
}

/* ---------- Footer ---------- */
.ned-footer {
  padding: 80px 0 40px;
  background: #0a0819;
  border-top: 1px solid var(--border);
}
.ned-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 860px) { .ned-footer__grid { grid-template-columns: 1fr; gap: 32px; } }
.ned-footer__ttl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 16px;
}
.ned-footer__copy { font-size: 15px; line-height: 1.6; color: var(--fg-muted); margin: 0; max-width: 48ch; }
.ned-footer__item { font-size: 15px; color: var(--fg); line-height: 1.6; }
.ned-footer__bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-subtle);
}
.ned-footer__brands {
  display: flex; align-items: center; gap: 20px; margin-bottom: 20px;
}
.ned-footer__divider {
  width: 1px; height: 20px; background: var(--border-strong);
}

/* ---------- Variation-specific overrides ---------- */

/* Variation B — typography-only hero, no imagery */
.ned-page--typo .ned-hero { min-height: 80vh; padding: 180px 0 120px; }
.ned-page--typo .ned-hero__bg { display: none; }
.ned-page--typo .ned-hero::before {
  /* big hairline grid */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(10,191,219,0.04) 100%),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.03) 0 1px,
      transparent 1px 120px);
  pointer-events: none;
}
.ned-page--typo .ned-hero__title { font-size: clamp(52px, 8vw, 120px); }

/* Variation C — Wiggle + navy accent */
.ned-page--navy {
  --accent: var(--fg);
}
.ned-page--navy .ned-eyebrow,
.ned-page--navy .ned-diff__num,
.ned-page--navy .ned-promise em,
.ned-page--navy .ned-agenda__time {
  color: var(--fg);
}
.ned-page--navy .ned-btn--primary {
  background: var(--fg);
  color: var(--igl-ink);
}
.ned-page--navy .ned-btn--primary:hover { background: var(--igl-mist); }
.ned-page--navy .ned-audience__dot { background: var(--fg); }
.ned-page--navy .ned-form__input:focus,
.ned-page--navy .ned-form__textarea:focus { border-bottom-color: var(--fg); }
.ned-page--navy .ned-agenda__row.is-open .ned-agenda__chev { color: var(--fg); }
