/* ==========================================================================
   The 30th GCC–Asia Government & AI Technology Integrators Conference
   Shanghai, People's Republic of China — Home page

   Built pixel-for-pixel against the approved layout.
   Reference canvas: 1262px viewport / 1140px content grid.
   ========================================================================== */

/* ---------- 1. Fonts ---------- */
@font-face {
  font-family: bruumBoldFont;
  src: url(../fonts/BruumFY-Bold.otf);
  font-display: swap;
}
@font-face {
  font-family: bruumFont;
  src: url(../fonts/BruumFY-Regular.otf);
  font-display: swap;
}
@font-face {
  font-family: bruumLightFont;
  src: url(../fonts/BruumFY-Light.otf);
  font-display: swap;
}
@font-face {
  font-family: bruumBlackFont;
  src: url(../fonts/BruumFY-Black.otf);
  font-display: swap;
}

/* ---------- 2. Tokens ---------- */
:root {
  --red: #e81c23;
  --ink: #000;
  --ink-soft: #000;
  --muted: #000;
  --band: #eeeeee;
  --topbar: #e5e6e7;
  --footer-bg: #f0f0f0;
  --footer-rule: #d7d7d7;
  --card-radius: 12px;
  --panel-radius: 22px;
  --frame-radius: 30px;
  --shadow: 0 2px 14px rgba(0, 0, 0, 0.09);
  --container: 1240px;
  --stack: 1123px;
}

/* ---------- 3. Base ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: bruumLightFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

/* container variant carrying the 18px text gutter */
.container--pad {
  padding: 0 18px;
}

/* narrower stack used by the alternating feature cards */
.stack-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px;
}

.band {
  background: var(--band);
}

.section-white {
  background: #ffffff;
}

.section-heading {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.1px;
}

/* ---------- 4. Utility bar ---------- */
.topbar {
  background: var(--topbar);
  height: 38px;
  display: flex;
  align-items: center;
}

.topbar .container {
  max-width: 1262px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
}

.topbar-item i {
  color: var(--red);
  font-size: 16px;
}

