:root {
  --ibm-blue-100: #001141;
  --ibm-blue-90: #001d6c;
  --ibm-blue-80: #002d9c;
  --ibm-blue-70: #0043ce;
  --ibm-blue-60: #0f62fe;
  --ibm-blue-50: #4589ff;

  --ibm-cyan: #08bdba;
  --ibm-cyan-dark: #007d79;
  --ibm-cyan-light: #d9fbfb;

  --ink: #161616;
  --ink-soft: #262626;
  --grey-80: #393939;
  --grey-70: #525252;
  --grey-60: #6f6f6f;
  --grey-30: #c6c6c6;
  --grey-20: #dde1e6;
  --grey-10: #f4f4f4;

  --white: #ffffff;
  --surface: #f8faff;
  --surface-blue: #eef4ff;

  --container: 1240px;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft:
    0 18px 48px rgba(20, 42, 82, 0.08);

  --shadow-medium:
    0 30px 80px rgba(15, 38, 86, 0.14);

  --shadow-dark:
    0 32px 80px rgba(0, 17, 65, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "IBM Plex Sans", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: "IBM Plex Sans", sans-serif;
}

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

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

button {
  font: inherit;
}

section {
  position: relative;
}

.site-container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}


.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
  color: var(--ibm-blue-70);
  font-family: "IBM Plex Mono", monospace;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-eyebrow::before {
  width: 28px;
  height: 5px;
  content: "";
  background:
    linear-gradient(
      90deg,
      var(--ibm-cyan),
      var(--ibm-blue-60)
    );
}

.section-eyebrow-light {
  color: #b8f4f2;
}

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

.section-heading h2,
.about-content h2,
.discussion-intro h2,
.register-content h2 {
  margin: 0;
  font-size: clamp(31px, 3.3vw, 44px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.section-heading h2 span,
.about-content h2 span,
.discussion-intro h2 span {
  color: var(--ibm-blue-70);
}

.content-section {
  padding: 67px 0;
}


.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  overflow: hidden;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  isolation: isolate;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.button::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0;
  background:
    linear-gradient(
      120deg,
      transparent 10%,
      rgba(255, 255, 255, 0.23),
      transparent 90%
    );
  transform: translateX(-110%);
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}

.button:hover::before {
  opacity: 1;
  transform: translateX(110%);
}

.button svg {
  width: 18px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-primary {
  background:
    linear-gradient(
      115deg,
      var(--ibm-blue-70),
      var(--ibm-blue-60)
    );
  box-shadow:
    0 16px 34px rgba(15, 98, 254, 0.24);
  color: var(--white);
}

.button-primary:hover {
  box-shadow:
    0 22px 45px rgba(15, 98, 254, 0.34);
}

.button-secondary {
  border-color: rgba(22, 22, 22, 0.35);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button-light {
  background: var(--white);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.18);
  color: var(--ibm-blue-80);
}

.button-light:hover {
  background: var(--ibm-cyan-light);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(221, 225, 230, 0.8);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 10px 30px rgba(15, 38, 86, 0.04);
  backdrop-filter: blur(18px);
}

.header-accent {
  height: 4px;
  background:
    linear-gradient(
      90deg,
      var(--ibm-blue-90),
      var(--ibm-blue-60) 55%,
      var(--ibm-cyan)
    );
}

.header-container {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


.brand-logo {
  width: 100px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 32px;
  background: var(--grey-20);
}

.brand-text {
  color: black;
  font-family: "IBM Plex Mono", monospace;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: 80px;
}

.site-navigation a {
  position: relative;
  padding: 10px 0;
  color: var(--grey-80);
  font-size: 14px;
  font-weight: 500;
}

.site-navigation a::before {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  content: "";
  background:
    linear-gradient(
      90deg,
      var(--ibm-blue-60),
      var(--ibm-cyan)
    );
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-navigation a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.header-button {
  min-height: 44px;
  padding: 10px 17px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--grey-20);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--ink);
}

.home-banner {
  position: relative;
  width: 100%;
  min-height: 550px;
  overflow: hidden;
  background: #001141;
  isolation: isolate;
}

.home-banner picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.home-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: homeBannerEntrance 1.3s ease both;
}


.home-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 17, 65, 0.16),
      transparent 52%
    ),
    linear-gradient(
      180deg,
      rgba(0, 17, 65, 0.03) 55%,
      rgba(0, 17, 65, 0.3) 100%
    );
}

.home-banner-action {
  position: absolute;
  right: 7%;
  bottom: 70px;
  z-index: 4;
}

.home-banner-button {
  position: relative;
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  overflow: hidden;
  padding: 14px 25px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9px;
  background:
    linear-gradient(
      110deg,
      var(--ibm-blue-70),
      var(--ibm-blue-60),
      var(--ibm-cyan-dark)
    );
  box-shadow:
    0 20px 45px rgba(0, 17, 65, 0.3);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.home-banner-button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -45%;
  z-index: -1;
  width: 30%;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.28),
      transparent
    );
  transform: skewX(-20deg);
  transition: left 0.75s ease;
}

.home-banner-button:hover {
  transform: translateY(-4px);
  box-shadow:
    0 27px 55px rgba(0, 17, 65, 0.42);
}

.home-banner-button:hover::before {
  left: 120%;
}

.home-banner-button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.home-banner-button:hover svg {
  transform: translateX(5px);
}


.home-banner-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 2px;
  color: rgba(255, 255, 255, 0.88);
  transform: translateX(-50%);
}

.home-banner-scroll span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-banner-scroll svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: bannerScrollArrow 1.8s ease-in-out infinite;
}



.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 17, 65, 0.18);
  box-shadow: none;
  backdrop-filter: blur(14px);
}

.site-header .brand-text,
.site-header .site-navigation a {
  color: #ffffff;
}

.site-header .brand-divider {
  background: rgba(255, 255, 255, 0.35);
}

.site-header .brand-logo {
  filter: brightness(0) invert(1);
}

.site-header .menu-toggle {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.site-header .menu-toggle span {
  background: #ffffff;
}


/* Header becomes white after scrolling */

.site-header.header-scrolled {
  position: fixed;
  border-bottom-color: rgba(221, 225, 230, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 12px 32px rgba(15, 38, 86, 0.08);
}

.site-header.header-scrolled .brand-text,
.site-header.header-scrolled .site-navigation a {
  color: var(--grey-80);
}

.site-header.header-scrolled .brand-divider {
  background: var(--grey-20);
}

.site-header.header-scrolled .brand-logo {
  filter: none;
}

.site-header.header-scrolled .menu-toggle {
  border-color: var(--grey-20);
  background: #ffffff;
}

.site-header.header-scrolled .menu-toggle span {
  background: var(--ink);
}


@keyframes homeBannerEntrance {
  from {
    opacity: 0;
    transform: scale(1.045);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bannerScrollArrow {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(6px);
  }
}

@media (max-width: 1050px) {
  .site-header .site-navigation {
    background: rgba(255, 255, 255, 0.98);
  }

  .site-header .site-navigation a {
    color: var(--grey-80);
  }

  .home-banner {
    min-height: 550px;
  }

  .home-banner-action {
    right: 5%;
    bottom: 65px;
  }
}

@media (max-width: 768px) {
  .home-banner {
    min-height: 480px;
  }

  .home-banner-image {
    object-position: center;
  }

  .home-banner-action {
    right: 20px;
    bottom: 58px;
    left: 20px;
  }

  .home-banner-button {
    width: 100%;
  }

  .home-banner-scroll {
    bottom: 13px;
  }
}

@media (max-width: 520px) {
  .home-banner {
    min-height: 430px;
  }

  .home-banner-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(0, 17, 65, 0.05) 40%,
        rgba(0, 17, 65, 0.46) 100%
      );
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-banner-image,
  .home-banner-scroll svg {
    animation: none;
  }
}


.about-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 92% 26%,
      rgba(15, 98, 254, 0.09),
      transparent 28%
    ),
    radial-gradient(
      circle at 8% 80%,
      rgba(8, 189, 186, 0.07),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #84b0e2 0%,
      #f8fbff 100%
    );
}

.about-section::before {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(15, 98, 254, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 45px rgba(15, 98, 254, 0.018),
    0 0 0 90px rgba(8, 189, 186, 0.012);
  animation: aboutRingFloat 11s ease-in-out infinite;
}

.about-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.02fr)
    minmax(380px, 0.98fr);
  gap: 68px;
  align-items: center;
}

.about-content {
  position: relative;
  z-index: 2;
}

.about-content h2 {
  max-width: 650px;
  margin-bottom: 24px;
}

.about-content p {
  max-width: 720px;
  margin: 0 0 18px;
  color: Black;
  font-size: 17px;
  line-height: 1.8;
}



.about-image-column {
  min-width: 0;
}

.about-image-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(69, 137, 255, 0.22);
  border-radius: 28px;
  background: #001141;
  box-shadow:
    0 34px 80px rgba(12, 35, 80, 0.19);
  isolation: isolate;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.about-image-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 44px 95px rgba(12, 35, 80, 0.25);
}

.about-image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.8s ease,
    filter 0.5s ease;
}

.about-image-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 17, 65, 0.03) 30%,
      rgba(0, 17, 65, 0.76) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 17, 65, 0.18),
      transparent 52%
    );
  pointer-events: none;
}

.about-image-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.about-image-card::after {
  position: absolute;
  top: -50%;
  left: -35%;
  z-index: 2;
  width: 35%;
  height: 190%;
  content: "";
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.13),
      transparent
    );
  transform: rotate(20deg);
  transition:
    left 0.9s ease,
    opacity 0.4s ease;
  pointer-events: none;
}

.about-image-card:hover::after {
  left: 120%;
  opacity: 1;
}


