
:root {
  --event-navy: #03091f;
  --event-navy-light: #07163d;
  --event-blue: #078bd1;
  --event-cyan: #15c7ef;
  --event-purple: #65278a;
  --event-purple-light: #9c4ce1;
  --event-white: #ffffff;
  --event-text: #c9d4ef;
  --event-muted: #94a3c5;
  --event-border: rgba(255, 255, 255, 0.12);
  --event-card: rgba(255, 255, 255, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--event-navy);
  color: var(--event-white);
  font-family: "Manrope", sans-serif;
}

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

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--event-cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label::before {
  width: 28px;
  height: 2px;
  content: "";
  background: linear-gradient(
    90deg,
    var(--event-purple-light),
    var(--event-cyan)
  );
}

.reveal-card {
  animation: revealCard 0.8s ease both;
}

.reveal-card:nth-child(2) {
  animation-delay: 0.12s;
}

.reveal-card:nth-child(3) {
  animation-delay: 0.24s;
}

.reveal-card:nth-child(4) {
  animation-delay: 0.36s;
}

.reveal-card:nth-child(5) {
  animation-delay: 0.48s;
}


/* =========================================
   ABOUT SECTION
========================================= */

.event-about-section {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  background:
    radial-gradient(
      circle at 80% 40%,
      rgba(13, 144, 211, 0.2),
      transparent 32%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(101, 39, 138, 0.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #030719 0%,
      #06102f 52%,
      #071947 100%
    );
}

.event-background-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    );
  background-size: 50px 50px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 20%,
    #000 85%,
    transparent
  );
}

.event-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.event-glow-one {
  top: -180px;
  left: -160px;
  width: 430px;
  height: 430px;
  background: rgba(101, 39, 138, 0.34);
}

.event-glow-two {
  right: -170px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  background: rgba(7, 139, 209, 0.28);
}

.section-intro {
  max-width: 700px;
  margin-bottom: 52px;
}

.section-intro h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.section-intro h2 span {
  display: block;
  margin-top: 5px;
  background: linear-gradient(
    90deg,
    var(--event-cyan),
    #4ca6ff,
    var(--event-purple-light)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 62px;
  align-items: center;
}

.about-content {
  display: grid;
  gap: 18px;
}

.about-text-card {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 25px;
  overflow: hidden;
  border: 1px solid var(--event-border);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.about-text-card::after {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  content: "";
  background: rgba(21, 199, 239, 0.08);
  filter: blur(5px);
}

.about-text-card:hover {
  transform: translateY(-5px);
  border-color: rgba(21, 199, 239, 0.35);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.035)
    );
}

.about-card-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(21, 199, 239, 0.32);
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(21, 199, 239, 0.18),
    rgba(101, 39, 138, 0.3)
  );
  color: var(--event-cyan);
  font-size: 14px;
  font-weight: 800;
}

.about-text-card p {
  margin: 0;
  color: var(--event-text);
  font-size: 15px;
  line-height: 1.78;
}

.about-visual-wrap {
  display: flex;
  justify-content: center;
}

.agentic-visual {
  position: relative;
  width: min(470px, 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(21, 199, 239, 0.2);
  border-radius: 32px;
  background:
    radial-gradient(
      circle at center,
      rgba(21, 199, 239, 0.16),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(7, 24, 70, 0.96),
      rgba(19, 8, 54, 0.95)
    );
  box-shadow:
    0 35px 85px rgba(0, 0, 0, 0.36),
    inset 0 0 55px rgba(21, 199, 239, 0.06);
}

.agentic-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  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: 28px 28px;
}

.visual-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(21, 199, 239, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.visual-orbit-one {
  width: 50%;
  height: 50%;
}

.visual-orbit-two {
  width: 70%;
  height: 70%;
  border-color: rgba(156, 76, 225, 0.24);
}

.visual-orbit-three {
  width: 89%;
  height: 89%;
  border-style: dashed;
  animation: rotateOrbit 25s linear infinite;
}

.visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 160px;
  height: 160px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(21, 199, 239, 0.28),
    rgba(101, 39, 138, 0.48)
  );
  box-shadow:
    0 0 55px rgba(21, 199, 239, 0.25),
    inset 0 0 28px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(10px);
}

