
:root {
  --navy: #03101f;
  --deep-navy: #020a15;
  --navy-light: #071b31;

  --green: #00cf9b;
  --green-light: #38efc3;
  --green-dark: #009d78;

  --blue: #1f63ff;
  --cyan: #56d7ff;

  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.68);
  --text-muted: rgba(255, 255, 255, 0.48);

  --light-bg: #f4f8fb;
  --dark-text: #071426;
  --body-text: #5f6d7d;

  --dark-border: rgba(255, 255, 255, 0.1);
  --light-border: rgba(10, 67, 100, 0.12);

  --container-width: 1080px;
}


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

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  color: var(--dark-text);
  background: var(--white);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.section-container {
  position: relative;
  z-index: 5;
  width: min(var(--container-width), calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    var(--green),
    var(--green-light)
  );
  transform-origin: left;
  animation: labelLinePulse 2.6s ease-in-out infinite;
}

.section-heading h1,
.section-heading h2,
.agenda-intro h2 {
  color: var(--white);
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -1.4px;
}

.section-heading h1 span {
  display: block;
  color: var(--green);
}

.section-heading > p {
  max-width: 600px;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 15px;
}

.centered-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading .section-label {
  justify-content: center;
}

.centered-heading .section-label::before {
  display: none;
}


.about-section {
  position: relative;
  padding: 60px 0 90px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(0, 207, 155, 0.14),
      transparent 27%
    ),
    radial-gradient(
      circle at 6% 90%,
      rgba(31, 99, 255, 0.13),
      transparent 28%
    ),
    linear-gradient(
      140deg,
      #020a15 0%,
      #06182c 52%,
      #020b17 100%
    );
  overflow: hidden;
}

.section-grid-background,
.agenda-grid-background {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 46px 46px;
  animation: gridMotion 20s linear infinite;
}

.floating-shape {
  position: absolute;
  border: 1px solid rgba(0, 207, 155, 0.18);
  pointer-events: none;
}

.shape-one {
  top: 80px;
  right: -60px;
  width: 190px;
  height: 190px;
  border-radius: 42% 58% 55% 45%;
  animation: floatingShape 10s ease-in-out infinite;
}

.shape-two {
  bottom: 70px;
  left: -45px;
  width: 120px;
  height: 120px;
  border-radius: 25px;
  transform: rotate(35deg);
  animation: shapeRotation 16s linear infinite;
}

.about-heading {
  animation: contentRevealUp 0.85s ease-out both;
}

.about-layout {
    margin-top: -80px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap:80px;
  align-items: center;
}


.about-content {
  animation: contentRevealLeft 0.9s 0.15s ease-out both;
}

.about-copy {
  display: grid;
  gap: 12px;
}

.about-copy p {
  color: white;
  font-size: 15px;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.about-copy p:hover {
  transform: translateX(5px);
  color: rgba(255, 255, 255, 0.86);
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 8px;
}

.about-pill-row span {
  padding: 4px 10px;
  border: 1px solid rgba(0, 207, 155, 0.17);
  border-radius: 50px;
  color: var(--green-light);
  background: rgba(0, 207, 155, 0.07);
  font-size: 10px;
  font-weight: 700;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.about-pill-row span:hover {
  transform: translateY(-4px);
  background: rgba(0, 207, 155, 0.14);
}


.identity-visual {
  position: relative;
  min-height: 505px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: contentRevealRight 0.95s 0.2s ease-out both;
}

.visual-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.visual-rings span {
  position: absolute;
  border: 1px solid rgba(0, 207, 155, 0.13);
  border-radius: 50%;
}

.visual-rings span:nth-child(1) {
  width: 365px;
  height: 365px;
  animation: ringPulse 4.5s ease-in-out infinite;
}

.visual-rings span:nth-child(2) {
  width: 285px;
  height: 285px;
  animation: ringPulse 4.5s 0.8s ease-in-out infinite;
}

.visual-rings span:nth-child(3) {
  width: 210px;
  height: 210px;
  animation: ringPulse 4.5s 1.6s ease-in-out infinite;
}

.signal-wave {
  position: absolute;
  border: 2px solid transparent;
  border-top-color: rgba(86, 215, 255, 0.35);
  border-right-color: rgba(86, 215, 255, 0.35);
  border-radius: 50%;
}

.signal-wave-one {
  top: 55px;
  left: 25px;
  width: 90px;
  height: 90px;
  transform: rotate(-40deg);
  animation: signalWave 3s ease-in-out infinite;
}

.signal-wave-two {
  right: 15px;
  bottom: 70px;
  width: 70px;
  height: 70px;
  transform: rotate(135deg);
  animation: signalWave 3s 1.1s ease-in-out infinite;
}

.identity-card {
  position: relative;
  z-index: 2;
  width: 305px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 23px;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 207, 155, 0.19),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.075);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  overflow: hidden;
  animation: identityCardFloat 5s ease-in-out infinite;
}

