:root {
  --blue: #0e76bf;
  --blue-dark: #075d9a;
  --orange: #f7941f;
  --orange-dark: #e57900;
  --ink: #333333;
  --muted: #666666;
  --light: #f4f4f4;
  --white: #ffffff;
  --max: 1020px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

#particles-js {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--orange);
  background-image: linear-gradient(to right, var(--orange) 0%, var(--blue) 100%);
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  position: relative;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,.16);
}

.top-strip {
  height: 26px;
  background: #ededed;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  max-width: 460px;
  margin-left: auto;
  margin-right: 70px;
}
.top-strip-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 6px;
  height: 100%;
  width: 100%;
  padding-right: 12px;
}
.social-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: bold;
}
.portal-pill {
  background: #555;
  color: #fff;
  border-radius: 14px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}
.portal-pill.dark { background: #333; }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
.brand {
  text-decoration: none;
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 8px;
  line-height: 1;
}
.brand-small {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-main {
  color: var(--orange);
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -4px;
  text-transform: lowercase;
}
.brand-main::first-letter { color: var(--blue); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 700;
}
.main-nav a {
  color: var(--blue);
  text-decoration: none;
}
.main-nav a:hover { color: var(--orange); }
.join-button {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 13px;
  border-radius: 18px;
}
.menu-toggle { display: none; }

.gradient-band {
  color: #fff;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.gradient-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(247,148,31,.86), rgba(14,118,191,.86));
  z-index: -1;
}
.hero {
  padding: 66px 0 72px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 400;
}
.hero p {
  margin: 6px 0 0;
  font-size: 22px;
}

.white-section { background: #fff; }
.grey-section { background: #f0f0f0; }
.content-section { padding: 55px 0; }
.two-column {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 55px;
}
.two-column.equal { grid-template-columns: 1fr 1fr; }
h2 {
  color: var(--blue);
  line-height: 1.15;
  margin: 0 0 18px;
  font-size: 22px;
}
p { margin: 0 0 18px; }
.tick-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}
.tick-list li {
  margin: 17px 0;
  padding-left: 38px;
  color: var(--blue);
  font-size: 18px;
  position: relative;
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;

  width: 18px;
  height: 18px;

  background-image: url("../../images/adme_bullet.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.panel-heading {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  padding: 9px 16px;
  background: linear-gradient(to right, var(--orange), var(--blue));
}
.panel-heading.second { margin-top: 32px; }
.news-list, .simple-list {
  list-style: disc;
  margin: 0;
  padding: 18px 20px 18px 34px;
  background: #f5f5f5;
}
.news-list li { margin-bottom: 14px; }
.news-list a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}
.news-list span {
  display: block;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  margin-top: 4px;
}

.partner-strip {
  border-top: 1px solid #eee;
  padding: 30px 0;
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  gap: 40px;
}
.partner-grid h3 {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 13px;
    margin-top: 0;
  margin-bottom: 10px;
}
.placeholder-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 70px;
  padding: 18px;
  background: #fff;
  border: 1px dashed #bbb;
  color: #111;
  font-size: 20px;
  font-weight: 800;
}

.cards-section {
  background: #eee;
  padding: 55px 0 65px;
}
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  text-align: center;
}
.icon-circle {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border: 4px solid #fff;
  outline: 4px solid var(--orange);
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  font-weight: bold;
}
.feature-card h3 {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 0 14px;
}
.feature-card p {
  color: var(--orange-dark);
  font-size: 20px;
  line-height: 1.2;
}
.button {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 18px;
  padding: 8px 20px;
  margin-top: 10px;
}
.button.orange { background: var(--orange); }

.testimonial {
  text-align: center;
  padding: 62px 0;
}
.testimonial h3 {
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 22px;
}
.testimonial p {
  font-size: 20px;
  max-width: 940px;
  margin: 0 auto;
}

.callout-box {
  background: #f7f7f7;
  border-left: 6px solid var(--orange);
  padding: 28px;
}
.news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-cards article {
  background: #fff;
  padding: 24px;
  border-top: 5px solid var(--orange);
}
.news-cards h3 {
  color: var(--blue);
  margin-top: 0;
}

.site-footer {
  background: #585858;
  color: #ddd;
  padding: 22px 0;
  font-size: 13px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.site-footer p { margin: 0; }
.site-footer a { color: #fff; }

@media (max-width: 850px) {
  .top-strip { display: none; }
  .nav-wrap { min-height: 86px; }
  .menu-toggle {
    display: inline-block;
    border: 0;
    background: var(--blue);
    color: #fff;
    border-radius: 16px;
    padding: 8px 14px;
    font-weight: 700;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 86px;
    background: #333;
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    color: #fff;
    display: block;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .two-column, .two-column.equal, .cards-grid, .partner-grid, .news-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero { padding: 48px 0; }
  .footer-grid { display: block; }
  .footer-grid p + p { margin-top: 10px; }
}

@media (max-width: 520px) {
  .wrap { width: min(100% - 26px, var(--max)); }
  .brand-small { font-size: 11px; }
  .brand-main { font-size: 44px; }
  .hero p { font-size: 18px; }
  .tick-list li { font-size: 16px; }
}

.logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 150px;
  max-height: 70px;
  object-fit: contain;
}
/* Future-proof for SVG */
.logo img#site-logo {
    max-width: 100%;
}

body {
  position: relative;
  background: transparent;
}

.site-header,
.white-section,
.grey-section,
.cards-section,
.partner-strip,
.site-footer {
  position: relative;
  z-index: 1;
}

.gradient-band {
  position: relative;
  z-index: 1;
  background: transparent;
}

.panel-heading {
  background: linear-gradient(to right, #F7941F 0%, #0E76BF 100%);
}

#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#particles-js canvas {
  display: block;
}

.site-header,
.white-section,
.grey-section,
.cards-section,
.partner-strip,
.site-footer {
  position: relative;
  z-index: 2;
}

.gradient-band {
  position: relative;
  z-index: 1;
  background: transparent;
}

.gradient-band::before {
  display: none;
}

.hero h1,
.hero h1 strong,
.hero p {
  color: #ffffff;
}

body {
  background: transparent;
}

.sponsor-block {
  text-align: center;
}

.sponsor-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px; /* space between logos */
  margin-top: 20px;
  flex-wrap: wrap; /* keeps it tidy on smaller screens */
}

.sponsor-logos img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

.partner-grid {
  grid-template-columns: 1fr;
}

.content-section + .partner-strip {
  padding-top: 0;
}