.visual-core-icon {
  width: 54px;
  color: var(--event-white);
}

.visual-core strong {
  font-size: 18px;
}

.visual-core > span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

.visual-node {
  position: absolute;
  display: flex;
  min-width: 66px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--event-border);
  border-radius: 13px;
  background: rgba(3, 9, 31, 0.8);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  animation: floatNode 4s ease-in-out infinite;
}

.visual-node span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    var(--event-blue),
    var(--event-purple)
  );
  font-size: 10px;
  font-weight: 800;
}

.visual-node strong {
  font-size: 13px;
}

.node-plan {
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
}

.node-decide {
  top: 47%;
  right: 4%;
  animation-delay: 0.8s;
}

.node-act {
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1.6s;
}

.node-govern {
  top: 47%;
  left: 4%;
  animation-delay: 2.4s;
}

.discussion-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
 background:
    radial-gradient(
      circle at 12% 25%,
      rgba(101, 39, 138, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(7, 139, 209, 0.2),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #030719,
      #071334 52%,
      #061d4c
    );
}

.discussion-glow {
  position: absolute;
  top: -140px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(7, 139, 209, 0.12);
  filter: blur(95px);
}

.discussion-section .section-label {
  color: var(--event-purple);
}

.discussion-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 44px;
}

.discussion-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 37px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.discussion-line {
  height: 1px;
  margin-bottom: 10px;
  background: linear-gradient(
    90deg,
    rgba(101, 39, 138, 0.42),
    transparent
  );
}

.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.takeaway-card {
  position: relative;
  min-height: 165px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(8, 29, 72, 0.1);
  border-radius: 22px;
  background: rgba(112, 194, 241, 0.84);
  box-shadow: 0 18px 48px rgba(12, 42, 87, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.takeaway-card::after{
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 105px;
  height: 85px;
  border-radius: 50%;
  content: "";
  background: linear-gradient(
    135deg,
    rgba(21, 199, 239, 0.09),
    rgba(101, 39, 138, 0.1)
  );
}

.takeaway-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 139, 209, 0.25);
  box-shadow: 0 25px 60px rgba(12, 42, 87, 0.14);
}

.takeaway-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 15px;
  border: 1px solid black;
  background: linear-gradient(
    105deg,
    rgba(230, 236, 240, 0.13),
    rgba(255, 255, 255, 0.13)
  );
  color:black;
}

.takeaway-icon svg {
  width: 26px;
}

.takeaway-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: BLACK;
  font-size: 24px;
  font-weight: 700;
}

.takeaway-card p {
  position: relative;
  z-index: 2;
  max-width: 510px;
  margin: 0;
  color: #000000;
  font-size: 15px;
  line-height: 1.75;
}


.agenda-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
  background:
    radial-gradient(
      circle at 12% 25%,
      rgba(101, 39, 138, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(7, 139, 209, 0.2),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #030719,
      #071334 52%,
      #061d4c
    );
}

.agenda-grid-background {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    );
  background-size: 52px 52px;
}

.agenda-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(95px);
}

.agenda-glow-one {
  top: -160px;
  right: 15%;
  width: 140px;
  height: 140px;
  background: rgba(7, 139, 209, 0.19);
}

.agenda-glow-two {
  bottom: -170px;
  left: 5%;
  width: 150px;
  height: 150px;
  background: rgba(101, 39, 138, 0.2);
}

.agenda-heading {
  margin-bottom: 48px;
}

.agenda-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 35px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

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

.agenda-timeline::before {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 184px;
  width: 1px;
  content: "";
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(21, 199, 239, 0.42),
    rgba(156, 76, 225, 0.42),
    transparent
  );
}

