:root {
  --primary: #0a3a66;
  --primary-light: #1c5c95;
  --primary-dark: #062640;
  --accent: #10a4d8;
  --accent-light: #e6f7fd;
  --bg: #FFFFFF;
  --bg-alt: #f4f8fb;
  --bg-dark: #081b2d;
  --text: #10263a;
  --text-secondary: #3d556b;
  --text-light: #7a91a5;
  --border: #d9e3ec;
  --earth: #8b7765;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow: 0 8px 24px rgba(9, 31, 52, 0.08);
  --shadow-lg: 0 16px 46px rgba(9, 31, 52, 0.12);
  --shadow-hover: 0 16px 50px rgba(9, 31, 52, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Spacing & Layout Tokens */
  --section-spacing: clamp(50px, 7vw, 90px);
  --container-width: 1280px;
  --header-spacing: 48px;

  /* New Theme Accents */
  --theme-accent-water: #0ea5e9;
  --theme-accent-energy: #f59e0b;
  --theme-accent: var(--theme-accent-water);
  --glass-bg: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.25);
  --glass-blur: 12px;
}

[data-theme="dark"] {
  --bg: #081b2d;
  --bg-alt: #0a253e;
  --text: #f4f8fb;
  --text-secondary: #cbd5e1;
  --border: #1e3a5f;
  --glass-bg: rgba(0, 0, 0, 0.2);
  --glass-border: rgba(255, 255, 255, 0.1);
}


@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Manrope', 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1, h2, h3 {
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.4rem);
  line-height: 1.18;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

h4 {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  letter-spacing: -0.01em;
}

p {
  color: var(--text-secondary);
  line-height: 1.75;
  text-align: justify;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: min(var(--container-width), 100%);
  margin-inline: auto;
  padding: 0 clamp(20px, 3.5vw, 48px);
}

.section {
  padding: var(--section-spacing) 0;
}

.section-alt {
  background: var(--bg-alt);
}

body[data-page="research"] .section.section-alt {
  background: linear-gradient(180deg, #f6f9fc 0%, #f3f7fb 100%);
}

body[data-page="research"] .research-tabs {
  max-width: 1120px;
  margin-inline: auto;
  border: 1px solid #dce6ef;
  background: #f2f6fb;
}

body[data-page="research"] .research-tab.active {
  box-shadow: 0 8px 18px rgba(11, 43, 69, 0.10);
}

body[data-page="research"] .tab-panel {
  padding-top: 8px;
}

body[data-page="research"] .feature-content p,
body[data-page="research"] .product-details p {
  color: #3e556a;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-label::before {
  display: none;
}

.section-title {
  margin-bottom: 16px;
}

.section-desc {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  text-align: justify;
}

.section-header {
  margin-bottom: var(--header-spacing);
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(10, 58, 102, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 58, 102, 0.25);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.btn .um6p-icon,
.btn svg {
  font-size: 0.85em;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 clamp(12px, 2.6vw, 40px);
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.is-scrolled .navbar-inner {
  height: 72px;
}

.navbar-inner {
  max-width: min(1320px, 100%);
  margin-inline: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', 'Poppins-Regular', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary);
}

.navbar-brand svg {
  width: 32px;
  height: 32px;
}

.navbar-brand img {
  height: clamp(52px, 4vw, 62px);
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--accent-light);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.88rem;
  border-radius: 8px;
  color: var(--text-secondary);
}

.nav-dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #020b13 0%, #05141f 35%, #0a1f2e 65%, #10263a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease, transform 1.2s ease;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(2, 11, 19, 0.85) 0%, rgba(5, 20, 31, 0.4) 50%, rgba(10, 38, 58, 0.25) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 86px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 span {
  color: #38BDF8;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-slider-controls {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(6, 31, 49, 0.34);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
  color: #38BDF8;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.hero-stat p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-body {
  padding: 28px;
}

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 12px;
}

.card-title {
  margin-bottom: 12px;
}

.card-text {
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.card-link:hover {
  gap: 10px;
  color: var(--primary-light);
}

.icon-card {
  padding: 32px;
  text-align: center;
}

.icon-card .icon-wrap {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 1.5rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.icon-card:hover .icon-wrap {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.icon-card h4 {
  margin-bottom: 10px;
}

.icon-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 320px;
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(0.9);
}

.split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 7px 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}

.check-list li .um6p-icon {
  color: var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}

.icon-wrap .um6p-icon,
.contact-info-item .icon .um6p-icon {
  width: 1.1em;
  height: 1.1em;
}

.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1E40AF 100%);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  color: #38BDF8;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
}

.team-card .card-img {
  height: 320px;
}

.team-card .card-body {
  padding: 24px;
}

.team-card h4 {
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.85rem;
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.team-card .card-link {
  margin-top: auto;
}

.team-manager {
  border: 1px solid var(--primary-light);
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
}

.team-manager h3 {
  font-size: 1.25rem;
}

.team-manager .role {
  color: var(--primary);
}

.page-hero {
  padding: 150px 0 100px;
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1720;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 206, 201, 0.1) 0%, transparent 72%);
  pointer-events: none;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.88rem;
}

.page-hero .breadcrumb a {
  color: #38BDF8;
}

.page-hero .breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--accent-light);
}

.timeline-item h4 {
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 0.95rem;
}

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg-alt);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11, 122, 95, 0.1);
  background: #fff;
}

.form-group select option {
  color: var(--text);
  background: #fff;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-item h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.contact-info-item p {
  font-size: 0.9rem;
  margin: 0;
}

.footer {
  background: var(--bg-dark);
  padding: 80px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  
}

.footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-links a:hover {
  color: #38BDF8;
  padding-left: 6px;
}

.footer-newsletter input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-newsletter input:focus {
  border-color: #38BDF8;
}

.footer-newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: #38BDF8;
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-light);
  transform: translateY(-4px);
}

.back-to-top .um6p-icon {
  width: 0.95em;
  height: 0.95em;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}


.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.partner-card .icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 1.25rem;
  margin: 0 auto 16px;
}

.partner-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.partner-card p {
  font-size: 0.85rem;
}

.partners-subtitle {
  margin: 0 0 18px;
  font-size: 1.25rem;
}

.partners-main-grid,
.team-grid-preview {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.partner-entry,
.team-entry-preview {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  text-align: center;
}

.partner-logo-box {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #edf0f3;
}

.partner-logo-box.logo-dark {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0b3d35 100%);
  border-color: rgba(255, 255, 255, 0.18);
}

.partner-logo-box img {
  max-height: 58px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}

.partner-logo-fallback {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

.partner-logo-box.logo-dark .partner-logo-fallback {
  color: #fff;
}

.partner-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 600;
}

