:root {
  --bg: #fff8ff;
  --ink: #13215c;
  --muted: #60728d;
  --line: #eadcf5;
  --green: #5c35c8;
  --legacy-blue: #123f9d;
  --deep-blue: #07175f;
  --purple: #5f21b6;
  --magenta: #d72bc5;
  --cyan: #29c8ef;
  --gold: #fff12b;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 245, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero-banner {
  display: block;
  width: 100%;
  background: var(--legacy-blue);
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-intro {
  padding: 72px 32px;
  background:
    linear-gradient(135deg, rgba(255, 241, 43, 0.16) 0%, rgba(255, 248, 255, 0) 32%),
    linear-gradient(165deg, #ffffff 0%, #fff8ff 48%, #eef7ff 100%);
  color: var(--ink);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 54px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-copy,
.hero-details {
  min-width: 0;
}

.hero-copy h1 {
  color: var(--legacy-blue);
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(52px, 6.8vw, 96px);
  line-height: 0.9;
}

.hero-copy .eyebrow {
  color: var(--magenta);
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(14px, 1.8vw, 21px);
  letter-spacing: 0.03em;
}

.hero-details {
  display: grid;
  gap: 18px;
}

.event-highlight {
  display: grid;
  gap: 6px;
  padding: 26px 28px;
  border: 1px solid #eadcf5;
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 38px rgba(22, 30, 111, 0.1);
}

.event-highlight span,
.countdown__heading span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.event-highlight__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  color: var(--magenta);
}

.event-highlight__kicker span {
  color: currentColor;
}

.event-highlight__kicker svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: currentColor;
}

.event-highlight strong {
  color: var(--legacy-blue);
  font-size: clamp(26px, 3.5vw, 36px);
  line-height: 1.08;
}

.event-highlight p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.countdown {
  display: grid;
  gap: 16px;
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--deep-blue) 0%, var(--legacy-blue) 54%, var(--purple) 100%);
  color: var(--white);
}

.countdown__heading {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.countdown__heading strong {
  font-size: 22px;
}

.countdown__heading span {
  color: var(--gold);
}

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.countdown__grid div {
  min-width: 0;
  padding: 16px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.countdown__grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(20px, 2.9vw, 40px);
  line-height: 1;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  font-size-adjust: 0.48;
}

.countdown__grid [data-countdown-days] {
  font-size: clamp(18px, 2.5vw, 36px);
}

.countdown__grid span {
  display: block;
  margin-top: 6px;
  color: #eef3ee;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 940px) {
  .countdown__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.page-hero {
  display: grid;
  min-height: 320px;
  padding: 72px 32px;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(6, 33, 87, 0.94), rgba(6, 33, 87, 0.64)),
    url("/assets/img/banner_fecon2026_2.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-hero__inner {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(44px, 8vw, 88px);
}

.page-content {
  min-height: 420px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--green);
}

h1 {
  margin: 0;
  font-size: clamp(56px, 12vw, 128px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.event-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 18px;
  margin: 36px 0 0;
}

.event-facts div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.event-facts dt {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.event-facts dd {
  margin: 0;
  color: #f7faf7;
  font-size: 16px;
  line-height: 1.35;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(18, 63, 157, 0.24);
  color: var(--legacy-blue);
  background: rgba(255, 255, 255, 0.66);
}

.access-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, var(--deep-blue) 0%, var(--legacy-blue) 62%, var(--purple) 100%);
  color: var(--white);
}

.access-item {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
}

.access-item:last-child {
  border-right: 0;
}

.access-item strong {
  max-width: 280px;
  font-size: 22px;
  line-height: 1.2;
}

.access-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: 72px 32px;
  border-top: 1px solid var(--line);
}

.section-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: 56px;
  max-width: 920px;
  margin: 0 auto;
}

.section-fullwidth {
  width: calc(100% + 64px);
  margin: 0 -32px 32px;
}

.section-fullwidth img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 36px;
  line-height: 1.12;
}

.section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.page-content__image {
  width: 100%;
}

.page-content__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.split {
  background: #f4efff;
}

.timeline,
.info-list {
  display: grid;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: #d9c8ef;
}

.timeline article,
.info-list div {
  display: grid;
  gap: 8px;
  padding: 22px 22px 22px 28px;
  border: 1px solid #e2d4f1;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 16px 28px rgba(22, 30, 111, 0.07);
  position: relative;
}

.timeline article {
  overflow: hidden;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: -3px;
  top: 26px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--magenta);
  box-shadow: 0 0 0 6px rgba(255, 241, 43, 0.28);
}

.timeline span,
.info-list span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline strong,
.info-list strong {
  font-size: 20px;
  line-height: 1.4;
}

.documents {
  background: var(--white);
}

.document-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.document-list a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.document-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.document-list strong {
  font-size: 20px;
  line-height: 1.25;
}

.button.inline {
  justify-self: start;
  color: var(--ink);
}

.location {
  background: linear-gradient(180deg, var(--deep-blue) 0%, var(--legacy-blue) 42%, #f4efff 100%);
  color: var(--white);
  text-align: center;
}

.location .section-inner {
  display: block;
  max-width: 940px;
}

.location .eyebrow.dark,
.location p {
  color: #f7faf7;
}

.location h2 {
  color: var(--white);
}

.map-frame {
  overflow: hidden;
  width: 100%;
  max-width: 940px;
  margin: 32px auto 0;
  border: 0;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(6, 33, 87, 0.18);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

@media (max-width: 720px) {
  .access-band,
  .section-inner,
  .event-facts,
  .hero-content {
    grid-template-columns: 1fr;
  }

  .countdown__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .access-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-intro {
    padding: 52px 20px;
  }

  .hero-content {
    gap: 32px;
  }

  .hero-copy h1,
  .hero-copy .eyebrow {
    width: auto;
    white-space: normal;
  }

  .event-highlight__kicker {
    width: auto;
  }

  .event-highlight,
  .countdown {
    padding: 22px 18px;
  }

  .section {
    padding: 52px 20px;
  }

  .timeline {
    padding-left: 0;
  }

  .timeline::before {
    display: none;
  }

  .timeline article {
    padding-left: 18px;
  }
}