.topbar-lang {
  font-size: 15px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.topbar-lang .sep {
  margin: 0 4px;
}

.topbar-lang .active {
  color: var(--red);
}

/* ---------- 5. Masthead + navigation ---------- */
.masthead img {
  width: 100%;
  height: auto;
  padding: 20px 25px;
}

.nav-primary {
  background: var(--red);
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-secondary {
  background: #ffffff;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1rem;
}

.nav-list li + li::before {
  content: "|";
  padding: 0 8px;
  opacity: 0.9;
}

.nav-primary .nav-list {
  color: #ffffff;
}

.nav-primary .nav-list a:hover {
  text-decoration: underline;
}

.nav-secondary .nav-list {
  color: var(--ink);
}

.nav-secondary .nav-list a:hover {
  color: var(--red);
}

/* mobile menu trigger — hidden on desktop */
.nav-toggle {
  display: none;
}

/* ---------- 6. Hero ---------- */
.hero img {
  width: 100%;
  height: auto;
}

/* ---------- 7. Established counter strip ---------- */
.counter-strip {
  background: var(--band);
  height: 57px;
  display: flex;
  align-items: center;
}

.counter-strip .inner {
  width: 100%;
  max-width: 1052px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.counter-text {
  font-size: 16px;
  color: var(--ink-soft);
}

.btn-red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 153px;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  background: var(--red);
  color: #ffffff;
  font-family: bruumFont, Arial, sans-serif;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
}

/* ---------- 8. Statistics ---------- */
.stats {
  background: #ffffff;
  padding: 29px 0 0;
}

.stats-grid {
  width: 100%;
  max-width: 1087px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.stat {
  text-align: center;
  padding: 0 6px;
}

.stat + .stat {
  border-left: 1px solid #ececec;
}

.stat img {
  height: 28px;
  width: auto;
  margin: 0 auto 11px;
}

.stat h2 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 33px;
  line-height: 34px;
  color: var(--red);
  margin-bottom: 6px;
}

.stat p {
  font-size: 15.2px;
  line-height: 20px;
  color: var(--muted);
}

/* ---------- 9. Welcome ---------- */
.welcome {
  background: #ffffff;
  padding: 69px 0 0;
}

.welcome-row {
  display: flex;
  align-items: flex-start;
}

.welcome-col-text {
  flex: 0 0 599px;
  max-width: 599px;
}

.welcome-col-media {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  padding-top: 34px;
}

.welcome-col-media .video-frame {
  width: 530px;
  max-width: 100%;
}

.welcome h3 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.05px;
}

.welcome h3 + h3 {
  margin-top: 28px;
}

.welcome p {
  font-size: 21.7px;
  line-height: 25.5px;
  margin-top: 8px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.themes-intro-heading {
  padding: 44px 0 23px;
}

/* ---------- 10. Image cards (two-up grids) ---------- */
.card {
  background: #ffffff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 412px;
}

.card-media {
  width: 100%;
  height: auto;
  display: block;
}

.card-body {
  padding: 44px 64.6px 48px;
}

.rule-red {
  width: 97px;
  height: 5px;
  background: var(--red);
  margin-bottom: 29px;
}

.card-copy {
  font-size: 20.5px;
  line-height: 23.4px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 27px;
}

/* band paddings follow the approved layout section by section */
.band-themes {
  padding: 42px 0 35px;
}

.band-crypto {
  padding: 53px 0 48px;
}

.band-consultancy {
  padding: 53px 0 53px;
}

/* ---------- 11. Framed panels (Digital Fraud / GCC Digital Currency) ---------- */
.panel-frame {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  background: var(--band);
  border-radius: var(--frame-radius);
  padding: 18px 10px;
}

.panel {
  background: #ffffff;
  border-radius: var(--panel-radius);
  box-shadow: var(--shadow);
  padding: 32px 30px 0;
}

.panel-split {
  display: flex;
  align-items: flex-start;
}

.panel-figure {
  flex: 0 0 529px;
  max-width: 529px;
}

.panel-figure img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.panel-lockup {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  padding: 55px 0 0 30px;
}

.lockup-title {
  font-family: bruumBlackFont, "Arial Black", Arial, sans-serif;
  font-size: 55px;
  line-height: 52.8px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #111111;
}

.rule-triple {
  width: 434px;
  max-width: 100%;
  height: 21px;
  margin: 19px auto 0;
  background: repeating-linear-gradient(
    to bottom,
    var(--red) 0 4px,
    transparent 4px 8.5px
  );
}

.panel-note {
  padding: 53px 14px 55px;
}

.panel-note h4 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 31px;
  line-height: 38px;
  margin-bottom: 32px;
}

.panel-note p {
  font-size: 19.2px;
  line-height: 26.6px;
}

/* the fraud panel overhangs the grey band it sits in */
.fraud-band {
  background: var(--band);
  padding-top: 35px;
}

.fraud-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: -200px;
}

.after-fraud {
  padding-top: 238px;
}

/* GCC currency panel */
.currency-section {
  padding: 52px 0 0;
}

.currency-panel .panel-figure {
  order: 2;
  flex: 0 0 534px;
  max-width: 534px;
}

.currency-panel .panel-lockup {
  order: 1;
  padding-top: 0;
}

.currency-lockup img {
  width: 175px;
  margin: 0 auto 22px;
}

.currency-panel .panel-note {
  padding: 52px 14px 48px;
}

/* ---------- 12. Alternating feature cards ---------- */
.feature-stack {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 46px;
}

.feature-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.feature-card.reverse {
  flex-direction: row-reverse;
}

.feature-figure {
  flex: 0 0 419px;
  max-width: 419px;
}

.feature-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 71px 0 61px;
}

.feature-body .rule-red {
  width: 55px;
  height: 4.5px;
  margin-bottom: 32px;
}

.feature-body .card-copy {
  font-size: 24.4px;
  line-height: 30px;
}

.crypto-heading {
  margin-top: 78px;
}

.consultancy-heading {
  margin-top: 52px;
}