.identity-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  width: 65%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.07),
    transparent
  );
  transform: skewX(-18deg);
  animation: cardShimmer 6s ease-in-out infinite;
}

.identity-card > * {
  position: relative;
  z-index: 2;
}

.identity-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 24px;
}

.identity-card-top > span:first-child {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green-light);
  font-size: 14px;
  font-weight: 700;
}

.live-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(0, 207, 155, 0.9);
  animation: livePulse 1.8s ease-in-out infinite;
}

.identity-shield {
  display: grid;
  width: 145px;
  height: 145px;
  margin: 0 auto 25px;
  border: 1px solid rgba(0, 207, 155, 0.18);
  border-radius: 50%;
  place-items: center;
  color: var(--green-light);
  background: rgba(0, 207, 155, 0.07);
  box-shadow: 0 0 45px rgba(0, 207, 155, 0.08);
}

.identity-shield svg {
  width: 72px;
  height: 86px;
  filter: drop-shadow(0 0 15px rgba(0, 207, 155, 0.25));
}

.identity-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.identity-metrics div {
  padding: 10px 7px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.035);
}

.identity-metrics small {
  display: block;
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: 13px;
}

.identity-metrics strong {
  display: block;
  color: var(--green-light);
  font-size: 14px;
}

.visual-caption {
  position: absolute;
  right: 0;
  bottom: 25px;
  left: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.visual-caption span {
  padding: 6px 10px;
  border-radius: 50px;
  color: white;
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
}

/* =========================================
   Discussion Section
========================================= */

.discussion-section {
  position: relative;
  width: 100%;
  padding: 84px 0 94px;
  background:
    linear-gradient(
      145deg,
      rgba(0, 207, 155, 0.025),
      transparent 46%
    ),
    #f4f8fb;
  overflow: hidden;
}

.discussion-section .section-container {
  position: relative;
  z-index: 3;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}


/* =========================================
   Section Heading
========================================= */

.discussion-section .section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.discussion-section .centered-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.discussion-section .section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  color: #00a982;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.discussion-section .section-heading h2 {
  margin: 0;
  color: #071426;
  font-size: clamp(29px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -1.2px;
}

.discussion-section .section-heading > p {
  max-width: 620px;
  margin: 16px auto 0;
  color: #5f6d7d;
  font-size: 15px;
  line-height: 1.7;
}


/* =========================================
   Background Orbs
========================================= */

.discussion-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.discussion-orb-one {
  top: -90px;
  left: -100px;
  width: 260px;
  height: 260px;
  background: rgba(0, 207, 155, 0.08);
  animation: discussionOrbMove 8s ease-in-out infinite alternate;
}

.discussion-orb-two {
  right: -80px;
  bottom: 80px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(31, 99, 255, 0.11);
  animation: discussionOrbRotate 17s linear infinite;
}


/* =========================================
   Discussion Grid
========================================= */

.discussion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}


/* =========================================
   Discussion Cards
========================================= */

.discussion-card {
  position: relative;
  display: flex;
  min-height: 290px;
  padding: 24px;
  border: 1px solid rgba(10, 67, 100, 0.12);
  border-radius: 19px;
  flex-direction: column;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(246, 250, 252, 0.95)
    );
  box-shadow: 0 15px 38px rgba(11, 43, 67, 0.07);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s ease,
    border-color 0.4s ease,
    box-shadow 0.45s ease;
}

.discussion-card::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 4px;
  background: linear-gradient(
    90deg,
    #00cf9b,
    #38efc3,
    #1f63ff
  );
  background-size: 200% 100%;
  animation: discussionBorderFlow 4s linear infinite;
  transition:
    height 0.45s ease,
    opacity 0.45s ease;
}

.discussion-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  z-index: -1;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(0, 207, 155, 0.055);
  transition: transform 0.5s ease;
}

