/* Indeed AU DCA : mid-fi wireframe v2. Indeed branding, no imagery yet.
   Direction per kickoff call: premium, light, white on white with blue embellishments. */
@font-face { font-family: "Indeed Sans"; src: url("assets/fonts/IndeedSans_Rg.ttf") format("truetype"); font-weight: 400; font-style: normal; }
@font-face { font-family: "Indeed Sans"; src: url("assets/fonts/IndeedSans_It.ttf") format("truetype"); font-weight: 400; font-style: italic; }
@font-face { font-family: "Indeed Sans"; src: url("assets/fonts/IndeedSans_Md.ttf") format("truetype"); font-weight: 500; font-style: normal; }
@font-face { font-family: "Indeed Sans"; src: url("assets/fonts/IndeedSans_Bd.ttf") format("truetype"); font-weight: 700; font-style: normal; }
@font-face { font-family: "Indeed Sans"; src: url("assets/fonts/IndeedSans_XBd.ttf") format("truetype"); font-weight: 800; font-style: normal; }

:root {
  --brand: #003A9B;        /* Indeed Blue : leads */
  --ink: #001C40;          /* dark structural text (AU build precedent) */
  --body: #33415C;
  --mid: #595959;
  --faint: #5F6B84;
  --line: #E3E8F0;
  --wash: #F5F8FC;         /* soft blue-tinted wash */
  --wash-deep: #EBF1FA;
  --paper: #fff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Indeed Sans", Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--body);
  background: #E9EDF4;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

/* Wireframe chrome (not part of the design) */
.wf-bar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 16px;
  background: var(--ink); color: #fff;
  padding: 10px 20px; font-size: 12px;
}
.wf-bar strong { font-weight: 700; letter-spacing: 0.02em; }
.wf-bar nav { display: flex; gap: 2px; margin-left: auto; flex-wrap: wrap; }
.wf-bar nav a { color: #C9D4E8; text-decoration: none; padding: 4px 10px; border-radius: 3px; }
.wf-bar nav a:hover { background: rgba(255,255,255,0.12); }
.wf-bar nav a.on { background: #fff; color: var(--ink); font-weight: 700; }

.page { max-width: 880px; margin: 40px auto 90px; background: var(--paper); border: 1px solid var(--line); border-radius: 6px; overflow: hidden; box-shadow: 0 18px 50px -30px rgba(0,28,64,0.25); }
.page-wide { max-width: 1120px; }

/* Annotation notes : wireframe commentary, not UI */
.note {
  font-size: 11px; color: var(--mid); background: var(--wash);
  border-left: 3px solid var(--faint);
  padding: 6px 12px;
}
.note b { color: var(--ink); }
.note.src { border-left-style: double; }
.note .tag {
  display: inline-block; font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--brand); color: #fff; padding: 1px 5px; border-radius: 2px; margin-right: 6px;
}

/* Layout blocks */
section { padding: 52px 64px; border-bottom: 1px solid var(--line); }
.kicker { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--brand); margin-bottom: 12px; }
h1 { font-size: 34px; font-weight: 800; line-height: 1.15; color: var(--ink); letter-spacing: -0.01em; }
h2 { font-size: 22px; font-weight: 700; margin-bottom: 18px; color: var(--ink); }
h2::after { content: ""; display: block; width: 34px; height: 3px; background: var(--brand); margin-top: 8px; border-radius: 2px; }