.about-image-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(0, 17, 65, 0.72);
  box-shadow:
    0 16px 35px rgba(0, 0, 0, 0.24);
  color: #ffffff;
  backdrop-filter: blur(15px);
}

.about-image-badge-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: none;
  place-items: center;
  border-radius: 13px;
  background:
    linear-gradient(
      135deg,
      var(--ibm-blue-60),
      var(--ibm-cyan)
    );
  box-shadow:
    0 10px 25px rgba(8, 189, 186, 0.22);
}

.about-image-badge-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-image-badge small {
  display: block;
  margin-bottom: 3px;
  color: #a9c7ed;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-image-badge strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
}


.about-image-chip {
  position: absolute;
  z-index: 4;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 17, 65, 0.68);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: aboutChipFloat 4.5s ease-in-out infinite;
}

.about-chip-one {
  top: 25px;
  left: 25px;
}

.about-chip-two {
  top: 90px;
  right: 24px;
  animation-delay: 1.2s;
}


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

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

@keyframes aboutRingFloat {
  0%,
  100% {
    opacity: 0.65;
    transform: scale(1);
  }

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


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

  .about-image-column {
    max-width: 760px;
  }

  .about-image-card,
  .about-image-card img {
    height: 430px;
    min-height: 430px;
  }
}

@media (max-width: 650px) {
  .about-layout {
    gap: 35px;
  }

  .about-image-card {
    min-height: 360px;
    border-radius: 20px;
  }

  .about-image-card img {
    height: 360px;
  }

  .about-image-badge {
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 14px;
  }

  .about-image-badge-icon {
    width: 41px;
    height: 41px;
  }

  .about-image-badge strong {
    font-size: 13px;
  }

  .about-image-chip {
    font-size: 8px;
  }

  .about-chip-one {
    top: 16px;
    left: 16px;
  }

  .about-chip-two {
    top: 62px;
    right: 16px;
  }
}

.why-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(221, 225, 230, 0.8);
  border-bottom: 1px solid rgba(221, 225, 230, 0.8);
  background:
    radial-gradient(
      circle at 92% 12%,
      rgba(8, 189, 186, 0.12),
      transparent 27%
    ),
    radial-gradient(
      circle at 4% 88%,
      rgba(15, 98, 254, 0.11),
      transparent 31%
    ),
    linear-gradient(
      135deg,
      #f3f7ff 0%,
      #ffffff 48%,
      #f0fbfb 100%
    );
}

.why-background-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(32, 97, 219, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(54, 122, 247, 0.08) 1px,
      transparent 1px
    );
  background-size: 58px 58px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 84%,
      transparent
    );
}

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

.why-glow-one {
  top: -180px;
  right: -120px;
  width: 450px;
  height: 450px;
  background: rgba(8, 189, 186, 0.16);
}

.why-glow-two {
  bottom: -200px;
  left: -150px;
  width: 470px;
  height: 470px;
  background: rgba(15, 98, 254, 0.14);
}



.why-section-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(250px, 0.85fr);
  gap: 70px;
  align-items: center;
  margin-bottom: 58px;
}

.why-heading-content {
  max-width: 700px;
}

.why-heading-content h2 {
  margin: 0;
  font-size: clamp(31px, 3.3vw, 40px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.why-heading-content h2 span {
  color: var(--ibm-blue-70);
}

.why-heading-content p {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--grey-70);
  font-size: 16px;
  line-height: 1.75;
}



.why-heading-visual {
  position: relative;
  width: min(280px, 100%);
  aspect-ratio: 1;
  justify-self: end;
}

.why-heading-visual::before {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(
      circle,
      rgba(15, 98, 254, 0.18),
      transparent 65%
    );
  filter: blur(14px);
}

.why-visual-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(5, 53, 141, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.why-visual-ring.ring-one {
  width: 46%;
  height: 46%;
}

.why-visual-ring.ring-two {
  width: 70%;
  height: 70%;
  border-color: rgba(9, 124, 122, 0.25);
  animation: whyRingRotate 16s linear infinite;
}

.why-visual-ring.ring-three {
  width: 94%;
  height: 94%;
  border-style: dashed;
  animation: whyRingRotateReverse 26s linear infinite;
}

.why-visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 105px;
  height: 105px;
  place-items: center;
  border: 1px solid rgba(10, 7, 7, 0.42);
  border-radius: 50%;
  background:
    linear-gradient(
      145deg,
      var(--ibm-blue-60),
      var(--ibm-blue-80)
    );
  box-shadow:
    0 20px 45px rgba(15, 98, 254, 0.3);
  color: #ffffff;
  transform: translate(-50%, -50%);
  animation: whyCorePulse 3.7s ease-in-out infinite;
}

.why-visual-core svg {
  width: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-visual-node {
  position: absolute;
  z-index: 4;
  padding: 7px 10px;
  border: 2px solid rgba(0, 1, 2, 0.95);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.91);
  box-shadow:
    0 10px 25px rgba(20, 49, 93, 0.1);
  color: var(--ibm-blue-80);
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: whyNodeFloat 4s ease-in-out infinite;
}

.why-visual-node.node-ai {
  top: 11%;
  left: 12%;
}

.why-visual-node.node-cloud {
  top: 23%;
  right: 0;
  animation-delay: 1s;
}

.why-visual-node.node-security {
  right: 13%;
  bottom: 9%;
  animation-delay: 2s;
}

.benefits-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  position: relative;
  display: flex;
  min-height: 140px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid black;
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(127, 243, 237, 0.96),
      rgba(92, 158, 245, 0.9)
    );
  box-shadow:
    0 18px 45px rgba(20, 50, 90, 0.07);
  flex-direction: column;
  isolation: isolate;
  transition:
    transform 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease;
}

.benefit-card::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 4px;
  content: "";
  background:
    linear-gradient(
      90deg,
      var(--ibm-blue-60),
      var(--ibm-cyan)
    );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefit-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  z-index: -1;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(
      circle,
      rgba(15, 98, 254, 0.12),
      rgba(8, 189, 186, 0.04) 55%,
      transparent 72%
    );
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(15, 98, 254, 0.36);
  box-shadow:
    0 30px 65px rgba(15, 60, 125, 0.15);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover::after {
  transform: scale(1.18);
}

.benefit-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.benefit-icon {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      var(--ibm-blue-70),
      var(--ibm-blue-60)
    );
  box-shadow:
    0 14px 28px rgba(15, 98, 254, 0.23);
  color: #ffffff;
  transition:
    transform 0.38s ease,
    box-shadow 0.38s ease;
}

.benefit-card:nth-child(2) .benefit-icon,
.benefit-card:nth-child(5) .benefit-icon {
  background:
    linear-gradient(
      135deg,
      var(--ibm-cyan-dark),
      var(--ibm-cyan)
    );
  box-shadow:
    0 14px 28px rgba(8, 189, 186, 0.22);
}

.benefit-card:nth-child(3) .benefit-icon,
.benefit-card:nth-child(6) .benefit-icon {
  background:
    linear-gradient(
      135deg,
      #001d6c,
      #0043ce
    );
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-4px) rotate(-4deg);
  box-shadow:
    0 20px 36px rgba(15, 98, 254, 0.3);
}

.benefit-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-number {
  color: rgba(0, 45, 156, 0.17);
  font-family: "IBM Plex Mono", monospace;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.benefit-content {
  position: relative;
  z-index: 2;
  margin-top: 28px;
}

.benefit-content h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.benefit-content p {
  margin: 0;
  color: Black;
  font-size: 15.5px;
  line-height: 1.7;
}

.benefit-arrow {
  display: grid;
  width: 39px;
  height: 39px;
  margin-top: auto;
  place-items: center;
  border: 1px solid rgba(15, 98, 254, 0.17);
  border-radius: 50%;
  background: rgba(15, 98, 254, 0.05);
  color: var(--ibm-blue-60);
  opacity: 0;
  transform: translateX(-8px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

.benefit-arrow svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card:hover .benefit-arrow {
  background: var(--ibm-blue-60);
  color: #ffffff;
  opacity: 1;
  transform: translateX(0);
}


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

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

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

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

@keyframes whyCorePulse {
  0%,
  100% {
    box-shadow:
      0 20px 45px rgba(15, 98, 254, 0.27);
  }

  50% {
    box-shadow:
      0 24px 60px rgba(15, 98, 254, 0.4);
  }
}

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

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


@media (max-width: 1050px) {
  .why-section-heading {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .why-heading-visual {
    width: 250px;
    justify-self: start;
  }

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

@media (max-width: 720px) {
  .why-section-heading {
    margin-bottom: 42px;
  }

  .why-heading-visual {
    width: 215px;
  }

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

  .benefit-card {
    min-height: 235px;
  }
}

@media (max-width: 480px) {
  .why-heading-content h2 {
    font-size: 31px;
  }

  .why-heading-visual {
    width: 190px;
  }

  .why-visual-core {
    width: 85px;
    height: 85px;
  }

  .why-visual-core svg {
    width: 36px;
  }

  .benefit-card {
    min-height: auto;
    padding: 20px;
  }

  .benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .benefit-content {
    margin-top: 23px;
  }

  .benefit-content h3 {
    font-size: 17px;
  }

  .benefit-arrow {
    margin-top: 25px;
    opacity: 1;
    transform: none;
  }
}

.discussion-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 40%,
      rgba(15, 98, 254, 0.07),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #ffffff,
      #f6f9ff
    );
}

.discussion-layout {
  display: grid;
  grid-template-columns:
    minmax(330px, 0.82fr)
    minmax(0, 1.18fr);
  gap: 74px;
  align-items: start;
}

.discussion-intro {
  position: sticky;
  top: 130px;
}

.discussion-intro h2 {
  max-width: 500px;
}


.discussion-ring-one {
  width: 165px;
  height: 165px;
}

.discussion-ring-two {
  width: 270px;
  height: 270px;
  border-style: dashed;
  animation: orbitRotate 22s linear infinite;
}


.discussion-video-wrap {
  position: relative;
  width: min(480px, 100%);
  min-height: 450px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(69, 137, 255, 0.24);
  border-radius: 26px;
  background: #001141;
  box-shadow:
    0 30px 75px rgba(15, 38, 86, 0.2);
  isolation: isolate;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.discussion-video-wrap:hover {
  transform: translateY(-7px);
  box-shadow:
    0 42px 95px rgba(15, 38, 86, 0.27);
}

.discussion-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.9s ease,
    filter 0.5s ease;
}

.discussion-video-wrap:hover .discussion-video {
  transform: scale(1.045);
  filter:
    saturate(1.1)
    contrast(1.04);
}

.discussion-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      180deg,
      rgba(0, 17, 65, 0.12) 10%,
      rgba(0, 17, 65, 0.18) 45%,
      rgba(0, 17, 65, 0.9) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 45, 156, 0.24),
      transparent 60%
    );
  pointer-events: none;
}