.partner-entry p {
  font-size: 0.9rem;
  margin: 0 0 18px;
}

.collab-ticker-section {
  overflow: hidden;
}

.collab-ticker {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 18px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.collab-ticker-track {
  display: flex;
  width: max-content;
  animation: collabTicker 38s linear infinite;
}

.collab-ticker-group {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}

.collab-logo-item {
  width: 178px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid #edf0f3;
  border-radius: 12px;
  background: #f8f9fa;
}

.collab-logo-item.logo-dark {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0b3d35 100%);
  border-color: rgba(255, 255, 255, 0.18);
}

.collab-logo-item img {
  max-height: 56px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}

.collab-logo-fallback {
  font-size: 0.86rem;
  color: var(--primary);
  font-weight: 600;
}

.collab-logo-item.logo-dark .collab-logo-fallback {
  color: #fff;
}

@keyframes collabTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.impact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
}

.impact-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.impact-card .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1;
}

.impact-card h4 {
  margin-bottom: 12px;
}

.impact-card p {
  font-size: 0.92rem;
}

.sdg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--accent-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 4px;
}

.prototype-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.prototype-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.prototype-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 47, 46, 0.9) 0%, rgba(4, 47, 46, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.prototype-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.prototype-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin: 0;
}

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-24px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(24px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.95);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-showcase-list {
    gap: 22px;
  }

  .portfolio-intro-panel {
    grid-template-columns: 1fr;
  }

  .product-category-head {
    flex-direction: column;
  }

  .product-feature-layout,
  .product-placeholder-layout {
    grid-template-columns: 1fr;
  }

  .product-showcase-layout {
    grid-template-columns: 1fr;
  }

  .product-showcase-card.is-media-first .product-showcase-content {
    order: 1;
  }

  .product-showcase-card.is-media-first .product-showcase-media {
    order: 2;
  }

  .research-context-shell {
    grid-template-columns: 1fr;
  }

  .category-definition-grid,
  .product-category-glossary-grid {
    grid-template-columns: 1fr;
  }

  .collab-logo-item {
    width: 164px;
    height: 86px;
  }

  .collab-logo-item img {
    max-height: 50px;
    max-width: 136px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 44px 0;
  }

  .split-img {
    min-height: 260px;
  }

  .card-img {
    height: 220px;
  }

  .team-card .card-img {
    height: 260px;
  }

  .navbar-inner {
    height: 78px;
  }

  .navbar-brand img {
    height: 48px;
  }

  .products-showcase-list {
    gap: 18px;
  }

  .portfolio-intro-panel {
    padding: 22px;
  }

  .portfolio-intro-stats {
    grid-template-columns: 1fr;
  }

  .product-category {
    padding: 20px;
  }

  .product-story {
    padding: 22px;
  }

  .product-media-main img {
    height: 260px;
  }

  .product-media-grid,
  .product-media-grid.wide {
    grid-template-columns: 1fr;
  }

  .product-media-grid img,
  .product-media-grid.wide img {
    height: 220px;
  }

  .product-media-grid.wide img:only-child {
    height: 240px;
  }

  .product-media-grid-editorial img:nth-child(1),
  .product-media-grid-editorial img:nth-child(2),
  .product-media-grid-editorial img:nth-child(3),
  .product-media-grid-editorial img:nth-child(4) {
    grid-column: auto;
    height: 220px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    bottom: auto;
    height: calc(100dvh - 78px);
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 1002;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split.reverse> :first-child {
    order: 2;
  }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .contact-form {
    padding: 24px;
  }

  .collab-ticker {
    padding: 14px 0;
  }

  .collab-ticker-group {
    gap: 10px;
    padding-right: 10px;
  }

  .collab-logo-item {
    width: 140px;
    height: 76px;
  }

  .collab-logo-item img {
    max-height: 44px;
    max-width: 118px;
  }

  .product-showcase-card {
    border-radius: 24px;
  }

  .product-showcase-content {
    padding: 22px 20px;
  }

  .product-showcase-media {
    padding: 12px;
  }

  .product-slider-stage {
    min-height: 220px;
  }

  .product-showcase-key-list {
    grid-template-columns: 1fr;
  }

  .product-slider-controls {
    gap: 8px;
  }

  .product-slider-nav {
    padding: 6px 10px;
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat h3 {
    font-size: 1.75rem;
  }

  .card-img {
    height: 200px;
  }

  .team-card .card-img {
    height: 220px;
  }

  .split-img {
    min-height: 220px;
  }

  .product-media-main img {
    height: 220px;
  }

  .product-meta {
    gap: 8px;
  }

  .product-chip {
    font-size: 0.7rem;
  }

  .product-showcase-content {
    padding: 20px 18px;
  }

  .product-showcase-content h3 {
    font-size: 1.4rem;
  }

  .product-showcase-summary {
    font-size: 0.92rem;
  }

  .product-showcase-media {
    padding: 10px;
  }

  .product-slider-stage {
    min-height: 200px;
    border-radius: 16px;
  }

  .research-context-shell {
    padding: 18px;
  }

  .research-context-stats {
    grid-template-columns: 1fr;
  }

  .product-slider-counter {
    font-size: 0.72rem;
  }

  .collab-logo-item {
    width: 124px;
    height: 70px;
  }

  .collab-logo-item img {
    max-height: 36px;
    max-width: 102px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collab-ticker-track {
    animation: none;
  }

  .collab-ticker-group[aria-hidden="true"] {
    display: none;
  }

  .collab-ticker-group {
    flex-wrap: wrap;
    justify-content: center;
    padding-right: 0;
    gap: 10px;
  }

  .collab-ticker {
    -webkit-mask-image: none;
    mask-image: none;
    padding: 12px;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.research-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 6px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.research-tab {
  padding: 12px 22px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 14px;
  transition: var(--transition);
  white-space: nowrap;
}

.research-tab:hover {
  color: var(--primary);
  background: rgba(11, 122, 95, 0.06);
}

.research-tab.active {
  background: #fff;
  color: var(--primary);
  box-shadow: var(--shadow);
}

.research-tab .um6p-icon {
  font-size: 0.95em;
}

.tab-panel {
  display: none;
  animation: tabFadeIn 0.4s ease;
}

.tab-panel.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse>* {
  direction: ltr;
}

.feature-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e0f7f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.fig-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.fig-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.product-img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  overflow: hidden;
  position: relative;
}

.product-img-placeholder i {
  font-size: 2rem;
  opacity: 0.4;
}

.product-img-placeholder span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.5;
}

.product-img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  padding: 8px;
}

.product-img-placeholder img.cover {
  object-fit: cover;
  padding: 0;
}

.section-intro-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.section-intro-row .feature-content {
  flex: 1;
}

.section-intro-row .intro-img-placeholder {
  width: 300px;
  min-width: 300px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
  border: 2px dashed var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-light);
  overflow: hidden;
  position: relative;
}

