﻿@charset "UTF-8";
/* ============================================================
   ACREX India 2027 — Climo Mascot Page
   File: scss/pages/_climo.scss
   Dependency: ../abstracts/_variables.scss only
   ============================================================ */
/* ============================================================
   ACREX India — Single shared variables file
   File: scss/abstracts/_variables.scss
   Use this one file for master page + all inner pages.
   ============================================================ */
/* ---------- Brand colors ---------- */
/* ---------- Neutral colors ---------- */
/* ---------- Borders ---------- */
/* ---------- Shadows ---------- */
/* ---------- Gradients ---------- */
/* ---------- Radius ---------- */
/* ---------- Layout ---------- */
/* ---------- Spacing ---------- */
/* ---------- Typography ---------- */
/* ---------- Font sizes ---------- */
/* ---------- Sizes ---------- */
/* ---------- Transitions ---------- */
/* ---------- Breakpoints ---------- */
/* ---------- Z-index ---------- */
/* ---------- Reusable mixins ---------- */
/* ---------- CSS custom properties for browser/runtime usage ---------- */
:root {
  --primary: #00A0C4;
  --primary-dark: #0082a0;
  --secondary: #72C22C;
  --secondary-dark: #5fa323;
  --bg-main: #ffffff;
  --bg-alt: #f5f8fa;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --navy: #082638;
  --navy-2: #0c3447;
  --navy-3: #123f56;
  --border: rgba(0, 160, 196, 0.15);
  --border-dark: rgba(0, 160, 196, 0.3);
  --shadow-sm: 0 4px 15px rgba(0, 160, 196, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 160, 196, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 160, 196, 0.15);
  --gradient: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  --gradient-dark: linear-gradient(135deg, #082638 0%, #0c3447 100%);
  --radius: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1480px;
  --exhibitor-blue: var(--primary);
  --exhibitor-blue-dark: var(--primary-dark);
  --visitor-green: var(--secondary);
  --visitor-green-dark: var(--secondary-dark);
}

@media (max-width: 1360px) {
  :root {
    --container: 1240px;
  }
}
/* ---------- Hero small highlights ---------- */
.climo-hero-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.climo-hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}
.climo-hero-note span i {
  color: #72C22C;
}

/* ---------- Page shell ---------- */
.innercontainer.climo-page,
.climo-page {
  position: relative;
  padding-top: 28px;
  padding-bottom: clamp(70px, 7vw, 105px);
  color: #1e293b;
}
.innercontainer.climo-page::before,
.climo-page::before {
  content: "";
  position: absolute;
  inset: 0 24px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 160, 196, 0.28), transparent);
}

.climo-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 34px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f5f8fa;
  border: 1px solid rgba(0, 160, 196, 0.15);
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
}
.climo-breadcrumb a {
  color: #00A0C4;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.climo-breadcrumb a:hover {
  color: #5fa323;
}
.climo-breadcrumb span:last-child {
  color: #1e293b;
}

/* ---------- Intro ---------- */
.climo-intro-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  margin-bottom: clamp(58px, 7vw, 98px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
  background: radial-gradient(circle at 18% 15%, rgba(114, 194, 44, 0.12), transparent 32%), radial-gradient(circle at 85% 8%, rgba(0, 160, 196, 0.11), transparent 32%), linear-gradient(135deg, rgba(0, 160, 196, 0.08), rgba(114, 194, 44, 0.06));
  border: 1px solid rgba(0, 160, 196, 0.15);
  box-shadow: 0 10px 30px rgba(0, 160, 196, 0.1);
  overflow: visible;
}
.climo-intro-section::after {
  content: "CLIMO";
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: -22px;
  z-index: 0;
  color: rgba(0, 160, 196, 0.06);
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}
.climo-intro-section > * {
  position: relative;
  z-index: 1;
}

.climo-image-area {
  position: relative;
}

/* ---------- Animated speech message ---------- */
.climo-speech-card {
  position: relative;
  z-index: 9;
  max-width: 360px;
  margin: 0 auto -26px;
  padding: 14px 16px;
  border-radius: 22px 22px 22px 6px;
  background: #ffffff;
  border: 1px solid rgba(0, 160, 196, 0.12);
  box-shadow: 0 4px 15px rgba(0, 160, 196, 0.05);
  animation: climoBubbleFloat 3.2s ease-in-out infinite;
}
.climo-speech-card::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -11px;
  width: 22px;
  height: 22px;
  background: #ffffff;
  border-right: 1px solid rgba(0, 160, 196, 0.12);
  border-bottom: 1px solid rgba(0, 160, 196, 0.12);
  transform: rotate(45deg);
}
.climo-speech-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(0, 160, 196, 0.18), rgba(114, 194, 44, 0.22), rgba(0, 160, 196, 0.18));
  opacity: 0.75;
  filter: blur(8px);
  animation: climoBubbleGlow 2.6s ease-in-out infinite;
}
.climo-speech-card .climo-speech-kicker {
  display: block;
  margin-bottom: 8px;
  color: #0082a0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.climo-loop-message {
  position: relative;
  min-height: 68px;
  overflow: hidden;
  /* .message-three {
       animation-delay: 8s;
   }*/
}
.climo-loop-message p {
  position: absolute;
  inset: 0;
  margin: 0;
  color: #1e293b;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  animation: climoMessageLoop 8s ease-in-out infinite;
}
.climo-loop-message .message-two {
  animation-delay: 4s;
}

@keyframes climoMessageLoop {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  8%, 27% {
    opacity: 1;
    transform: translateY(0);
  }
  35%, 100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
@keyframes climoBubbleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes climoBubbleGlow {
  0%, 100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.9;
  }
}
.climo-image-wrapper {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 36px);
  border-radius: 28px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 42%, rgba(255, 255, 255, 0.66) 43% 56%, transparent 57%), linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: visible;
}
.climo-image-wrapper::before {
  content: "";
  position: absolute;
  inset: auto 8% 10% 8%;
  height: 28px;
  border-radius: 50%;
  background: rgba(8, 38, 56, 0.12);
  filter: blur(10px);
}
.climo-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 26px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 160, 196, 0.28);
  pointer-events: none;
}

.climo-mascot-img {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 26px 38px rgba(8, 38, 56, 0.22));
  transition: transform 0.35s ease, filter 0.35s ease;
}
.climo-image-wrapper:hover .climo-mascot-img {
  transform: translateY(-6px) rotate(-1.5deg);
  filter: drop-shadow(0 32px 46px rgba(8, 38, 56, 0.28));
}

/* ---------- Hover popover hotspots ---------- */
.climo-hotspot {
  position: absolute;
  z-index: 12;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0 0 8px rgba(0, 160, 196, 0.1), 0 14px 30px rgba(8, 38, 56, 0.18);
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}
.climo-hotspot .hotspot-dot {
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
}
.climo-hotspot .hotspot-dot::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 160, 196, 0.32);
  animation: climoPulse 1.9s ease-out infinite;
}
.climo-hotspot:hover, .climo-hotspot:focus-visible, .climo-hotspot.is-active {
  transform: translateY(-3px) scale(1.06);
  outline: none;
  box-shadow: 0 0 0 10px rgba(114, 194, 44, 0.13), 0 18px 35px rgba(8, 38, 56, 0.22);
}
.climo-hotspot:hover .hotspot-popover, .climo-hotspot:focus-visible .hotspot-popover, .climo-hotspot.is-active .hotspot-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.hotspot-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 16px);
  width: min(270px, 72vw);
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 160, 196, 0.16);
  box-shadow: 0 18px 45px rgba(8, 38, 56, 0.18);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px) scale(0.96);
  transition: 0.25s ease;
  text-align: left;
}
.hotspot-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.96);
  border-right: 1px solid rgba(0, 160, 196, 0.16);
  border-bottom: 1px solid rgba(0, 160, 196, 0.16);
  transform: translateX(-50%) rotate(45deg);
}
.hotspot-popover strong {
  display: block;
  margin-bottom: 8px;
  color: #1e293b;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}
.hotspot-popover em {
  display: block;
  color: #64748b;
  font-style: normal;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
}

.hotspot-trunk {
  top: 45%;
  right: 20%;
}

.hotspot-leaf {
  top: 24%;
  left: 27%;
}

.hotspot-heart {
  top: 43%;
  left: 34%;
}

.hotspot-feet {
  bottom: 20%;
  left: 42%;
}

.hotspot-trunk .hotspot-popover,
.hotspot-feet .hotspot-popover {
  left: auto;
  right: -12px;
  transform: translateY(10px) scale(0.96);
}
.hotspot-trunk .hotspot-popover::after,
.hotspot-feet .hotspot-popover::after {
  left: auto;
  right: 18px;
  transform: rotate(45deg);
}
.hotspot-trunk:hover .hotspot-popover, .hotspot-trunk:focus-visible .hotspot-popover, .hotspot-trunk.is-active .hotspot-popover,
.hotspot-feet:hover .hotspot-popover,
.hotspot-feet:focus-visible .hotspot-popover,
.hotspot-feet.is-active .hotspot-popover {
  transform: translateY(0) scale(1);
}

.hotspot-leaf .hotspot-popover,
.hotspot-heart .hotspot-popover {
  left: 0;
  transform: translateY(10px) scale(0.96);
}
.hotspot-leaf .hotspot-popover::after,
.hotspot-heart .hotspot-popover::after {
  left: 18px;
  transform: rotate(45deg);
}
.hotspot-leaf:hover .hotspot-popover, .hotspot-leaf:focus-visible .hotspot-popover, .hotspot-leaf.is-active .hotspot-popover,
.hotspot-heart:hover .hotspot-popover,
.hotspot-heart:focus-visible .hotspot-popover,
.hotspot-heart.is-active .hotspot-popover {
  transform: translateY(0) scale(1);
}

@keyframes climoPulse {
  0% {
    transform: scale(0.65);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.75);
    opacity: 0;
  }
}
.climo-intro-text {
  max-width: 660px;
}
.climo-intro-text .climo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 160, 196, 0.1);
  color: #0082a0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.climo-intro-text .climo-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #72C22C;
}
.climo-intro-text .page-title {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.climo-intro-text p {
  margin: 0 0 18px;
  color: #64748b;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.78;
  font-weight: 500;
}
.climo-intro-text p strong {
  color: #1e293b;
  font-weight: 800;
}

.pronunciation-tag.pronunciation-btn,
.pronunciation-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 18px 13px 14px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #1e293b;
  box-shadow: 0 12px 34px rgba(0, 160, 196, 0.14);
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}
.pronunciation-tag.pronunciation-btn i,
.pronunciation-btn i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  box-shadow: 0 14px 28px rgba(0, 160, 196, 0.22);
  font-size: 14px;
}
.pronunciation-tag.pronunciation-btn span,
.pronunciation-btn span {
  font-size: 13px;
  font-weight: 800;
  color: #1e293b;
  white-space: nowrap;
}
.pronunciation-tag.pronunciation-btn em,
.pronunciation-btn em {
  padding-left: 12px;
  border-left: 1px solid rgba(0, 160, 196, 0.15);
  color: #0082a0;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.pronunciation-tag.pronunciation-btn:hover, .pronunciation-tag.pronunciation-btn:focus-visible,
.pronunciation-btn:hover,
.pronunciation-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 160, 196, 0.22);
  outline: none;
}

/* ---------- Role selector ---------- */
.climo-role-panel {
  margin-top: 22px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 160, 196, 0.12);
  box-shadow: 0 4px 15px rgba(0, 160, 196, 0.05);
}

.climo-role-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.climo-role-head span {
  color: #0082a0;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.climo-role-head strong {
  color: #1e293b;
  font-size: 16px;
  font-weight: 800;
}

.climo-role-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.role-tab {
  border: 1px solid rgba(0, 160, 196, 0.15);
  border-radius: 999px;
  padding: 9px 14px;
  background: #ffffff;
  color: #64748b;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}
.role-tab:hover, .role-tab:focus-visible, .role-tab.is-active {
  background: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 160, 196, 0.05);
}

.climo-role-message {
  padding: 14px;
  border-radius: 16px;
  background: radial-gradient(circle at 0% 0%, rgba(114, 194, 44, 0.15), transparent 42%), #ffffff;
  border: 1px solid rgba(0, 160, 196, 0.1);
}
.climo-role-message .climo-role-tagline {
  display: block;
  margin-bottom: 8px;
  color: #0082a0;
  font-size: 12px;
  font-weight: 900;
}
.climo-role-message .climo-role-text {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

/* ---------- Common sections ---------- */
.climo-section {
  margin-bottom: clamp(58px, 7vw, 94px);
}
.climo-section:last-child {
  margin-bottom: 0;
}

.section-heading-wrap {
  max-width: 760px;
  margin-bottom: clamp(26px, 4vw, 42px);
}
.section-heading-wrap .section-kicker {
  margin-bottom: 12px;
}
.section-heading-wrap .section-title {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #1e293b;
}
.section-heading-wrap .section-desc {
  max-width: 650px;
  margin: 14px 0 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

/* ---------- Symbolism cards ---------- */
.symbolism-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.symbol-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 160, 196, 0.15);
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(0, 160, 196, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
  overflow: hidden;
  padding: 28px;
  min-height: 260px;
}
.symbol-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
}
.symbol-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(0, 160, 196, 0.06);
}
.symbol-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 160, 196, 0.35);
  box-shadow: 0 20px 50px rgba(0, 160, 196, 0.15);
}
.symbol-card:hover .symbol-icon {
  transform: scale(1.06) rotate(-3deg);
}

.symbol-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  box-shadow: 0 14px 28px rgba(0, 160, 196, 0.22);
  margin-bottom: 22px;
  font-size: 22px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.symbol-content {
  position: relative;
  z-index: 1;
}
.symbol-content h3 {
  margin: 0 0 10px;
  color: #1e293b;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
}
.symbol-content p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 500;
}

/* ---------- Mission trail ---------- */
.climo-mission-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.climo-mission-track::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 160, 196, 0.28), transparent);
  pointer-events: none;
}

.mission-step {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 160, 196, 0.15);
  box-shadow: 0 4px 15px rgba(0, 160, 196, 0.05);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mission-step:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 160, 196, 0.35);
  box-shadow: 0 20px 50px rgba(0, 160, 196, 0.15);
}
.mission-step .mission-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(114, 194, 44, 0.18);
}
.mission-step h3 {
  margin: 0 0 10px;
  color: #1e293b;
  font-size: 19px;
  font-weight: 800;
}
.mission-step p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

/* ---------- Action section ---------- */
.climo-action-section {
  position: relative;
  padding: clamp(30px, 5vw, 52px);
  border-radius: 32px;
  background: radial-gradient(circle at 10% 12%, rgba(114, 194, 44, 0.17), transparent 31%), linear-gradient(135deg, #082638 0%, #0c3447 100%);
  overflow: hidden;
}
.climo-action-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0, 160, 196, 0.2);
}
.climo-action-section .section-heading-wrap {
  position: relative;
  z-index: 1;
}
.climo-action-section .section-heading-wrap .section-kicker {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.climo-action-section .section-heading-wrap .section-title {
  color: #ffffff;
}
.climo-action-section .section-heading-wrap .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.action-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  counter-reset: climoAction;
}

.action-item {
  counter-increment: climoAction;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  min-height: 118px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.16);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.action-item::after {
  content: counter(climoAction, decimal-leading-zero);
  position: absolute;
  right: 16px;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.08);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}
.action-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(114, 194, 44, 0.34);
}

.action-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  box-shadow: 0 14px 28px rgba(0, 160, 196, 0.22);
  font-size: 19px;
  box-shadow: 0 12px 28px rgba(114, 194, 44, 0.18);
}

.action-text {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 700;
}

/* ---------- Sustainability meter ---------- */
.climo-meter-card {
  padding: clamp(30px, 5vw, 52px);
  border-radius: 32px;
  background: radial-gradient(circle at 85% 20%, rgba(114, 194, 44, 0.16), transparent 34%), radial-gradient(circle at 10% 80%, rgba(0, 160, 196, 0.12), transparent 36%), #f5f8fa;
  border: 1px solid rgba(0, 160, 196, 0.15);
  overflow: hidden;
}

.climo-meter {
  margin-top: 24px;
}

.climo-meter-line {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(0, 160, 196, 0.1);
  overflow: hidden;
}

.climo-meter-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  transition: width 0.15s linear;
}

.climo-meter-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.meter-point {
  padding: 16px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 160, 196, 0.15);
  box-shadow: 0 4px 15px rgba(0, 160, 196, 0.05);
  text-align: center;
}
.meter-point span {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #00A0C4 0%, #72C22C 100%);
  box-shadow: 0 14px 28px rgba(0, 160, 196, 0.22);
  margin: 0 auto 12px;
  font-size: 16px;
}
.meter-point strong {
  display: block;
  color: #1e293b;
  font-size: 14px;
  font-weight: 800;
}