.discussion-video-grid {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0.15;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px
    );
  background-size: 34px 34px;
}

.discussion-video-wrap::before {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.discussion-video-wrap::after {
  position: absolute;
  top: -40%;
  left: -40%;
  z-index: 4;
  width: 30%;
  height: 180%;
  content: "";
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent
    );
  transform: rotate(18deg);
  transition:
    left 0.9s ease,
    opacity 0.4s ease;
  pointer-events: none;
}

.discussion-video-wrap:hover::after {
  left: 120%;
  opacity: 1;
}


/* Top label */

.discussion-video-label {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(0, 17, 65, 0.68);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.18);
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.discussion-video-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--ibm-cyan);
  box-shadow:
    0 0 14px var(--ibm-cyan);
  animation: discussionVideoPulse 1.8s ease-in-out infinite;
}


/* Bottom caption */

.discussion-video-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 15px;
  background: rgba(0, 17, 65, 0.74);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  backdrop-filter: blur(15px);
}

.discussion-video-icon {
  display: grid;
  width: 47px;
  height: 47px;
  flex: none;
  place-items: center;
  border-radius: 13px;
  background:
    linear-gradient(
      135deg,
      var(--ibm-blue-60),
      var(--ibm-cyan)
    );
  box-shadow:
    0 12px 25px rgba(8, 189, 186, 0.25);
}

.discussion-video-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.discussion-video-caption small {
  display: block;
  margin-bottom: 3px;
  color: #a9c7ed;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.discussion-video-caption strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}


/* Animation */

@keyframes discussionVideoPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.45;
    transform: scale(0.78);
  }
}


/* Responsive */

@media (max-width: 1050px) {
  .discussion-video-wrap {
    width: min(650px, 100%);
    min-height: 410px;
  }
}

@media (max-width: 600px) {
  .discussion-video-wrap {
    min-height: 350px;
    border-radius: 20px;
  }

  .discussion-video-label {
    top: 15px;
    left: 15px;
    max-width: calc(100% - 30px);
    font-size: 8px;
  }

  .discussion-video-caption {
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 13px;
  }

  .discussion-video-icon {
    width: 41px;
    height: 41px;
  }

  .discussion-video-caption strong {
    font-size: 12px;
  }
}

.discussion-node.node-one {
  top: 16%;
  left: 17%;
}

.discussion-node.node-two {
  top: 18%;
  right: 15%;
  animation-delay: 0.8s;
}

.discussion-node.node-three {
  right: 12%;
  bottom: 16%;
  animation-delay: 1.6s;
}

.discussion-node.node-four {
  bottom: 15%;
  left: 15%;
  animation-delay: 2.4s;
}


/* =========================================================
   ACCORDION
========================================================= */

.topics-list {
  overflow: hidden;
  border: 1px solid var(--grey-20);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.topic-item {
  border-bottom: 1px solid var(--grey-20);
  background: var(--white);
}

.topic-item:last-child {
  border-bottom: 0;
}

.topic-button {
  display: grid;
  width: 100%;
  grid-template-columns: 46px 1fr 36px;
  gap: 18px;
  align-items: center;
  padding: 23px 20px;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}

.topic-button:hover {
  background: #f7faff;
}

.topic-number {
  color: var(--ibm-cyan-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
}

.topic-title {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
}

.topic-toggle {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--grey-20);
  border-radius: 50%;
  background: var(--white);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.topic-toggle svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.topic-item.is-open .topic-button {
  background:
    linear-gradient(
      90deg,
      rgba(15, 98, 254, 0.06),
      rgba(8, 189, 186, 0.05)
    );
}

.topic-item.is-open .topic-toggle {
  border-color: var(--ibm-blue-60);
  background: var(--ibm-blue-60);
  color: var(--white);
  transform: rotate(45deg);
}

.topic-panel {
  max-height: 0;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      var(--ibm-cyan-light),
      #edffff
    );
  transition: max-height 0.38s ease;
}

.topic-panel p {
  margin: 0;
  padding: 0 28px 23px 84px;
  color: #075554;
  font-size: 14.5px;
  line-height: 1.72;
}

.topic-item.is-open .topic-panel p {
  padding-top: 18px;
}


.register-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background:
    radial-gradient(
      circle at 82% 20%,
      rgba(8, 189, 186, 0.26),
      transparent 30%
    ),
    linear-gradient(
      115deg,
      var(--ibm-blue-100),
      var(--ibm-blue-70) 62%,
      var(--ibm-cyan-dark)
    );
  color: var(--white);
}

.register-section::after {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.025),
    0 0 0 96px rgba(255, 255, 255, 0.015);
  transform: translateY(-50%);
  animation: ctaRing 10s ease-in-out infinite;
}

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

.register-glow {
  position: absolute;
  top: -180px;
  right: 4%;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: rgba(8, 189, 186, 0.26);
  filter: blur(95px);
}

.register-container {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 46px;
}

.register-content {
  max-width: 760px;
}

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

.register-content h2 span {
  color: #8ce7e5;
}

.register-content p {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15.5px;
  line-height: 1.72;
}

.register-action {
  display: flex;
  flex: none;
  align-items: center;
  flex-direction: column;
  gap: 17px;
}