.section-intro-row .intro-img-placeholder i {
  font-size: 2rem;
  opacity: 0.4;
}

.section-intro-row .intro-img-placeholder span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.5;
}

.section-intro-row .intro-img-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  background: #fff;
  padding: 8px;
}

@media (max-width: 768px) {
  .section-intro-row {
    flex-direction: column;
  }

  .section-intro-row .intro-img-placeholder {
    width: 100%;
    min-width: unset;
  }
}

.product-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow);
}

.product-card .product-img-placeholder {
  width: 260px;
  min-width: 260px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--border);
}

.product-card .product-details {
  flex: 1;
}

.product-card .product-details h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.product-card .product-details p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
  }

  .product-card .product-img-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    min-width: unset;
  }
}

.feature-visual .placeholder-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  opacity: 0.4;
}

.feature-visual .placeholder-icon .um6p-icon {
  font-size: 2.5rem;
}

.feature-visual .placeholder-icon span,
.feature-visual .placeholder-icon .placeholder-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-content h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text);
}

.feature-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.stat-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat-item {
  text-align: center;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  min-width: 120px;
  flex: 1;
}

.stat-item .stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-item .stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-light);
  font-weight: 600;
}

.collab-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 12px;
}

.collab-badge.ready {
  background: #ecfdf5;
  color: #16a34a;
}

.collab-badge.dev {
  background: #fef2f2;
  color: #dc2626;
}

.compact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compact-list li {
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.compact-list li .um6p-icon {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .stat-row {
    gap: 12px;
  }

  .stat-item {
    min-width: 90px;
  }

  .research-tabs {
    gap: 2px;
    padding: 4px;
  }

  .research-tab {
    padding: 10px 14px;
    font-size: 0.78rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loading-spinner {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

.loading-spinner.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner-ring {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.um6p-icon {
  --um6p-icon: none;
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.1em;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: var(--um6p-icon) center / contain no-repeat;
  mask: var(--um6p-icon) center / contain no-repeat;
}

.um6p-icon-sm {
  font-size: 0.85em;
}

.um6p-icon-lg {
  font-size: 1.2em;
}

.um6p-icon-xl {
  font-size: 1.6em;
}

.um6p-icon-muted {
  color: var(--text-light);
}

.um6p-icon-accent {
  color: var(--accent);
}

.um6p-icon-spin {
  animation: um6p-icon-spin 1s linear infinite;
  transform-origin: center;
}

@keyframes um6p-icon-spin {
  to {
    transform: rotate(360deg);
  }
}

.um6p-icon-arrow-right {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Arrow Right.svg");
}

.um6p-icon-arrow-up {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Arrow Up.svg");
}

.um6p-icon-arrow-down {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Arrow Down.svg");
}

.um6p-icon-mail {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Mail.svg");
}

.um6p-icon-drop-pin {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Drop Pin.svg");
}

.um6p-icon-yes {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Yes.svg");
}

.um6p-icon-groups {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Groups.svg");
}

.um6p-icon-view {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_View.svg");
}

.um6p-icon-automobile {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Automobile.svg");
}

.um6p-icon-map {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Map.svg");
}

.um6p-icon-www {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_WWW.svg");
}

.um6p-icon-multi-directional {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Multi-directional.svg");
}

.um6p-icon-secure {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Secure.svg");
}

.um6p-icon-fill-document {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Fill document.svg");
}

.um6p-icon-switch-on {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Switch-on.svg");
}

.um6p-icon-attention {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Attention!.svg");
}

.um6p-icon-additional-menu {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Additional Menu.svg");
}

.um6p-icon-settings {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Settings.svg");
}

.um6p-icon-search {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Search.svg");
}

.um6p-icon-cursor {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Cursor.svg");
}

.um6p-icon-like {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Like.svg");
}

.um6p-icon-purchase {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Purchase.svg");
}

.um6p-icon-sign-here {
  --um6p-icon: url("../um6p_symbols/UM6P Icons Artwork_Sign Here.svg");
}

.btn svg,
.btn .um6p-icon {
  font-size: 0.85em;
}

.research-context-shell {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  margin: 0 0 22px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 94, 79, 0.12);
  background: linear-gradient(130deg, #f4fbf9 0%, #f2f7ff 100%);
  box-shadow: var(--shadow-sm);
}

.research-context-copy h3 {
  margin: 0 0 8px;
  font-size: 1.22rem;
}

.research-context-copy p {
  margin: 0;
}

.research-context-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.research-context-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  text-align: center;
}

.research-context-stat strong {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 5px;
}

.research-context-stat span {
  font-size: 0.76rem;
  color: var(--text-secondary);
}

.category-definition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.category-definition-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
}

.category-definition-card h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.category-definition-card p {
  margin: 0;
  font-size: 0.89rem;
}

.prototype-status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
}

.prototype-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  border: 1px solid;
}

.prototype-status-featured {
  background: #e9f7f1;
  border-color: #bbebda;
  color: #0f5d49;
}

.prototype-status-new {
  background: #eaf4ff;
  border-color: #cbe2ff;
  color: #184f88;
}

.prototype-status-portfolio {
  background: #f5f6fa;
  border-color: #dfe4ee;
  color: #435467;
}

.product-minimal-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, var(--card-bg, #f6fbff) 0%, #ffffff 60%);
}

.product-minimal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 85% 0%, var(--card-glow, rgba(46, 205, 167, 0.18)) 0%, rgba(255, 255, 255, 0) 55%);
}

.product-minimal-card img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(237, 245, 251, 0.95) 100%);
  padding: 12px;
}

.product-minimal-card .product-overview-body {
  padding-top: 14px;
}

.product-minimal-card .product-overview-body h3 {
  margin: 0 0 8px;
}

.product-minimal-card .product-overview-body p {
  margin-bottom: 14px;
  color: #3f5468;
}

.product-card-status {
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}


.product-card-status-featured {
  color: #0f5d49;
}

.product-card-status-new {
  color: #184f88;
}

.product-card-status-portfolio {
  color: #5b6678;
}

.product-card-category {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: #28485f;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(17, 44, 66, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.product-theme-1 {
  --card-bg: #ecf8f4;
  --card-glow: rgba(20, 163, 130, 0.20);
}

.product-theme-2 {
  --card-bg: #edf8ff;
  --card-glow: rgba(54, 162, 232, 0.20);
}