.discussion-card:hover {
  transform: translateY(-9px);
  border-color: rgba(0, 207, 155, 0.3);
  box-shadow: 0 28px 55px rgba(11, 43, 67, 0.14);
}

.discussion-card:hover::before {
  height: 100%;
  opacity: 0.045;
}

.discussion-card:hover::after {
  transform: scale(1.45) translate(-12px, 15px);
}


/* =========================================
   Featured Card
========================================= */

.featured-card {
  color: #ffffff;
  border-color: rgba(0, 207, 155, 0.24);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 207, 155, 0.21),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      #031425,
      #051c31
    );
}

.featured-card h3 {
  color: #ffffff;
}

.featured-card p {
  color: rgba(255, 255, 255, 0.68);
}

.featured-card .discussion-number {
  color: rgba(255, 255, 255, 0.08);
}

.featured-card .discussion-icon {
  color: #38efc3;
  background: rgba(0, 207, 155, 0.12);
}


/* =========================================
   Card Number
========================================= */

.discussion-number {
  position: absolute;
  top: 23px;
  right: 24px;
  color: rgba(4, 91, 75, 0.09);
  font-size: 43px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.4s ease,
    color 0.4s ease;
}

.discussion-card:hover .discussion-number {
  transform: translateY(-5px) scale(1.08);
  color: rgba(0, 207, 155, 0.18);
}


/* =========================================
   Card Icon
========================================= */

.discussion-icon {
  position: relative;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 21px;
  border-radius: 14px;
  place-items: center;
  color: #009d78;
  background: rgba(0, 207, 155, 0.1);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}

.discussion-card:hover .discussion-icon {
  transform: rotate(-6deg) scale(1.08);
  background: rgba(0, 207, 155, 0.14);
  box-shadow: 0 13px 28px rgba(0, 207, 155, 0.16);
}

.discussion-icon svg {
  width: 24px;
  height: 24px;
}


/* =========================================
   Card Content
========================================= */

.discussion-card h3 {
  position: relative;
  z-index: 2;
  max-width: 280px;
  margin: 0 0 11px;
  color: #071426;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.45;
}

.discussion-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #5f6d7d;
  font-size: 12.5px;
  line-height: 1.75;
}


/* =========================================
   Card Keywords
========================================= */

.card-keywords {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: auto;
  padding-top: 18px;
  flex-wrap: wrap;
  gap: 6px;
}

.card-keywords span {
  padding: 5px 8px;
  border-radius: 50px;
  color: #007c61;
  background: rgba(0, 207, 155, 0.09);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.featured-card .card-keywords span {
  color: #38efc3;
  background: rgba(0, 207, 155, 0.1);
}


/* =========================================
   Outcome Card
========================================= */

.discussion-outcome {
  position: relative;
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 17px;
  align-items: center;
  max-width: 850px;
  margin: 38px auto 0;
  padding: 21px;
  border: 1px solid rgba(0, 207, 155, 0.17);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 15px 40px rgba(11, 43, 67, 0.06);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.discussion-outcome:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 207, 155, 0.3);
  box-shadow: 0 23px 50px rgba(11, 43, 67, 0.11);
}

.outcome-icon {
  display: grid;
  width: 55px;
  height: 55px;
  border-radius: 15px;
  place-items: center;
  color: #009d78;
  background: rgba(0, 207, 155, 0.1);
  transition:
    transform 0.4s ease,
    background 0.4s ease;
}

.discussion-outcome:hover .outcome-icon {
  transform: rotate(-5deg) scale(1.05);
  background: rgba(0, 207, 155, 0.15);
}

.outcome-icon svg {
  width: 27px;
  height: 27px;
}