/* Placeholder slots */
.slot {
  border: 1.5px dashed #B9C6DE;
  background: repeating-linear-gradient(45deg, var(--wash), var(--wash) 10px, var(--wash-deep) 10px, var(--wash-deep) 20px);
  color: var(--faint);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  font-size: 12px; font-weight: 500; padding: 10px; border-radius: 4px;
}
.slot small { display: block; color: var(--faint); font-size: 10px; font-weight: 400; margin-top: 3px; max-width: 420px; }
.txt-slot {
  color: var(--faint); font-size: 13px; border: 1.5px dashed #C7D2E6;
  padding: 10px 14px; background: var(--wash); border-radius: 4px;
}
.h-slot { font-size: 34px; font-weight: 800; color: #A9B7D2; }

/* Header / hero */
.masthead { display: flex; align-items: center; justify-content: space-between; padding: 22px 64px; border-bottom: 1px solid var(--line); }
.logo { height: 30px; display: block; }
.hero { padding: 72px 64px 60px; background:
  radial-gradient(600px 300px at 85% -10%, var(--wash-deep) 0%, rgba(235,241,250,0) 70%),
  #fff; }
.hero .slot { margin-top: 26px; }
.meta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.chip {
  border: 1px solid var(--brand); background: #fff; font-size: 12.5px; font-weight: 500;
  color: var(--brand); padding: 6px 15px; border-radius: 999px;
}
.chip.solid { background: var(--brand); color: #fff; }

/* Buttons */
.btn {
  display: inline-block; background: var(--brand); color: #fff; text-decoration: none;
  font-family: inherit; font-size: 14.5px; font-weight: 700; padding: 13px 30px; border-radius: 8px; border: 0; cursor: pointer;
}
.btn:hover { background: #002d78; }
.btn.ghost { background: #fff; color: var(--brand); border: 1.5px solid var(--brand); }
.btn.ghost:hover { background: var(--wash); }

/* Agenda */
.agenda-row { display: grid; grid-template-columns: 96px 1fr; gap: 18px; padding: 14px 0; border-bottom: 1px solid var(--wash-deep); font-size: 13.5px; align-items: center; }
.agenda-row .time { color: var(--brand); font-weight: 700; font-size: 12.5px; }
.speaker-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.speaker-card { border: 1px solid var(--line); border-top: 3px solid var(--brand); padding: 14px; border-radius: 6px; background: #fff; }
.speaker-card .slot { height: 120px; margin-bottom: 12px; }

/* Info cards */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-card { border: 1px solid var(--line); padding: 18px; font-size: 13px; border-radius: 6px; background: #fff; }
.info-card h3 { font-size: 13.5px; margin-bottom: 9px; color: var(--ink); }

/* Form */
form .field { margin-bottom: 18px; }
label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
label .req { color: var(--faint); font-weight: 400; }
input[type="text"], input[type="email"], input[type="password"], select, textarea {
  width: 100%; padding: 11px 14px; font-size: 16px; font-family: inherit;
  border: 1px solid #B9C6DE; border-radius: 6px; background: #fff; color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brand); outline-offset: 0; border-color: var(--brand); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
fieldset { border: 1px solid var(--line); border-radius: 6px; padding: 20px; margin: 24px 0; }
legend { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 0 9px; color: var(--brand); }
.radio-row { display: flex; gap: 20px; font-size: 13.5px; align-items: center; }
.radio-row label { font-weight: 400; color: var(--body); margin: 0; display: flex; gap: 7px; align-items: center; }
input[type="radio"], input[type="checkbox"] { accent-color: var(--brand); width: 15px; height: 15px; }

/* Footer */
footer.site { padding: 32px 64px; font-size: 12px; color: var(--mid); display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; background: var(--wash); }

/* Dashboard */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { border: 1px solid var(--line); border-radius: 6px; padding: 18px; background: #fff; }
.stat .num { font-size: 32px; font-weight: 800; color: var(--brand); }
.stat .lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--mid); margin-top: 2px; }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
th { text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mid); border-bottom: 2px solid var(--brand); padding: 9px 10px; }
td { border-bottom: 1px solid var(--wash-deep); padding: 10px; color: var(--body); }
.pill { font-size: 11px; font-weight: 700; color: var(--brand); border: 1px solid var(--brand); border-radius: 999px; padding: 1px 10px; }
.pill.alt { background: var(--brand); color: #fff; }
.toolbar { display: flex; gap: 10px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.toolbar .spacer { flex: 1; }

/* Hub */
.hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hub-card { border: 1px solid var(--line); border-radius: 6px; padding: 22px; text-decoration: none; display: block; background: #fff; }
.hub-card:hover { border-color: var(--brand); box-shadow: 0 6px 18px -10px rgba(0,58,155,0.35); }
.hub-card h3 { font-size: 15.5px; margin-bottom: 7px; color: var(--brand); }
.hub-card p { font-size: 12.5px; color: var(--mid); }
.flow { font-size: 13px; color: var(--body); background: var(--wash); border: 1px solid var(--line); border-radius: 6px; padding: 20px; }
.flow ol { margin-left: 18px; }
.flow li { margin: 7px 0; }
.flow b { color: var(--ink); }

@media (max-width: 720px) {
  section, .masthead, .hero, footer.site { padding-left: 22px; padding-right: 22px; }
  .speaker-grid { grid-template-columns: 1fr; }
  .info-grid, .field-row, .hub-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}

/* Email mockup frame (demo flow) */
.email-frame { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #fff; box-shadow: 0 14px 40px -24px rgba(0,28,64,0.3); }
.email-chrome { background: #F0F3F8; border-bottom: 1px solid var(--line); padding: 12px 18px; }
.email-chrome .dots { display: flex; gap: 6px; margin-bottom: 10px; }
.email-chrome .dots i { width: 10px; height: 10px; border-radius: 50%; background: #C7D2E6; }
.email-meta { font-size: 12px; color: var(--mid); display: grid; gap: 3px; }
.email-meta b { color: var(--ink); font-weight: 700; }
.email-meta .ph { color: var(--faint); border-bottom: 1px dashed #C7D2E6; }
.email-body { padding: 0; }
.email-banner {
  background: linear-gradient(120deg, var(--brand), #002d78);
  padding: 34px 34px 30px; color: #fff;
}
.email-banner img { height: 26px; filter: brightness(0) invert(1); display: block; margin-bottom: 18px; }
.email-banner .eb-name { font-size: 24px; font-weight: 800; color: rgba(255,255,255,0.75); }
.email-banner .eb-sub { font-size: 12.5px; color: rgba(255,255,255,0.65); margin-top: 6px; }
.email-inner { padding: 28px 34px 34px; }
.email-inner .txt-slot { margin-bottom: 14px; }
.email-cta { text-align: center; padding: 8px 0 4px; }
.email-note { font-size: 10.5px; color: var(--faint); text-align: center; padding: 0 34px 22px; }
.stream-flag { display: inline-block; font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; background: var(--wash-deep); color: var(--brand); border-radius: 4px; padding: 3px 8px; margin-bottom: 12px; }
.attach-card { display: flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px; font-size: 12.5px; background: var(--wash); margin-top: 14px; }
.attach-card .ico { width: 34px; height: 34px; border-radius: 6px; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; flex-shrink: 0; }
.attach-card b { color: var(--ink); display: block; }
.attach-card span { color: var(--mid); }
.choose-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.choose-card { border: 1.5px solid var(--line); border-radius: 8px; padding: 22px; background: #fff; cursor: pointer; text-align: left; font-family: inherit; font-size: 13px; color: var(--mid); }
.choose-card h3 { color: var(--brand); font-size: 16px; margin-bottom: 6px; }
.choose-card.on { border-color: var(--brand); box-shadow: 0 0 0 3px var(--wash-deep); }
@media (max-width: 720px) { .choose-grid { grid-template-columns: 1fr; } .email-banner, .email-inner { padding-left: 20px; padding-right: 20px; } }

/* Speaker rows: photo left, bio right. Handles long bios better than a card grid. */
.speaker-row { display: grid; grid-template-columns: 190px 1fr; gap: 26px; align-items: start;
  padding: 26px 0; border-bottom: 1px solid var(--line); }
.speaker-row:last-child { border-bottom: 0; padding-bottom: 0; }
.speaker-row img { width: 190px; height: 190px; object-fit: cover; border-radius: 6px; display: block; }
.speaker-row .ph { width: 190px; height: 190px; border-radius: 6px; }
.speaker-row h3 { font-size: 19px; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.speaker-row .role { font-size: 13px; font-weight: 700; color: var(--brand); margin-bottom: 12px; }
.speaker-row p.bio { font-size: 13.5px; line-height: 1.65; color: var(--body); margin-bottom: 9px; }
.speaker-row p.bio:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .speaker-row { grid-template-columns: 1fr; gap: 16px; }
  .speaker-row img, .speaker-row .ph { width: 150px; height: 150px; }
}

/* Audit fixes 14 Sep 2026 */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
button.pill { font-family: inherit; font-size: 11px; cursor: pointer; background: #fff; line-height: 1.6; min-height: 28px; }
button.pill.alt { background: var(--brand); color: #fff; }
button.pill:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }
