
:root {
  /* Brand Colors */
  --primary: #903F00;
  --primary-hover: #753300;
  --primary-light: #FAF0E8;
  --primary-border: #E8D3C3;
  --text-light: #904D00;
  --text-primary: #564338;
  --text-tertiary: #1E1B1A;
  --green: #126343;
  --green-light: #E7F7EF;
  --green-border: #B8EBD0;
  --green-hover: #0E4E34;

  /* Neutrals & Surfaces */
  --bg-page: #FAF6F0;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F5EFEB;
  --bg-dark: #2B1405;
  --border-light: #EAE2DA;
  --border-medium: #DCCFC5;
  --border-dark: #472611;

  --text-muted: #7D6B60;
  --text-white: #FFFFFF;
  --text-white-muted: #FFDBCA;

  /* Typography */
  --font-serif: 'Noto Serif', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(35, 18, 6, 0.04);
  --shadow-md: 0 8px 24px rgba(35, 18, 6, 0.08);
  --shadow-lg: 0 16px 36px rgba(35, 18, 6, 0.12);
  --shadow-dark: 0 20px 45px rgba(0, 0, 0, 0.4);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Base Styles
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-fast);
}

button,
input {
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. Typography Hierarchy & Utilities
   -------------------------------------------------------------------------- */
.font-serif {
  font-family: var(--font-serif);
}

.font-sans {
  font-family: var(--font-sans);
}

/* Text Colors */
.text-primary {
  color: var(--text-primary);
}

.text-light {
  color: var(--text-light);
}

.text-tertiary {
  color: var(--text-tertiary);
}

.text-brand {
  color: var(--primary);
}


/* --------------------------------------------------------------------------
   4. Layout Constraints (Container & Flex/Grid Utilities)
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.section-padding {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.bg-cream {
  background-color: var(--bg-page);
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   5. Standard Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 2.75rem;
}

.section-header.text-center {
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-tertiary);
  line-height: 1.25;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}

.section-title span.italic {
  font-style: italic;
  font-weight: 400;
}

.pillar-right {
  text-align: end;
}

.pillar-right p {
  font-weight: 700;
  font-size: 12px;
}

.pillar-right h3 {
  font-weight: 700;
  font-size: 18px;
}

.section-subheading {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 680px;
  font-weight: 500;
}

.section-header.text-center .section-subheading {
  margin-left: auto;
  margin-right: auto;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
}

.header-link {
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  padding: 0.45rem 0.9rem;
  border-radius: 12px;
  background: var(--primary-light);
}

.header-link:hover {
  background: var(--primary);
  color: var(--text-white);
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   6. Buttons & Badges
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(144, 63, 0, 0.28);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-medium);
  color: var(--text-tertiary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--text-white);
}

.btn-outline-white:hover {
  background-color: var(--text-white);
  color: var(--bg-dark);
  border-color: var(--text-white);
  transform: translateY(-2px);
}

.btn-green {
  background-color: var(--green);
  color: var(--text-white);
}

.btn-green:hover {
  background-color: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(18, 99, 67, 0.28);
}

.btn-sm {
  font-size: 13px;
  padding: 0.5rem 1.15rem;
}

.btn-full {
  width: 100%;
}

.btn-glow {
  box-shadow: 0 6px 20px rgba(144, 63, 0, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-glow:hover {
  box-shadow: -1px 0px 25px rgb(248 195 144 / 13%);
  transform: translateY(-2px);
}

/* Global Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11.5px;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  line-height: 1;
  letter-spacing: 0.04em;
}

.badge-primary {
  background-color: #903f0036;
  color: var(--primary);
  border: 1px solid var(--primary-border);
}

.badge-green {
  background-color: var(--green-light);
  color: var(--green);
  border: 1px solid var(--green-border);
}

.pillar-number.green {
  color: #12634354;
}

.pillar-subtitle.text-green {
  color: var(--green);
}

/* --------------------------------------------------------------------------
   7. Top Notification Bar
   -------------------------------------------------------------------------- */
.top-bar {
  background-color: #3D1800;
  color: var(--text-white-muted);
  font-size: 12px;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-dot {
  width: 7px;
  height: 7px;
  background-color: #E27928;
  border-radius: 50%;
  display: inline-block;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.top-bar-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.2);
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-svg-icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   8. Main Navigation Header
   -------------------------------------------------------------------------- */
.main-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #FFFFFF;
  border-bottom: 1px solid #EAE2DA;
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Brand area with OBAIOTA logo & OOTCON 2026 pill */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-frame {
  width: 66px;
  height: 66px;
  border-radius: 8px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.brand-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-info-wrap {
  display: flex;
  flex-direction: column;
}

.brand-title-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-main-title {
  font-family: var(--font-sans);
  font-size: 16.5px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.brand-ootcon-pill {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background-color: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 0.15rem 0.6rem;
  border-radius: 50px;
}

.brand-sub-text {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: width var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.btn-header-register {
  background-color: var(--primary);
  color: var(--text-white);
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  padding: 0.6rem 1.35rem;
  box-shadow: 0 2px 8px rgba(144, 63, 0, 0.2);
  white-space: nowrap;
}

.btn-header-register:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
}

@media (min-width: 992px) and (max-width: 1240px) {
  .nav-menu {
    gap: 0.85rem;
  }
  .nav-link {
    font-size: 12px;
  }
  .btn-header-register {
    padding: 0.5rem 0.95rem;
    font-size: 12px;
  }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-tertiary);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-drawer,
.mobile-drawer-overlay {
  display: none;
}

/* --------------------------------------------------------------------------
   9. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
  background: linear-gradient(180deg, #FFF8F6 0%, #FBF2F0 50%, #F5ECEA 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -320px;
  right: -320px;
  width: 678px;
  height: 678px;
  background: url('img/hero-glows-circle.png') no-repeat center center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.22fr 0.98fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.65rem;
}

.hero-pill-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background-color: #B45309;
  color: var(--text-white);
  font-size: 12px;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.hero-pill-peach {
  background-color: #FFE7D6;
  color: var(--text-light);
  border: 1px solid #FAD7B9;
  font-size: 11.5px;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.hero-pill-green {
  background-color: var(--green-light);
  color: var(--green);
  border: 1px solid var(--green-border);
  font-size: 11.5px;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-tertiary);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.text-brand-hero {
  color: var(--primary);
  font-family: var(--font-serif);
  font-weight: 400;
}

.hero-subtext {
  font-family: var(--font-sans);
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 610px;
}

.hero-meta-card {
  display: flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
  max-width: 600px;
}

.meta-card-col {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1;
}

.meta-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #FDF4ED;
  color: var(--primary);
  border: 1px solid #FADCC3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.meta-col-text {
  display: flex;
  flex-direction: column;
}

.meta-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-tertiary);
  line-height: 1.2;
}

.meta-sub {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 2px;
}

.meta-card-divider {
  width: 1px;
  height: 38px;
  background-color: #EAE2DA;
  margin: 0 1.25rem;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ddc1b378;
  padding: 10px;
  border-radius: 12px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-countdown-card {
  background: linear-gradient(145deg, #4A2000 0%, #261000 100%);
  border: 1.5px solid var(--border-dark);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  color: var(--text-white);
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
}

.hero-countdown-card::after {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 430px;
  height: 350px;
  background: url('img/subtle-glows-circle.png') no-repeat center center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

.hero-countdown-card>* {
  position: relative;
  z-index: 1;
}

.countdown-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.seal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F8C390;
  background: rgba(144, 63, 0, 0.35);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(248, 195, 144, 0.25);
}

.countdown-clock-icon {
  font-size: 17px;
  color: #F8C390;
  opacity: 0.8;
}

.conclave-logo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 1.5rem;
}

.conclave-logo-box .logo-circle {
  width: 180px;
  height: 180px;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 3px solid #E8D3C3;
}

.conclave-logo-box .logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card-conf-title {
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.card-conf-sub {
  font-size: 12px;
  max-width: 280px;
  color: #FFDCC3;
}

.commences-header {
  border-radius: 16px;
  background: #ffffff0f;
  backdrop-filter: blur(10px);
  padding: 15px;
}

.countdown-commences-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #FFDCC3;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.countdown-timer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.timer-box {
  background: #00000040;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0.85rem 0.4rem;
  text-align: center;
}

.timer-num {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.timer-num.num-yellow,
.num-yellow {
  color: #FE932C;
}

.timer-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFDCC3;
}

/* --------------------------------------------------------------------------
   10. Section 2: The 3 Pillars of OOTCON 2026
   -------------------------------------------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.pillar-card {
  background-color: var(--bg-surface);
  border: 1px solid #ddc1b398;
  border-radius: 20px;
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

.pillar-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.pillar-number {
  font-size: 36px;
  font-weight: 700;
  color: #903f0073;
  opacity: 0.6;
}

.pillar-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 0.3rem;
}

.pillar-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pillar-description {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.75rem;
}

.pillar-tag {
  font-size: 11.5px;
  font-weight: 600;
  background-color: #F5ECEA;
  color: var(--text-primary);
  padding: 0.3rem 0.65rem;
  border-radius: 12px;
}

.pillar-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.pillar-link:hover {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   11. Section 3: OBAIOTA Featured Organization Section
   -------------------------------------------------------------------------- */
.obaiota-banner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #301708 100%);
  border-radius: 30px;
  padding: 3.5rem 3rem;
  color: var(--text-white);
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--border-dark);
}

.obaiota-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.35fr;
  gap: 3.5rem;
  align-items: center;
}

.obaiota-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
  background-color: #ffffff08;
  border-radius: 15px;
  border: 1px solid #ffab4c1e;
  width: 100%;
  box-sizing: border-box;
}