.discussion-outcome span {
  display: block;
  margin-bottom: 3px;
  color: #009d78;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.discussion-outcome h3 {
  margin: 0;
  color: #071426;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}


/* =========================================
   Animations
========================================= */

@keyframes discussionOrbMove {
  from {
    transform: translate(0, 0) scale(0.95);
  }

  to {
    transform: translate(45px, 35px) scale(1.12);
  }
}

@keyframes discussionOrbRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes discussionBorderFlow {
  from {
    background-position: 0% center;
  }

  to {
    background-position: 200% center;
  }
}


/* =========================================
   Responsive Design
========================================= */

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

@media (max-width: 700px) {
  .discussion-section {
    padding: 64px 0;
  }

  .discussion-section .section-container {
    width: min(100% - 28px, 1080px);
  }

  .discussion-section .section-heading {
    margin-bottom: 36px;
  }

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

  .discussion-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .discussion-section {
    padding: 54px 0;
  }

  .discussion-section .section-container {
    width: min(100% - 24px, 1080px);
  }

  .discussion-section .section-heading h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .discussion-section .section-heading > p {
    font-size: 13.5px;
  }

  .discussion-card {
    padding: 23px 20px;
  }

  .discussion-card h3 {
    padding-right: 25px;
    font-size: 16px;
  }

  .discussion-card p {
    font-size: 12px;
  }

  .discussion-number {
    top: 21px;
    right: 19px;
    font-size: 38px;
  }

  .discussion-outcome {
    grid-template-columns: 46px 1fr;
    padding: 17px;
  }

  .outcome-icon {
    width: 46px;
    height: 46px;
  }

  .discussion-outcome h3 {
    font-size: 14px;
  }
}



@media (prefers-reduced-motion: reduce) {
  .discussion-section *,
  .discussion-section *::before,
  .discussion-section *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


.agenda-section {
  position: relative;
  padding: 60px 0 90px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(0, 207, 155, 0.13),
      transparent 25%
    ),
    linear-gradient(
      140deg,
      #020a15,
      #06182b 55%,
      #020b16
    );
  overflow: hidden;
}

.agenda-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(500px, 1.25fr);
  gap: 65px;
  align-items: start;
}

.agenda-intro {
  position: sticky;
  top: 40px;
}

.agenda-intro h2 {
  margin-bottom: 15px;
}

.agenda-intro > p {
  margin-bottom: 27px;
  color: white;
  font-size: 14px;
}

.agenda-summary-card {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 20px;
  padding: 16px;
  border: 1px solid rgba(0, 207, 155, 0.15);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
}

.summary-icon {
  display: grid;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  place-items: center;
  color: var(--green-light);
  background: rgba(0, 207, 155, 0.1);
}

.summary-icon svg {
  width: 23px;
  height: 23px;
}

.agenda-summary-card small {
  display: block;
  margin-bottom: 3px;
  color: var(--text-muted);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.agenda-summary-card strong {
  display: block;
  color: var(--white);
  font-size: 12px;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.audience-list span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.035);
  font-size: 8px;
}


.agenda-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.timeline-line {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 139px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0, 207, 155, 0.45),
    rgba(86, 215, 255, 0.28),
    transparent
  );
}

.agenda-item {
  position: relative;
  display: grid;
  grid-template-columns: 105px 34px 1fr;
  gap: 17px;
  align-items: center;
  animation: timelineReveal 0.8s ease-out both;
}

.agenda-item:nth-of-type(2) {
  animation-delay: 0.1s;
}

.agenda-item:nth-of-type(3) {
  animation-delay: 0.2s;
}

.agenda-item:nth-of-type(4) {
  animation-delay: 0.3s;
}

.agenda-item:nth-of-type(5) {
  animation-delay: 0.4s;
}

.agenda-item:nth-of-type(6) {
  animation-delay: 0.5s;
}

.agenda-time {
  text-align: right;
}

.agenda-time span {
  display: block;
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
}

.agenda-time small {
  display: block;
  color: var(--text-muted);
  font-size: 9px;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 207, 155, 0.26);
  border-radius: 50%;
  place-items: center;
  background: var(--navy);
  box-shadow: 0 0 20px rgba(0, 207, 155, 0.08);
}

.timeline-marker i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 13px rgba(0, 207, 155, 0.7);
}

.agenda-content {
  position: relative;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(9px);
  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
}

.agenda-content:hover {
  transform: translateX(7px);
  border-color: rgba(0, 207, 155, 0.3);
  background: rgba(0, 207, 155, 0.07);
}

.featured-agenda-item .agenda-content {
  border-color: rgba(0, 207, 155, 0.27);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(0, 207, 155, 0.15),
      transparent 40%
    ),
    rgba(255, 255, 255, 0.055);
}

.agenda-step {
  display: block;
  margin-bottom: 5px;
  color: var(--green-light);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.agenda-content h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 14px;
}

.agenda-content p {
  color: var(--text-soft);
  font-size: 10.5px;
  line-height: 1.65;
}


/* =========================================
   Closing Note
========================================= */