.register-format {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.register-format-icon {
  width: 18px;
}

.register-format-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(
      135deg,
      #121212,
      #1d1d1d
    );
  color: var(--grey-30);
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand img {
  width: 92px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 620px;
  margin: 0;
  font-size: 12px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.14s;
}

.reveal-delay-one {
  transition-delay: 0.1s;
}

.reveal-delay-two {
  transition-delay: 0.2s;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes heroRing {
  0%,
  100% {
    opacity: 0.75;
    transform: scale(1);
  }

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

@keyframes statusPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

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

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

@keyframes serverScan {
  from {
    left: -30%;
  }

  to {
    left: 120%;
  }
}

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

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

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

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

@keyframes coreGlow {
  0%,
  100% {
    box-shadow:
      0 0 55px rgba(8, 189, 186, 0.3);
  }

  50% {
    box-shadow:
      0 0 85px rgba(8, 189, 186, 0.52);
  }
}

@keyframes coreGlowLight {
  0%,
  100% {
    box-shadow:
      0 20px 42px rgba(0, 67, 206, 0.24);
  }

  50% {
    box-shadow:
      0 25px 55px rgba(0, 67, 206, 0.34);
  }
}

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

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

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

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

@keyframes ctaRing {
  0%,
  100% {
    opacity: 0.65;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.07);
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
  .site-navigation {
    position: fixed;
    top: 82px;
    right: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 32px 26px;
    border-bottom: 1px solid var(--grey-20);
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 20px 35px rgba(15, 38, 86, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-120%);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease;
  }

  .site-navigation.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-navigation a {
    padding: 15px 0;
    border-bottom: 1px solid var(--grey-20);
  }

  .header-button {
    margin-left: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero-visual {
    max-width: 720px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .webinar-summary-card {
    max-width: 720px;
  }

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

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

  .discussion-intro {
    position: static;
  }

  .discussion-visual {
    max-width: 500px;
  }
}

@media (max-width: 780px) {
  .site-container {
    width: min(var(--container), calc(100% - 36px));
  }

  .header-button {
    display: none;
  }

  .content-section {
    padding: 78px 0;
  }

  .hero-layout {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-content h1 {
    font-size: 39px;
  }

  .hero-tagline {
    font-size: 17px;
  }

  .storage-visual-card {
    min-height: 430px;
  }

  .industry-strip-content {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 23px;
    padding-bottom: 23px;
  }

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

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

  .register-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .register-action {
    align-items: flex-start;
  }

  .register-section::after {
    display: none;
  }

  .footer-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .brand-logo {
    width: 76px;
  }

  .brand-divider,
  .brand-text {
    display: none;
  }

  .hero-content h1 {
    font-size: 33px;
  }

  .hero-tagline {
    font-size: 16px;
  }

  .webinar-details {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-chip {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .storage-visual-card {
    min-height: 380px;
    border-radius: 20px;
  }

  .storage-stack {
    right: 7%;
    bottom: 38px;
    left: 7%;
  }

  .storage-layer {
    height: 60px;
  }

  .visual-orbit-one {
    width: 190px;
    height: 190px;
  }

  .visual-orbit-two {
    width: 270px;
    height: 270px;
  }

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

  .visual-label {
    font-size: 8px;
  }

  .summary-row {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .topic-button {
    grid-template-columns: 35px 1fr 30px;
    gap: 11px;
    padding: 20px 13px;
  }

  .topic-title {
    font-size: 15px;
  }

  .topic-panel p {
    padding-right: 16px;
    padding-left: 59px;
  }

  .register-content h2 {
    font-size: 31px;
  }
}


@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.registration-page {
  position: relative;
  display: flex;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  padding: 58px 24px;
  background: white;
   
}

.registration-grid {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(57, 97, 228, 0.11) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.11) 1px,
      transparent 1px
    );
  background-size: 54px 54px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 88%,
      transparent
    );
}

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

.registration-glow-one {
  top: -210px;
  left: -170px;
  width: 470px;
  height: 470px;
  background: rgba(15, 98, 254, 0.32);
}

.registration-glow-two {
  right: -180px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  background: rgba(8, 189, 186, 0.24);
}


.registration-shell {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(var(--page-width), 100%);
  min-height: 730px;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(480px, 1.08fr);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: white;
  box-shadow:
    0 45px 110px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
}


.event-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid rgba(8, 189, 186, 0.28);
  border-radius: 999px;
  background: rgba(8, 189, 186, 0.09);
  color: #7de2df;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.event-label::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--ibm-cyan);
  box-shadow: 0 0 13px var(--ibm-cyan);
  animation: livePulse 1.8s ease-in-out infinite;
}

.registration-information h1 {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0;
  font-size: clamp(31px, 3.1vw, 45px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.registration-information h1 span {
  display: block;
  margin-top: 9px;
  background:
    linear-gradient(
      90deg,
      #0a2d68,
      #070808
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.event-tagline {
  position: relative;
  z-index: 2;
  max-width: 570px;
  margin: 23px 0 31px;
  color: var(--text-light);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
}

.event-points {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.event-point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.event-point:hover {
  transform: translateX(7px);
  border-color: rgba(8, 189, 186, 0.28);
  background: rgba(255, 255, 255, 0.075);
}

.event-point-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background:
    linear-gradient(
      135deg,
      rgba(15, 98, 254, 0.7),
      rgba(8, 189, 186, 0.65)
    );
  color: var(--white);
}

.event-point-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.event-point strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 600;
}

.event-point p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12.5px;
  line-height: 1.55;
}


.registration-form-column {
  display: flex;
  align-items: center;
  padding: 38px;
  background: white;
}

.registration-form-card {
  width: 100%;
  padding: 38px;
  border: 1px solid var(--border-light);
  border-radius: 24px;
  background: white;
    
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

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

.form-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: #66d9d6;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.form-heading p {
  margin: 9px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}


.registration-form {
  width: 100%;
}

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

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

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: #dbe5f8;
  font-size: 12.5px;
  font-weight: 600;
}

.form-field label em {
  margin-left: 2px;
  color: var(--error);
  font-style: normal;
}

.input-wrapper {
  position: relative;
}

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

.input-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-field input {
  width: 100%;
  height: 57px;
  padding: 0 17px 0 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  outline: none;
  border-radius: 14px;
  background: rgba(0, 17, 65, 0.52);
  color: var(--white);
  font-size: 14px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.form-field input::placeholder {
  color: #7588ae;
}

.form-field input:hover {
  border-color: rgba(8, 189, 186, 0.34);
}

.form-field input:focus {
  border-color: var(--ibm-cyan);
  background: rgba(0, 29, 108, 0.78);
  box-shadow:
    0 0 0 4px rgba(8, 189, 186, 0.1),
    0 14px 30px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.input-wrapper:focus-within .input-icon {
  color: var(--white);
}


.submit-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 59px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  margin-top: 27px;
  padding: 15px 24px;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(
      105deg,
      var(--ibm-blue-70),
      var(--ibm-blue-60) 55%,
      var(--ibm-cyan-dark)
    );
  box-shadow:
    0 19px 42px rgba(15, 98, 254, 0.28);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.submit-button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  z-index: -1;
  width: 28%;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent
    );
  transform: skewX(-18deg);
  transition: left 0.7s ease;
}

.submit-button:hover {
  transform: translateY(-4px);
  box-shadow:
    0 25px 52px rgba(15, 98, 254, 0.4);
  filter: brightness(1.08);
}

.submit-button:hover::before {
  left: 115%;
}

.submit-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

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

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


/* =========================================================
   ANIMATIONS
========================================================= */

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

  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

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

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

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

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

@keyframes shieldGlow {
  0%,
  100% {
    box-shadow:
      0 0 45px rgba(8, 189, 186, 0.3);
  }

  50% {
    box-shadow:
      0 0 70px rgba(8, 189, 186, 0.5);
  }
}

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

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


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {
  .registration-page {
    align-items: flex-start;
  }

  .registration-shell {
    grid-template-columns: 1fr;
  }

  .registration-information {
    min-height: 720px;
  }

  .registration-form-column {
    padding: 38px;
  }
}

@media (max-width: 720px) {
  .registration-page {
    padding: 25px 15px;
  }

  .registration-shell {
    border-radius: 22px;
  }

  .registration-information {
    min-height: auto;
    padding: 38px 26px;
  }

  .registration-information h1 {
    font-size: 34px;
  }

  .registration-visual {
    margin-top: 42px;
  }

  .registration-form-column {
    padding: 20px;
  }

  .registration-form-card {
    padding: 29px 23px;
    border-radius: 19px;
  }

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

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

@media (max-width: 480px) {
  .registration-page {
    padding: 0;
  }

  .registration-shell {
    border: 0;
    border-radius: 0;
  }

  .registration-information {
    padding: 32px 19px;
  }

  .registration-information h1 {
    font-size: 30px;
  }

  .event-tagline {
    font-size: 15px;
  }

  .event-point {
    grid-template-columns: 40px 1fr;
    padding: 13px;
  }

  .event-point-icon {
    width: 40px;
    height: 40px;
  }

  .registration-visual {
    width: 225px;
    height: 190px;
  }

  .visual-ring-three {
    width: 195px;
    height: 195px;
  }

  .registration-form-column {
    padding: 16px;
  }

  .registration-form-card {
    padding: 25px 17px;
  }

  .form-heading h2 {
    font-size: 29px;
  }

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

  .submit-button {
    min-height: 56px;
  }
}


@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;
  }
}

/* =========================================================
   FINAL PREMIUM UI OVERRIDES
   Add this entire block at the END of your current CSS file
========================================================= */


/* =========================================================
   1. HOME / HERO
   REMOVE RIGHT VISUAL AND CREATE A PREMIUM FULL-WIDTH HERO
========================================================= */

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: auto;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 98, 254, 0.1);
  background:
    radial-gradient(
      circle at 83% 22%,
      rgba(8, 189, 186, 0.14),
      transparent 24%
    ),
    radial-gradient(
      circle at 8% 12%,
      rgba(15, 98, 254, 0.13),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f4f8ff 0%,
      #ffffff 47%,
      #eef8ff 100%
    );
}

/* Hide the previous right-side server visual */
.hero-visual {
  display: none !important;
}

/* Full-width content layout */
.hero-layout {
  position: relative;
  z-index: 3;
  display: block;
  min-height: 650px;
  padding-top: 92px;
  padding-bottom: 92px;
}

/* Main premium content panel */
.hero-content {
  position: relative;
  z-index: 5;
  width: min(970px, 100%);
  padding: 52px 56px;
  overflow: hidden;
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(245, 249, 255, 0.82)
    );
  box-shadow:
    0 35px 90px rgba(22, 58, 115, 0.12);
  backdrop-filter: blur(18px);
}

/* Thin premium top accent */
.hero-content::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background:
    linear-gradient(
      90deg,
      var(--ibm-blue-80),
      var(--ibm-blue-60),
      var(--ibm-cyan)
    );
}

/* Decorative glow inside content card */
.hero-content::after {
  position: absolute;
  top: -150px;
  right: -130px;
  z-index: -1;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(
      circle,
      rgba(15, 98, 254, 0.15),
      rgba(8, 189, 186, 0.06) 48%,
      transparent 72%
    );
}

/* Larger content width now that visual is removed */
.hero-content h1 {
  max-width: 880px;
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.07;
}

.hero-description {
  max-width: 800px;
}

/* Details sit neatly inside one premium strip */
.webinar-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  gap: 14px;
}

.detail-chip {
  min-width: 0;
  border-color: rgba(15, 98, 254, 0.13);
  background: rgba(255, 255, 255, 0.82);
}

/* Animated digital orbit on right side of hero */
.hero-section::before {
  position: absolute;
  top: 50%;
  right: -70px;
  z-index: 1;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(15, 98, 254, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 65px rgba(15, 98, 254, 0.025),
    0 0 0 130px rgba(8, 189, 186, 0.018);
  transform: translateY(-50%);
  animation: premiumHeroOrbit 13s ease-in-out infinite;
}

/* Decorative dotted technology sphere */
.hero-section::after {
  position: absolute;
  top: 50%;
  right: 60px;
  z-index: 1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  content: "";
  opacity: 0.46;
  background-image:
    radial-gradient(
      circle,
      rgba(15, 98, 254, 0.65) 2px,
      transparent 2.5px
    );
  background-size: 18px 18px;
  mask-image:
    radial-gradient(
      circle,
      #000 30%,
      transparent 72%
    );
  transform: translateY(-50%);
  animation: premiumHeroDots 22s linear infinite;
}

@keyframes premiumHeroOrbit {
  0%,
  100% {
    opacity: 0.65;
    transform: translateY(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.06);
  }
}

@keyframes premiumHeroDots {
  from {
    transform: translateY(-50%) rotate(0deg);
  }

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


.why-section {
  padding-top: 7%;
  padding-bottom: 75px;
  background:
    radial-gradient(
      circle at 92% 9%,
      rgba(8, 189, 186, 0.13),
      transparent 27%
    ),
    radial-gradient(
      circle at 6% 88%,
      rgba(15, 98, 254, 0.13),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #edf4ff 0%,
      #ffffff 49%,
      #edfbfb 100%
    );
}

/* Entire Why Attend content in one premium container */
.why-section > .site-container {
  position: relative;
  z-index: 3;
  padding: 56px;
  overflow: hidden;
  border: 1px solid rgba(15, 98, 254, 0.13);
  border-radius: 34px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.94),
      rgba(245, 249, 255, 0.86)
    );
  box-shadow:
    0 38px 90px rgba(20, 54, 110, 0.12);
  backdrop-filter: blur(18px);
}