.product-theme-3 {
  --card-bg: #fff5eb;
  --card-glow: rgba(255, 146, 67, 0.22);
}

.product-theme-4 {
  --card-bg: #f2f9ff;
  --card-glow: rgba(85, 170, 230, 0.18);
}

.product-theme-5 {
  --card-bg: #effaf0;
  --card-glow: rgba(84, 180, 96, 0.22);
}

.product-theme-6 {
  --card-bg: #f4f7ff;
  --card-glow: rgba(106, 138, 238, 0.18);
}

.product-theme-7 {
  --card-bg: #ebfaf7;
  --card-glow: rgba(45, 190, 169, 0.18);
}

.product-theme-8 {
  --card-bg: #fff8ea;
  --card-glow: rgba(232, 176, 72, 0.22);
}

.product-theme-9 {
  --card-bg: #eef4ff;
  --card-glow: rgba(90, 130, 220, 0.22);
}

.product-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent-light);
  border: 1px solid rgba(11, 94, 79, 0.12);
}

.product-chip-muted {
  color: var(--text-secondary);
  background: #f3f5f8;
  border-color: #e4e9ef;
}

.product-section {
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  right: -140px;
  top: -140px;
  background: radial-gradient(circle, rgba(46, 205, 167, 0.2) 0%, rgba(46, 205, 167, 0) 72%);
  filter: blur(3px);
  pointer-events: none;
}

.product-section-head {
  margin-bottom: 34px;
  position: relative;
  z-index: 1;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.product-feature-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.product-story {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.product-story-block+.product-story-block {
  margin-top: 20px;
}

.product-story-block h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.product-story .check-list {
  margin-top: 20px;
}

.product-media-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}

.product-media-main {
  margin: 0 0 14px;
}

.product-media-main img {
  width: 100%;
  height: 320px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.product-media-main figcaption {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 8px;
}

.product-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-media-grid img {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  border: 1px solid #e6ebf2;
}

.product-media-grid img.media-fit-contain {
  object-fit: contain;
  background: #f7fafc;
  padding: 10px;
}

.product-media-grid.wide img {
  height: 210px;
}

.product-media-grid.wide img:only-child {
  grid-column: 1 / -1;
  height: 320px;
}

.product-media-grid-editorial {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.product-media-grid-editorial img:nth-child(1) {
  grid-column: span 4;
  height: 200px;
}

.product-media-grid-editorial img:nth-child(2) {
  grid-column: span 2;
  height: 200px;
}

.product-media-grid-editorial img:nth-child(3),
.product-media-grid-editorial img:nth-child(4) {
  grid-column: span 3;
  height: 160px;
}

.media-note {
  margin: 14px 2px 2px;
  font-size: 0.86rem;
  color: var(--text-secondary);
}

.product-placeholder-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.placeholder-columns {
  display: grid;
  gap: 12px;
}

.placeholder-card {
  background: #fff;
  border: 1px dashed #cfd8e3;
  border-radius: var(--radius);
  padding: 20px;
}

.placeholder-card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
}

.placeholder-card p {
  margin: 0;
  color: var(--text-light);
}

.products-showcase-list {
  display: grid;
  gap: 24px;
}

.product-showcase-card {
  background: #f4f6f8;
  border: 1px solid #dce4ec;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.product-showcase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.product-showcase-card.is-media-first .product-showcase-content {
  order: 2;
}

.product-showcase-card.is-media-first .product-showcase-media {
  order: 1;
}

.product-showcase-content {
  padding: 28px;
}

.product-showcase-content h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  line-height: 1.22;
}

.product-showcase-summary {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.72;
}

.product-showcase-key-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-showcase-key-item {
  background: #ffffff;
  border: 1px solid #d9e2ec;
  border-radius: 14px;
  padding: 12px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-showcase-key-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  font-weight: 600;
  color: #6b8094;
}

.product-showcase-key-value {
  font-size: 1.36rem;
  color: #11253a;
  line-height: 1.15;
  margin-top: 6px;
}

.product-showcase-key-unit {
  margin-top: 3px;
  font-size: 0.78rem;
  color: #4d647b;
}

.product-showcase-media {
  padding: 14px;
  background: #eceff3;
  display: flex;
  flex-direction: column;
}

.product-slider-stage {
  border-radius: 20px;
  border: 1px solid #d5dee8;
  background: linear-gradient(180deg, #f8fafc 0%, #e8edf3 100%);
  overflow: hidden;
  min-height: 280px;
  position: relative;
}

.product-slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-slider-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.product-slider-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-slider-controls[hidden] {
  display: none;
}

.product-slider-nav {
  border: 1px solid #c7d3e0;
  border-radius: 999px;
  background: #fff;
  color: #37506a;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
  transition: var(--transition);
}

.product-slider-nav:hover {
  border-color: #9fb8cf;
  background: #f4f8fc;
}

.product-slider-nav:focus-visible,
.product-slider-dot:focus-visible {
  outline: 2px solid #1a7b66;
  outline-offset: 2px;
}

.product-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 28px;
}

.product-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: #b3c5d8;
  cursor: pointer;
  transition: var(--transition);
}

.product-slider-dot:hover {
  background: #83a8ca;
}

.product-slider-dot.is-active {
  background: var(--primary);
  transform: scale(1.15);
}

.product-slider-counter {
  margin: 6px 0 0;
  font-size: 0.78rem;
  color: #536b81;
  text-align: right;
}

@media (max-width: 1024px) {
  .products-showcase-list {
    gap: 22px;
  }

  .product-showcase-layout {
    grid-template-columns: 1fr;
  }

  .product-showcase-card.is-media-first .product-showcase-content {
    order: 1;
  }

  .product-showcase-card.is-media-first .product-showcase-media {
    order: 2;
  }
}