.agenda-closing-note {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 720px) 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 55px;
  text-align: center;
}

.closing-line {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 207, 155, 0.35)
  );
}

.closing-line:last-child {
  background: linear-gradient(
    90deg,
    rgba(0, 207, 155, 0.35),
    transparent
  );
}

.agenda-closing-note p {
  color: var(--text-soft);
  font-size: 11.5px;
  line-height: 1.75;
}


/* =========================================
   Animations
========================================= */

@keyframes labelLinePulse {
  0%,
  100% {
    transform: scaleX(0.75);
    opacity: 0.65;
  }

  50% {
    transform: scaleX(1.25);
    opacity: 1;
  }
}

@keyframes gridMotion {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 46px 46px;
  }
}

@keyframes floatingShape {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    border-radius: 42% 58% 55% 45%;
  }

  50% {
    transform: translateY(-25px) rotate(18deg);
    border-radius: 58% 42% 40% 60%;
  }
}

@keyframes shapeRotation {
  from {
    transform: rotate(35deg);
  }

  to {
    transform: rotate(395deg);
  }
}

@keyframes contentRevealUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes contentRevealLeft {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contentRevealRight {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.95);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.04);
  }
}

@keyframes signalWave {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.9) rotate(-40deg);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1) rotate(-40deg);
  }
}

@keyframes identityCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes cardShimmer {
  0% {
    left: -130%;
  }

  45%,
  100% {
    left: 150%;
  }
}

@keyframes livePulse {
  0%,
  100% {
    transform: scale(0.85);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes orbMotion {
  from {
    transform: translate(0, 0) scale(0.95);
  }

  to {
    transform: translate(45px, 35px) scale(1.12);
  }
}

@keyframes orbRotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes borderFlow {
  from {
    background-position: 0% center;
  }

  to {
    background-position: 200% center;
  }
}

@keyframes timelineReveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================
   Responsive Design
========================================= */

@media (max-width: 960px) {
  .about-layout,
  .agenda-layout {
    grid-template-columns: 1fr;
  }

  .identity-visual {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }

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

  .agenda-intro {
    position: relative;
    top: auto;
    max-width: 680px;
  }
}

@media (max-width: 700px) {
  .about-section,
  .discussion-section,
  .agenda-section {
    padding: 64px 0;
  }

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

  .discussion-card {
    min-height: auto;
  }

  .agenda-item {
    grid-template-columns: 78px 28px 1fr;
    gap: 11px;
  }

  .timeline-line {
    left: 91px;
  }

  .timeline-marker {
    width: 28px;
    height: 28px;
  }

  .agenda-content {
    padding: 16px;
  }

  .agenda-closing-note {
    grid-template-columns: 1fr;
  }

  .closing-line {
    display: none;
  }
}

@media (max-width: 520px) {
  .section-container {
    width: min(100% - 26px, var(--container-width));
  }

  .section-heading h1,
  .section-heading h2,
  .agenda-intro h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .section-heading > p,
  .agenda-intro > p {
    font-size: 13.5px;
  }

  .partnership-note {
    grid-template-columns: 42px 1fr;
    padding: 14px;
  }

  .partnership-icon {
    width: 42px;
    height: 42px;
  }

  .about-copy p {
    font-size: 13.5px;
  }

  .identity-visual {
    min-height: 400px;
  }

  .identity-card {
    width: 270px;
    padding: 20px;
  }

  .visual-rings span:nth-child(1) {
    width: 320px;
    height: 320px;
  }

  .visual-rings span:nth-child(2) {
    width: 250px;
    height: 250px;
  }

  .visual-rings span:nth-child(3) {
    width: 180px;
    height: 180px;
  }

  .discussion-card {
    padding: 23px 20px;
  }

  .discussion-outcome {
    grid-template-columns: 46px 1fr;
    padding: 17px;
  }

  .outcome-icon {
    width: 46px;
    height: 46px;
  }

  .discussion-outcome h3 {
    font-size: 14px;
  }

  .agenda-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 32px;
  }

  .agenda-time {
    text-align: left;
  }

  .agenda-time span,
  .agenda-time small {
    display: inline;
  }

  .agenda-time small {
    margin-left: 6px;
  }

  .timeline-marker {
    position: absolute;
    top: 1px;
    left: 0;
  }

  .timeline-line {
    top: 18px;
    bottom: 18px;
    left: 13px;
  }

  .agenda-content:hover {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}