/* Accent line across premium container */
.why-section > .site-container::before {
  position: absolute;
  top: 0;
  right: 7%;
  left: 7%;
  height: 4px;
  border-radius: 0 0 6px 6px;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--ibm-blue-60),
      var(--ibm-cyan),
      transparent
    );
}

/* Decorative circular shape */
.why-section > .site-container::after {
  position: absolute;
  top: -160px;
  right: -150px;
  z-index: -1;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(15, 98, 254, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 45px rgba(15, 98, 254, 0.018),
    0 0 0 90px rgba(8, 189, 186, 0.012);
}

.why-section-heading {
  margin-bottom: 48px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(15, 98, 254, 0.1);
}

/* Cards receive deeper premium styling */
.benefits-grid {
  gap: 22px;
}

.benefit-card {
  min-height: 160px;
  padding: 29px;
  border: 1px solid rgba(15, 98, 254, 0.11);
  border-radius: 24px;
  background:
    linear-gradient(
      150deg,
      #ffffff 0%,
      #f7faff 68%,
      #eff8ff 100%
    );
  box-shadow:
    0 16px 42px rgba(26, 58, 110, 0.07);
}

/* Individual colour glow for cards */
.benefit-card:nth-child(2n)::after {
  background:
    radial-gradient(
      circle,
      rgba(8, 189, 186, 0.13),
      transparent 68%
    );
}

.benefit-card:nth-child(3n)::after {
  background:
    radial-gradient(
      circle,
      rgba(15, 98, 254, 0.13),
      transparent 68%
    );
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.012);
  border-color: rgba(15, 98, 254, 0.32);
  box-shadow:
    0 30px 68px rgba(21, 59, 125, 0.15);
}

.benefit-card-top {
  align-items: center;
}

.benefit-icon {
  width: 62px;
  height: 62px;
  border-radius: 19px;
}

.benefit-icon::after {
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(15, 98, 254, 0.13);
  border-radius: 24px;
  content: "";
}

.benefit-content h3 {
  font-size: 19px;
}

.benefit-content p {
  font-size: 14.5px;
}


.discussion-section {
  padding-top: 88px;
  padding-bottom: 78px;
  background:
    radial-gradient(
      circle at 94% 16%,
      rgba(8, 189, 186, 0.09),
      transparent 27%
    ),
    radial-gradient(
      circle at 5% 78%,
      rgba(15, 98, 254, 0.1),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #ffffff,
      #f3f7ff
    );
}

.discussion-layout {
  gap: 60px;
}

.topics-list {
  position: relative;
  padding: 16px;
  overflow: visible;
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(241, 247, 255, 0.9)
    );
  box-shadow:
    0 35px 85px rgba(21, 53, 108, 0.13);
}

/* Decorative glow behind right panel */
.topics-list::before {
  position: absolute;
  top: -45px;
  right: -45px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(
      circle,
      rgba(8, 189, 186, 0.17),
      transparent 68%
    );
  filter: blur(12px);
}

.topics-list::after {
  position: absolute;
  bottom: -55px;
  left: -55px;
  z-index: -1;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  content: "";
  background:
    radial-gradient(
      circle,
      rgba(15, 98, 254, 0.14),
      transparent 70%
    );
  filter: blur(15px);
}

/* Each accordion entry becomes a separated card */
.topic-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 98, 254, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 9px 25px rgba(25, 54, 102, 0.045);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.topic-item:last-child {
  margin-bottom: 0;
}

.topic-item:hover {
  transform: translateX(5px);
  border-color: rgba(15, 98, 254, 0.25);
  box-shadow:
    0 16px 34px rgba(24, 57, 115, 0.09);
}

.topic-item.is-open {
  border-color: rgba(15, 98, 254, 0.27);
  box-shadow:
    0 18px 40px rgba(15, 74, 160, 0.11);
}

.topic-button {
  min-height: 82px;
  grid-template-columns: 50px 1fr 38px;
  padding: 18px 20px;
}

/* Number styling */
.topic-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(15, 98, 254, 0.13);
  border-radius: 12px;
  background:
    linear-gradient(
      145deg,
      rgba(15, 98, 254, 0.09),
      rgba(8, 189, 186, 0.08)
    );
  color: var(--ibm-blue-70);
}

.topic-item.is-open .topic-number {
  border-color: transparent;
  background:
    linear-gradient(
      135deg,
      var(--ibm-blue-70),
      var(--ibm-blue-60)
    );
  color: #ffffff;
  box-shadow:
    0 10px 22px rgba(15, 98, 254, 0.2);
}

.topic-title {
  font-size: 16.5px;
  line-height: 1.45;
}

.topic-toggle {
  width: 35px;
  height: 35px;
  box-shadow:
    0 6px 16px rgba(18, 48, 98, 0.06);
}

.topic-panel {
  border-top: 1px solid rgba(8, 189, 186, 0.1);
  background:
    linear-gradient(
      100deg,
      #e7fbfb,
      #eef5ff
    );
}

.topic-panel p {
  padding-right: 28px;
  padding-left: 88px;
}


.register-section {
  position: relative;
  padding: 85px 0;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 82% 15%,
      rgba(8, 189, 186, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 86%,
      rgba(15, 98, 254, 0.1),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #f2f7ff,
      #ffffff 52%,
      #eefafa
    );
}

/* Remove previous dark decorative ring */
.register-section::after {
  top: -150px;
  right: -130px;
  width: 390px;
  height: 390px;
  border-color: rgba(15, 98, 254, 0.08);
  box-shadow:
    0 0 0 50px rgba(15, 98, 254, 0.018),
    0 0 0 100px rgba(8, 189, 186, 0.012);
  transform: none;
  animation: premiumRegisterRing 12s ease-in-out infinite;
}