.obaiota-logo-container {
  width: 140px;
  height: 140px;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.obaiota-logo-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.obaiota-heading {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.obaiota-subheading {
  font-size: 13.5px;
  color: #F8C390;
  font-weight: 600;
  margin-bottom: 1rem;
}

.obaiota-bio {
  font-size: 14px;
  color: var(--text-white-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.obaiota-content-col {
  display: flex;
  flex-direction: column;
}

.obaiota-top-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #F8C390;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.obaiota-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.obaiota-desc {
  font-size: 14px;
  color: var(--text-white-muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.obaiota-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.obaiota-feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.25rem 1.1rem;
  backdrop-filter: blur(6px);
  transition: all var(--transition-fast);
}

.obaiota-feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(248, 195, 144, 0.3);
  transform: translateY(-3px);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.feature-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(144, 63, 0, 0.4);
  color: #F8C390;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}

.feature-text {
  font-size: 12.5px;
  color: var(--text-white-muted);
  line-height: 1.5;
}

.obaiota-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 1.75rem 0 1.25rem 0;
}

.obaiota-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

.obaiota-bottom-left {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-white-muted);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
}

.obaiota-bottom-row .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.obaiota-bottom-left i,
.obaiota-bottom-left svg {
  color: #F8C390;
  font-size: 15px;
  flex-shrink: 0;
}

.btn-white {
  background-color: #FFFFFF;
  color: var(--primary);
  border: 1.5px solid #FFFFFF;
}

.btn-white:hover {
  background-color: #FAF0E8;
  color: var(--primary-hover);
  border-color: #FAF0E8;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* --------------------------------------------------------------------------
   Section 4: Clinical Action & Evidence Gallery (Swiper Slider)
   -------------------------------------------------------------------------- */
.gallery-slider-wrap {
  position: relative;
  width: 100%;
}

.gallery-swiper {
  width: 100%;
  padding: 0.75rem 0.25rem 1.5rem 0.25rem;
  overflow: hidden;
}

.gallery-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.gallery-swiper .gallery-card {
  width: 100%;
  height: 100%;
}

.gallery-controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto !important;
  position: static !important;
}

.gallery-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: var(--border-medium);
  opacity: 0.7;
  border-radius: 50px;
  transition: all var(--transition-fast);
  cursor: pointer;
  margin: 0 !important;
}

.gallery-pagination .swiper-pagination-bullet-active {
  width: 26px;
  background: var(--primary);
  opacity: 1;
  border-radius: 12px;
}

.gallery-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  flex-shrink: 0;
}