/* ---------- 13. Celebration banner ---------- */
.celebrate {
  position: relative;
  background: #04123c;
}

.celebrate > img {
  width: 100%;
  height: auto;
  display: block;
}

.celebrate-overlay {
  position: absolute;
  inset: 0;
}

.celebrate-inner {
  position: relative;
  width: 100%;
  max-width: 1140px;
  height: 100%;
  margin: 0 auto;
  padding: 0 18px;
}

.celebrate-lead {
  position: absolute;
  left: 18px;
  top: 51px;
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 33px;
  line-height: 40.5px;
  letter-spacing: 0.4px;
  color: #ffffff;
  text-transform: uppercase;
}

.celebrate-lockup {
  position: absolute;
  left: 18px;
  top: 163px;
  width: 291px;
}

.celebrate-title {
  position: absolute;
  left: 18px;
  top: 322px;
  color: #ffffff;
}

.celebrate-title .t1 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 30.7px;
  line-height: 35.4px;
}

.celebrate-title .t1 sup {
  font-size: 0.58em;
  vertical-align: super;
  line-height: 0;
}

.celebrate-title .t2 {
  margin-top: 3px;
  font-family: bruumLightFont, Arial, sans-serif;
  font-size: 26px;
  line-height: 33px;
  color: #dbe4f2;
}

.celebrate-title .t3 {
  margin-top: 15px;
  font-family: bruumFont, Arial, sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #ffffff;
}

.celebrate-side {
  position: absolute;
  right: 5px;
  top: 187px;
  width: 320px;
  text-align: center;
}

.celebrate-side img {
  width: 118px;
  margin: 0 auto 8px;
}

.celebrate-side p {
  font-size: 24px;
  line-height: 28px;
  white-space: nowrap;
  color: #eaf1ff;
}

.rainbow-rule {
  height: 9.5px;
  background: linear-gradient(
    90deg,
    #f7a317 0%,
    #ef3b2b 18%,
    #d5266f 34%,
    #8d3fa0 50%,
    #3f5bb0 66%,
    #1f8fd0 82%,
    #14b4c8 100%
  );
}

/* ---------- 14. Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--ink);
  padding: 46px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  row-gap: 51px;
}

.footer-col + .footer-col {
  border-left: 1px solid var(--footer-rule);
  padding-left: 45px;
}

.footer-col:nth-child(5) {
  border-left: 0;
  padding-left: 0;
}

.footer-col h6 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 15px;
}

.footer-col li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 16.2px;
  line-height: 31.5px;
  white-space: nowrap;
  color: var(--ink);
}

.footer-col li i {
  font-size: 11px;
  color: var(--red);
}

.footer-col a:hover {
  color: var(--red);
}

.subscribe {
  margin-top: 50px;
}

.subscribe-label {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.subscribe-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.subscribe-form {
  display: flex;
  align-items: center;
  gap: 20px;
}

.subscribe-form i {
  font-size: 27px;
  color: var(--red);
}

.subscribe-input {
  width: 533px;
  max-width: 100%;
  height: 36px;
  border: 0;
  border-radius: 18px;
  background: #c9cacc;
  padding: 0 18px;
  font-family: bruumLightFont, Arial, sans-serif;
  font-size: 15px;
  color: #111;
}

.btn-submit {
  height: 31px;
  padding: 0 22px;
  border: 0;
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  cursor: pointer;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.social-icons li a {
  display: inline-flex;
}

.social-icons li a i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--red);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: transform 0.25s ease;
}

.social-icons li a i:hover {
  transform: scale(1.1);
}

/* Brand-coloured variant — add .social-icons--brand to the <ul> to enable */
.social-icons--brand .social-icons-facebook i {
  background-color: #3b5998;
}

.social-icons--brand .social-icons-twitter i {
  background-color: #000;
}

.social-icons--brand .social-icons-instagram i {
  background-color: #e4405f;
}

.social-icons--brand .social-icons-linkedin i {
  background-color: #0077b5;
}

.social-icons--brand .social-icons-youtube i {
  background-color: #cd201f;
}