.register-grid-pattern {
  opacity: 0.2;
  background-image:
    linear-gradient(
      rgba(15, 98, 254, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(15, 98, 254, 0.07) 1px,
      transparent 1px
    );
}

.register-glow {
  background: rgba(15, 98, 254, 0.12);
}

.register-container {
  display: flex;
  max-width: 860px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.register-content {
  max-width: 760px;
}

.register-content h2 {
  color: var(--ink);
}

.register-content h2 span {
  color: var(--ibm-blue-70);
}

.register-content p {
  max-width: 690px;
  margin-right: auto;
  margin-left: auto;
  color: var(--grey-70);
}

.register-section .section-eyebrow-light {
  color: var(--ibm-blue-70);
}

.register-action {
  align-items: center;
}

/* If the registration form is placed inside register-section */
.register-section .registration-form-card,
.register-section .register-form-card,
.register-section form {
  width: min(720px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.register-section .registration-form-card,
.register-section .register-form-card {
  padding: 42px;
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 32px 80px rgba(24, 55, 110, 0.13);
  text-align: left;
  backdrop-filter: blur(18px);
}

.register-section .register-format {
  color: var(--grey-60);
}

.register-section .button-light {
  background:
    linear-gradient(
      110deg,
      var(--ibm-blue-70),
      var(--ibm-blue-60)
    );
  color: #ffffff;
  box-shadow:
    0 18px 38px rgba(15, 98, 254, 0.23);
}


/* =========================================================
   STANDALONE REGISTRATION FORM PAGE
   CENTRE FORM AND REMOVE LEFT INFORMATION PANEL
========================================================= */

.registration-page {
  display: flex;
  min-height: auto;
  align-items: center;
  justify-content: center;
  padding: 100px 24px;
  color: var(--ink);
  background:
    radial-gradient(
      circle at 88% 15%,
      rgba(8, 189, 186, 0.11),
      transparent 27%
    ),
    radial-gradient(
      circle at 8% 86%,
      rgba(15, 98, 254, 0.11),
      transparent 29%
    ),
    linear-gradient(
      145deg,
      #edf4ff,
      #ffffff 50%,
      #edfafa
    );
}

/* Hide the left information panel */
.registration-information {
  display: none !important;
}

/* Single centred form shell */
.registration-shell {
  display: block;
  width: min(780px, 100%);
  min-height: 0;
  overflow: visible;
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 40px 100px rgba(20, 52, 106, 0.15);
  backdrop-filter: blur(20px);
}

.registration-form-column {
  display: block;
  padding: 18px;
  background: transparent;
}

.registration-form-card {
  width: 100%;
  padding: 44px;
  border: 1px solid rgba(15, 98, 254, 0.11);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f7faff
    );
  box-shadow:
    0 18px 50px rgba(25, 54, 105, 0.08);
  color: var(--ink);
}

.form-heading {
  max-width: 580px;
  margin: 0 auto 34px;
  text-align: center;
}

.form-eyebrow {
  color: var(--ibm-blue-70);
}

.form-heading h2 {
  color: var(--ink);
}

.form-heading p {
  color: var(--grey-60);
}

.form-field label {
  color: var(--grey-80);
}

/* Light form inputs */
.form-field input {
  border: 1px solid rgba(15, 98, 254, 0.15);
  background: #f5f8ff;
  color: var(--ink);
}

.form-field input::placeholder {
  color: #8a96aa;
}

.form-field input:hover {
  border-color: rgba(15, 98, 254, 0.35);
  background: #ffffff;
}

.form-field input:focus {
  border-color: var(--ibm-blue-60);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(15, 98, 254, 0.09),
    0 12px 28px rgba(20, 50, 102, 0.08);
}

.input-icon {
  color: var(--ibm-blue-60);
}

.input-wrapper:focus-within .input-icon {
  color: var(--ibm-cyan-dark);
}

.submit-button {
  max-width: 100%;
  background:
    linear-gradient(
      105deg,
      var(--ibm-blue-80),
      var(--ibm-blue-60) 58%,
      var(--ibm-cyan-dark)
    );
}

@keyframes premiumRegisterRing {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }

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


/* =========================================================
   RESPONSIVE OVERRIDES
========================================================= */

@media (max-width: 1050px) {
  .hero-layout {
    min-height: auto;
  }

  .hero-content {
    width: 100%;
  }

  .hero-section::before {
    right: -240px;
  }

  .hero-section::after {
    right: -60px;
  }

  .why-section > .site-container {
    padding: 42px;
  }

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

  .topics-list {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .hero-layout {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 38px 30px;
    border-radius: 24px;
  }

  .hero-content h1 {
    font-size: 39px;
  }

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

  .hero-section::before,
  .hero-section::after {
    opacity: 0.35;
  }

  .why-section {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .why-section > .site-container {
    padding: 34px 25px;
    border-radius: 25px;
  }

  .why-section-heading {
    padding-bottom: 28px;
  }

  .topics-list {
    padding: 11px;
    border-radius: 23px;
  }

  .topic-button {
    grid-template-columns: 43px 1fr 34px;
    gap: 12px;
    padding: 17px 14px;
  }

  .topic-title {
    font-size: 15px;
  }

  .topic-panel p {
    padding-right: 18px;
    padding-left: 69px;
  }

  .register-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .registration-page {
    padding: 55px 16px;
  }

  .registration-shell {
    border-radius: 24px;
  }

  .registration-form-card {
    padding: 34px 25px;
  }
}

@media (max-width: 520px) {
  .hero-content {
    padding: 32px 21px;
  }

  .hero-content h1 {
    font-size: 33px;
  }

  .why-section > .site-container {
    padding: 29px 18px;
  }

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

  .topic-number {
    width: 37px;
    height: 37px;
  }

  .registration-page {
    padding: 35px 12px;
  }

  .registration-form-column {
    padding: 10px;
  }

  .registration-form-card {
    padding: 29px 18px;
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding-top: 55px;
  padding-bottom: 65px;
  border-top: 1px solid rgba(221, 225, 230, 0.8);
  background:
    radial-gradient(
      circle at 90% 12%,
      rgba(8, 189, 186, 0.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 5% 88%,
      rgba(15, 98, 254, 0.11),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #f2f7ff 0%,
      #ffffff 50%,
      #effafa 100%
    );
}

.contact-background-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(15, 98, 254, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(15, 98, 254, 0.07) 1px,
      transparent 1px
    );
  background-size: 58px 58px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      #000 15%,
      #000 85%,
      transparent
    );
}

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

.contact-glow-one {
  top: -170px;
  right: -130px;
  width: 430px;
  height: 430px;
  background: rgba(8, 189, 186, 0.16);
}

.contact-glow-two {
  bottom: -200px;
  left: -140px;
  width: 470px;
  height: 470px;
  background: rgba(15, 98, 254, 0.15);
}


.contact-heading {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto 60px;
  text-align: center;
}

.contact-heading .section-eyebrow {
  justify-content: center;
}

.contact-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.038em;
}

.contact-heading h2 span {
  display: block;
  margin-top: 7px;
  background:
    linear-gradient(
      90deg,
      var(--ibm-blue-80),
      var(--ibm-blue-60),
      var(--ibm-cyan-dark)
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-heading p {
  max-width: 700px;
  margin: 18px auto 0;
  color: black;
  font-size: 16px;
  line-height: 1.75;
}


.contact-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns:
    minmax(300px, 0.82fr)
    minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
}

.contact-information {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(15, 98, 254, 0.15);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(8, 189, 186, 0.19),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      var(--ibm-blue-100),
      var(--ibm-blue-80) 62%,
      var(--ibm-blue-70)
    );
  box-shadow:
    0 34px 85px rgba(0, 30, 90, 0.22);
  color: #ffffff;
  isolation: isolate;
}

.contact-information::before {
  position: absolute;
  right: -150px;
  bottom: -170px;
  z-index: -1;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.018),
    0 0 0 96px rgba(8, 189, 186, 0.013);
}

.contact-information::after {
  position: absolute;
  top: -45%;
  left: -45%;
  z-index: -1;
  width: 32%;
  height: 190%;
  content: "";
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
  transform: rotate(20deg);
  animation: contactShine 7s ease-in-out infinite;
}

.contact-information-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-header-icon {
  display: grid;
  width: 56px;
  height: 56px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  background:
    linear-gradient(
      135deg,
      rgba(15, 98, 254, 0.88),
      rgba(8, 189, 186, 0.76)
    );
  box-shadow:
    0 15px 30px rgba(8, 189, 186, 0.18);
}

.contact-header-icon svg {
  width: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-information-header small {
  display: block;
  margin-bottom: 3px;
  color: #91deda;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-information-header h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.contact-information-description {
  margin: 25px 0 26px;
  color: rgba(226, 237, 255, 0.78);
  font-size: 14.5px;
  line-height: 1.75;
}
.contact-details-list {
  display: grid;
  gap: 13px;
}

.contact-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr 34px;
  gap: 13px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-detail-card:hover {
  transform: translateX(6px);
  border-color: rgba(8, 189, 186, 0.34);
  background: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-detail-static {
  grid-template-columns: 46px 1fr;
}

.contact-detail-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.1);
  color: #75e0dc;
}

.contact-detail-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-content {
  min-width: 0;
}

.contact-detail-content small {
  display: block;
  margin-bottom: 2px;
  color: #f8fafd;
  font-family: "IBM Plex Mono", monospace;
  font-size: 20px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-detail-content strong {
  display: block;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
}

.contact-detail-arrow {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.contact-detail-arrow svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-card:hover .contact-detail-arrow {
  background: var(--ibm-cyan);
  transform: translateX(3px);
}

.contact-support-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-support-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--ibm-cyan);
  box-shadow:
    0 0 14px var(--ibm-cyan);
  animation: contactDotPulse 1.8s ease-in-out infinite;
}

.contact-support-note p {
  margin: 0;
  color: #a8bad8;
  font-size: 16px;
}


.contact-form-wrapper {
  min-width: 0;
}

.contact-form-card {
  height: 100%;
  padding: 40px;
  border: 1px solid rgba(15, 98, 254, 0.13);
  border-radius: 28px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(246, 249, 255, 0.94)
    );
  box-shadow:
    0 34px 85px rgba(20, 54, 110, 0.12);
  backdrop-filter: blur(18px);
}

.contact-form-heading {
  margin-bottom: 29px;
}

.contact-form-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ibm-blue-70);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.contact-form-heading p {
  margin: 9px 0 0;
  color: Black;
  font-size: 17px;
}


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

.contact-form-field {
  min-width: 0;
}

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

.contact-form-field label {
  display: block;
  margin-bottom: 8px;
  color: Black;
  font-size: 14px;
  font-weight: 600;
}

.contact-form-field label em {
  margin-left: 2px;
  color: #da1e28;
  font-style: normal;
}

.contact-input-wrapper {
  position: relative;
}

.contact-input-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 2;
  display: grid;
  width: 21px;
  place-items: center;
  color: var(--ibm-blue-60);
  pointer-events: none;
  transform: translateY(-50%);
  transition: color 0.25s ease;
}

.contact-input-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid rgba(15, 98, 254, 0.14);
  outline: none;
  border-radius: 14px;
  background: #f4f8ff;
  color: var(--ink);
  font-size: 14px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.contact-form-field input {
  height: 56px;
  padding: 0 16px 0 49px;
}

.contact-form-field textarea {
  min-height: 145px;
  resize: vertical;
  padding: 16px 16px 16px 49px;
  line-height: 1.6;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: #8996aa;
}

.contact-form-field input:hover,
.contact-form-field textarea:hover {
  border-color: rgba(15, 98, 254, 0.32);
  background: #ffffff;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--ibm-blue-60);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(15, 98, 254, 0.08),
    0 13px 28px rgba(20, 51, 105, 0.08);
  transform: translateY(-2px);
}

.contact-input-wrapper:focus-within .contact-input-icon {
  color: var(--ibm-cyan-dark);
}

.contact-textarea-icon {
  top: 18px;
  transform: none;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit-button {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  overflow: hidden;
  margin-top: 25px;
  padding: 15px 24px;
  border: 0;
  border-radius: 14px;
  background:
    linear-gradient(
      105deg,
      var(--ibm-blue-80),
      var(--ibm-blue-60) 58%,
      var(--ibm-cyan-dark)
    );
  box-shadow:
    0 18px 40px rgba(15, 98, 254, 0.24);
  color: #ffffff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  isolation: isolate;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.contact-submit-button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40%;
  z-index: -1;
  width: 28%;
  content: "";
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent
    );
  transform: skewX(-18deg);
  transition: left 0.7s ease;
}

.contact-submit-button:hover {
  transform: translateY(-4px);
  box-shadow:
    0 25px 52px rgba(15, 98, 254, 0.36);
  filter: brightness(1.06);
}

.contact-submit-button:hover::before {
  left: 115%;
}

.contact-submit-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

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


/* =========================================================
   CONTACT ANIMATIONS
========================================================= */

@keyframes contactDotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

@keyframes contactShine {
  0%,
  65% {
    left: -45%;
    opacity: 0;
  }

  75% {
    opacity: 1;
  }

  100% {
    left: 130%;
    opacity: 0;
  }
}