@media (max-width: 768px) {
  .products-showcase-list {
    gap: 18px;
  }

  .product-showcase-card {
    border-radius: 24px;
  }

  .product-showcase-content {
    padding: 22px 20px;
  }

  .product-showcase-media {
    padding: 12px;
  }

  .product-slider-stage {
    min-height: 220px;
  }

  .product-showcase-key-list {
    grid-template-columns: 1fr;
  }

  .product-slider-controls {
    gap: 8px;
  }

  .product-slider-nav {
    padding: 6px 10px;
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .product-showcase-content {
    padding: 20px 18px;
  }

  .product-showcase-content h3 {
    font-size: 1.4rem;
  }

  .product-showcase-summary {
    font-size: 0.92rem;
  }

  .product-showcase-media {
    padding: 10px;
  }

  .product-slider-stage {
    min-height: 200px;
    border-radius: 16px;
  }

  .product-slider-counter {
    font-size: 0.72rem;
  }
}

.product-category-glossary {
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f9fbfd;
  padding: 18px;
}

.product-category-glossary h3 {
  font-size: 1.06rem;
  margin: 0 0 6px;
}

.product-category-glossary-intro {
  font-size: 0.9rem;
  margin: 0 0 12px;
}

.product-category-glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-category-glossary-card {
  border: 1px solid #d9e3ef;
  border-radius: 10px;
  background: #fff;
  padding: 12px;
}

.product-category-glossary-card h4 {
  margin: 0 0 6px;
  font-size: 0.96rem;
}

.product-category-glossary-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.product-category-glossary-card.is-active {
  border-color: #91c8b8;
  background: #eefaf5;
  box-shadow: inset 0 0 0 1px rgba(11, 94, 79, 0.08);
}


.product-category {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.product-category+.product-category {
  margin-top: 20px;
}

.product-category-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.product-category-head h3 {
  margin: 6px 0 0;
}

.product-category-desc {
  margin: 12px 0 4px;
  color: var(--text-secondary);
}

.product-category-fit {
  margin: 0 0 16px;
  font-size: 0.92rem;
}

.product-category-grid {
  margin-top: 18px;
}

.product-source-grid {
  display: none;
}

.product-category-detail-head .section-header {
  margin-bottom: 0;
}

.product-category-detail-anchor {
  min-height: 1px;
}

.products-empty-state {
  margin: 14px 0 0;
  padding: 14px 16px;
  border: 1px dashed #cfd8e3;
  border-radius: var(--radius);
  background: #f9fbfd;
  color: var(--text-secondary);
  text-align: center;
  font-size: 0.92rem;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.story-kicker {
  margin: 0 0 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.story-hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.story-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.8s ease;
}

.story-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.story-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(8, 27, 45, 0.84) 0%, rgba(10, 58, 102, 0.76) 46%, rgba(16, 164, 216, 0.44) 100%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.22), transparent 54%);
  z-index: 1;
}

.story-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 90px;
}

.story-hero h1 {
  color: #fff;
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.08;
}

.story-hero p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 28px;
}

.story-hero-stats {
  display: flex;
  gap: 22px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.story-hero-stats>div {
  min-width: 130px;
}

.story-hero-stats strong {
  display: block;
  font-size: 1.8rem;
  font-family: 'Manrope', sans-serif;
}

.story-hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
}

.story-hero-controls {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(6, 30, 48, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
}

.story-control-btn {
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.story-control-btn:hover {
  background: rgba(255, 255, 255, 0.24);
}

.story-hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.story-hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: var(--transition);
}

.story-hero-dot.is-active {
  transform: scale(1.2);
  background: #fff;
}

.split-tight {
  gap: 42px;
}

.insight-grid {
  display: grid;
  gap: 14px;
}

.insight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: #fff;
}

.insight-card h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}

.insight-card p {
  margin: 0;
  font-size: 0.92rem;
}

.section-impact-band {
  background: linear-gradient(125deg, #08213a 0%, #0a3a66 55%, #0c7ca9 100%);
  color: #fff;
}

.impact-band-head h2 {
  color: #fff;
  margin: 0 0 28px;
}

.impact-band-head .section-label {
  color: rgba(255, 255, 255, 0.74);
}

.impact-band-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.impact-band-grid article {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.impact-band-grid strong {
  font-size: 2rem;
  font-family: 'Manrope', sans-serif;
  display: block;
  margin-bottom: 8px;
}

.impact-band-grid p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0;
  font-size: 0.92rem;
}

.quick-path-grid .card-body {
  min-height: 170px;
}

.mission-card .card-body {
  padding: 30px;
}

.mission-card h3 {
  margin: 0 0 10px;
}

.journey-cta {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 68, 108, 0.2);
  background: linear-gradient(130deg, #eef6fc 0%, #edf9ff 100%);
  padding: 38px;
  text-align: center;
}

.journey-cta h3 {
  margin-bottom: 8px;
}

.journey-cta p {
  margin: 0 auto 20px;
  max-width: 680px;
}

.page-hero-refined {
  padding: 148px 0 78px;
  background: #0b1720;
}

.page-hero-refined h1 {
  max-width: 900px;
  margin-inline: auto;
}

.page-hero-refined p {
  max-width: 780px;
}

.project-card .card-tag {
  background: #edf4fa;
  color: var(--primary);
}

.footer-grid-refined {
  grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
}

.footer-grid-refined .footer-links li {
  color: rgba(255, 255, 255, 0.66);
}

@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
    padding-inline: clamp(18px, 2.2vw, 34px);
  }

  .navbar-inner {
    max-width: 1280px;
  }

  .split {
    gap: 76px;
  }

  .grid {
    gap: 36px;
  }

  .story-hero-content {
    max-width: 860px;
  }
}

@media (max-width: 1024px) {
  .story-hero {
    min-height: 88vh;
  }

  .impact-band-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid-refined {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .story-hero-content {
    padding-top: 106px;
  }

  .story-hero h1 {
    font-size: 2.05rem;
  }

  .story-hero-controls {
    width: 100%;
    justify-content: space-between;
  }

  .split-tight {
    gap: 28px;
  }

  .journey-cta {
    padding: 24px;
  }

  .footer-grid-refined {
    grid-template-columns: 1fr;
  }
}

/* -------- UI/UX Refinement Layer (content-preserving) -------- */

.btn:focus-visible,
.nav-links a:focus-visible,
.nav-dropdown-toggle:focus-visible,
.card-link:focus-visible,
.back-to-top:focus-visible,
.research-tab:focus-visible {
  outline: 2px solid #0f7fb6;
  outline-offset: 2px;
}

.section-header {
  max-width: 900px;
}

.section-header.center {
  margin-inline: auto;
}

.hero {
  min-height: clamp(720px, 100svh, 960px);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 16%, rgba(169, 228, 255, 0.32), transparent 44%),
    radial-gradient(circle at 12% 84%, rgba(69, 146, 214, 0.24), transparent 46%);
}

