:root {
  --navy: #062b4f;
  --navy-2: #021c38;
  --blue: #085da9;
  --teal: #0aa6b0;
  --teal-2: #08c2c8;
  --gold: #ffc233;
  --ink: #10233d;
  --muted: #5c6f85;
  --line: #d8e4ef;
  --soft: #eef7fb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(3, 35, 68, 0.16);
  --radius: 8px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #ffffff;
}

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

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  z-index: 10;
}
.skip-link:focus { top: 12px; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(10, 166, 176, 0.36);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(216, 228, 239, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 174px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #284661;
  font-weight: 700;
  font-size: 0.93rem;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(10, 166, 176, 0.24);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  padding: 9px 14px;
  font-weight: 800;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -5px; }
.menu-icon::after { top: 5px; }

.menu-toggle[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-icon::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon::after { top: 0; transform: rotate(-45deg); }

.section {
  padding: 88px 0;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.hero-grid,
.two-column,
.register-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
}

.hero-grid { align-items: center; }
.align-center { align-items: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: currentColor;
  border-radius: 99px;
}

.eyebrow.light { color: #8ef4f6; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--navy-2);
  font-size: clamp(2.45rem, 5.4vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  color: var(--navy-2);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  color: #334f6a;
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 18px 34px rgba(8, 93, 169, 0.25);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(8, 93, 169, 0.18);
  box-shadow: 0 14px 30px rgba(6, 43, 79, 0.08);
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.event-facts div {
  padding: 16px;
  border: 1px solid rgba(8, 93, 169, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.event-facts dt {
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 4px 0 0;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.25;
}

.hero-media {
  position: relative;
  margin: 0;
  isolation: isolate;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 5% -4% -5% 10%;
  background: linear-gradient(135deg, rgba(8, 93, 169, 0.14), rgba(10, 166, 176, 0.18));
  border-radius: 10px;
  transform: rotate(-3deg);
  z-index: -1;
}

.hero-media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.88);
}

.hero-media figcaption {
  max-width: 92%;
  margin: 14px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.logo-strip {
  padding: 24px 0;
  background: var(--navy-2);
}

.compact {
  padding-top: 70px;
  padding-bottom: 70px;
}

.sectors {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sectors span {
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #d8fbff;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.05);
}

.content-stack > p {
  color: var(--muted);
  font-size: 1.08rem;
}

.cards {
  display: grid;
  gap: 20px;
  align-items: stretch;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-column .cards.three {
  grid-template-columns: 1fr;
}

.card,
.question-box,
.process-card,
.interest-form,
.contact-card {
  border: 1px solid rgba(8, 93, 169, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(3, 35, 68, 0.08);
}

.card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px;
}

.card h3,
.card p {
  width: 100%;
  max-width: none;
}

.card p {
  flex: 1;
  color: var(--muted);
  margin-bottom: 0;
}
.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--blue));
  font-weight: 900;
}

.accent {
  color: #d8fbff;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
}

.accent h2,
.accent h3,
.accent strong { color: var(--white); }
.accent p { color: #d5eaf7; }

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
  color: #f0fdff;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--gold);
  font-weight: 900;
}

.process-card {
  padding: 22px;
  display: grid;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.process-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.process-step span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(8, 194, 200, 0.2);
  color: #8ef4f6;
  font-weight: 900;
}

.process-step p { margin: 0; }

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow::before { display: none; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(8, 93, 169, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
}

.timeline span {
  color: var(--teal);
  font-weight: 900;
}

.timeline h3,
.timeline p {
  grid-column: 2;
}

.timeline p {
  color: var(--muted);
  margin: 0;
}

.soft {
  background: linear-gradient(180deg, #f6fbfe, #eef7fb);
}

.pilot-cards .featured {
  border-color: rgba(255, 194, 51, 0.75);
  box-shadow: 0 24px 60px rgba(255, 194, 51, 0.18);
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 194, 51, 0.32);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.question-box {
  padding: 32px;
}

.question-box ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.question-box li + li { margin-top: 10px; }

.register {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.register h2 { color: var(--white); }
.register p { color: #d5eaf7; }

.participant-perk {
  width: min(100%, 460px);
  margin-top: 24px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(10, 166, 176, 0.16);
  border: 1px solid rgba(142, 244, 246, 0.28);
}

.participant-perk strong {
  display: block;
  margin-bottom: 6px;
  color: #8ef4f6;
}

.participant-perk p {
  margin: 0;
}

.participant-perk a {
  color: var(--white);
  font-weight: 900;
}

.contact-card {
  width: fit-content;
  margin-top: 18px;
  padding: 18px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.contact-card strong { display: block; }
.contact-card a { color: #8ef4f6; font-weight: 900; }

.interest-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
}

.form-target {
  position: absolute;
  width: 1px;
  height: 1px;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.interest-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.interest-form .full { grid-column: 1 / -1; }

input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c7d7e5;
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: #f8fcff;
  font: inherit;
}

textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(10, 166, 176, 0.22);
  border-color: var(--teal);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.attendee-list {
  display: grid;
  gap: 14px;
}

.attendee-list article {
  padding: 22px 24px;
  border-left: 4px solid var(--teal);
  background: #f8fcff;
}

.attendee-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.privacy-note {
  margin: 0;
  color: #536980 !important;
  font-size: 0.88rem;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--teal) !important;
  font-weight: 800;
}

.site-footer {
  padding: 36px 0;
  color: #d5eaf7;
  background: #011326;
}

.footer-logo {
  display: block;
  width: 168px;
  height: auto;
  margin-bottom: 12px;
}
.site-footer p { margin-bottom: 0; color: #aac3d7; }
.footer-grid { align-items: center; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}
.footer-links a {
  color: #8ef4f6;
  font-weight: 800;
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

@media (max-width: 1060px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-grid,
  .two-column,
  .register-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .event-facts,
  .cards.three,
  .interest-form {
    grid-template-columns: 1fr;
  }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1160px); }
  .section { padding: 64px 0; }
  .nav { min-height: 70px; }
  .brand img { width: 142px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .event-facts { gap: 10px; }
  .nav-links { top: 70px; }
  .hero-media img { border-radius: 8px; }
  .timeline article { grid-template-columns: 1fr; gap: 6px; }
  .timeline h3,
  .timeline p { grid-column: 1; }
  .process-step { grid-template-columns: 1fr; }
  .process-step span { grid-row: auto; }
}
