
  :root {
    /* IIA brand palette (pulled from PDF) */
    --iia-navy: #0a3d62;
    --iia-navy-deep: #062a45;
    --iia-blue: #2b7fd6;
    --iia-blue-light: #4f9fe8;
    --iia-lime: #a3c93a;
    --iia-lime-deep: #88b228;
    --iia-teal: #2dd4d4;
    --accent-yellow: #f5d547;
    --bg: #ffffff;
    --soft-blue: #dbeaf3;
    --soft-blue-2: #e8f1f7;
    --soft-lime: #eaf2d3;
    --text: #0a3d62;
    --muted: #5b6b7d;
    --border: #d8e1ea;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    --shadow-sm: 0 1px 2px rgba(10, 61, 98, 0.07);
    --shadow-md: 0 4px 16px rgba(10, 61, 98, 0.1);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html, body {
    font-family: 'Manrope', system-ui, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  img { max-width: 100%; display: block; }

  /* ============ TOP UTILITY BAR ============ */
  .utility-bar {
    background: #14181f;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 18px;
    height: 44px;
    font-size: 13px;
    gap: 14px;
  }
  .utility-bar .waffle {
    width: 18px; height: 18px;
    display: grid;
    grid-template-columns: repeat(3, 4px);
    grid-template-rows: repeat(3, 4px);
    gap: 2px;
    margin-right: 4px;
  }
  .utility-bar .waffle span { background: #fff; border-radius: 1px; }
  .utility-bar .brand { font-weight: 600; color: #cfd6df; }
  .utility-bar .search {
    flex: 1;
    max-width: 480px;
    margin: 0 auto;
    background: #2a2f37;
    border-radius: 4px;
    height: 28px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: #9aa3ad;
    font-size: 13px;
  }
  .utility-bar .icons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .utility-bar .icon-circle {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: #3d4651;
    display: inline-block;
  }
  .utility-bar .avatar {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c97a4f, #8b5638);
  }

  /* ============ MAIN NAV ============ */
  .main-nav {
    background: var(--iia-navy);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 14px 32px;
    gap: 36px;
  }
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .logo-mark {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--iia-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .logo-mark::before, .logo-mark::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.6);
    border-radius: 40%;
  }
  .logo-mark::before {
    width: 28px; height: 8px;
    top: 8px; left: 4px;
    transform: rotate(-15deg);
  }
  .logo-mark::after {
    width: 26px; height: 6px;
    bottom: 9px; left: 5px;
    transform: rotate(-12deg);
    background: rgba(43,127,214,0.7);
  }
  .logo-text {
    font-family: 'Archivo Black', sans-serif;
    font-size: 20px;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1;
  }
  .logo-text small {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--iia-lime);
    margin-top: 3px;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
    list-style: none;
    font-size: 15px;
    font-weight: 500;
  }
  .nav-links a {
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-links .caret { font-size: 10px; opacity: 0.8; }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    overflow: hidden;
    padding: 64px;
    background:
      linear-gradient(120deg, var(--iia-navy) 0%, var(--iia-blue) 60%, var(--iia-lime) 100%);
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 25% 80%, rgba(45, 212, 212, 0.3) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 30%, rgba(163, 201, 58, 0.35) 0%, transparent 50%);
    pointer-events: none;
  }
  .hero-deco {
    position: absolute;
    left: -120px;
    top: -80px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08), transparent 60%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-deco::before, .hero-deco::after {
    content: '';
    position: absolute;
    background: rgba(255,255,255,0.06);
    border-radius: 40%;
  }
  .hero-deco::before {
    width: 280px; height: 50px;
    top: 130px; left: 50px;
    transform: rotate(-15deg);
  }
  .hero-deco::after {
    width: 240px; height: 42px;
    top: 200px; left: 70px;
    transform: rotate(-10deg);
  }
  .hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .hero-content {
    color: #fff;
  }
  .hero-video {
  position: relative;
  width: 632px;
  height: 355px;
  border-radius: var(--radius-lg);
  overflow: hidden;

  background:
    linear-gradient(135deg, rgba(10,61,98,0.4), rgba(10,61,98,0.7)),
    linear-gradient(180deg, #1a4a6b 0%, #0a3d62 100%);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.35),
    0 0 0 1px rgba(255,255,255,0.1);
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* or contain if you want letterboxing */
  display: block;
}

  .hero-video::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 40%, rgba(163,201,58,0.15), transparent 50%),
      radial-gradient(circle at 70% 60%, rgba(45,212,212,0.15), transparent 50%);
  }
  .hero-video .play-btn {
    position: relative;
    z-index: 2;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
  }
  .hero-video:hover .play-btn {
    transform: scale(1.08);
  }
  .hero-video .play-btn::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 22px solid var(--iia-navy);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    margin-left: 6px;
  }
  .hero-video .video-label {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    background: rgba(0,0,0,0.45);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .hero-video .video-meta {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    background: rgba(0,0,0,0.45);
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.05em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .hero-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(163, 201, 58, 0.95);
    color: var(--iia-navy-deep);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .hero-content h1 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 46px;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  }
  .hero-content h1 em {
    font-style: italic;
    color: var(--iia-lime);
    font-family: 'Archivo Black', sans-serif;
  }
  .hero-content p {
    font-size: 16px;
    margin-bottom: 26px;
    max-width: 520px;
    color: rgba(255,255,255,0.92);
  }
  .hero-cta {
    display: inline-block;
    background: rgba(255,255,255,0.95);
    color: var(--iia-navy);
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease;
  }
  .hero-cta:hover { transform: translateY(-1px); }
  .hero-cta.ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.7);
    margin-left: 10px;
  }

  /* ============ SECTION CONTAINER ============ */
  .section {
    padding: 56px 64px;
    max-width: 1320px;
    margin: 0 auto;
  }
  .section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 26px;
    letter-spacing: 0.02em;
    color: var(--iia-navy);
    margin-bottom: 36px;
    padding-left: 14px;
    border-left: 6px solid var(--iia-lime);
    text-transform: uppercase;
  }

  /* ============ ONBOARDING ROADMAP ============ */
  .roadmap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-bottom: 12px;
  }
  .roadmap-step { text-align: center; }
  .roadmap-step .label {
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--iia-navy);
  }
  .roadmap-step .desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
    max-width: 180px;
    margin: 0 auto 16px;
    min-height: 52px;
  }
  .roadmap-icons {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    height: 70px;
  }
  .roadmap-icons::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 7%;
    right: 4%;
    height: 3px;
    background: linear-gradient(90deg, var(--iia-lime), var(--iia-blue));
    transform: translateY(-50%);
    z-index: 0;
  }
  .roadmap-icons::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 2%;
    width: 0;
    height: 0;
    border-left: 12px solid var(--iia-blue);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    transform: translateY(-50%);
    z-index: 1;
  }
  .step-icon {
    position: relative;
    z-index: 2;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--iia-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(163,201,58,0.4);
  }
  .step-icon.s2 { background: var(--iia-teal); box-shadow: 0 4px 12px rgba(45,212,212,0.4); }
  .step-icon.s3 { background: var(--iia-blue-light); }
  .step-icon.s4 { background: var(--iia-blue); }
  .step-icon.s5 { background: var(--iia-navy); box-shadow: 0 4px 12px rgba(10,61,98,0.4); }

  /* ============ ROADMAP DETAILS GRID ============ */
  .roadmap-details {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    margin-top: 40px;
  }
  .accordion .acc-item {
    background: var(--iia-navy);
    color: #fff;
    border-radius: var(--radius-pill);
    padding: 14px 22px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .accordion .acc-item .chev {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
  }
  .accordion .acc-wrap.open {
    background: var(--soft-lime);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
  }
  .accordion .acc-wrap.open .acc-item {
    background: transparent;
    color: var(--iia-navy);
    margin: 0;
  }
  .accordion .acc-wrap.open .acc-item .chev {
    background: var(--iia-navy);
    color: #fff;
  }
  .accordion .acc-body {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
  }
  .accordion .acc-body ul {
    margin-top: 8px;
    padding-left: 20px;
  }
  .accordion .acc-body li {
    margin-bottom: 4px;
  }

  /* Calendar widget */
  .calendar-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow-sm);
  }
  .cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-weight: 600;
    color: var(--iia-navy);
  }
  .cal-header .nav { color: var(--muted); cursor: pointer; padding: 4px; }
  .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    gap: 4px;
    font-size: 13px;
  }
  .cal-grid .dow {
    color: var(--muted);
    font-weight: 600;
    padding: 6px 0;
    font-size: 11px;
  }
  .cal-grid .day {
    padding: 8px 0;
    border-radius: 50%;
    color: var(--text);
  }
  .cal-grid .day.muted { color: var(--muted); opacity: 0.4; }
  .cal-grid .day.active {
    background: var(--iia-navy);
    color: #fff;
    font-weight: 600;
  }
  .cal-grid .day.holiday {
    background: var(--iia-lime);
    color: var(--iia-navy);
    font-weight: 600;
  }
  .cal-filter {
    margin-top: 16px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cal-event {
    margin-top: 10px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
  }
  .cal-event .date-block { text-align: center; line-height: 1; }
  .cal-event .date-block .num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    color: var(--iia-navy);
  }
  .cal-event .date-block .mo {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }
  .cal-event .ev-info { flex: 1; font-size: 13px; }
  .cal-event .ev-info strong { display: block; color: var(--iia-navy); margin-bottom: 2px; }
  .cal-event .ev-info span { color: var(--muted); }
  .pill-tag {
    background: var(--iia-lime);
    color: var(--iia-navy);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
  }
  .pill-tag.business { background: #b6e4a3; }
  .pill-tag.meeting { background: #d4c5f0; }
  .pill-tag.training { background: var(--iia-teal); color: #fff; }

  /* ============ FAQ DARK SECTION ============ */
  .faq-section {
    background: var(--iia-navy);
    color: #fff;
    padding: 56px 64px;
    position: relative;
    overflow: hidden;
  }
  .faq-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(163, 201, 58, 0.06);
  }
  .faq-wrap {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr 240px;
    gap: 36px;
    position: relative;
    z-index: 2;
  }
  .faq-intro h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    margin-bottom: 18px;
    color: #fff;
  }
  .faq-intro h2 em {
    color: var(--iia-lime);
    font-style: normal;
  }
  .faq-intro p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #c5d2dd;
    margin-bottom: 14px;
  }
  .faq-list .q {
    background: var(--iia-blue-light);
    color: #fff;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
  }
  .faq-list .q .chev {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
  }

 .shortcuts h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    margin-bottom: 16px;
  }
  .shortcut-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .shortcut {
    text-align: center;
    color: #fff;
    font-size: 11px;
    text-decoration: none;
  }
  .shortcut .ic {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 6px;
  }
  .shortcut .ic.add { background: #f3a35a; }
  .shortcut .ic.time { background: #6cd3c4; }
  .shortcut .ic.staff { background: #c4a3e0; }
  .shortcut .ic.off { background: #f4d06f; }
  .shortcut .ic.help { background: #f07a7a; }
  .shortcut .ic.exp { background: #8ec5f0; }
  .shortcut .ic.ben { background: #6ed59e; }
  .shortcut .ic.proj { background: #5fa3d9; }
  .shortcut .ic.more { background: #f3a35a; }

  /* ============ DOCUMENTS & FORMS ============ */
  .docs-section {
    background: var(--soft-blue);
    padding: 56px 64px;
  }
  .docs-wrap {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 56px;
  }
  .docs-wrap h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 30px;
    color: var(--iia-navy);
    margin-bottom: 24px;
  }
  .doc-search {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #c4d3e0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 18px;
    font-family: inherit;
  }
  .doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  .doc-tile {
    background: var(--iia-navy);
    color: #fff;
    padding: 18px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
  }
  .doc-tile:hover {
    transform: translateY(-2px);
    background: var(--iia-blue);
  }

  .contacts-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
  }
  .contact-card .avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #d4a373, #8b5a3c);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Archivo Black', sans-serif;
  }
  .contact-card .avatar.ceo { background: linear-gradient(135deg, #4a6b8e, #2d4055); }
  .contact-card .avatar.cohen { background: linear-gradient(135deg, #d97a8c, #a04050); }
  .contact-card .avatar.monterio { background: linear-gradient(135deg, #6b8e9b, #3d5a6b); }
  .contact-card .avatar.faleato { background: linear-gradient(135deg, #c4956b, #8b6342); }
  .contact-card .avatar.bi { background: linear-gradient(135deg, #d4a373, #6b4423); }
  .contact-card .avatar.patterson { background: linear-gradient(135deg, #8b9aaa, #4a5a6b); }
  .contact-card .info strong {
    display: block;
    font-size: 14px;
    color: var(--iia-navy);
  }
  .contact-card .info span {
    font-size: 12px;
    color: var(--muted);
  }

  /* ============ NEWS & EVENTS ============ */
  .news-wrap {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 36px;
  }
  .news-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
    align-items: center;
  }
  .news-tab {
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
    border: none;
    font-family: inherit;
  }
  .news-tab.active {
    background: var(--iia-navy);
    color: #fff;
  }
  .news-tab-arrow {
    margin-left: 6px;
    color: var(--muted);
    font-size: 18px;
  }
  .news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  .news-card .img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    margin-bottom: 14px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  .news-card .img.a {
    background:
      linear-gradient(135deg, rgba(10,61,98,0.2), rgba(163,201,58,0.3)),
      linear-gradient(180deg, var(--iia-blue) 0%, var(--iia-lime) 100%);
  }
  .news-card .img.a::after {
    content: '🌍';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.4;
  }
  .news-card .img.b {
    background:
      linear-gradient(135deg, rgba(0,0,0,0.2), rgba(0,0,0,0)),
      linear-gradient(180deg, var(--iia-teal) 0%, var(--iia-navy) 100%);
  }
  .news-card .img.b::after {
    content: '🏆';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    opacity: 0.5;
  }
  .news-card .meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .news-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 18px;
    color: var(--iia-navy);
    margin-bottom: 14px;
    line-height: 1.25;
  }
  .news-card .stats {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    gap: 14px;
  }

  .events-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .event-row {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
  }
  .event-row .date-block { text-align: center; flex-shrink: 0; }
  .event-row .date-block .num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 22px;
    line-height: 1;
    color: var(--iia-navy);
  }
  .event-row .date-block .mo {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.1em;
  }
  .event-row .ev-info { flex: 1; font-size: 13px; }
  .event-row .ev-info strong {
    display: block;
    color: var(--iia-navy);
    line-height: 1.25;
  }
  .event-row .ev-info span { color: var(--muted); font-size: 11px; }
  .event-row .ev-info .rsvp {
    color: var(--iia-blue);
    font-size: 12px;
    font-weight: 600;
  }

  /* ============ SPOTLIGHTS ============ */
  .spotlights {
    position: relative;
    padding: 0 64px 56px;
    max-width: 1320px;
    margin: 0 auto;
  }
  .spotlights .section-title {
    margin-left: 0;
    margin-bottom: 24px;
  }
  .spot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    position: relative;
  }
  .spot-card {
    position: relative;
    aspect-ratio: 4/4;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .spot-card .photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }
  .spot-card.a .photo {
    background:
      radial-gradient(circle at 30% 40%, rgba(163,201,58,0.5) 0%, transparent 50%),
      linear-gradient(180deg, var(--iia-teal) 0%, var(--iia-blue) 50%, var(--iia-navy) 100%);
  }
  .spot-card.a .photo::after {
    content: '👥';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    opacity: 0.5;
  }
  .spot-card.b .photo {
    background:
      linear-gradient(180deg, #f5b1c2 0%, #a3c93a 40%, #2dd4d4 70%, #2b7fd6 100%);
  }
  .spot-card.b .photo::after {
    content: '🌈';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    opacity: 0.55;
  }
  .spot-card.c .photo {
    background:
      radial-gradient(circle at 70% 30%, rgba(245,213,71,0.4) 0%, transparent 50%),
      linear-gradient(180deg, var(--iia-lime) 0%, var(--iia-blue) 100%);
  }
  .spot-card.c .photo::after {
    content: '🎓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    opacity: 0.5;
  }
  .spot-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10,61,98,0.85) 0%, transparent 50%);
  }
  .spot-card .caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: #fff;
    font-family: 'Archivo Black', sans-serif;
    font-size: 17px;
    line-height: 1.2;
    z-index: 2;
  }
  .spot-card .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: rgba(255,255,255,0.95);
    color: var(--iia-navy);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .carousel-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(10,61,98,0.08);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--iia-navy);
    font-size: 14px;
    z-index: 5;
  }
  .carousel-arrow.left { left: 18px; }
  .carousel-arrow.right { right: 18px; }

  /* ============ FOOTER STAT BAR ============ */
  .stat-bar {
    background: var(--iia-navy-deep);
    color: #fff;
    padding: 32px 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
  }
  .stat-bar .stat .num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 28px;
    color: var(--iia-lime);
    margin-bottom: 4px;
  }
  .stat-bar .stat .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.8);
  }
.hero-video::before {
  pointer-events: none;
}
/* =========================
   THURSTON BOT STYLES
========================= */

#thurston-bot {
  width: 360px;
  border-radius: 16px;
  border: 1px solid #e2e2e2;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  font-family: 'Manrope', sans-serif;
  overflow: hidden;
}

/* Header */
.bot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(135deg, #002b5c, #004a8f);
  color: white;
}

.bot-avatar {
  width: 40px;
  height: 40px;
  background: white;
  color: #002b5c;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
}

.bot-name {
  font-size: 16px;
  font-weight: 700;
}

.bot-status {
  font-size: 12px;
  opacity: 0.85;
}

/* Messages */
.bot-messages {
  height: 300px;
  padding: 14px;
  overflow-y: auto;
  background: #f7f9fc;
}

/* Message bubbles */
.bot-msg,
.user-msg {
  max-width: 80%;
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
}

/* Bot message */
.bot-msg {
    background: white;
    border: 1px solid #e6e6e6;
    align-self: flex-start;
    color: #0a3d62;
}

/* User message */
.user-msg {
  background: #004a8f;
  color: white;
  margin-left: auto;
}

/* Input */
.bot-input-wrap {
  border-top: 1px solid #e6e6e6;
  padding: 10px;
  background: white;
}

#bot-input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 14px;
}

#bot-input:focus {
  outline: none;
  border-color: #004a8f;
}
/* =========================
   THURSTON — HELP PANEL
========================= */

#thurston-help {
  background: #f7f9fc;
  border-radius: 14px;
  padding: 20px;
  border: 1px solid #e2e6ef;
  font-family: 'Manrope', sans-serif;
  max-width: 520px;
}

.thurston-intro strong {
  font-size: 16px;
}

.thurston-intro p {
  font-size: 14px;
  color: #444;
  margin: 6px 0 16px;
}

.thurston-input {
  display: flex;
  gap: 8px;
}

#bot-input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd6e4;
  font-size: 14px;
}

#thurston-search {
  background: #004a8f;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
}

#thurston-search:hover {
  background: #003a70;
}

/* Results */

.thurston-results {
  margin-top: 16px;
}

.thurston-results ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.thurston-results li {
  border-top: 1px solid #e2e6ef;
  padding: 12px 0;
}

.thurston-results li strong {
  display: block;
  font-size: 14px;
}

.thurston-results a {
  font-size: 13px;
  color: #004a8f;
  text-decoration: none;
}

.thurston-results a:hover {
  text-decoration: underline;
}
/* =========================
   HQ CONNECT BOT (INLINE)
========================= 

.hq-bot {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}*/

.hq-bot-intro strong {
  display: block;
  font-size: 16px;
  margin-bottom: 6px;
}

.hq-bot-intro p {
  font-size: 13.5px;
  color: #c5d2dd;
  margin-bottom: 18px;
}

.hq-bot-input {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.hq-bot-input input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.hq-bot-input button {
  background: var(--iia-lime);
  color: var(--iia-navy);
  border: none;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
}

.hq-bot-response {
  background: rgba(255,255,255,0.08);
  padding: 18px;
  border-radius: 12px;
}

.hq-bot-status {
  font-size: 13px;
  margin-bottom: 12px;
  color: #e1e8f0;
}

.hq-bot-results {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hq-bot-results li {
  margin-bottom: 14px;
  font-size: 13.5px;
}

.hq-bot-results li span {
  color: #c5d2dd;
  font-size: 12px;
}

.hq-bot-results li a {
  color: var(--iia-lime);
  font-weight: 600;
  text-decoration: none;
}
/* =========================
   THURSTON FLOATING BOT
========================= */

#thurston-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
}

#thurston-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  font-size: 24px;
  cursor: pointer;
  background: #004a8f;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}

#thurston-panel {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  overflow: hidden;
  transform-origin: bottom right;
  transition: opacity .2s ease, transform .2s ease;
}