.gallery-nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-border);
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  overflow: hidden;
  background-color: var(--bg-subtle);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.gallery-body {
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-tertiary);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.gallery-desc {
  font-size: 13.5px;
  color: var(--text-primary);
  line-height: 1.55;
  margin-bottom: 0;
  flex-grow: 1;
}

/* --------------------------------------------------------------------------
   Why Attend OOTCON 2026 Section (Editorial Split Stream Layout)
   -------------------------------------------------------------------------- */
.why-attend-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  position: relative;
}

.why-attend-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 4rem;
  align-items: start;
}

.why-attend-lead {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
}

.why-lead-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--text-tertiary);
  line-height: 1.2;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.why-lead-title .italic {
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
}

.why-lead-desc {
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.why-lead-badge-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--bg-page);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  margin-bottom: 2rem;
}

.why-badge-stat {
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}

.why-badge-text {
  display: flex;
  flex-direction: column;
}

.why-badge-text strong {
  font-size: 14px;
  color: var(--text-tertiary);
  font-weight: 700;
}

.why-badge-text span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
}

.why-lead-btn {
  align-self: flex-start;
}

/* Streamlined Connected List */
.why-attend-stream {
  display: flex;
  flex-direction: column;
}

.why-stream-item {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  padding: 1.65rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-fast);
  border-radius: 14px;
  position: relative;
}

.why-stream-item:first-child {
  padding-top: 0.25rem;
}

.why-stream-item:last-child {
  border-bottom: none;
}

.why-stream-item:hover {
  background-color: var(--bg-page);
  padding-left: 1.5rem;
  border-bottom-color: transparent;
}

.why-stream-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  opacity: 0.85;
  font-family: var(--font-serif);
  min-width: 44px;
}

.why-stream-num.text-green-num {
  color: var(--green);
}

.why-stream-content {
  flex: 1;
}

.why-stream-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.35rem;
}

.why-stream-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-tertiary);
  letter-spacing: 0.03em;
  margin: 0;
}

.why-stream-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: #903f0012;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.why-stream-tag.green {
  color: var(--green);
  background: #12634314;
}

.why-stream-desc {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.55;
  margin: 0;
}

/* --------------------------------------------------------------------------
   13. Section 5: Passes & Tariffs
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-medium);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(144, 63, 0, 0.12);
  background: linear-gradient(180deg, #FFFFFF 0%, #FCF8F5 100%);
}

.pricing-card.student-card {
  border-color: rgba(18, 99, 67, 0.4);
}

.pricing-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: var(--text-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(144, 63, 0, 0.3);
  white-space: nowrap;
}

.pricing-header {
  margin-bottom: 1.25rem;
  text-align: left;
}

.pricing-tier {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 0.2rem;
}

.pricing-validity {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.price-currency {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.student-card .price-currency {
  color: var(--green);
}

.price-period {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-cta-box {
  margin-top: auto;
  padding-top: 1.5rem;
}

.pricing-footnote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F5ECEA;
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-footnote-text {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-footnote-text i {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   Registration Process (3-Step Guided Workflow)
   -------------------------------------------------------------------------- */
.reg-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
  position: relative;
  margin-bottom: 2rem;
}

.reg-process-card {
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-medium);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.reg-process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.process-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
}