.agenda-item {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 38px;
  align-items: stretch;
}

.agenda-time {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

.agenda-time strong {
  color: var(--event-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.agenda-time-dot {
  position: absolute;
  right: -26px;
  z-index: 3;
  width: 13px;
  height: 13px;
  border: 3px solid #071334;
  border-radius: 50%;
  background: var(--event-cyan);
  box-shadow: 0 0 18px rgba(21, 199, 239, 0.7);
}

.agenda-card {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 86px;
  padding: 14px 18px;
  border: 1px solid var(--event-border);
  border-radius: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.085),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.agenda-card:hover {
  transform: translateX(7px);
  border-color: rgba(21, 199, 239, 0.34);
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.04)
    );
}

.agenda-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(21, 199, 239, 0.18),
    rgba(101, 39, 138, 0.36)
  );
  color: var(--event-cyan);
}

.agenda-icon svg {
  width: 27px;
}

.agenda-content h3 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.agenda-content p {
  margin: 0;
  color: var(--event-text);
  font-size: 14px;
  line-height: 1.55;
}


@keyframes rotateOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes floatNode {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -7px;
  }
}

@keyframes revealCard {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

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

  .about-visual-wrap {
    order: -1;
  }

  .agentic-visual {
    width: min(490px, 100%);
  }
}

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

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

  .agenda-timeline::before {
    left: 13px;
  }

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

  .agenda-time {
    justify-content: flex-start;
    text-align: left;
  }

  .agenda-time-dot {
    left: -33px;
    right: auto;
  }

  .agenda-card:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 600px) {
  .event-container {
    width: min(100% - 28px, 1180px);
  }

  .event-about-section,
  .discussion-section,
  .agenda-section {
    padding: 65px 0;
  }

  .section-intro {
    margin-bottom: 38px;
  }

  .section-intro h2,
  .discussion-heading h2,
  .agenda-heading h2 {
    font-size: 32px;
  }

  .about-text-card {
    grid-template-columns: 1fr;
    padding: 21px;
  }

  .about-card-number {
    width: 43px;
    height: 43px;
  }

  .about-text-card p {
    font-size: 14px;
  }

  .agentic-visual {
    border-radius: 24px;
  }

  .visual-core {
    width: 125px;
    height: 125px;
  }

  .visual-core-icon {
    width: 41px;
  }

  .visual-core strong {
    font-size: 15px;
  }

  .visual-core > span {
    display: none;
  }

  .visual-node {
    min-width: auto;
    padding: 7px 9px;
  }

  .visual-node span {
    display: none;
  }

  .visual-node strong {
    font-size: 11px;
  }

  .discussion-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .discussion-line {
    width: 100%;
  }

  .takeaway-card {
    min-height: auto;
    padding: 23px;
  }

  .agenda-card {
    grid-template-columns: 46px 1fr;
    gap: 15px;
    padding: 20px;
  }

  .agenda-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .agenda-icon svg {
    width: 23px;
  }

  .agenda-content h3 {
    font-size: 16px;
  }
}

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

.agentic-register-section {
  position: relative;
  overflow: hidden;
  padding: 65px 0 85px;
  background:
    radial-gradient(
      circle at 12% 30%,
      rgba(100, 41, 146, 0.2),
      transparent 31%
    ),
    radial-gradient(
      circle at 90% 70%,
      rgba(7, 141, 211, 0.2),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #020718 0%,
      #06102e 52%,
      #061c4b 100%
    );
}

.register-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    );
  background-size: 52px 52px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 15%,
    #000 88%,
    transparent
  );
}

.register-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}

.register-glow-one {
  top: -180px;
  left: -160px;
  width: 450px;
  height: 450px;
  background: rgba(101, 39, 138, 0.3);
}

.register-glow-two {
  right: -160px;
  bottom: -190px;
  width: 480px;
  height: 480px;
  background: rgba(7, 139, 209, 0.27);
}