.climo-meter-message {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #1e293b;
  border: 1px solid rgba(114, 194, 44, 0.28);
  box-shadow: 0 4px 15px rgba(0, 160, 196, 0.05);
  font-size: 14px;
  font-weight: 800;
}
.climo-meter-message i {
  color: #5fa323;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .climo-intro-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .climo-intro-text {
    margin: 0 auto;
  }
  .pronunciation-btn {
    margin-left: auto;
    margin-right: auto;
  }
  .climo-role-head {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .climo-role-tabs {
    justify-content: center;
  }
  .symbolism-grid {
    grid-template-columns: 1fr 1fr;
  }
  .climo-mission-track {
    grid-template-columns: 1fr 1fr;
  }
  .climo-mission-track::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .acr-inner-hero.climo-hero {
    padding: 64px 0 58px;
  }
  .acr-inner-hero.climo-hero .acr-inner-title {
    letter-spacing: -0.025em;
  }
  .climo-hero-note {
    justify-content: flex-start;
  }
  .innercontainer.climo-page,
  .climo-page {
    padding-top: 20px;
  }
  .climo-breadcrumb {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
  }
  .climo-intro-section {
    padding: 22px;
    border-radius: 24px;
    overflow: hidden;
  }
  .climo-speech-card {
    margin-bottom: -18px;
  }
  .climo-loop-message {
    min-height: 78px;
  }
  .climo-image-wrapper {
    min-height: 320px;
  }
  .climo-mascot-img {
    max-height: 310px;
  }
  .climo-hotspot {
    width: 28px;
    height: 28px;
  }
  .climo-hotspot .hotspot-dot {
    inset: 8px;
  }
  .hotspot-trunk {
    top: 44%;
    right: 13%;
  }
  .hotspot-leaf {
    top: 24%;
    left: 19%;
  }
  .hotspot-heart {
    top: 43%;
    left: 28%;
  }
  .hotspot-feet {
    bottom: 20%;
    left: 42%;
  }
  .hotspot-popover {
    position: fixed;
    left: 16px !important;
    right: 16px !important;
    bottom: 24px;
    width: auto;
    max-width: none;
    z-index: 9999;
    transform: translateY(12px) scale(0.98);
  }
  .hotspot-popover::after {
    display: none;
  }
  .climo-hotspot:hover .hotspot-popover,
  .climo-hotspot:focus-visible .hotspot-popover,
  .climo-hotspot.is-active .hotspot-popover {
    transform: translateY(0) scale(1);
  }
  .symbolism-grid,
  .action-list,
  .climo-meter-points {
    grid-template-columns: 1fr;
  }
  .climo-mission-track {
    grid-template-columns: 1fr;
  }
  .symbol-card {
    min-height: auto;
    padding: 24px;
  }
  .climo-action-section,
  .climo-meter-card {
    padding: 26px 20px;
    border-radius: 24px;
  }
  .action-item {
    min-height: auto;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .climo-intro-section {
    padding: 18px;
  }
  .climo-speech-card {
    padding: 12px;
  }
  .pronunciation-tag.pronunciation-btn,
  .pronunciation-btn {
    width: 100%;
    justify-content: center;
    gap: 9px;
    padding: 12px;
    border-radius: 18px;
    flex-wrap: wrap;
  }
  .pronunciation-tag.pronunciation-btn span,
  .pronunciation-btn span {
    white-space: normal;
  }
  .pronunciation-tag.pronunciation-btn em,
  .pronunciation-btn em {
    width: 100%;
    padding-left: 0;
    padding-top: 8px;
    border-left: 0;
    border-top: 1px solid rgba(0, 160, 196, 0.15);
    text-align: center;
  }
  .section-heading-wrap .section-title {
    font-size: 30px;
  }
  .section-heading-wrap .section-desc {
    font-size: 14px;
  }
  .action-item {
    grid-template-columns: 1fr;
  }
  .climo-role-panel {
    padding: 14px;
  }
  .climo-role-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .role-tab {
    width: 100%;
  }
  .climo-loop-message {
    min-height: 92px;
  }
}