.process-step-num {
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.process-amber .process-step-num {
  color: var(--primary);
}

.process-emerald .process-step-num {
  color: var(--green);
}

.process-saffron .process-step-num {
  color: #B45309;
}

.process-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.process-step-label {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.process-amber .process-step-label {
  color: var(--primary);
}

.process-emerald .process-step-label {
  color: var(--green);
}

.process-saffron .process-step-label {
  color: #B45309;
}

.process-card-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.process-card-desc {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.55;
}

.process-connector-arrow {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-page);
  border: 1.5px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 13px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Confirmation Notice Banner */
.reg-process-confirm-banner {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, rgba(18, 99, 67, 0.08) 0%, rgba(144, 63, 0, 0.05) 100%);
  border: 1.5px solid rgba(18, 99, 67, 0.25);
  border-radius: 18px;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.confirm-icon-pulse {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(18, 99, 67, 0.15);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.confirm-text-wrap {
  flex: 1;
}

.confirm-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.confirm-desc {
  font-size: 13.5px;
  color: var(--text-primary);
  line-height: 1.45;
}

.confirm-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: rgba(18, 99, 67, 0.12);
  border: 1px solid rgba(18, 99, 67, 0.3);
  padding: 0.45rem 0.95rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   Registration Form — Details Required (High-Impact Highlighted Bento Matrix)
   -------------------------------------------------------------------------- */
.reg-matrix-showcase {
  background: radial-gradient(120% 120% at 50% 0%, #220F04 0%, #120702 55%, #1C0B03 100%);
  border: 1.5px solid rgba(248, 195, 144, 0.35);
  border-radius: 32px;
  padding: 3.5rem 2.75rem;
  box-shadow: 0 25px 65px rgba(28, 12, 4, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Atmospheric Glowing Orbs */
.reg-matrix-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.6;
}

.reg-matrix-glow-amber {
  top: -60px;
  left: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(228, 91, 0, 0.45) 0%, transparent 70%);
}

.reg-matrix-glow-emerald {
  top: 20%;
  right: -50px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(18, 99, 67, 0.4) 0%, transparent 70%);
}

.reg-matrix-glow-saffron {
  bottom: -60px;
  left: 40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, transparent 70%);
}

/* Header */
.reg-matrix-header {
  text-align: center;
  margin-bottom: 3.25rem;
  position: relative;
  z-index: 2;
}

.reg-matrix-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F8C390;
  background: rgba(248, 195, 144, 0.12);
  border: 1px solid rgba(248, 195, 144, 0.3);
  padding: 0.4rem 1.15rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
  backdrop-filter: blur(8px);
}

.reg-matrix-badge i {
  color: #FFB787;
  font-size: 13px;
}

.reg-matrix-title {
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.reg-title-gradient {
  background: linear-gradient(135deg, #FF9E4A 0%, #FFE0C2 50%, #FF8C38 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 400;
}

.reg-matrix-subtitle {
  font-size: 16px;
  color: #FFDBCA;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

/* 3-Column Bento Grid */
.reg-matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  position: relative;
  z-index: 2;
}

/* Bento Pillars */
.reg-matrix-pillar {
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.reg-matrix-pillar:hover {
  transform: translateY(-4px);
}

/* Amber Pillar */
.pillar-amber {
  background: linear-gradient(180deg, rgba(228, 91, 0, 0.14) 0%, rgba(25, 10, 3, 0.65) 100%);
  border: 1.5px solid rgba(228, 91, 0, 0.35);
  box-shadow: 0 12px 30px rgba(228, 91, 0, 0.12);
}

.pillar-amber:hover {
  border-color: #FF8C38;
  box-shadow: 0 16px 36px rgba(228, 91, 0, 0.25);
}

/* Emerald Pillar */
.pillar-emerald {
  background: linear-gradient(180deg, rgba(18, 99, 67, 0.18) 0%, rgba(10, 20, 15, 0.65) 100%);
  border: 1.5px solid rgba(18, 99, 67, 0.45);
  box-shadow: 0 12px 30px rgba(18, 99, 67, 0.12);
}

.pillar-emerald:hover {
  border-color: #10B981;
  box-shadow: 0 16px 36px rgba(18, 99, 67, 0.25);
}

/* Saffron Pillar */
.pillar-saffron {
  background: linear-gradient(180deg, rgba(217, 119, 6, 0.16) 0%, rgba(25, 14, 3, 0.65) 100%);
  border: 1.5px solid rgba(217, 119, 6, 0.4);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.12);
}

.pillar-saffron:hover {
  border-color: #FBBF24;
  box-shadow: 0 16px 36px rgba(217, 119, 6, 0.25);
}

/* Pillar Header */
.pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-tag-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.pillar-number {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.pillar-amber .pillar-number {
  color: #FF9E4A;
}

.pillar-emerald .pillar-number {
  color: var(--green);
}

.pillar-saffron .pillar-number {
  color: #FBBF24;
}

.pillar-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.pillar-status-chip {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.pillar-amber .pillar-status-chip {
  background: rgba(228, 91, 0, 0.22);
  color: #FFB787;
  border: 1px solid rgba(228, 91, 0, 0.4);
}

.pillar-emerald .pillar-status-chip {
  background: rgba(18, 99, 67, 0.3);
  color: #6EE7B7;
  border: 1px solid rgba(16, 185, 129, 0.45);
}

.pillar-saffron .pillar-status-chip {
  background: rgba(217, 119, 6, 0.25);
  color: #FDE68A;
  border: 1px solid rgba(251, 191, 36, 0.45);
}

/* Pillar Items List */
.pillar-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 1;
}

/* Matrix Item Tile */
.matrix-item {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 0.95rem 1.05rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: all var(--transition-fast);
}

.matrix-item:hover {
  background: rgba(255, 255, 255, 0.085);
  border-color: rgba(248, 195, 144, 0.35);
  transform: translateY(-2px);
}

.matrix-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #FFFFFF;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.amber-glow {
  background: linear-gradient(135deg, #903F00 0%, #E45B00 100%);
  box-shadow: 0 4px 14px rgba(228, 91, 0, 0.4);
}

.emerald-glow {
  background: linear-gradient(135deg, #126343 0%, #059669 100%);
  box-shadow: 0 4px 14px rgba(18, 99, 67, 0.4);
}

.saffron-glow {
  background: linear-gradient(135deg, #B45309 0%, #F59E0B 100%);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.matrix-item-info {
  flex: 1;
  min-width: 0;
}

.matrix-item-top {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.matrix-item-num {
  font-size: 10.5px;
  font-weight: 800;
  color: #F8C390;
  background: rgba(255, 255, 255, 0.1);
  padding: 1px 6px;
  border-radius: 5px;
}

.matrix-item-label {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

.matrix-item-hint {
  font-size: 12px;
  color: #FFDBCA;
  margin-top: 3px;
  line-height: 1.35;
}

/* Saffron Pillar Specials */
.tier-pills-row {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.tier-mini-pill {
  font-size: 10.5px;
  font-weight: 700;
  color: #FDE68A;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 2px 8px;
  border-radius: 50px;
}

/* Official Gateway Card (QR Code & Form Badge) */
.official-gateway-card {
  margin-top: 0.4rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(228, 91, 0, 0.1) 100%);
  border: 1.5px dashed rgba(248, 195, 144, 0.45);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  position: relative;
  overflow: hidden;
}

.gateway-icon-box {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #FF6600 0%, #B45309 100%);
  color: #FFFFFF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4);
}

.gateway-content {
  flex: 1;
}

.gateway-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #FFE5D4;
  margin-bottom: 2px;
}

.gateway-desc {
  font-size: 11.5px;
  color: #FFD4BC;
  line-height: 1.35;
}

.gateway-advisory-badge {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 11.5px;
  font-weight: 600;
  color: #6EE7B7;
  background: rgba(18, 99, 67, 0.22);
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  margin-top: auto;
}

.gateway-advisory-badge i {
  color: #34D399;
  font-size: 13px;
}

/* Radiant Bottom Action Bar */
.reg-matrix-actionbar {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(248, 195, 144, 0.35);
  border-radius: 20px;
  padding: 1.35rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.actionbar-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.actionbar-icon-pulse {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(248, 195, 144, 0.15);
  border: 1px solid rgba(248, 195, 144, 0.35);
  color: #FF9E4A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  animation: subtlePulse 2.5s infinite ease-in-out;
}

@keyframes subtlePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(248, 195, 144, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(248, 195, 144, 0);
  }
}

.actionbar-text {
  display: flex;
  flex-direction: column;
}

.actionbar-text strong {
  font-size: 15px;
  color: #FFFFFF;
  font-weight: 700;
}

.actionbar-text span {
  font-size: 13px;
  color: #FFDBCA;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Section 6: Secretariat & Committee Directory
   -------------------------------------------------------------------------- */
.committee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.committee-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.committee-actions .btn-outline {
  background-color: #F5ECEA;
}

.committee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-border);
}

.committee-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}

.committee-avatar {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #FDF4ED;
  color: var(--primary);
  border: 1px solid #FADCC3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.committee-info {
  display: flex;
  flex-direction: column;
}

.committee-role-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 2px;
}

.committee-name {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-tertiary);
  line-height: 1.2;
}

.committee-phone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bg-subtle);
  border: 1px solid #EAE2DA;
  border-radius: 10px;
  padding: 0.55rem 0.85rem;
  margin-bottom: 1rem;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-tertiary);
}

.committee-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: auto;
}

.committee-actions .btn {
  padding: 0.45rem 0.8rem;
  font-size: 12.5px;
  border-radius: 50px;
}

.committee-quota-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.committee-quota-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-border);
}

.quota-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-tertiary);
  margin-bottom: 0.5rem;
}

.quota-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.quota-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.quota-link:hover {
  color: var(--primary-hover);
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Section 7: Venue & Host City
   -------------------------------------------------------------------------- */
.venue-section {
  background-color: var(--bg-subtle);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.venue-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.venue-heading {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-tertiary);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.venue-desc {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.venue-amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.amenity-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  padding: 0.65rem 0.9rem;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
}

.amenity-chip i {
  color: var(--primary);
  font-size: 14px;
}

.venue-transit-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.transit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12.5px;
  color: var(--text-muted);
}

.transit-item strong {
  color: var(--text-tertiary);
}

.venue-map-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.map-embed-container {
  width: 100%;
  height: 380px;
  position: relative;
  background-color: #E2DBD5;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay-info {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(35, 18, 6, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-overlay-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.map-overlay-address {
  font-size: 12px;
  color: var(--text-white-muted);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   16. Pre-Footer CTA
   -------------------------------------------------------------------------- */
.cta-banner-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #301708 100%);
  color: var(--text-white);
  border-top: 1px solid var(--border-dark);
}

.cta-banner-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-banner-left {
  max-width: 680px;
}

.cta-banner-title {
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.cta-banner-desc {
  font-size: 16px;
  color: var(--text-white-muted);
  line-height: 1.6;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 250px;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.main-footer {
  background-color: #180C04;
  color: var(--text-white-muted);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  font-size: 13.5px;
  border-top: 1px solid #2B1507;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.1fr 1.25fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  height: 72px;
  width: 72px;
  background: #FFFFFF;
  padding: 6px;
  border-radius: 12px;
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-conf-heading {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.footer-conf-sub {
  font-size: 12.5px;
  color: #F8C390;
  font-weight: 600;
  margin-bottom: 0.85rem;
  line-height: 1.35;
}

.footer-motto-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: #FFE0C2;
  background: rgba(248, 195, 144, 0.12);
  border: 1px solid rgba(248, 195, 144, 0.25);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  width: fit-content;
}

.footer-brand-mission {
  font-size: 12.5px;
  color: #FFDBCA;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

.footer-organizer {
  font-size: 12px;
  color: var(--text-white-muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.footer-organizer strong {
  color: #FFFFFF;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link {
  color: var(--text-white-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-link:hover {
  color: #F8C390;
  transform: translateX(3px);
}

.footer-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 12.5px;
  color: var(--text-white-muted);
  line-height: 1.4;
}

.footer-meta-item i {
  color: #F8C390;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.meta-label {
  color: #FFE0C2;
  font-weight: 600;
  margin-right: 0.25rem;
}

.meta-val {
  color: var(--text-white);
}

.footer-pricing-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
}

.pricing-summary-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F8C390;
  display: block;
  margin-bottom: 0.45rem;
}

.footer-tier-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.footer-tier-chip {
  font-size: 10.5px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  white-space: nowrap;
}

.footer-tier-chip strong {
  color: #F8C390;
}

.footer-tier-chip.student strong {
  color: #6EE7B7;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.4;
  font-size: 12.5px;
}

.footer-contact-item i {
  color: #F8C390;
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-member-name {
  font-size: 12px;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
  margin-bottom: 1px;
}

.contact-phone-link,
.contact-email-link {
  font-size: 12.5px;
  color: #F8C390;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.contact-phone-link:hover,
.contact-email-link:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-bottom-bar {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12.5px;
}

/* ==========================================================================
   18. Responsive Media Queries
   ========================================================================== */

@media (max-width: 1024px) {

  /* Complete removal of late fade delays on touch screens */
  [data-aos],
  .hero-section [data-aos],
  .pillars-grid [data-aos],
  .obaiota-banner[data-aos],
  .gallery-grid [data-aos],
  .pricing-grid [data-aos],
  .committee-grid [data-aos],
  .venue-grid [data-aos],
  .cta-banner-grid[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    transition-delay: 0s !important;
    visibility: visible !important;
  }

  .top-bar-right .top-bar-item:last-child,
  .top-bar-divider {
    display: none;
  }

  .nav-menu {
    gap: 1rem;
  }

  .nav-link {
    font-size: 13px;
  }

  .btn-header-register {
    font-size: 13px;
    padding: 0.5rem 1rem;
  }

  .brand-sub-text {
    display: none;
  }

  /* 2-Column Hero on Tablet */
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.75rem;
    align-items: center;
  }

  .hero-pill-dark {
    font-size: 10px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 1rem;
  }

  .hero-subtext {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .hero-meta-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    margin-bottom: 1.25rem;
    width: 100%;
  }

  .meta-card-divider {
    display: none;
  }

  .hero-cta-group {
    margin-bottom: 1.25rem;
  }

  .hero-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

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

  .hero-countdown-card {
    padding: 1.5rem 1.25rem;
    max-width: 100%;
    width: 100%;
  }

  .conclave-logo-box .logo-circle {
    width: 110px;
    height: 110px;
  }

  .card-conf-title {
    font-size: 18px;
  }

  .card-conf-sub {
    font-size: 10.5px;
  }

  .countdown-timer-grid {
    gap: 5px;
  }

  .timer-box {
    padding: 0.65rem 0.25rem;
  }

  .timer-num {
    font-size: 18px;
  }

  .timer-label {
    font-size: 8.5px;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .obaiota-banner {
    padding: 2.5rem 2rem;
  }

  .obaiota-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .obaiota-brand-col {
    width: 100%;
    padding: 2rem;
  }

  .obaiota-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Pricing 3-Column Grid on Tablet */
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .committee-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .venue-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}


/* ==========================================================================
   Responsive Breakpoint: 991px (Tablets & Small Laptops)
   ========================================================================== */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }

  .main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: #FFFFFF;
    box-shadow: var(--shadow-sm);
  }

  .nav-container {
    height: 64px;
  }

  .nav-menu,
  .btn-header-register {
    display: none;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(340px, 80vw);
    height: 100vh;
    background-color: var(--bg-surface);
    box-shadow: var(--shadow-dark);
    z-index: 2000;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-menu-drawer.active {
    right: 0;
  }

  .mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(20, 10, 5, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    display: block;
  }

  .mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1.5rem;
  }

  .mobile-nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-tertiary);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.active {
    color: var(--primary);
    background-color: var(--primary-light);
    font-weight: 700;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 0.85rem;
  }

  .hero-subtext {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 1.5rem;
  }

  .hero-meta-card {
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    margin-bottom: 2rem;
  }

  .hero-stats-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }

  .hero-countdown-wrap {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  /* Section Header */
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .pillar-right {
    text-align: left;
  }

  /* 3 Pillars */
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* OBAIOTA Banner */
  .obaiota-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .obaiota-brand-col {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  /* Why Attend Section */
  .why-attend-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-attend-lead {
    position: static;
  }

  /* Pricing Grid */
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  /* Registration Process: 2-Col Tablet Grid (Step 1, Step 2 in Row 1; Step 3, Confirmation Banner in Row 2) */
  .reg-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .process-connector-arrow {
    display: none;
  }

  .reg-process-card {
    padding: 1.75rem 1.35rem;
  }

  .reg-process-confirm-banner {
    grid-column: auto;
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.75rem 1.35rem;
    border-radius: 20px;
  }

  .confirm-icon-pulse {
    margin: 0 auto;
  }

  .confirm-text-wrap {
    text-align: center;
  }

  .confirm-badge {
    margin: 0 auto;
  }

  /* Registration Details Matrix */
  .reg-matrix-showcase {
    padding: 2.75rem 2rem;
    margin-top: 0;
  }

  .pillar-status-chip,
  .pillar-tag {
    font-size: 10px;
  }

  /* Committee Grid & 2-Col Matrix Grid */
  .committee-grid,
  .reg-matrix-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .reg-matrix-actionbar {
    grid-column: auto;
    margin-top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(248, 195, 144, 0.12) 0%, rgba(25, 10, 3, 0.65) 100%);
    border: 1.5px solid rgba(248, 195, 144, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    gap: 1.5rem;
  }

  .actionbar-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    margin: 0 auto;
  }

  .actionbar-icon-pulse {
    margin: 0 auto;
  }

  .actionbar-text {
    align-items: center;
    text-align: center;
  }

  .actionbar-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0;
  }

  .actionbar-cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Venue Grid */
  .venue-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .map-embed-container {
    height: 340px;
  }

  /* CTA Banner */
  .cta-banner-grid {
    flex-direction: column;
    text-align: center;
    gap: 1.75rem;
  }

  .cta-banner-actions {
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .gallery-title {
    font-size: 14px;
  }

  .gallery-desc {
    font-size: 12px;
  }

  .gallery-body {
    padding: 0.8rem;
  }

  .gallery-img-wrapper {
    height: 160px;
  }
}

/* ==========================================================================
   Responsive Breakpoint: 35em (560px and Below - Mobile Screen)
   ========================================================================== */
@media (max-width: 35em) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-padding {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  /* Header */
  .nav-container {
    height: 58px;
  }

  .brand-logo-frame {
    width: 42px;
    height: 42px;
  }

  .brand-logo-frame img {
    max-height: 38px;
  }

  .brand-main-title {
    font-size: 18px;
  }

  .brand-ootcon-pill {
    font-size: 9px;
    padding: 0.15rem 0.45rem;
  }

  .brand-sub-text {
    display: none;
  }

  .mobile-menu-drawer {
    width: min(290px, 85vw);
    padding: 1.5rem 1.15rem;
  }

  /* Hero Section */
  .hero-section {
    padding-top: 1.75rem;
    padding-bottom: 2.25rem;
  }

  .hero-badges-row {
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
  }

  .hero-pill-dark,
  .hero-pill-peach,
  .hero-pill-green {
    font-size: 10px;
    padding: 0.35rem 0.75rem;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.22;
    margin-bottom: 0.85rem;
  }

  .hero-subtext {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }

  .hero-meta-card {
    flex-direction: column;
    gap: 0.85rem;
    padding: 1rem;
    margin-bottom: 1.25rem;
  }

  .meta-card-divider {
    display: none;
  }

  .meta-card-col {
    gap: 0.65rem;
  }

  .meta-icon-box {
    width: 32px;
    height: 32px;
  }

  .meta-sub {
    font-size: 11px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    font-size: 13.5px;
    padding: 0.75rem 1.25rem;
  }

  .hero-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .stat-item {
    padding: 0.75rem 0.65rem;
  }

  .stat-number,
  .card-conf-title {
    font-size: 20px;
  }

  .stat-label {
    font-size: 10.5px;
  }

  .hero-countdown-wrap {
    max-width: 100%;
  }

  .hero-countdown-card {
    padding: 1.5rem 1.15rem;
    border-radius: 20px;
    max-width: 100%;
  }

  .conclave-logo-box .logo-circle {
    width: 90px;
    height: 90px;
    margin-bottom: 0.65rem;
  }

  .card-conf-sub {
    font-size: 11.5px;
  }

  .commences-header {
    padding: 12px 10px;
    border-radius: 12px;
  }

  .countdown-commences-label {
    font-size: 10px;
    margin-bottom: 0.65rem;
  }

  .countdown-timer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }

  .timer-box {
    padding: 8px 4px;
    border-radius: 8px;
  }

  .timer-num {
    font-size: 18px;
  }

  .timer-label {
    font-size: 9px;
  }

  /* Section Titles */
  .section-title {
    font-size: 26px;
    line-height: 1.25;
  }

  .section-subheading {
    line-height: 1.55;
  }

  /* Pillars */
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .pillar-card {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }

  .pillar-title {
    font-size: 22px;
  }

  .reg-matrix-subtitle,
  .meta-title,
  .meta-icon-box,
  .section-subheading,
  .pillar-subtitle,
  .committee-phone-row,
  .pricing-cta-box .btn,
  .why-stream-desc {
    font-size: 14px;
  }

  /* OBAIOTA Banner */
  .obaiota-banner {
    padding: 1.75rem 1.15rem;
    border-radius: 18px;
  }

  .obaiota-brand-col {
    padding: 1.5rem 1rem;
  }

  .obaiota-logo-container {
    width: 100px;
    height: 100px;
  }

  .obaiota-heading {
    font-size: 22px;
  }

  .obaiota-title {
    font-size: 20px;
  }

  .obaiota-features-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .obaiota-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .obaiota-bottom-row .btn {
    width: 100%;
    justify-content: center;
  }

  /* Gallery */
  .gallery-card {
    border-radius: 16px;
  }

  .gallery-img-wrapper {
    height: 190px;
  }

  .gallery-body {
    padding: 1.25rem 1.1rem;
  }

  .gallery-title {
    font-size: 17px;
  }

  .gallery-desc {
    font-size: 13px;
  }

  /* Why Attend */
  .why-attend-wrapper {
    gap: 2rem;
  }

  .why-lead-title {
    font-size: 26px;
  }

  .why-lead-badge-box {
    padding: 1rem 1.1rem;
    margin-bottom: 1.5rem;
  }

  .why-badge-stat {
    font-size: 32px;
  }

  .why-lead-btn {
    width: 100%;
    justify-content: center;
  }

  .why-stream-item {
    padding: 1.25rem 0.25rem;
    gap: 1rem;
  }

  .why-stream-num {
    font-size: 24px;
    min-width: 32px;
  }

  .why-stream-title {
    font-size: 18px;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .pricing-card {
    padding: 1.75rem 1.35rem;
    border-radius: 16px;
  }

  .pricing-tier {
    font-size: 20px;
  }

  .price-currency {
    font-size: 28px;
  }

  .pricing-cta-box .btn {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem;
  }

  /* Registration Process: Single Column (One by One) */
  .reg-process-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .process-connector-arrow {
    display: none;
  }

  .reg-process-card {
    padding: 1.35rem 1.15rem;
    border-radius: 16px;
  }

  .process-step-num {
    font-size: 26px;
  }

  .process-card-title {
    font-size: 17px;
  }

  .process-card-desc {
    font-size: 13px;
  }

  .reg-process-confirm-banner {
    grid-column: auto;
    margin-top: 0;
    flex-direction: column;
    text-align: center;
    gap: 0.85rem;
    padding: 1.25rem 1.15rem;
    border-radius: 16px;
  }

  .confirm-icon-pulse {
    margin: 0 auto;
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .confirm-title {
    font-size: 14px;
  }

  .confirm-desc {
    font-size: 12.5px;
  }

  /* Registration Details Matrix */
  .reg-matrix-showcase {
    padding: 2rem 1.15rem;
    border-radius: 22px;
    margin-top: 0;
  }

  .reg-matrix-header {
    margin-bottom: 2rem;
  }

  .reg-matrix-title {
    font-size: 24px;
    line-height: 1.25;
  }


  .reg-matrix-pillar {
    padding: 1.35rem 1.15rem;
    border-radius: 18px;
  }

  .pillar-number {
    font-size: 18px;
  }

  .pillar-tag,
  .pillar-status-chip {
    font-size: 10px;
  }

  .matrix-item {
    padding: 0.8rem 0.85rem;
    gap: 0.75rem;
  }

  .matrix-item-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
    border-radius: 8px;
  }

  .matrix-item-label,
  .matrix-item-hint,
  .gateway-title,
  .gateway-desc {
    font-size: 12px;
  }

  .official-gateway-card {
    padding: 0.85rem;
    gap: 0.75rem;
  }

  .gateway-icon-box {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .reg-matrix-actionbar {
    grid-column: auto;
    height: auto;
    padding: 1.15rem 1rem;
    border-radius: 16px;
  }

  .actionbar-cta {
    display: none;
  }

  /* Committee */
  .committee-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .committee-card,
  .committee-quota-card {
    padding: 1.35rem 1.15rem;
    border-radius: 16px;
  }

  .committee-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .committee-actions .btn {
    width: 100%;
    justify-content: center;
    font-size: 12.5px;
    padding: 0.55rem 0.75rem;
  }

  /* Venue */
  .venue-heading {
    font-size: 24px;
  }

  .map-embed-container {
    height: 270px;
  }

  /* CTA Banner */
  .cta-banner-section {
    padding: 2.5rem 1rem;
  }

  .cta-banner-title {
    font-size: 22px;
  }

  .cta-banner-actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .cta-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand-col {
    text-align: left;
  }

  .footer-logos-row {
    width: 66px;
    height: 66px;
  }

  .reg-matrix-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}