:root{
    --navy:        #0B1B2B;
    --navy-700:    #14283D;
    --navy-600:    #1C334C;

    --amber:       #E8A33C;
    --amber-700:   #B7771E;

    --paper:       #F2ECE0;
    --paper-200:   #E8E0D0;
    --paper-300:   #DCD2BE;

    --slate-900:   #1F2A36;
    --slate-700:   #3C4856;
    --slate-500:   #6B7682;
    --slate-400:   #8C95A1;
    --slate-300:   #B5BBC4;
    --slate-200:   #D5D9DF;

    --rule:        rgba(11,27,43,.10);
    --rule-strong: rgba(11,27,43,.22);

    --f-display: "Antonio", "Helvetica Neue", Helvetica, Arial, sans-serif;
    --f-body:    "Newsreader", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
    --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;

    --col: 1240px;
  }

  *,*::before,*::after{ box-sizing:border-box; }
  html,body{ margin:0; padding:0; }
  body{
    font-family: var(--f-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--slate-900);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
  ::selection{ background: var(--navy); color: var(--paper); }
  a{ color: inherit; }
  img{ max-width:100%; display:block; }

  .doc{ max-width: var(--col); margin: 0 auto; padding: 64px 40px 120px; }
  @media (max-width: 720px){ .doc{ padding: 36px 22px 80px; } }

  /* ===== Masthead ===== */
  .masthead{
    display:grid;
    grid-template-columns: auto 1fr;
    column-gap: 32px;
    align-items: end;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--rule-strong);
    margin-bottom: 64px;
  }
  .masthead .logo{ height: 56px; width: auto; }
  .masthead .title{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 38px;
    letter-spacing: -.005em;
    color: var(--navy);
    line-height: 1;
    margin: 0;
  }
  .masthead .where{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 16px;
    color: var(--slate-500);
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 720px){
    .masthead{ grid-template-columns: 1fr; row-gap: 20px; }
    .masthead .logo{ height: 44px; }
    .masthead .title{ font-size: 30px; }
  }

  /* ===== Editorial intro ===== */
  .intro{
    display:grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    row-gap: 16px;
    margin-bottom: 96px;
  }
  @media (max-width: 820px){ .intro{ grid-template-columns: 1fr; column-gap: 0; } }
  .intro h1{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.02;
    letter-spacing: -.012em;
    color: var(--navy);
    margin: 0;
    grid-column: 1 / -1;
    max-width: 18ch;
    text-wrap: balance;
  }
  .intro p{
    color: var(--slate-700);
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
  }
  .intro p:first-of-type{ color: var(--slate-900); }

  /* ===== Section heads ===== */
  section.s{
    margin-bottom: 96px;
    scroll-margin-top: 24px;
  }
  .s-head{
    display: grid;
    grid-template-columns: 56px 1fr;
    column-gap: 24px;
    align-items: baseline;
    padding-bottom: 14px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--rule-strong);
  }
  .s-head .n{
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 20px;
    color: var(--slate-400);
    letter-spacing: .04em;
    line-height: 1;
  }
  .s-head h2{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 32px;
    letter-spacing: -.005em;
    color: var(--navy);
    margin: 0;
    line-height: 1;
  }
  .s-head .note{
    grid-column: 2;
    font-family: var(--f-body);
    font-style: italic;
    font-size: 16px;
    color: var(--slate-500);
    margin-top: 8px;
    max-width: 56ch;
    line-height: 1.4;
  }
  @media (max-width: 600px){
    .s-head{ grid-template-columns: 36px 1fr; column-gap: 14px; }
    .s-head h2{ font-size: 26px; }
  }

  /* ===== Type primitives ===== */
  .t-display-1{ font-family: var(--f-display); font-weight: 500; font-size: 72px; line-height: 0.98; letter-spacing: -.012em; }
  .t-display-2{ font-family: var(--f-display); font-weight: 500; font-size: 48px; line-height: 1.02; letter-spacing: -.005em; }
  .t-headline { font-family: var(--f-display); font-weight: 500; font-size: 28px; line-height: 1.12; letter-spacing: -.002em; }
  .t-lede     { font-family: var(--f-body);    font-weight: 400; font-size: 22px; line-height: 1.45; color: var(--slate-700); font-style: italic; }
  .t-body     { font-family: var(--f-body);    font-weight: 400; font-size: 18px; line-height: 1.6; }
  .t-caption  { font-family: var(--f-body);    font-weight: 400; font-size: 14px; line-height: 1.5; color: var(--slate-500); font-style: italic; }
  .t-mono     { font-family: var(--f-mono);    font-size: 11px; color: var(--slate-500); letter-spacing: .04em; }
  @media (max-width: 600px){
    .t-display-1{ font-size: 48px; }
    .t-display-2{ font-size: 34px; }
    .t-headline { font-size: 24px; }
    .t-lede     { font-size: 19px; }
  }

  /* ===== I. The mark ===== */
  .mark-stage{
    background: #FFFFFF;
    border: 1px solid var(--rule);
    padding: 64px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mark-stage img{ max-width: 540px; width: 100%; }
  .mark-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
  }
  @media (max-width: 820px){ .mark-grid{ grid-template-columns: 1fr; } }
  .mark-card{
    border: 1px solid var(--rule);
    background: #fff;
    padding: 32px;
  }
  .mark-card .label{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 18px;
  }
  .clearspace-frame{
    position: relative;
    padding: 56px;
    border: 1px dashed var(--rule-strong);
    background: rgba(11,27,43,.02);
    display:flex; align-items:center; justify-content:center;
  }
  .clearspace-frame img{ max-width: 240px; width: 100%; }
  .clearspace-frame .mk{
    position: absolute;
    font-family: var(--f-display);
    font-size: 13px;
    color: var(--amber-700);
    letter-spacing: .02em;
  }
  .clearspace-frame .mk.top   { top: 14px;    left: 50%; transform: translateX(-50%); }
  .clearspace-frame .mk.bot   { bottom: 14px; left: 50%; transform: translateX(-50%); }
  .clearspace-frame .mk.left  { left: 14px;   top: 50%;  transform: translateY(-50%); }
  .clearspace-frame .mk.right { right: 14px;  top: 50%;  transform: translateY(-50%); }
  .mark-card p.note{
    color: var(--slate-700);
    font-size: 16px;
    margin: 18px 0 0;
    line-height: 1.55;
  }

  .scales{
    display: flex;
    gap: 40px;
    align-items: flex-end;
    flex-wrap: wrap;
    padding: 18px 0 4px;
  }
  .scales figure{
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .scales figcaption{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    color: var(--slate-500);
  }

  .mark-rules{
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
    row-gap: 14px;
  }
  @media (max-width: 700px){ .mark-rules{ grid-template-columns: 1fr; } }
  .mark-rules h4{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 16px;
    margin: 0 0 8px;
    color: var(--navy);
  }
  .mark-rules ul{ margin: 0; padding: 0 0 0 1.1em; color: var(--slate-700); }
  .mark-rules li{ margin-bottom: 6px; line-height: 1.5; }

  .pending{
    background: var(--navy);
    color: var(--paper);
    padding: 48px 32px;
    margin-top: 24px;
    text-align: center;
    border: 1px solid var(--navy);
    position: relative;
  }
  .pending h4{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 8px;
    color: var(--paper);
  }
  .pending p{
    margin: 0;
    color: rgba(242,236,224,.72);
    font-style: italic;
    font-size: 15px;
    max-width: 48ch;
    margin-inline: auto;
  }

  /* ===== II. Color ===== */
  .swatches{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--rule-strong);
    border: 1px solid var(--rule-strong);
  }
  @media (max-width: 820px){ .swatches{ grid-template-columns: repeat(2, 1fr); } }
  .sw{
    background: #fff;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .sw .chip{ height: 132px; }
  .sw .meta{ padding: 14px 16px 18px; }
  .sw .name{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 18px;
    color: var(--navy);
    line-height: 1.1;
  }
  .sw .hex{
    font-family: var(--f-mono);
    font-size: 12px;
    color: var(--slate-500);
    margin-top: 4px;
  }
  .sw .role{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    color: var(--slate-500);
    margin-top: 6px;
  }

  .color-prose{
    margin-top: 28px;
    columns: 2;
    column-gap: 56px;
    color: var(--slate-700);
  }
  .color-prose p{ margin: 0 0 14px; break-inside: avoid; }
  .color-prose p strong{ color: var(--navy); font-weight: 500; font-family: var(--f-display); letter-spacing: .01em; }
  @media (max-width: 700px){ .color-prose{ columns: 1; } }

  /* ===== III. Typography ===== */
  .type-row{
    display: grid;
    grid-template-columns: 220px 1fr;
    column-gap: 40px;
    align-items: baseline;
    padding: 28px 0;
    border-top: 1px solid var(--rule);
  }
  .type-row:first-of-type{ border-top: 0; padding-top: 0; }
  @media (max-width: 720px){
    .type-row{ grid-template-columns: 1fr; row-gap: 8px; }
  }
  .type-row .meta{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.5;
  }
  .type-row .meta b{
    display: block;
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 14px;
    font-style: normal;
    color: var(--navy);
    letter-spacing: .02em;
  }
  .type-sample{ color: var(--navy); }

  /* ===== IV. Motifs ===== */
  .motifs{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (max-width: 700px){ .motifs{ grid-template-columns: 1fr; } }
  .motif{
    background: var(--navy);
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    color: var(--paper);
  }
  .motif .cap{
    position: absolute;
    left: 18px; bottom: 16px;
    z-index: 2;
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: .01em;
    color: var(--paper);
  }
  .motif .cap small{
    display: block;
    font-family: var(--f-body);
    font-style: italic;
    font-size: 12px;
    color: rgba(242,236,224,.55);
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 2px;
  }

  /* ===== V. Kit ===== */
  .kit-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  @media (max-width: 720px){ .kit-grid{ grid-template-columns: 1fr; } }
  .kit-block{
    background: #fff;
    padding: 28px 28px 30px;
  }
  .kit-block h4{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 16px;
    color: var(--navy);
    margin: 0 0 18px;
    letter-spacing: .005em;
  }
  .kit-row{ display:flex; flex-wrap: wrap; gap: 12px; align-items: center; }

  .btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: .02em;
    padding: 13px 22px;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
    line-height: 1;
    color: var(--navy);
  }
  .btn-primary{ background: var(--amber); color: var(--navy); border-color: var(--amber); }
  .btn-primary:hover{ background: var(--amber-700); border-color: var(--amber-700); color: var(--paper); }

  .btn-solid{ background: var(--navy); color: var(--paper); border-color: var(--navy); }
  .btn-solid:hover{ background: var(--navy-700); }

  .btn-ghost{ background: transparent; color: var(--navy); border-color: var(--rule-strong); }
  .btn-ghost:hover{ border-color: var(--navy); }

  .btn-text{
    padding: 6px 0;
    border-bottom: 1px solid currentColor;
    color: var(--navy);
  }
  .btn-text:hover{ color: var(--amber-700); }

  .arr{ width: 16px; height: 10px; flex: none; }

  .field{ display:block; margin-bottom: 18px; }
  .field-label{
    display: block;
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .01em;
    color: var(--navy);
    margin-bottom: 6px;
  }
  .field-label .req{
    font-family: var(--f-body);
    font-style: italic;
    color: var(--amber-700);
    font-size: 13px;
    font-weight: 400;
    margin-left: 6px;
  }
  .input, .textarea, .select{
    width: 100%;
    font-family: var(--f-body);
    font-size: 17px;
    color: var(--navy);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--rule-strong);
    padding: 9px 0;
    border-radius: 0;
    outline: none;
    transition: border-color .15s ease;
  }
  .input:focus, .textarea:focus, .select:focus{ border-bottom-color: var(--navy); }
  .input.is-error, .textarea.is-error, .select.is-error{
    border-bottom: 2px solid var(--amber);
    padding-bottom: 8px;
  }
  .field-error{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    color: var(--slate-700);
    margin-top: 6px;
    line-height: 1.4;
  }
  .btn[aria-busy="true"], .btn.is-busy{
    opacity: .55;
    cursor: progress;
    pointer-events: none;
  }
  .btn:disabled, .btn[disabled]{
    opacity: .55;
    cursor: not-allowed;
  }

  /* Consent block — inherits form editorial discipline, not a switch */
  .consent{
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 20px 0;
    margin-top: 8px;
    border-top: 1px solid var(--rule);
  }
  .consent.is-error{
    border-bottom: 2px solid var(--amber);
    padding-bottom: 18px;
  }
  .consent input[type="checkbox"]{
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
    flex: none;
    border: 1px solid var(--rule-strong);
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: border-color .15s ease;
  }
  .consent input[type="checkbox"]:hover{ border-color: var(--navy); }
  .consent input[type="checkbox"]:checked{ border-color: var(--amber); }
  .consent input[type="checkbox"]:checked::after{
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid var(--amber);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }
  .consent input[type="checkbox"]:focus-visible{
    outline: 2px solid var(--navy);
    outline-offset: 2px;
  }
  .consent .consent-text{
    font-family: var(--f-body);
    font-size: 15px;
    line-height: 1.5;
    color: var(--slate-700);
    cursor: pointer;
  }
  .consent .consent-text a{
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--rule-strong);
    transition: color .15s ease, border-color .15s ease;
  }
  .consent .consent-text a:hover{ color: var(--amber-700); border-bottom-color: var(--amber); }
  .consent .field-error{ grid-column: 1 / -1; margin-top: 12px; }

  /* Mailing-band compliance line — slate-on-navy, amber link */
  .mail-consent{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(242,236,224,.55);
    margin-top: 10px;
    max-width: 54ch;
  }
  .mail-consent a{
    color: var(--amber);
    text-decoration: none;
    border-bottom: 1px solid rgba(232,163,60,.5);
    transition: color .15s ease, border-color .15s ease;
  }
  .mail-consent a:hover{ color: var(--paper); border-bottom-color: var(--paper); }
  .form-success{
    padding: 36px 32px;
    background: #fff;
    border: 1px solid var(--rule);
  }
  .form-success h3{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 22px;
    color: var(--navy);
    margin: 0 0 12px;
    letter-spacing: -.005em;
  }
  .form-success p{
    color: var(--slate-700);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
    font-style: italic;
  }
  .textarea{ min-height: 96px; resize: vertical; }
  .select{
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--slate-500) 50%),
                      linear-gradient(135deg, var(--slate-500) 50%, transparent 50%);
    background-position: calc(100% - 14px) 18px, calc(100% - 8px) 18px;
    background-size: 6px 6px;
    background-repeat: no-repeat;
    padding-right: 28px;
  }
  .help{ font-size: 14px; color: var(--slate-500); margin-top: 6px; font-style: italic; }

  .tag-pill{
    display: inline-flex;
    font-family: var(--f-body);
    font-size: 13px;
    color: var(--slate-700);
    padding: 4px 10px;
    border: 1px solid var(--rule-strong);
    background: transparent;
    line-height: 1.4;
  }
  .tag-pill.solid{ background: var(--navy); color: var(--paper); border-color: var(--navy); }
  .tag-pill.amber{ background: transparent; color: var(--amber-700); border-color: var(--amber-700); }

  /* ===== VI. Nav ===== */
  .frame{
    background: #fff;
    border: 1px solid var(--rule);
    overflow: hidden;
  }
  .frame > .frame-cap{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    color: var(--slate-500);
    padding: 10px 18px;
    border-bottom: 1px solid var(--rule);
    background: var(--paper);
  }
  .nav{
    background: var(--paper);
    border-bottom: 1px solid var(--rule-strong);
  }
  .nav-inner{
    display: flex; align-items: center; gap: 36px;
    padding: 16px 28px;
  }
  .nav-mark{
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: var(--navy);
  }
  .nav-mark img{ height: 40px; width: auto; }
  .nav-mark .word{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: .03em;
    line-height: 1;
  }
  .nav-mark .word .sub{
    display: block;
    font-family: var(--f-body);
    font-style: italic;
    font-size: 12px;
    color: var(--slate-500);
    font-weight: 400;
    margin-top: 4px;
    letter-spacing: 0;
  }
  .nav-links{
    display: flex; gap: 26px; align-items: center;
  }
  .nav-links a{
    font-family: var(--f-display);
    font-weight: 400;
    font-size: 16px;
    color: var(--slate-700);
    text-decoration: none;
    padding: 6px 0;
    border-bottom: 1px solid transparent;
    transition: color .15s ease, border-color .15s ease;
  }
  .nav-links a:hover, .nav-links a.is-active{
    color: var(--navy);
    border-bottom-color: var(--amber);
  }
  .nav-cta{
    margin-left: auto;
    display: flex; gap: 24px; align-items: center;
  }
  .nav-cta .login{
    font-family: var(--f-display);
    font-size: 15px;
    color: var(--slate-700);
    text-decoration: none;
  }
  .nav-cta .login:hover{ color: var(--navy); }
  @media (max-width: 880px){
    .nav-inner{ flex-wrap: wrap; padding: 14px 18px; gap: 14px; }
    .nav-links{ order: 3; flex-basis: 100%; overflow-x: auto; gap: 18px; padding: 4px 0 2px; }
    .nav-cta .login{ display: none; }
    .nav-mark .word .sub{ display: none; }
    .nav-mark img{ height: 32px; }
  }

  /* ===== VII. Hero ===== */
  .hero{
    background: var(--navy);
    color: var(--paper);
    position: relative;
    overflow: hidden;
  }
  .hero-bg{
    position: absolute; inset: 0;
    z-index: 0;
  }
  .hero-inner{
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    padding: 92px 60px 76px;
    align-items: end;
  }
  @media (max-width: 920px){
    .hero-inner{ grid-template-columns: 1fr; padding: 56px 28px 48px; gap: 40px; }
  }
  .hero h1{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(40px, 6.2vw, 76px);
    line-height: .98;
    letter-spacing: -.012em;
    margin: 0 0 24px;
    color: var(--paper);
    text-wrap: balance;
    max-width: 14ch;
  }
  .hero .standfirst{
    font-family: var(--f-body);
    font-size: 20px;
    line-height: 1.5;
    color: rgba(242,236,224,.78);
    max-width: 48ch;
    margin: 0 0 32px;
  }
  .hero .standfirst em{ color: var(--paper); font-style: italic; }
  .hero-actions{ display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
  .hero-actions .btn-ghost{ color: var(--paper); border-color: rgba(242,236,224,.32); }
  .hero-actions .btn-ghost:hover{ border-color: var(--paper); }

  /* Countdown — restrained */
  .schedule{
    border-left: 1px solid rgba(242,236,224,.18);
    padding-left: 36px;
  }
  @media (max-width: 920px){
    .schedule{ border-left: 0; border-top: 1px solid rgba(242,236,224,.18); padding: 28px 0 0; }
  }
  .schedule .which{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 14px;
    color: rgba(242,236,224,.55);
    margin-bottom: 8px;
  }
  .schedule .what{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 24px;
    letter-spacing: -.005em;
    color: var(--paper);
    margin-bottom: 6px;
    line-height: 1.15;
  }
  .schedule .when{
    font-family: var(--f-body);
    font-size: 15px;
    color: rgba(242,236,224,.65);
    margin-bottom: 28px;
  }
  .countdown{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(242,236,224,.22);
    border-bottom: 1px solid rgba(242,236,224,.22);
  }
  .cd-cell{
    padding: 18px 6px 14px 0;
    border-right: 1px solid rgba(242,236,224,.12);
    text-align: left;
  }
  .cd-cell:last-child{ border-right: 0; }
  .cd-num{
    font-family: var(--f-display);
    font-weight: 400;
    font-size: clamp(40px, 4.6vw, 56px);
    line-height: 1;
    color: var(--paper);
    letter-spacing: -.01em;
    font-variant-numeric: tabular-nums;
  }
  .cd-unit{
    font-family: var(--f-body);
    font-size: 13px;
    color: rgba(242,236,224,.55);
    margin-top: 8px;
    font-style: italic;
  }

  /* Countdown alternate states — used when there isn't a live countdown */
  .cd-statement{
    border-top: 1px solid rgba(242,236,224,.22);
    border-bottom: 1px solid rgba(242,236,224,.22);
    padding: 26px 0;
  }
  .cd-statement p{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.18;
    letter-spacing: -.005em;
    color: var(--paper);
    margin: 0;
    text-wrap: balance;
    max-width: 32ch;
  }
  .cd-statement p.muted,
  .cd-statement p + p{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 15px;
    color: rgba(242,236,224,.55);
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 8px;
    line-height: 1.45;
  }
  .cd-then{
    grid-column: 1 / -1;
    font-family: var(--f-body);
    font-style: italic;
    font-size: 15px;
    color: rgba(242,236,224,.62);
    margin: 0;
    padding: 14px 0 14px;
    line-height: 1.5;
    max-width: 60ch;
  }
  .cd-live-dot{
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--amber);
    margin-right: 10px;
    vertical-align: 2px;
  }
  .cd-action{
    margin-top: 22px;
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 15px;
    color: var(--paper);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(242,236,224,.4);
    letter-spacing: .01em;
  }
  .cd-action:hover{ color: var(--amber); border-bottom-color: var(--amber); }

  /* ===== VIII. Audience ===== */
  .audience{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule-strong);
    border-bottom: 1px solid var(--rule-strong);
  }
  @media (max-width: 900px){ .audience{ grid-template-columns: 1fr; } }
  .aud{
    padding: 36px 32px 36px 0;
    border-right: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
  }
  .aud:last-child{ border-right: 0; padding-right: 0; }
  .aud + .aud{ padding-left: 32px; }
  @media (max-width: 900px){
    .aud{ padding: 32px 0; border-right: 0; border-bottom: 1px solid var(--rule); }
    .aud + .aud{ padding-left: 0; }
    .aud:last-child{ border-bottom: 0; }
  }
  .aud h3{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 26px;
    color: var(--navy);
    margin: 0 0 14px;
    line-height: 1.1;
    letter-spacing: -.005em;
  }
  .aud p{
    color: var(--slate-700);
    font-size: 17px;
    line-height: 1.55;
    margin: 0 0 24px;
  }
  .aud .what-you-get{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 14px;
    color: var(--slate-500);
    margin: 0 0 10px;
  }
  .aud ul{
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    color: var(--slate-900);
  }
  .aud li{
    padding: 8px 0;
    border-top: 1px solid var(--rule);
    font-size: 16px;
  }
  .aud li:last-child{ border-bottom: 1px solid var(--rule); }
  .aud .more{
    margin-top: auto;
    font-family: var(--f-display);
    font-size: 16px;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--rule-strong);
    align-self: flex-start;
    transition: color .15s ease, border-color .15s ease;
  }
  .aud .more:hover{ color: var(--amber-700); border-bottom-color: var(--amber); }

  /* ===== IX. Member orgs ===== */
  .logo-strip{
    background: #fff;
    border: 1px solid var(--rule);
    padding: 36px 28px;
  }
  .logo-strip-head{
    text-align: center;
    margin-bottom: 24px;
  }
  .logo-strip-head h4{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 18px;
    color: var(--navy);
    margin: 0;
    letter-spacing: -.002em;
  }
  .logo-strip-head p{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 14px;
    color: var(--slate-500);
    margin: 4px 0 0;
  }
  .logo-grid{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 24px;
    row-gap: 24px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
  }
  @media (max-width: 900px){ .logo-grid{ grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 540px){ .logo-grid{ grid-template-columns: repeat(2, 1fr); } }
  .logo-cell{
    height: 56px;
    display: flex; align-items: center; justify-content: center;
    color: var(--slate-500);
    text-align: center;
    transition: color .2s ease;
  }
  .logo-cell:hover{ color: var(--navy); }
  .logo-mark{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: .02em;
    line-height: 1.05;
  }
  .logo-mark span{
    display: block;
    font-family: var(--f-body);
    font-style: italic;
    font-size: 12px;
    color: var(--slate-400);
    font-weight: 400;
    margin-top: 3px;
  }

  /* ===== X. News ===== */
  .news{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
  }
  @media (max-width: 900px){ .news{ grid-template-columns: 1fr; } }

  .feature{
    display: grid;
    grid-template-rows: auto 1fr;
  }
  .feature .img{
    aspect-ratio: 4 / 3;
    background:
      linear-gradient(180deg, rgba(11,27,43,.22) 0%, rgba(11,27,43,.05) 35%, rgba(11,27,43,.18) 100%),
      repeating-linear-gradient(180deg, rgba(11,27,43,.04) 0 2px, transparent 2px 4px),
      var(--paper-200);
    position: relative;
  }
  .feature .img::after{
    content: "Photograph";
    position: absolute;
    left: 18px; bottom: 16px;
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    color: rgba(11,27,43,.45);
  }
  .feature .body{ padding: 24px 0 0; }
  .feature .kicker{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 14px;
    color: var(--amber-700);
    margin-bottom: 10px;
    letter-spacing: .01em;
  }
  .feature h3{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -.005em;
    color: var(--navy);
    margin: 0 0 14px;
    text-wrap: balance;
  }
  .feature p{
    color: var(--slate-700);
    font-size: 18px;
    line-height: 1.55;
    margin: 0 0 18px;
    max-width: 56ch;
  }
  .feature .byline{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 14px;
    color: var(--slate-500);
  }

  .index{ }
  .index h4{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 16px;
    color: var(--navy);
    margin: 0 0 4px;
  }
  .index .head-rule{
    display: flex; align-items: baseline; justify-content: space-between;
    border-bottom: 1px solid var(--rule-strong);
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  .index .head-rule a{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 14px;
    color: var(--slate-500);
    text-decoration: none;
  }
  .index .head-rule a:hover{ color: var(--amber-700); }
  .nl-item{
    display: grid;
    grid-template-columns: 76px 1fr;
    column-gap: 20px;
    align-items: baseline;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
    text-decoration: none;
    color: inherit;
  }
  .nl-item:last-child{ border-bottom: 0; }
  .nl-item:hover h5{ color: var(--amber-700); }
  .nl-date{
    font-family: var(--f-display);
    font-weight: 500;
    color: var(--navy);
    line-height: 1.1;
  }
  .nl-date .d{ font-size: 28px; display: block; }
  .nl-date .m{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    color: var(--slate-500);
    font-weight: 400;
    display: block;
    margin-top: 2px;
  }
  .nl-item h5{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.25;
    color: var(--navy);
    margin: 0 0 4px;
    letter-spacing: -.002em;
    transition: color .15s ease;
  }
  .nl-item .src{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    color: var(--slate-500);
  }

  /* ===== XI. Mailing band ===== */
  .mail-band{
    background: var(--navy);
    color: var(--paper);
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .mail-band .bg{ position: absolute; inset: 0; z-index: 0; opacity: .35; }
  .mail-band > *{ position: relative; z-index: 1; }
  @media (max-width: 820px){
    .mail-band{ grid-template-columns: 1fr; padding: 40px 28px; gap: 28px; }
  }
  .mail-band h3{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -.005em;
    color: var(--paper);
    margin: 0 0 12px;
    text-wrap: balance;
  }
  .mail-band p{
    color: rgba(242,236,224,.72);
    font-style: italic;
    margin: 0;
    font-size: 17px;
    max-width: 44ch;
    line-height: 1.5;
  }
  .mail-form{
    display: flex; gap: 0;
    border-bottom: 1px solid rgba(242,236,224,.32);
    align-items: stretch;
  }
  .mail-form input{
    flex: 1;
    background: transparent;
    border: 0;
    padding: 16px 0;
    font-family: var(--f-body);
    font-size: 18px;
    color: var(--paper);
    outline: none;
  }
  .mail-form input::placeholder{ color: rgba(242,236,224,.45); font-style: italic; }
  .mail-form button{
    background: transparent;
    border: 0;
    color: var(--amber);
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 16px;
    padding: 0 0 0 18px;
    cursor: pointer;
    letter-spacing: .01em;
    display: flex; align-items: center; gap: 10px;
  }
  .mail-form button:hover{ color: var(--paper); }
  .mail-fine{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    color: rgba(242,236,224,.45);
    margin-top: 14px;
  }

  /* ===== XII. Forms ===== */
  .forms{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
  }
  @media (max-width: 920px){ .forms{ grid-template-columns: 1fr; } }
  .form-card{
    background: #fff;
    padding: 36px 32px;
  }
  .form-card h3{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 24px;
    color: var(--navy);
    margin: 0 0 10px;
    letter-spacing: -.005em;
  }
  .form-card p.desc{
    color: var(--slate-700);
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 24px;
  }
  .row-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 480px){ .row-2{ grid-template-columns: 1fr; } }
  .form-card .submit-row{
    display: flex; align-items: center; justify-content: flex-end;
    margin-top: 18px; padding-top: 18px;
    border-top: 1px solid var(--rule);
  }

  /* ===== XIII. Member portal ===== */
  .portal{
    background: var(--navy);
    color: var(--paper);
    padding: 64px 56px;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
  }
  @media (max-width: 880px){
    .portal{ grid-template-columns: 1fr; padding: 44px 28px; gap: 32px; }
  }
  .portal .bg{ position:absolute; inset: 0; z-index: 0; opacity: .35; }
  .portal > *{ position: relative; z-index: 1; }
  .portal .when-line{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 15px;
    color: rgba(242,236,224,.55);
    margin: 0 0 14px;
  }
  .portal h3{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 44px;
    line-height: 1.02;
    letter-spacing: -.012em;
    color: var(--paper);
    margin: 0 0 20px;
    text-wrap: balance;
    max-width: 16ch;
  }
  @media (max-width: 600px){ .portal h3{ font-size: 32px; } }
  .portal p.lede{
    color: rgba(242,236,224,.74);
    font-size: 17px;
    line-height: 1.55;
    margin: 0 0 28px;
    max-width: 50ch;
  }
  .timeline{
    border-left: 1px solid rgba(242,236,224,.18);
    padding-left: 28px;
  }
  @media (max-width: 880px){
    .timeline{ border-left: 0; border-top: 1px solid rgba(242,236,224,.18); padding: 24px 0 0; }
  }
  .tl-row{
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 18px;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid rgba(242,236,224,.1);
  }
  .tl-row:last-child{ border-bottom: 0; }
  .tl-row .phase{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 17px;
    color: var(--paper);
    letter-spacing: -.002em;
  }
  .tl-row.done .phase{ color: rgba(242,236,224,.55); text-decoration: line-through; text-decoration-color: rgba(242,236,224,.25); text-decoration-thickness: 1px; }
  .tl-row.now .phase{ color: var(--amber); }
  .tl-row .phase small{
    display: block;
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    color: rgba(242,236,224,.5);
    font-weight: 400;
    margin-top: 2px;
  }
  .tl-row .when{
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    color: rgba(242,236,224,.55);
    text-align: right;
    white-space: nowrap;
  }
  .tl-row.now .when{ color: var(--amber); }

  /* ===== XIV. Footer ===== */
  .footer{
    background: var(--navy);
    color: var(--paper);
    padding: 64px 48px 32px;
    position: relative;
    overflow: hidden;
  }
  .footer .bg{ position: absolute; inset: 0; z-index: 0; opacity: .25; }
  .footer-inner{ position: relative; z-index: 1; }
  .footer-top{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(242,236,224,.16);
  }
  @media (max-width: 900px){ .footer-top{ grid-template-columns: 1fr 1fr; gap: 36px; } }
  @media (max-width: 540px){
    .footer-top{ grid-template-columns: 1fr; }
    .footer{ padding: 44px 24px 28px; }
  }
  .footer .org{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 24px;
    color: var(--paper);
    letter-spacing: -.005em;
    line-height: 1.1;
  }
  .footer .org span{
    display: block;
    font-family: var(--f-body);
    font-style: italic;
    font-size: 14px;
    color: rgba(242,236,224,.5);
    font-weight: 400;
    margin-top: 6px;
  }
  .footer .blurb{
    color: rgba(242,236,224,.65);
    font-size: 15px;
    line-height: 1.5;
    margin: 22px 0 0;
    max-width: 32ch;
  }
  .footer h5{
    font-family: var(--f-display);
    font-weight: 500;
    font-size: 15px;
    color: var(--paper);
    margin: 0 0 16px;
    letter-spacing: .005em;
  }
  .footer ul{ list-style: none; padding: 0; margin: 0; }
  .footer ul li{ margin-bottom: 10px; line-height: 1.5; }
  .footer ul a{
    color: rgba(242,236,224,.72);
    text-decoration: none;
    font-size: 15px;
    transition: color .15s ease;
  }
  .footer ul a:hover{ color: var(--amber); }
  .footer .role{
    display: block;
    font-family: var(--f-body);
    font-style: italic;
    font-size: 13px;
    color: rgba(242,236,224,.42);
    font-weight: 400;
  }
  .footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    gap: 18px;
    flex-wrap: wrap;
    font-family: var(--f-body);
    font-size: 14px;
    color: rgba(242,236,224,.55);
    font-style: italic;
  }
  .footer-bottom a{ color: rgba(242,236,224,.75); text-decoration: none; }
  .footer-bottom a:hover{ color: var(--amber); }

  /* Coda */
  .coda{
    text-align: center;
    margin-top: 88px;
    padding-top: 32px;
    border-top: 1px solid var(--rule);
    font-family: var(--f-body);
    font-style: italic;
    font-size: 14px;
    color: var(--slate-400);
  }