.register-section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.register-section-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(32px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.register-section-heading h2 span {
  color: transparent;
  background: linear-gradient(
    90deg,
    #17c8f2,
    #539eff,
    #a04de1
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.register-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: stretch;
}


.register-info-card {
  position: relative;
  height: 100%;
  min-height: 500px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(12, 32, 82, 0.91),
      rgba(20, 8, 57, 0.91)
    );
  box-shadow:
    0 30px 75px rgba(0, 0, 0, 0.3),
    inset 0 0 50px rgba(20, 199, 240, 0.04);
}

.register-info-card::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  content: "";
  background: rgba(19, 199, 239, 0.1);
  filter: blur(20px);
}

.register-info-card::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(19, 199, 239, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 35px rgba(19, 199, 239, 0.025),
    0 0 0 70px rgba(156, 76, 225, 0.02);
}

.register-info-top,
.register-event-details,
.register-process {
  position: relative;
  z-index: 2;
}

.register-info-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(19, 199, 239, 0.25);
  border-radius: 50px;
  background: rgba(19, 199, 239, 0.08);
  color: #15c7ef;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.register-info-top h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.register-event-details {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.register-detail-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  align-items: center;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.register-detail-item:hover {
  transform: translateX(6px);
  border-color: rgba(19, 199, 239, 0.3);
  background: rgba(255, 255, 255, 0.075);
}

.register-detail-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(
    135deg,
    rgba(19, 199, 239, 0.2),
    rgba(101, 39, 138, 0.4)
  );
  color: #16c9f1;
}

.register-detail-icon svg {
  width: 25px;
}

.register-detail-item span {
  display: block;
  margin-bottom: 4px;
  color: #93a8d1;
  font-size: 12px;
  font-weight: 600;
}

.register-detail-item strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.register-process {
  display: grid;
  gap: 17px;
  margin-top: 36px;
  padding-top: 31px;
}

.register-process-line {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(19, 199, 239, 0.4),
    rgba(156, 76, 225, 0.35),
    transparent
  );
}

.register-process-item {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 13px;
  align-items: center;
}

.register-process-item span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(19, 199, 239, 0.25);
  border-radius: 10px;
  background: rgba(19, 199, 239, 0.08);
  color: #16c9f1;
  font-size: 11px;
  font-weight: 800;
}

.register-process-item p {
  margin: 0;
  color: #bdc9e3;
  font-size: 13px;
  line-height: 1.5;
}


/* =========================================
   REGISTRATION FORM
========================================= */

.register-form-card {
  height: 100%;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.035)
    );
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.register-form-heading {
  margin-bottom: 30px;
}

.register-form-heading > span {
  display: block;
  margin-bottom: 8px;
  color: #15c7ef;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.register-form-heading h3 {
  margin: 0;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.agentic-registration-form {
  width: 100%;
}

.register-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px 18px;
}

.register-field {
  min-width: 0;
}

.register-field-full {
  grid-column: 1 / -1;
}

.register-field label {
  display: block;
  margin-bottom: 9px;
  color: #dce4f7;
  font-size: 13px;
  font-weight: 700;
}

.register-field label em {
  margin-left: 2px;
  color: #24c8ef;
  font-style: normal;
}

.register-input-wrap {
  position: relative;
}

.register-input-icon {
  position: absolute;
  top: 50%;
  left: 16px;
  display: grid;
  width: 21px;
  place-items: center;
  color: #16bdea;
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 0.25s ease;
}

.register-input-icon svg {
  width: 21px;
}