.hero-bg img {
  opacity: 0.68;
  transform: scale(1.02);
  animation: heroFloat 18s ease-in-out infinite alternate;
  filter: saturate(1.08) contrast(1.04);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes heroFloat {
  from {
    transform: scale(1.02) translateY(0);
  }

  to {
    transform: scale(1.08) translateY(-8px);
  }
}

.hero-overlay {
  background:
    linear-gradient(112deg, rgba(3, 24, 40, 0.74) 0%, rgba(8, 47, 80, 0.56) 50%, rgba(15, 110, 160, 0.38) 100%),
    linear-gradient(to top, rgba(4, 20, 32, 0.48) 0%, rgba(4, 20, 32, 0.08) 40%, rgba(4, 20, 32, 0.04) 100%);
}

.hero-content {
  background: rgba(8, 34, 54, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  padding: clamp(28px, 3.3vw, 46px);
  box-shadow: 0 26px 68px rgba(3, 17, 33, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.hero-content::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, rgba(173, 227, 255, 0.9), rgba(173, 227, 255, 0));
  pointer-events: none;
}

.hero h1 {
  letter-spacing: -0.02em;
}

.hero p {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-buttons .btn {
  min-height: 48px;
}

.hero-scroll {
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(6, 32, 49, 0.32);
}

/* Manual hero navigation intentionally hidden; autoplay remains active. */
.hero-slider-controls {
  display: none !important;
}

.page-hero,
.page-hero-refined {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-hero::after,
.page-hero-refined::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 140px;
  background: linear-gradient(to top, rgba(3, 21, 36, 0.28), transparent 76%);
  pointer-events: none;
  z-index: 0;
}

.page-hero .container,
.page-hero-refined .container {
  position: relative;
  z-index: 1;
}

.page-hero h1,
.page-hero-refined h1 {
  text-shadow: 0 4px 18px rgba(0, 12, 23, 0.35);
  letter-spacing: -0.02em;
}

.page-hero p,
.page-hero-refined p {
  color: rgba(255, 255, 255, 0.86);
}

.page-hero .breadcrumb {
  margin-top: 24px;
  padding: 6px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-hero .breadcrumb:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s ease;
  text-decoration: none;
}

.page-hero .breadcrumb a:hover {
  color: #38BDF8;
}

.page-hero .breadcrumb .sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.7rem;
  font-weight: 400;
  margin: 0 2px;
}

.page-hero .breadcrumb span:last-child:not(.sep) {
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.card {
  box-shadow: 0 6px 24px rgba(5, 28, 47, 0.06);
}

.card:hover {
  transform: translateY(-6px);
}

.icon-card {
  border-radius: 16px;
}

.icon-card .icon-wrap {
  box-shadow: inset 0 0 0 1px rgba(16, 127, 182, 0.12);
}

.contact-form {
  box-shadow: 0 16px 34px rgba(5, 29, 47, 0.08);
}

.research-tabs {
  box-shadow: inset 0 0 0 1px #dde7f0;
}

.research-tab.active {
  box-shadow: 0 8px 16px rgba(6, 44, 74, 0.1);
}

@media (max-width: 1024px) {
  .hero-content {
    max-width: 760px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 84svh;
  }

  .hero-content {
    border-radius: 16px;
    padding: 22px 20px;
  }

  .hero-scroll {
    bottom: 20px;
    font-size: 0.68rem;
    letter-spacing: 1.4px;
  }

  .hero-slider-controls {
    width: 100%;
    justify-content: space-between;
  }

  .page-hero,
  .page-hero-refined {
    text-align: left;
  }

  .page-hero .breadcrumb {
    display: inline-flex;
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img {
    animation: none;
  }
}

/* -------- Dynamic navbar state (blur over hero -> white after header) -------- */

.navbar {
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    backdrop-filter var(--transition),
    -webkit-backdrop-filter var(--transition);
}

.navbar-inner {
  height: 90px;
}

.navbar .navbar-brand {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.navbar .navbar-brand img {
  display: block;
  height: clamp(58px, 4.2vw, 70px);
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.navbar-over-hero {
  background:
    linear-gradient(115deg, rgba(4, 72, 72, 0.38) 0%, rgba(7, 86, 112, 0.4) 44%, rgba(12, 124, 122, 0.34) 100%);
  border-bottom-color: transparent;
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: none;
}

.navbar-over-hero .navbar-brand img {
  filter: brightness(1.16) saturate(1.12) drop-shadow(0 6px 14px rgba(2, 19, 30, 0.34));
}

.navbar-solid,
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  border-bottom-color: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 28px rgba(9, 31, 52, 0.12);
}

.navbar-solid .navbar-inner,
.navbar.scrolled .navbar-inner {
  height: 82px;
}

.navbar-solid .navbar-brand img,
.navbar.scrolled .navbar-brand img {
  height: clamp(54px, 3.9vw, 64px);
  filter: none;
}

@media (min-width: 769px) {

  .navbar-over-hero .nav-links,
  .navbar-solid .nav-links,
  .navbar.scrolled .nav-links {
    gap: 6px;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .navbar-over-hero .nav-links a {
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(241, 248, 255, 0.94);
  }

  .navbar-over-hero .nav-links a:hover,
  .navbar-over-hero .nav-links a.active,
  .navbar-over-hero .nav-dropdown-toggle.active {
    color: #ffffff;
    background: linear-gradient(120deg, rgba(20, 164, 154, 0.32), rgba(16, 126, 197, 0.34));
    box-shadow: 0 10px 18px rgba(2, 17, 29, 0.22);
  }

  .navbar-solid .nav-links a,
  .navbar.scrolled .nav-links a {
    padding: 9px 14px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #2d4d68;
  }

  .navbar-solid .nav-links a:hover,
  .navbar-solid .nav-links a.active,
  .navbar-solid .nav-dropdown-toggle.active,
  .navbar.scrolled .nav-links a:hover,
  .navbar.scrolled .nav-links a.active,
  .navbar.scrolled .nav-dropdown-toggle.active {
    color: #0c4b66;
    background: linear-gradient(120deg, rgba(22, 166, 144, 0.16), rgba(15, 136, 208, 0.15));
    box-shadow: 0 8px 14px rgba(10, 32, 54, 0.09);
  }

  .navbar .nav-dropdown-menu {
    margin-top: 10px;
    border-radius: 14px;
    border: none;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 10px;
    box-shadow: 0 18px 36px rgba(7, 29, 49, 0.16);
  }

  .navbar .nav-dropdown-menu a {
    color: #23435e;
    border-radius: 10px;
    padding: 10px 14px;
  }
}

.navbar .nav-toggle {
  border: none;
  border-radius: 12px;
  padding: 9px;
  transition: var(--transition);
}

.navbar-over-hero .nav-toggle {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 16px rgba(3, 18, 31, 0.25);
}

.navbar-over-hero .nav-toggle span {
  width: 22px;
  height: 2.2px;
  background: #eef8ff;
}

.navbar-solid .nav-toggle,
.navbar.scrolled .nav-toggle {
  background: rgba(6, 61, 95, 0.08);
  box-shadow: 0 6px 14px rgba(10, 32, 54, 0.12);
}

.navbar-solid .nav-toggle span,
.navbar.scrolled .nav-toggle span {
  width: 22px;
  height: 2.2px;
  background: #22435e;
}

.navbar .nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar .nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar .nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {

  .navbar,
  .navbar-inner {
    overflow: visible;
  }

  .navbar-inner {
    height: 84px;
  }

  .navbar-solid .navbar-inner,
  .navbar.scrolled .navbar-inner {
    height: 78px;
  }

  .navbar .navbar-brand img {
    height: 52px;
  }

  .navbar-solid .navbar-brand img,
  .navbar.scrolled .navbar-brand img {
    height: 48px;
  }

  .nav-links {
    top: 100%;
    height: calc(100dvh - 84px);
    padding: 20px 18px 24px;
  }

  .navbar-over-hero .nav-links {
    background:
      linear-gradient(180deg, rgba(9, 87, 132, 0.9) 0%, rgba(8, 100, 123, 0.9) 45%, rgba(6, 89, 98, 0.9) 100%);
    border-top: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .navbar-solid .nav-links,
  .navbar.scrolled .nav-links {
    top: 100%;
    height: calc(100dvh - 78px);
    background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
    border-top: none;
  }

  .navbar-over-hero .nav-links a {
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
    color: #f3f9ff;
  }

  .navbar-over-hero .nav-links a:hover,
  .navbar-over-hero .nav-links a.active,
  .navbar-over-hero .nav-dropdown-toggle.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

  .navbar-solid .nav-links a,
  .navbar.scrolled .nav-links a {
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 600;
    color: #23435e;
  }

  .navbar-solid .nav-links a:hover,
  .navbar-solid .nav-links a.active,
  .navbar-solid .nav-dropdown-toggle.active,
  .navbar.scrolled .nav-links a:hover,
  .navbar.scrolled .nav-links a.active,
  .navbar.scrolled .nav-dropdown-toggle.active {
    color: #0c4b66;
    background: rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  }

  .navbar-over-hero .nav-dropdown-menu {
    margin-top: 4px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    padding: 6px;
  }

  .navbar-over-hero .nav-dropdown-menu a {
    color: #eaf6ff;
  }

  .navbar-solid .nav-dropdown-menu,
  .navbar.scrolled .nav-dropdown-menu {
    margin-top: 4px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 6px;
  }

  .navbar-solid .nav-dropdown-menu a,
  .navbar.scrolled .nav-dropdown-menu a {
    color: #23435e;
  }
}

/* -------- Homepage hero layout refinement -------- */

body[data-page="index"] .hero {
  min-height: clamp(740px, 98svh, 960px);
  align-items: flex-end;
  padding-bottom: clamp(80px, 12vh, 140px);
}

body[data-page="index"] .hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

body[data-page="index"] .hero-content {
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: auto;
  max-width: min(880px, 100%);
  padding: clamp(32px, 4.5vw, 64px);
  border-radius: 28px;
  display: grid;
  gap: clamp(20px, 2.5vw, 36px);
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: heroContentReveal 1s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

@keyframes heroContentReveal {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body[data-page="index"] .hero-text-stack {
  display: grid;
  gap: 12px;
}

body[data-page="index"] .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  justify-self: start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="index"] .hero h2 {
  margin-bottom: 0;
  max-width: 24ch;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 800;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

body[data-page="index"] .hero p {
  margin-bottom: 0;
  max-width: 52ch;
  font-size: clamp(1.05rem, 1.25vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

body[data-page="index"] .hero-buttons {
  margin-top: 10px;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

body[data-page="index"] .hero-actions {
  display: grid;
  gap: 12px;
}

body[data-page="index"] .hero-buttons .btn {
  min-height: 50px;
  padding: 12px 28px;
  font-size: 0.88rem;
  font-weight: 700;
  gap: 8px;
}

body[data-page="index"] .hero-buttons .btn-white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

body[data-page="index"] .hero-buttons .btn-white:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px) scale(1.02);
}

body[data-page="index"] .hero-quick-facts {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

body[data-page="index"] .hero-fact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

body[data-page="index"] .hero-fact:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

body[data-page="index"] .hero-fact .um6p-icon {
  font-size: 0.88rem;
  color: #fff;
  opacity: 0.8;
}

@media (max-width: 768px) {
  body[data-page="index"] .hero {
    min-height: 88svh;
    padding-bottom: 82px;
  }

  body[data-page="index"] .hero-content {
    margin-top: 88px;
    max-width: 100%;
    border-radius: 18px;
    padding: 20px 18px;
    gap: 14px;
  }

  body[data-page="index"] .hero-text-stack {
    gap: 11px;
  }

  body[data-page="index"] .hero-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.07em;
    padding: 6px 11px;
  }

  body[data-page="index"] .hero h1 {
    max-width: 100%;
    font-size: clamp(1.95rem, 8vw, 2.65rem);
    line-height: 1.1;
  }

  body[data-page="index"] .hero p {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.7;
  }

  body[data-page="index"] .hero-buttons {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
  }

  body[data-page="index"] .hero-actions {
    gap: 10px;
  }

  body[data-page="index"] .hero-buttons .btn {
    width: auto;
    min-height: 40px;
    padding: 9px 15px;
    justify-content: flex-start;
    font-size: 0.77rem;
  }

  body[data-page="index"] .hero-quick-facts {
    gap: 7px;
  }

  body[data-page="index"] .hero-fact {
    width: auto;
    justify-content: center;
    font-size: 0.71rem;
    padding: 7px 10px;
  }
}

/* -------- Hero Visual System (2026 refinement) -------- */

.hero {
  min-height: clamp(700px, 100svh, 920px);
}

.hero-slide {
  transform: none;
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-bg img,
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focal-desktop, 50% 50%);
  opacity: 1;
  animation: none;
  filter: contrast(1.05) brightness(0.92) saturate(0.95);
}

.hero-slide img {
  transform: scale(1.06);
  transition: transform 6.2s ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(108deg, rgba(5, 5, 5, 0.3) 0%, rgba(10, 10, 10, 0.15) 48%, rgba(15, 15, 15, 0.05) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0.04) 45%, rgba(5, 5, 5, 0.15) 100%);
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.3) 42%, rgba(10, 10, 10, 0) 72%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.05), transparent 58%);
  pointer-events: none;
}

.hero-overlay[data-overlay-variant="balanced"] {
  background:
    /* Deep bottom-left shadow for text readability */
    radial-gradient(circle at 15% 85%, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, transparent 80%),
    /* Global cinematic vignette */
    linear-gradient(110deg, rgba(0, 0, 0, 0.3) 0%, transparent 50%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-overlay[data-overlay-variant="contrast"] {
  background:
    linear-gradient(108deg, rgba(5, 5, 5, 0.85) 0%, rgba(10, 10, 10, 0.7) 52%, rgba(15, 15, 15, 0.4) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.7) 0%, rgba(5, 5, 5, 0.25) 45%, rgba(5, 5, 5, 0.6) 100%);
}

.hero-content {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  mix-blend-mode: difference;
  isolation: isolate;
}

.hero h2,
.hero p,
.hero-eyebrow,
.hero-fact {
  color: #fff;
  mix-blend-mode: exclusion;
}

.hero h2 {
  text-shadow: none;
}

.hero h2 span {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 8px;
}

.page-hero.page-hero--cover,
.page-hero-refined.page-hero--cover {
  --hero-cover-overlay:
    linear-gradient(110deg, rgba(5, 5, 5, 0.65) 0%, rgba(10, 10, 10, 0.45) 48%, rgba(15, 15, 15, 0.25) 100%),
    linear-gradient(180deg, rgba(2, 2, 2, 0.5) 0%, rgba(2, 2, 2, 0.1) 45%, rgba(2, 2, 2, 0.4) 100%);
  background-color: #0a0a0a;
  background-image: var(--hero-cover-overlay), var(--hero-cover-url, url('hero_section/solar-agriculture.webp'));
  background-size: cover, cover;
  background-position: center, var(--hero-focal-desktop, 50% 50%);
  background-repeat: no-repeat, no-repeat;
}

.page-hero.page-hero--cover[data-overlay-variant="soft"],
.page-hero-refined.page-hero--cover[data-overlay-variant="soft"] {
  --hero-cover-overlay:
    linear-gradient(110deg, rgba(10, 10, 10, 0.25) 0%, rgba(15, 15, 15, 0.15) 48%, rgba(20, 20, 20, 0.04) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.15) 0%, rgba(5, 5, 5, 0.02) 45%, rgba(5, 5, 5, 0.12) 100%);
}

.page-hero.page-hero--cover[data-overlay-variant="contrast"],
.page-hero-refined.page-hero--cover[data-overlay-variant="contrast"] {
  --hero-cover-overlay:
    linear-gradient(110deg, rgba(5, 5, 5, 0.45) 0%, rgba(10, 10, 10, 0.3) 48%, rgba(15, 15, 15, 0.1) 100%),
    linear-gradient(180deg, rgba(2, 2, 2, 0.35) 0%, rgba(2, 2, 2, 0.06) 45%, rgba(2, 2, 2, 0.28) 100%);
}

.page-hero.page-hero--cover::before,
.page-hero-refined.page-hero--cover::before,
.page-hero.page-hero--cover::after,
.page-hero-refined.page-hero--cover::after {
  display: none;
}

.page-hero.page-hero--cover .container,
.page-hero-refined.page-hero--cover .container {
  position: relative;
  z-index: 1;
}

.page-hero.page-hero--cover h1,
.page-hero.page-hero--cover p,
.page-hero.page-hero--cover .breadcrumb,
.page-hero-refined.page-hero--cover h1,
.page-hero-refined.page-hero--cover p,
.page-hero-refined.page-hero--cover .breadcrumb {
  text-shadow: none;
}

.page-hero-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px) saturate(1.1);
  -webkit-backdrop-filter: blur(6px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.12);
  padding: clamp(24px, 4vw, 48px);
  border-radius: 28px;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  animation: heroContentReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.page-hero-content .section-label {
  color: #38BDF8;
  margin-bottom: 12px;
  justify-content: center;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.page-hero-content p {
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 60ch;
  margin-inline: auto;
  line-height: 1.65;
}

.page-hero-content .breadcrumb {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .hero-slide img {
    object-position: var(--hero-focal-mobile, var(--hero-focal-desktop, 50% 50%));
  }

  .hero-overlay::before {
    background:
      linear-gradient(180deg, rgba(3, 18, 27, 0.5) 0%, rgba(3, 18, 27, 0.12) 52%, rgba(3, 18, 27, 0.44) 100%),
      radial-gradient(circle at 70% 14%, rgba(173, 214, 208, 0.08), transparent 60%);
  }

  .page-hero.page-hero--cover,
  .page-hero-refined.page-hero--cover {
    background-position: center, var(--hero-focal-mobile, var(--hero-focal-desktop, 50% 50%));
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-slide,
  .hero-slide img {
    transition: none;
    transform: none;
  }
}

/* --- Hero Tags --- */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pill {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* --- Process Grid --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.process-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.process-step .step-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(15, 127, 182, 0.08);
  line-height: 1;
}

.process-step .step-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #11253a;
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (max-width: 768px) {
  .process-grid {
    gap: 20px;
  }
  .process-step {
    padding: 24px;
  }
}

/* --- Expandable Product Cards --- */
.product-showcase-card {
  margin-bottom: 40px;
}

.product-showcase-card:last-child {
  margin-bottom: 0;
}

.product-details-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  background: #fafcfd;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.product-showcase-card.is-expanded .product-details-panel {
  grid-template-rows: 1fr;
  border-top: 1px solid var(--border);
}

.product-details-inner {
  min-height: 0;
  padding: 0 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
  transition-delay: 0s;
}

.product-showcase-card.is-expanded .product-details-inner {
  padding: 40px;
  opacity: 1;
  transition-delay: 0.2s;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 992px) {
  .details-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.details-section h4 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.details-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.95rem;
}

.details-list li:last-child {
  border-bottom: none;
}

.details-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.details-value {
  color: var(--text);
  font-weight: 600;
  text-align: right;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-item {
  background: #fff;
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.btn-toggle-expand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 8px 0;
  transition: var(--transition);
}

.btn-toggle-expand:hover {
  color: var(--accent);
}

.btn-toggle-expand .um6p-icon {
  transition: transform 0.3s ease;
}

.product-showcase-card.is-expanded .btn-toggle-expand .um6p-icon {
  transform: rotate(180deg);
}

.tech-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
  margin: 60px 0;
  background: transparent;
}

.tech-split.reverse {
  direction: rtl;
}
.tech-split.reverse * {
  direction: ltr;
}

.tech-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: var(--bg);
  background: var(--bg);
}

.tech-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  background: var(--bg-alt);
}

.tech-img:hover img {
  transform: scale(1.05);
}

.tech-text .eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.tech-text h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.tech-text p {
  color: #355069;
  line-height: 1.7;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .tech-split {
    grid-template-columns: 1fr;
  }
  .tech-split.reverse {
    direction: ltr;
  }
}

[data-shared-nav],
[data-shared-footer] {
  min-height: 80px;
}