.footer-divider {
  margin-top: 22px;
  border-top: 1px solid var(--footer-rule);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 25px 0 34px;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: flex-end;
  gap: 12px;
}

.footer-brand-name {
  width: 220px;
}

.footer-brand-tagline {
  width: 120px;
  margin-bottom: 5px;
}

.footer-brand-rule {
  width: 1px;
  align-self: stretch;
  margin: 3px 0;
  background: #b9b9b9;
}

.footer-copy {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 13.5px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 10px;
}

/* ---------- 15. Responsive ---------- */
@media (max-width: 1259px) {
  .container,
  .stack-container,
  .panel-frame {
    padding-left: 18px;
    padding-right: 18px;
  }
  .celebrate-inner {
    max-width: 100%;
  }
}

@media (max-width: 1199px) {
  .lockup-title {
    font-size: 42px;
    line-height: 44px;
  }
  .panel-figure,
  .currency-panel .panel-figure {
    flex-basis: 46%;
    max-width: 46%;
  }
  .feature-figure {
    flex-basis: 38%;
    max-width: 38%;
  }
  .card-body {
    padding-left: 40px;
    padding-right: 40px;
  }
  .feature-body {
    padding-left: 40px;
    padding-right: 40px;
  }
  .welcome-col-text {
    flex: 1 1 auto;
    max-width: none;
  }
  .celebrate-lead {
    font-size: 26px;
    line-height: 33px;
    top: 34px;
  }
  .celebrate-title .t1 {
    font-size: 23px;
    line-height: 29px;
  }
  .celebrate-title .t2 {
    font-size: 21px;
    line-height: 27px;
  }
  .celebrate-title .t3 {
    font-size: 17px;
  }
  .celebrate-side p {
    font-size: 18px;
    line-height: 23px;
  }
  .celebrate-lockup {
    top: 120px;
  }
  .celebrate-lockup img {
    width: 190px;
  }
  .celebrate-title {
    top: 250px;
  }
  .celebrate-side {
    top: 140px;
  }
}