/* =========================================================
   RESPONSIVE
========================================================= */

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

  .contact-information,
  .contact-form-card {
    max-width: 820px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .contact-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .contact-heading {
    margin-bottom: 40px;
  }

  .contact-information {
    padding: 29px 23px;
    border-radius: 22px;
  }

  .contact-form-card {
    padding: 30px 23px;
    border-radius: 22px;
  }

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

  .contact-form-field-full {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .contact-heading h2 {
    font-size: 31px;
  }

  .contact-information {
    padding: 25px 18px;
  }

  .contact-information-header {
    align-items: flex-start;
  }

  .contact-header-icon {
    width: 49px;
    height: 49px;
  }

  .contact-information-header h3 {
    font-size: 19px;
  }

  .contact-detail-card {
    grid-template-columns: 42px 1fr 30px;
    padding: 13px;
  }

  .contact-detail-static {
    grid-template-columns: 42px 1fr;
  }

  .contact-detail-icon {
    width: 42px;
    height: 42px;
  }

  .contact-detail-content strong {
    font-size: 12px;
  }

  .contact-form-card {
    padding: 27px 17px;
  }

  .contact-form-heading h3 {
    font-size: 25px;
  }

  .contact-form-field input {
    height: 54px;
  }
}


/* =========================================================
   FINAL BANNER-LED THEME OVERRIDES
   Navbar fixed above banner, combined Contact + Registration
========================================================= */

:root {
  --theme-navy: #001141;
  --theme-blue: #0f62fe;
  --theme-blue-deep: #002d9c;
  --theme-cyan: #08bdba;
  --theme-surface: #f4f8ff;
  --theme-surface-alt: #edf7ff;
}

/* Navbar no longer overlaps the banner */
.site-header {
  position: sticky !important;
  top: 0;
  right: auto;
  left: auto;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid rgba(15, 98, 254, 0.12);
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 12px 34px rgba(0, 17, 65, 0.08);
  backdrop-filter: blur(18px);
}

.site-header .brand-text,
.site-header .site-navigation a {
  color: var(--grey-80) !important;
}

.site-header .brand-divider {
  background: var(--grey-20) !important;
}

.site-header .brand-logo {
  filter: none !important;
}

.site-header .menu-toggle {
  border-color: var(--grey-20) !important;
  background: #ffffff !important;
}

.site-header .menu-toggle span {
  background: var(--ink) !important;
}

.header-accent {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--theme-navy),
    var(--theme-blue) 58%,
    var(--theme-cyan)
  );
}

.home-banner {
  min-height: clamp(430px, 58vw, 680px);
  background: var(--theme-navy);
}

.home-banner-image {
  object-fit: cover;
  object-position: center;
}

.home-banner-overlay {
  background:
    linear-gradient(90deg, rgba(0, 17, 65, 0.1), transparent 55%),
    linear-gradient(180deg, transparent 58%, rgba(0, 17, 65, 0.34) 100%);
}

/* Consistent banner-led theme across sections */
.about-section,
.why-section,
.discussion-section,
.contact-register-section {
  background:
    radial-gradient(circle at 92% 12%, rgba(8, 189, 186, 0.09), transparent 27%),
    radial-gradient(circle at 6% 88%, rgba(15, 98, 254, 0.1), transparent 29%),
    linear-gradient(145deg, #f3f7ff 0%, #ffffff 50%, #eefafa 100%);
}

.section-eyebrow {
  color: var(--theme-blue-deep);
}

.section-eyebrow::before {
  background: linear-gradient(90deg, var(--theme-cyan), var(--theme-blue));
}

.about-content h2 span,
.why-heading-content h2 span,
.discussion-intro h2 span,
.contact-heading h2 span {
  color: var(--theme-blue-deep);
}

.contact-register-section {
  position: relative;
  overflow: hidden;
  padding-top: 85px;
  padding-bottom: 50px;
  border-top: 1px solid rgba(15, 98, 254, 0.1);
}

.section-anchor {
  position: absolute;
  top: -95px;
  left: 0;
  width: 1px;
  height: 1px;
}

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

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

.contact-register-section .contact-information {
  margin-top: 200px;
  height: 100%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 12%, rgba(8, 189, 186, 0.2), transparent 30%),
    linear-gradient(145deg, var(--theme-navy), var(--theme-blue-deep) 65%, #0043ce);
  box-shadow: 0 34px 85px rgba(0, 31, 93, 0.23);
}

.contact-register-wrapper {
  min-width: 0;
}

.contact-registration-card {
  height: 100%;
  padding: 34px;
  border: 1px solid rgba(15, 98, 254, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.99), rgba(245,249,255,0.96));
  box-shadow: 0 34px 85px rgba(20, 54, 110, 0.13);
}

.contact-registration-card .form-heading {
  margin-bottom: 28px;
  text-align: left;
}

.contact-registration-card .form-eyebrow {
  color: var(--theme-blue-deep);
}

.contact-registration-card .form-heading h3 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 29px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.contact-registration-card .form-heading p {
  margin: 9px 0 0;
  color: var(--grey-60);
  font-size: 14px;
}

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

.contact-registration-card .form-field-full {
  grid-column: 1 / -1;
}

.contact-registration-card .form-field label {
  color: var(--grey-80);
}

.contact-registration-card .form-field input {
  border: 1px solid rgba(15, 98, 254, 0.14);
  background: #f4f8ff;
  color: var(--ink);
}

.contact-registration-card .form-field input::placeholder {
  color: #8793a8;
}

.contact-registration-card .form-field input:focus {
  border-color: var(--theme-blue);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(15, 98, 254, 0.08),
    0 13px 28px rgba(20, 51, 105, 0.08);
}

.contact-registration-card .input-icon {
  color: var(--theme-blue);
}

.contact-registration-card .submit-button {
  background:
    linear-gradient(
      105deg,
      var(--theme-blue-deep),
      var(--theme-blue) 58%,
      var(--theme-cyan)
    );
  box-shadow: 0 18px 40px rgba(15, 98, 254, 0.25);
}

/* Remove old standalone registration layout if any remnants remain */
main > .registration-shell,
.registration-page {
  display: none !important;
}

/* Banner and card accents */
.about-image-card,
.why-section > .site-container,
.topics-list,
.contact-registration-card {
  border-color: rgba(15, 98, 254, 0.14);
}

.benefit-icon,
.topic-item.is-open .topic-number,
.contact-header-icon {
  background: linear-gradient(135deg, var(--theme-blue-deep), var(--theme-blue));
}