/* ✅ THIS WAS MISSING */
#thurston-panel.closed {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
}
/* my changes */
.utility-bar {
    display: none;
}
ul.nav-links {
    display: none;
}
.main-nav .logo {
  display: flex;
  align-items: center;
}

.main-nav .logo img {
  display: block;
  height: 36px;        /* adjust as needed */
  width: auto;
  max-width: none;
}
  /* responsive */
  @media (max-width: 1100px) {
    .roadmap-details, .docs-wrap, .news-wrap, .faq-wrap {
      grid-template-columns: 1fr;
    }
    .hero-inner { grid-template-columns: 1fr; gap: 32px; }
    .doc-grid, .spot-grid, .news-grid { grid-template-columns: 1fr 1fr; }
    .roadmap, .roadmap-icons { grid-template-columns: repeat(5, 1fr); }
    .hero-content h1 { font-size: 38px; }
    .section, .faq-section, .docs-section, .spotlights, .stat-bar, .hero {
      padding-left: 28px; padding-right: 28px;
    }
    .stat-bar { grid-template-columns: repeat(2, 1fr); }
  }
@media (max-width: 768px) {
  .hero-video {
    width: 100%;
    max-width: 632px;
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* ===== Portfolio demo sanitization additions ===== */
.hero-video.static-preview::before { display:none; }
.hero-video.static-preview img {
  width:100%; height:100%; object-fit:cover; display:block;
}
.portfolio-news-wrap { grid-template-columns: 1fr 340px; }
.portfolio-news-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.news-summary { font-size:13px; line-height:1.55; color:var(--muted); margin:-4px 0 12px; }
.portfolio-note { margin-top:14px; font-size:12px; color:#7a8796; font-style:italic; }
.news-card .img.c {
  background: linear-gradient(135deg, rgba(163,201,58,.25), rgba(45,212,212,.3)),
              linear-gradient(180deg, #c9e36d 0%, #2aa4aa 100%);
}
.news-card .img.c::after {
  content:'♥'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:78px; opacity:.65;
}
.news-card .img.d {
  background: linear-gradient(135deg, rgba(43,127,214,.25), rgba(10,61,98,.2)),
              linear-gradient(180deg, #7bb8ec 0%, #24527b 100%);
}
.news-card .img.d::after {
  content:'★'; position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  color:#fff; font-size:78px; opacity:.58;
}
.portfolio-events h3 { font-family:'Archivo Black',sans-serif; color:var(--iia-navy); margin-bottom:14px; }
@media (max-width: 1050px){
  .portfolio-news-wrap{grid-template-columns:1fr;}
}
@media (max-width: 720px){
  .portfolio-news-grid{grid-template-columns:1fr;}
}