@media (max-width: 991px) {
  .topbar {
    height: auto;
    padding: 8px 0;
  }
  .topbar .container {
    padding: 0 16px;
    flex-wrap: wrap;
    gap: 8px 20px;
  }
  .topbar-left {
    gap: 18px;
  }
  /* collapsible navigation */
  .nav-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    background: var(--red);
    color: #ffffff;
    font-family: bruumBoldFont, Arial, sans-serif;
    font-size: 15px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
  }
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
  }
  .nav-toggle-bars {
    position: relative;
  }
  .nav-toggle-bars::before,
  .nav-toggle-bars::after {
    content: "";
    position: absolute;
    left: 0;
    transition:
      transform 0.2s ease,
      top 0.2s ease;
  }
  .nav-toggle-bars::before {
    top: -7px;
  }
  .nav-toggle-bars::after {
    top: 7px;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars {
    background: transparent;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav-collapse {
    display: none;
  }
  .nav-collapse.is-open {
    display: block;
  }

  .nav-primary,
  .nav-secondary {
    height: auto;
    padding: 0;
    display: block;
  }
  .nav-list {
    display: block;
    font-size: 15px;
  }
  .nav-list li + li::before {
    content: none;
  }
  .nav-list a {
    display: block;
    padding: 13px 18px;
    min-height: 46px;
  }
  .nav-primary .nav-list a {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }
  .nav-secondary .nav-list a {
    border-top: 1px solid #e3e3e3;
  }
  .nav-secondary .nav-list li:first-child a {
    border-top: 0;
  }

  /* cards size to their content once stacked */
  .card {
    min-height: 0;
  }
  .counter-strip {
    height: auto;
    padding: 10px 18px;
  }
  .counter-strip .inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 26px;
  }
  .stat:nth-child(4) {
    border-left: 0;
  }
  .welcome {
    padding-top: 44px;
  }
  .welcome-row {
    flex-direction: column;
  }
  .welcome-col-text,
  .welcome-col-media {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .welcome-col-media {
    padding-top: 26px;
    justify-content: flex-start;
  }
  .card-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .panel-split {
    flex-direction: column;
    gap: 26px;
  }
  .panel-figure,
  .currency-panel .panel-figure {
    flex-basis: auto;
    max-width: 100%;
    order: 0;
  }
  .panel-lockup,
  .currency-panel .panel-lockup {
    order: 0;
    padding: 0;
  }
  .rule-triple {
    width: 80%;
  }
  .panel {
    padding: 22px 22px 0;
  }
  .panel-note,
  .currency-panel .panel-note {
    padding: 34px 0 32px;
  }
  .feature-card,
  .feature-card.reverse {
    flex-direction: column;
  }
  .feature-figure {
    flex-basis: auto;
    max-width: 100%;
  }
  .feature-body {
    padding: 34px 32px;
  }
  .feature-body .card-copy {
    font-size: 20px;
    line-height: 26px;
  }
  .fraud-wrap {
    margin-bottom: 0;
  }
  .fraud-band {
    padding-bottom: 50px;
  }
  .after-fraud {
    padding-top: 56px;
  }
  .celebrate-overlay {
    position: static;
    background: #04123c;
    padding: 34px 0 40px;
  }
  .celebrate-lead,
  .celebrate-lockup,
  .celebrate-title,
  .celebrate-side {
    position: static;
    width: auto;
    margin: 0 0 22px;
    text-align: left;
  }
  .celebrate-lockup img {
    margin-left: 0;
  }
  .celebrate-side img {
    margin: 0 0 16px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, auto);
    justify-content: start;
    column-gap: 40px;
    row-gap: 40px;
  }
  .footer-col + .footer-col {
    border-left: 0;
    padding-left: 0;
  }
  .subscribe-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .subscribe-form {
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .topbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .topbar-item,
  .topbar-lang {
    font-size: 14px;
    white-space: normal;
  }
  .card-body {
    padding: 30px 26px 34px;
  }
  .lockup-title {
    font-size: 30px;
    line-height: 34px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(odd) {
    border-left: 0;
  }
  .stat:nth-child(even) {
    border-left: 1px solid #ececec;
  }
  .welcome h3 {
    font-size: 21px;
    line-height: 26px;
  }
  .welcome p,
  .card-copy {
    font-size: 18px;
    line-height: 23px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .footer-brand-rule {
    display: none;
  }
  .footer-brand-name {
    width: 180px;
  }
  .footer-brand-tagline {
    width: 100px;
  }
  .subscribe-input {
    width: 100%;
  }
  .subscribe-form {
    width: 100%;
    gap: 12px;
  }
  .subscribe-form .subscribe-input {
    flex: 1 1 160px;
    min-width: 0;
  }
  .panel-note h4 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 16px;
  }
  .panel-note p {
    font-size: 17px;
    line-height: 24px;
  }
  .section-heading {
    font-size: 18px;
    line-height: 25px;
  }
  .celebrate-lead {
    font-size: 22px;
    line-height: 29px;
  }
  .celebrate-title .t1 {
    font-size: 20px;
    line-height: 26px;
  }
  .celebrate-title .t2 {
    font-size: 18px;
    line-height: 24px;
  }
  .celebrate-side p {
    font-size: 17px;
    line-height: 22px;
  }
  .currency-lockup img {
    width: 130px;
  }
}

/* ==========================================================================
   16. Interior pages — Registration
   ========================================================================== */

.page-head {
  background: var(--band);
  padding: 34px 0 30px;
}

.page-eyebrow {
  font-family: bruumFont, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}

.page-title {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 34px;
  line-height: 40px;
  color: var(--ink);
}

.registration-content-section {
  background: #ffffff;
  padding: 44px 0 56px;
}

.registration-card {
  min-height: 0;
  border-radius: var(--panel-radius);
  padding: 46px 56px 52px;
}

.registration-message-content h3 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 26px;
}

.registration-message-content h3::after {
  content: "";
  display: block;
  width: 97px;
  height: 5px;
  margin-top: 18px;
  background: var(--red);
}

.registration-message-content h4 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 21px;
  line-height: 28px;
  margin: 34px 0 12px;
}