.benefit-card:nth-child(2n) .benefit-icon {
  background: linear-gradient(135deg, #007d79, var(--theme-cyan));
}

/* Mobile navigation remains readable */
@media (max-width: 1100px) {
  .site-navigation {
    top: 82px;
    background: rgba(255, 255, 255, 0.99) !important;
  }

  .site-navigation a {
    color: var(--grey-80) !important;
  }
}

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

  .contact-register-section .contact-information,
  .contact-registration-card {
    max-width: 820px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .home-banner {
    min-height: 470px;
  }

  .contact-register-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .contact-registration-card {
    padding: 30px 23px;
    border-radius: 22px;
  }

  .contact-registration-card .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-registration-card .form-field-full {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .site-container {
    width: min(var(--container), calc(100% - 30px));
  }

  .home-banner {
    min-height: 420px;
  }

  .contact-registration-card {
    padding: 27px 17px;
  }

  .contact-registration-card .form-heading h3 {
    font-size: 25px;
  }
}

.ibm-discussion-section {
    --ibm-blue: #0f62fe;
    --ibm-cyan: #33b1ff;
    --ibm-dark: #001141;
    --ibm-dark-two: #001d6c;
    --ibm-text: #161616;
    --ibm-muted: #5b6573;

    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(
            circle at 8% 15%,
            rgba(51, 177, 255, 0.12),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 88%,
            rgba(15, 98, 254, 0.1),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f5faff 55%,
            #edf5ff 100%
        );
    isolation: isolate;
}


/* =========================================================
   COMPACT SIZE OVERRIDES
   Why Attend, Contact/Register and Footer Logo
========================================================= */

/* Why Attend: tighter section and smaller content container */
.why-section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.why-section > .site-container {
  width: min(1080px, calc(100% - 48px));
  padding: 34px 36px;
  border-radius: 26px;
}

.why-section-heading {
  grid-template-columns: minmax(0, 1.2fr) minmax(190px, 0.55fr);
  gap: 38px;
  margin-bottom: 30px;
  padding-bottom: 26px;
}

.why-heading-content {
  max-width: 610px;
}

.why-heading-content h2 {
  font-size: clamp(29px, 3vw, 38px);
}

.why-heading-content p {
  max-width: 590px;
  margin-top: 13px;
  font-size: 14.5px;
  line-height: 1.65;
}

.why-heading-visual {
  width: min(205px, 100%);
}

.why-visual-core {
  width: 78px;
  height: 78px;
}

.why-visual-core svg {
  width: 32px;
}

.why-visual-node {
  padding: 5px 8px;
  font-size: 8px;
}

.benefits-grid {
  gap: 15px;
}

.benefit-card {
  min-height: 175px;
  padding: 18px;
  border-radius: 18px;
}

.benefit-icon {
  width: 43px;
  height: 43px;
  border-radius: 13px;
}

.benefit-icon svg {
  width: 21px;
}

.benefit-number {
  font-size: 20px;
}

.benefit-content {
  margin-top: 17px;
}

.benefit-content h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.benefit-content p {
  font-size: 15px;
  line-height: 1.55;
}

.benefit-arrow {
  display: none;
}


/* Contact + Registration: smaller outer container */
.contact-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-section > .site-container {
  width: min(1060px, calc(100% - 48px));
}

.contact-heading {
  max-width: 650px;
  margin-bottom: 30px;
}

.contact-heading h2 {
  font-size: clamp(29px, 3vw, 38px);
}

.contact-heading p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  align-items: start;
}

.contact-information {
  padding: 20px;
  border-radius: 22px;
}

.contact-header-icon {
  width: 47px;
  height: 47px;
  border-radius: 13px;
}

.contact-header-icon svg {
  width: 22px;
}

.contact-information-description {
  margin: 18px 0 20px;
  font-size: 15px;
  line-height: 1.6;
}

.contact-details-list {
  gap: 13px;
}

.contact-detail-card {
  grid-template-columns: 30px 1fr 28px;
  gap: 10px;
  padding: 12px;
  border-radius: 13px;
}

.contact-detail-static {
  grid-template-columns: 40px 1fr;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.contact-detail-icon svg {
  width: 19px;
}

.contact-detail-content strong {
  font-size: 15px;
}

.contact-support-note {
  margin-top: 18px;
  padding-top: 15px;
}

.contact-registration-card,
.registration-form-card {
  padding: 28px;
  border-radius: 22px;
}

.form-heading {
  margin-bottom: 22px;
}

.form-heading h3 {
  font-size: 26px;
}

.form-heading p {
  margin-top: 6px;
  font-size: 13px;
}

.form-grid {
  gap: 15px 14px;
}

.form-field label {
  margin-bottom: 6px;
  font-size: 12px;
}

.form-field input {
  height: 50px;
  border-radius: 12px;
  font-size: 13px;
}

.submit-button {
  min-height: 52px;
  margin-top: 20px;
}

.footer-observenow-logo {
  width: 175px;
  height: auto;
  object-fit: contain;
}

.site-footer .footer-brand {
  display: inline-flex;
  align-items: center;
}

@media (max-width: 1050px) {
  .why-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-heading-visual {
    width: 180px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-information,
  .contact-register-wrapper {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .why-section > .site-container,
  .contact-section > .site-container {
    width: min(100% - 28px, 100%);
  }

  .why-section > .site-container {
    padding: 28px 20px;
  }

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

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

  .contact-information,
  .contact-registration-card,
  .registration-form-card {
    padding: 22px 18px;
  }

  .footer-observenow-logo {
    width: 145px;
  }
}
/* =========================================================
   CONTACT + REGISTRATION — FINAL CLEAN LAYOUT
========================================================= */

.contact-register-section {
  position: relative;
  overflow: hidden;
  padding: 70px 0 50px;
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(8, 189, 186, 0.15),
      transparent 28%
    ),
    radial-gradient(
      circle at 3% 95%,
      rgba(15, 98, 254, 0.12),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #f4f8ff 0%,
      #ffffff 48%,
      #effafa 100%
    );
}

.contact-register-section > .site-container {
  width: min(1000px, calc(100% - 48px));
}


.contact-heading {
  max-width: 700px;
  margin: 0 auto 30px;
  text-align: center;
}

.contact-heading .section-eyebrow {
  justify-content: center;
  margin-bottom: 13px;
  font-size: 23px;
  letter-spacing: 0.11em;
}

.contact-heading .section-eyebrow::before {
  width: 22px;
  height: 3px;
}

.contact-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.contact-heading h2 span {
  color: var(--ibm-blue-70);
}

.contact-heading p {
  max-width: 590px;
  margin: 11px auto 0;
  color: black;
  font-size: 14px;
  line-height: 1.6;
}


.contact-layout {
  display: grid;
  grid-template-columns: 275px minmax(0, 560px);
  gap: 80px;
  align-items: start;
  justify-content: center;
}


.contact-information {
  position: relative;
  align-self: start;
  width: 100%;
  height: fit-content !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(15, 98, 254, 0.3),
      transparent 42%
    ),
    linear-gradient(
      155deg,
      #001d6c 0%,
      #0033a8 100%
    );
  box-shadow:
    0 20px 48px rgba(0, 38, 120, 0.2);
  color: #ffffff;
}

.contact-information::before,
.contact-information::after {
  display: none !important;
}


.contact-information-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
}

.contact-header-icon {
  display: grid;
  width: 42px;
  height: 50px;
  flex: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 11px;
  background:
    linear-gradient(
      135deg,
      var(--ibm-blue-60),
      var(--ibm-cyan-dark)
    );
}

.contact-header-icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-information-header small {
  display: block;
  margin-bottom: 1px;
  color: #89d8d5;
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-information-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}


.contact-information-description {
  display: none !important;
}


/* Contact details */

.contact-details-list {
  display: grid;
  gap: 9px;
}

.contact-detail-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 24px;
  gap: 9px;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: none;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.contact-detail-card:hover {
  transform: translateX(3px);
  border-color: rgba(8, 189, 186, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.contact-detail-static {
  grid-template-columns: 34px minmax(0, 1fr);
}

.contact-detail-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: #78dfdc;
}

.contact-detail-icon svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-content {
  min-width: 0;
}

.contact-detail-content small {
  display: block;
  margin-bottom: 1px;
  color: #95a9cc;
  font-family: "IBM Plex Mono", monospace;
  font-size: 6.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail-content strong {
  display: block;
  overflow-wrap: anywhere;
  color: #ffffff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

.contact-detail-arrow {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: #ffffff;
}

.contact-detail-arrow svg {
  width: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-support-note {
  display: none !important;
}


.contact-register-wrapper {
  width: 100%;
  min-width: 0;
}

.contact-registration-card,
.registration-form-card {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  padding: 26px 28px;
  border: 1px solid rgba(15, 98, 254, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f7faff
    );
  box-shadow:
    0 22px 55px rgba(20, 55, 115, 0.12);
}

.form-heading {
  margin-bottom: 40px;
  text-align: left;
}

.form-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--ibm-blue-70);
  font-family: "IBM Plex Mono", monospace;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.form-heading h2,
.form-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.form-heading p {
  margin: 6px 0 0;
  color: black;
  font-size: 12px;
}

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

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

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

.form-field label {
  display: block;
  margin-bottom: 5px;
  color: black;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.form-field label em {
  color: #da1e28;
  font-style: normal;
}

.input-wrapper {
  position: relative;
}

.form-field input {
  width: 100%;
  height: 45px;
  padding: 0 11px 0 39px;
  border: 1px solid rgba(15, 98, 254, 0.18);
  outline: none;
  border-radius: 10px;
  background: #f5f8ff;
  color: var(--ink);
  font-size: 11px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.form-field input::placeholder {
  color: #8997ad;
  font-size: 10px;
}

.form-field input:hover {
  border-color: rgba(15, 98, 254, 0.33);
  background: #ffffff;
}

.form-field input:focus {
  border-color: var(--ibm-blue-60);
  background: #ffffff;
  box-shadow:
    0 0 0 3px rgba(15, 98, 254, 0.08);
  transform: none;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  display: grid;
  width: 16px;
  place-items: center;
  color: var(--ibm-blue-60);
  pointer-events: none;
  transform: translateY(-50%);
}

.input-icon svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.submit-button {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  background:
    linear-gradient(
      105deg,
      var(--ibm-blue-80),
      var(--ibm-blue-60),
      var(--ibm-cyan)
    );
  box-shadow:
    0 13px 28px rgba(15, 98, 254, 0.2);
  color: #ffffff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 35px rgba(15, 98, 254, 0.3);
}

.submit-button svg {
  width: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }

  .contact-information {
    width: 100%;
  }

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

@media (max-width: 620px) {
  .contact-register-section {
    padding: 50px 0 58px;
  }

  .contact-register-section > .site-container {
    width: min(100% - 28px, 100%);
  }

  .contact-heading {
    margin-bottom: 24px;
  }

  .contact-heading h2 {
    font-size: 29px;
  }

  .contact-details-list {
    grid-template-columns: 1fr;
  }

  .contact-information {
    padding: 18px;
  }

  .contact-registration-card,
  .registration-form-card {
    padding: 23px 17px;
  }

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

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

  .form-field label {
    text-align: left;
  }
}

/* =========================================================
   FOOTER
========================================================= */

.footer-section {
  position: relative;
  overflow: hidden;
  padding: 20px 0 18px;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(15, 98, 254, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 80%,
      rgba(8, 189, 186, 0.17),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #000a29 0%,
      #001141 55%,
      #002d72 100%
    );
  color: #ffffff;
}

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


.footer-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 34px;
}



.footer-main {
  display: flex;
  width: 100%;
  min-height: 190px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 26px;
}


.footer-left {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.footer-ibm-logo-link {
  display: inline-flex;
  align-items: center;
}

.footer-ibm-logo {
  width: 155px;
  height: auto;
  filter: brightness(0) invert(1);
}



.footer-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-direction: column;
  text-align: right;
}

.footer-observenow-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-observenow-logo {
  width: 160px;
  height: auto;
  object-fit: contain;
}

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

.footer-social a {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid white;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #d1c3c3;
  backdrop-filter: blur(10px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
  border-color: rgba(8, 189, 186, 0.48);
  background:
    linear-gradient(
      135deg,
      var(--ibm-blue-60),
      var(--ibm-cyan-dark)
    );
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22);
}

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


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

.footer-glow-one {
  top: -180px;
  left: -140px;
  width: 400px;
  height: 400px;
  background: rgba(15, 98, 254, 0.18);
}

.footer-glow-two {
  right: -150px;
  bottom: -200px;
  width: 430px;
  height: 430px;
  background: rgba(8, 189, 186, 0.14);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 760px) {
  .footer-container {
    padding: 0 22px;
  }

  .footer-main {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 34px;
  }

  .footer-right {
    width: 100%;
    align-items: flex-start;
    text-align: left;
  }

  .footer-observenow-logo-link,
  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .footer-ibm-logo {
    width: 100px;
  }

  .footer-observenow-logo {
    width: 165px;
  }

  .footer-social {
    flex-wrap: wrap;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
  }
}