.register-field input {
  width: 100%;
  height: 56px;
  padding: 0 17px 0 50px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  outline: none;
  border-radius: 15px;
  background: rgba(2, 9, 31, 0.56);
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.register-field input::placeholder {
  color: #7989ac;
}

.register-field input:hover {
  border-color: rgba(19, 199, 239, 0.28);
}

.register-field input:focus {
  border-color: #16bee9;
  background: rgba(3, 13, 42, 0.8);
  box-shadow:
    0 0 0 4px rgba(19, 199, 239, 0.09),
    0 10px 28px rgba(0, 0, 0, 0.14);
}

.register-input-wrap:focus-within .register-input-icon {
  color: #ffffff;
}

.register-submit-button {
  display: inline-flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 27px;
  padding: 15px 25px;
  border: 0;
  border-radius: 15px;
  background: linear-gradient(
    90deg,
    #078bd1,
    #176de3 48%,
    #762ba4
  );
  box-shadow: 0 17px 36px rgba(28, 105, 221, 0.24);
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.register-submit-button svg {
  width: 21px;
  transition: transform 0.3s ease;
}

.register-submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 45px rgba(28, 105, 221, 0.34);
  filter: brightness(1.08);
}

.register-submit-button:hover svg {
  transform: translateX(5px);
}

.register-submit-button:active {
  transform: translateY(0);
}


/* =========================================
   RESPONSIVE REGISTRATION SECTION
========================================= */

@media (max-width: 980px) {
  .register-layout {
    grid-template-columns: 1fr;
  }

  .register-info-card {
    min-height: auto;
  }

  .register-event-details {
    grid-template-columns: repeat(3, 1fr);
  }

  .register-detail-item {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .agentic-register-section {
    padding: 75px 0;
  }

  .register-section-heading {
    margin-bottom: 35px;
  }

  .register-info-card,
  .register-form-card {
    padding: 27px;
    border-radius: 23px;
  }

  .register-event-details {
    grid-template-columns: 1fr;
  }

  .register-detail-item {
    grid-template-columns: 50px 1fr;
    align-items: center;
  }

  .register-form-grid {
    grid-template-columns: 1fr;
  }

  .register-field-full {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .agentic-register-section {
    padding: 62px 0;
  }

  .register-section-heading h2 {
    font-size: 32px;
  }

  .register-info-card,
  .register-form-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .register-info-top h3 {
    font-size: 24px;
  }

  .register-detail-item {
    padding: 14px;
  }

  .register-field input {
    height: 54px;
    font-size: 13px;
  }

  .register-submit-button {
    min-height: 55px;
  }
}


.footer-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 350px;
  overflow: hidden;
  padding: 60px 15px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(74, 53, 165, 0.28),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(201, 139, 16, 0.14),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--footer-dark),
      var(--footer-dark-two)
    );
  font-family: "Manrope", sans-serif;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    );
  background-size: 45px 45px;
  pointer-events: none;
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
  animation: footerFloat 8s ease-in-out infinite alternate;
}

.footer-glow-one {
  top: -120px;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(74, 53, 165, 0.2);
}

.footer-glow-two {
  bottom: -130px;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(201, 139, 16, 0.11);
  animation-delay: 1.5s;
}

.footer-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  text-decoration: none;
}

.footer-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.footer-brand > p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--footer-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 3px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--footer-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--footer-white);
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 139, 16, 0.7);
  background: linear-gradient(
    135deg,
    var(--footer-purple),
    var(--footer-gold)
  );
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.footer-social a:focus-visible {
  outline: 3px solid rgba(201, 139, 16, 0.4);
  outline-offset: 4px;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

@keyframes footerFloat {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(22px, -18px, 0) scale(1.08);
  }
}

@media (max-width: 768px) {
  .footer-section {
    min-height: 380px;
    padding: 60px 20px;
  }

  .footer-brand {
    max-width: 520px;
  }

  .footer-logo {
    width: 165px;
  }

  .footer-brand > p {
    font-size: 14px;
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .footer-section {
    min-height: 350px;
    padding: 50px 18px;
  }

  .footer-logo-link {
    margin-bottom: 18px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-brand > p {
    font-size: 13px;
  }

  .footer-social {
    gap: 10px;
    margin-top: 24px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .footer-social svg {
    width: 18px;
    height: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer-glow {
    animation: none;
  }

  .footer-social a {
    transition: none;
  }
}