.registration-text {
  font-size: 18px;
  line-height: 30px;
  color: var(--ink);
}

.registration-text strong {
  font-family: bruumFont, Arial, sans-serif;
  font-weight: 400;
  color: #000;
}

.registration-text a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.registration-text a:hover {
  text-decoration: none;
}

.cta-buttons {
  margin-top: 38px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  height: 46px;
  padding: 0 34px;
  border-radius: 23px;
  background: var(--red);
  color: #ffffff;
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.cta-button:hover {
  background: #c8161c;
}

/* the pasted markup uses .gradient-separator for the rainbow rule */
.gradient-separator {
  height: 9.5px;
  background: linear-gradient(
    90deg,
    #f7a317 0%,
    #ef3b2b 18%,
    #d5266f 34%,
    #8d3fa0 50%,
    #3f5bb0 66%,
    #1f8fd0 82%,
    #14b4c8 100%
  );
}

/* current page marker in the conference nav */
.nav-secondary .nav-list .is-current > a {
  color: var(--red);
}

@media (max-width: 991px) {
  .registration-card {
    padding: 32px 26px 38px;
  }
  .page-title {
    font-size: 28px;
    line-height: 34px;
  }
  .registration-message-content h3 {
    font-size: 22px;
    line-height: 29px;
  }
  .registration-message-content h4 {
    font-size: 19px;
  }
  .registration-text {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .registration-card {
    padding: 26px 20px 32px;
  }
  .cta-button {
    width: 100%;
  }
}

/* screen-reader-only heading (interior pages that lead with the banner) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   17. Interior pages — Contact
   ========================================================================== */

.contact-content-section {
  background: #ffffff;
  padding: 44px 0 56px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

/* ---- left column: the request form ---- */
.contact-card {
  min-height: 0;
  border-radius: var(--panel-radius);
  padding: 46px 56px 52px;
}

.contact-card h3 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 26px;
  line-height: 34px;
  margin-bottom: 26px;
}

.contact-card h3::after {
  content: "";
  display: block;
  width: 97px;
  height: 5px;
  margin-top: 18px;
  background: var(--red);
}

.contact-intro {
  font-size: 18px;
  line-height: 30px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 22px;
}

.form-row--thirds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
  margin-bottom: 20px;
}

.field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: bruumFont, Arial, sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}

.field-label i {
  color: var(--red);
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.req {
  color: var(--red);
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  font-family: bruumLightFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field-input,
.field-select {
  height: 46px;
  padding: 0 14px;
}

.field-textarea {
  padding: 12px 14px;
  resize: vertical;
  min-height: 84px;
}

.field-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236b6b6b'%3E%3Cpath d='M8 11.2 2.8 6l1.1-1.1L8 9l4.1-4.1L13.2 6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px 14px;
  cursor: pointer;
}

.field-input::placeholder,
.field-textarea::placeholder {
  color: #a5a5a5;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 28, 35, 0.14);
}

.field-error {
  display: none;
  font-size: 13.5px;
  line-height: 18px;
  color: var(--red);
  margin-top: 6px;
}

.field.is-invalid .field-input,
.field.is-invalid .field-select,
.field.is-invalid .field-textarea {
  border-color: var(--red);
}

.field.is-invalid .field-error {
  display: block;
}

.form-status {
  display: none;
  margin-top: 24px;
  padding: 15px 18px;
  border-radius: 10px;
  border-left: 4px solid #2e7d32;
  background: #eff7ef;
  color: #1f5c22;
  font-size: 16px;
  line-height: 24px;
}

.form-status.is-visible {
  display: block;
}

/* ---- right column: the details panel ---- */
.contact-aside {
  background: var(--band);
  border-radius: var(--panel-radius);
  padding: 30px 26px;
}

.contact-aside h4 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 21px;
  line-height: 28px;
  margin-bottom: 22px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  margin-bottom: 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(232, 28, 35, 0.1);
  color: var(--red);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-body h5 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 6px;
}

.contact-info-body p {
  font-size: 16px;
  line-height: 24px;
  color: var(--ink-soft);
}

.contact-info-body a {
  font-size: 16px;
  line-height: 24px;
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.contact-info-body a:hover {
  text-decoration: none;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  margin-bottom: 16px;
}

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

.contact-promo {
  padding: 26px 22px;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, #e81c23 0%, #8d3fa0 100%);
}

.contact-promo h5 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 8px;
}

.contact-promo p {
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 18px;
}

.cta-button--light {
  min-width: 0;
  height: 40px;
  padding: 0 26px;
  background: #ffffff;
  color: var(--red);
}

.cta-button--light:hover {
  background: #f0f0f0;
}

/* current page marker in the corporate nav — the band is red, so the
   marker is an underline rather than the red used in the conference nav */
.nav-primary .nav-list .is-current > a {
  color: #ffffff;
  font-family: bruumFont, Arial, sans-serif;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }
  .contact-card {
    padding: 32px 26px 38px;
  }
  .contact-card h3 {
    font-size: 22px;
    line-height: 29px;
  }
  .contact-intro {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .contact-card {
    padding: 26px 20px 32px;
  }
  .form-row,
  .form-row--thirds {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-aside {
    padding: 24px 18px;
  }
  .contact-card .cta-button {
    width: 100%;
  }
}

/* ==========================================================================
   18. Interior pages — Coming soon placeholders
   ========================================================================== */

.coming-soon-section {
  background: #ffffff;
  padding: 44px 0 56px;
}

.coming-soon-card {
  min-height: 0;
  max-width: 920px;
  margin: 0 auto;
  border-radius: var(--panel-radius);
  padding: 90px 56px;
  text-align: center;
}

.coming-soon-card h1 {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 44px;
  line-height: 52px;
  color: var(--ink);
}

.coming-soon-card h1::after {
  content: "";
  display: block;
  width: 97px;
  height: 5px;
  margin: 22px auto 0;
  background: var(--red);
}

@media (max-width: 991px) {
  .coming-soon-card {
    padding: 64px 26px;
  }
  .coming-soon-card h1 {
    font-size: 34px;
    line-height: 42px;
  }
}

@media (max-width: 575px) {
  .coming-soon-card {
    padding: 48px 20px;
  }
  .coming-soon-card h1 {
    font-size: 28px;
    line-height: 35px;
  }
}

/* ==========================================================================
   19. Interior pages — Welcome message
   ========================================================================== */

.welcome-content-section {
  background: #ffffff;
  padding: 44px 0 56px;
}

.welcome-card {
  min-height: 0;
  border-radius: var(--panel-radius);
  padding: 46px 56px 52px;
}

.welcome-heading {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 27px;
  line-height: 34px;
  color: var(--ink);
  margin-bottom: 26px;
}

.welcome-heading sup {
  font-size: 0.55em;
  vertical-align: super;
}

.welcome-heading::after {
  content: "";
  display: block;
  width: 97px;
  height: 5px;
  margin-top: 18px;
  background: var(--red);
}

.welcome-text {
  font-size: 20px;
  line-height: 30px;
  color: var(--ink);
}

.welcome-text + .welcome-text {
  margin-top: 10px;
}

.welcome-text em {
  font-style: normal;
  font-family: bruumFont, Arial, sans-serif;
  color: #000;
}

.welcome-signature {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--footer-rule);
}

.welcome-signoff {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 28px;
  color: var(--ink-soft);
}

.welcome-name {
  font-family: bruumBoldFont, Arial, sans-serif;
  font-size: 20px;
  line-height: 27px;
  color: var(--ink);
}

.welcome-role {
  margin-top: 2px;
  font-size: 16px;
  line-height: 24px;
  color: var(--muted);
}

@media (max-width: 991px) {
  .welcome-card {
    padding: 32px 26px 38px;
  }
  .welcome-heading {
    font-size: 22px;
    line-height: 29px;
  }
  .welcome-text {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 575px) {
  .welcome-card {
    padding: 26px 20px 32px;
  }
}
