/* Reset and Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", sans-serif;
  overflow-x: hidden;
  background-color: #000;
  color: #fff;
}

.hero-section {
  background-color: #001214;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 100vh;
  /* align-items: center; */
}
.hero-section img {
  width: 400px;
  height: 450px;
  object-fit: cover;
  margin: 20px;
}

section.solution-section {
  background-color: #132528;
}
/* Responsive Design - Enhanced with more breakpoints */

/* hamburger icon */
.hamburger {
  font-size: 32px;
  cursor: pointer;
  display: none; /* hidden for desktop */
}

/* Menu Backdrop */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-backdrop.show {
  opacity: 1;
  visibility: visible;
}

/* Transparent sidebar */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%; /* hidden */
  width: 70%;
  height: 100%;
  backdrop-filter: blur(10px); /* transparent + blur effect */
  background: rgba(0, 0, 0, 0.9); /* transparent dark */
  color: white;
  padding: 30px 20px;
  transition: right 0.4s ease;
  z-index: 999;
}

.mobile-menu.open {
  right: 0;
}

/* Close button */
.close-btn {
  font-size: 28px;
  cursor: pointer;
  text-align: right;
  margin-bottom: 20px;
  color: white;
}

/* Menu items */
.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  font-size: 22px;
  margin: 20px 0;
}

.mobile-menu .menu-link {
  color: white;
  text-decoration: none;
  font-size: 22px;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.mobile-menu .menu-link:hover {
  color: #ccd0d0;
}

/* Show hamburger on small screens */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  /* Ensure mobile menu is visible on mobile devices */
  .mobile-menu {
    display: block;
  }

  /* Hide desktop menu buttons on mobile */
  .nav-buttons-wrapper {
    display: none;
  }
}

/* show hamburger and hide desktop menu on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

/* Extra Large Screens (1440px and up) */
@media (min-width: 1440px) {
  /* .nav-bar {
    padding: 25px 60px;
  } */

  .section-wrapper,
  .solution-content-grid,
  .market-wrapper-2,
  .partnercta-wrapper,
  .scrollwrap {
    padding: 0 60px;
  }

  .titlebig {
    font-size: 72px;
  }

  .expressivebig {
    font-size: 84px;
  }

  .titlehuge {
    font-size: 64px;
  }

  .bento-grid-wrapper {
    gap: 30px;
  }

  .cards-wrapper {
    gap: 40px;
  }
}

/* Large Tablets and Small Desktops (1024px - 1439px) */
@media (max-width: 1439px) {
  /* .nav-bar {
    padding: 20px 40px;
  } */

  .titlebig {
    font-size: 56px;
  }

  .expressivebig {
    font-size: 68px;
  }

  .titlehuge {
    font-size: 48px;
  }

  .herostackwrapper img {
    width: 300px;
  }

  .image-point-split {
    gap: 40px;
  }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
  /* .nav-bar {
    padding: 15px 30px;
  } */

  .padded {
    padding: 0 30px;
  }

  .titlebig {
    font-size: 42px;
    line-height: 1.2;
  }

  .expressivebig {
    font-size: 56px;
    line-height: 1.1;
  }

  .titlehuge {
    font-size: 40px;
    line-height: 1.2;
  }

  .titlesmall {
    font-size: 28px;
  }

  .titlemedium,
  .titlemedium-2 {
    font-size: 36px;
  }

  .bodylarge,
  .bodylarge-2 {
    font-size: 18px;
  }

  .calloutlarge,
  .calloutlarge-2 {
    font-size: 26px;
  }

  .nav-logo {
    width: 20rem;
  }

  .herostackwrapper img {
    width: 280px;
  }

  .image-point-split {
    flex-direction: column;
    gap: 40px;
  }

  .title-sub-side-by-side {
    flex-direction: column;
    gap: 30px;
  }

  .bento-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cards-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .card-wrapper-2 {
    max-width: 500px;
    width: 100%;
  }

  .section-wrapper,
  .solution-content-grid,
  .market-wrapper-2,
  .partnercta-wrapper,
  .scrollwrap {
    padding: 0 30px;
  }

  .email-form {
    flex-direction: column;
    gap: 15px;
  }

  .sendbutton {
    width: 100%;
  }
}

/* Mobile Landscape (480px - 767px) */
@media (max-width: 767px) {
  /* .nav-bar {
    padding: 15px 20px;
  } */

  .padded {
    padding: 0 20px;
  }

  .nav-buttons-wrapper {
    gap: 15px;
  }
  .logo-nav {
    font-size: 1rem !important;
  }

  .nav-logo {
    width: 20rem;
  }

  .titlebig {
    font-size: 36px;
    line-height: 1.2;
  }

  .expressivebig {
    font-size: 48px;
    line-height: 1.1;
  }

  .titlehuge {
    font-size: 32px;
    line-height: 1.2;
  }

  .titlesmall {
    font-size: 24px;
  }

  .titlemedium,
  .titlemedium-2 {
    font-size: 30px;
  }

  .bodylarge,
  .bodylarge-2 {
    font-size: 16px;
  }

  .calloutlarge,
  .calloutlarge-2 {
    font-size: 22px;
  }

  .bentocard-wrapper,
  .card-wrapper-2,
  .is-climate-card {
    padding: 25px 20px;
  }

  .herostackwrapper img {
    width: 250px;
  }

  .flex-h-space-between {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .detailsmall {
    font-size: 12px;
  }

  .half-half {
    flex-direction: column;
  }

  .image-point-split {
    flex-direction: column;
    gap: 30px;
  }

  .title-sub-side-by-side {
    flex-direction: column;
    gap: 20px;
  }

  .max-width-pc-3,
  .max-width-3 {
    max-width: 100%;
  }

  .section-wrapper,
  .solution-content-grid,
  .market-wrapper-2,
  .partnercta-wrapper,
  .scrollwrap {
    padding: 0 20px;
  }

  .footerbottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .tsp-wrapper {
    align-items: center;
    text-align: center;
  }

  .rowcontent-wrapper {
    padding: 0 20px;
  }

  .ctas-wrapper {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .solid-state-content-wrapper {
    padding: 25px 20px;
  }

  .tag {
    padding: 6px 12px;
    font-size: 11px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .locator {
    width: 50px;
    height: 50px;
  }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
  #features {
    position: relative !important;
  }

  .hero-section img {
    width: 250px;
    height: 285px;
  }

  .hamburger {
    display: block;
    font-size: 2rem;
    height: 3rem;
  }
  .nav-bar .nav-buttons-wrapper {
    display: none;
  }

  .hero-section {
    /* margin-top: 10rem; */
  }
  /* .nav-bar {
    padding: 12px 15px;
  } */

  .padded {
    padding: 0 15px;
  }

  .nav-buttons-wrapper {
    gap: 10px;
  }

  .menu-button,
  .contact-button {
    padding: 15px;
  }

  .nav-logo {
    width: 12rem;
  }

  .titlebig {
    font-size: 28px;
    line-height: 1.3;
  }

  .expressivebig {
    font-size: 36px;
    line-height: 1.2;
  }

  .titlehuge {
    font-size: 26px;
    line-height: 1.3;
  }

  .titlesmall {
    font-size: 20px;
  }

  .titlemedium,
  .titlemedium-2 {
    font-size: 24px;
  }

  .bodylarge,
  .bodylarge-2 {
    font-size: 15px;
  }

  .calloutlarge,
  .calloutlarge-2 {
    font-size: 18px;
  }

  .bentocard-wrapper,
  .card-wrapper-2,
  .is-climate-card {
    padding: 20px 15px;
  }

  .herostackwrapper img {
    width: 200px;
  }

  .detailsmall {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .flex-h-space-between {
    gap: 10px;
  }

  .section-wrapper,
  .solution-content-grid,
  .market-wrapper-2,
  .partnercta-wrapper,
  .scrollwrap {
    padding: 0 15px;
  }

  .row-grid {
    padding: 0 15px;
  }

  .footer-wrapper {
    padding: 0 15px;
  }

  .solid-state-content-wrapper {
    padding: 20px 15px;
  }

  .tag {
    padding: 4px 10px;
    font-size: 10px;
  }

  .formfield {
    padding: 12px 15px;
    font-size: 14px;
  }

  .sendbutton {
    padding: 12px 25px;
    font-size: 14px;
  }

  .menu-bt-text,
  .ctatext {
    font-size: 12px;
  }

  .card-image-2 {
    height: 150px;
  }

  .figures-2 {
    font-size: 28px;
  }

  .complement,
  .complement-2 {
    font-size: 16px;
  }
}

/* Ultra Small Mobile (up to 319px) */
@media (max-width: 319px) {
  .titlebig {
    font-size: 24px;
  }

  .expressivebig {
    font-size: 32px;
  }

  .titlehuge {
    font-size: 22px;
  }

  .titlesmall {
    font-size: 18px;
  }

  .titlemedium,
  .titlemedium-2 {
    font-size: 20px;
  }

  .bodylarge,
  .bodylarge-2 {
    font-size: 14px;
  }

  .calloutlarge,
  .calloutlarge-2 {
    font-size: 16px;
  }

  .herostackwrapper img {
    width: 180px;
  }

  .nav-logo {
    width: 70px;
  }
}

/* Performance optimizations */
html {
  scroll-behavior: smooth;
}

/* Prevent layout shifts */
img {
  max-width: 100%;
  height: auto;
}

/* Contain layout shifts during loading */
.smooth-wrapper,
.smooth-content {
  overflow: hidden;
}

/* GSAP Animation Helpers */
.gsap-reveal {
  opacity: 0;
}

.gap-ovewrite {
  gap: 10px;
}

/* Navigation */
.main-nav {
  background-color: #001214;
}

nav.main-nav.primary-nav- {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  background-color: #001214;
}

.nav-bar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 2rem;
}

span.logo-nav {
  font-size: 3rem;
}

/* .main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  transition: all 0.3s ease;
}

.nav-logo {
  display: block;
  width: 120px;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo-nav {
  width: 100%;
  color: #fff;
  transition: color 0.3s ease;
} */

/* .nav-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-button {
    border: 1px solid white;
    padding: 20px;
    border-radius: 40px;
}

.menu-nav-cta {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.menu-cta-contents {
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-bt-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.burger-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-line {
    width: 24px;
    height: 1px;
    background-color: #fff;
} */

.nav-buttons-wrapper {
  align-self: start;
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-button {
  text-decoration: none;
  color: #fff;
  border: 1px solid white;
  padding: 20px;
  border-radius: 40px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

/* FULL BUTTON HOVER COLOR */
.menu-button:hover {
  background-color: #ccd0d0;
  color: #000;
}

/* anchor */
.menu-nav-cta {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: color 0.3s ease;
}

/* Make text black when the background turns light */
.menu-button:hover .menu-nav-cta {
  color: #000;
}

/* inner layout */
.menu-cta-contents {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-bt-text {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* icon wrapper */
.burger-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform 0.3s ease;
}

/* Hamburger menu animation */
.menu-button.active .burger-wrapper .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  transition: transform 0.3s ease;
}

.menu-button.active .burger-wrapper .menu-line:nth-child(2) {
  opacity: 0;
  transform: rotate(45deg) translate(5px, -5px);
  transition: transform 0.3s ease;
}

.menu-button.active .burger-wrapper .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, 0px);
  transition: transform 0.3s ease;
}

/* correct, clean hamburger lines */
.menu-line {
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: height 0.3s ease, background-color 0.3s ease;
}

/* Make lines black on hover */
.menu-button:hover .menu-line {
  background-color: #000;
}

/* Proper, stable icon scaling */
.menu-button:hover .burger-wrapper {
  transform: scale(1.2);
}

/* No shifting, no weird movements */
.menu-button:hover .menu-line {
  height: 3px;
}

.primary-cta {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
  border-radius: 40px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.primary-cta:hover {
  background-color: #13272c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* Touch feedback for mobile */
.primary-cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.2);
}

.cta-contents {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ctatext {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.ctatext .white {
  color: #000;
}

.arrow-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: transform 0.3s ease;
}

.primary-cta:hover .arrow-wrapper {
  transform: translateX(3px);
}

.front-arrow {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

/* Navigation Overlay */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  display: flex;
}

.close-nav-wrapper {
  position: absolute;
  top: 30px;
  right: 40px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.close-nav-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.close-nav-wrapper:active {
  transform: scale(0.95);
}

.close-line {
  width: 24px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s ease;
}

.close-line.is-line-1 {
  transform: rotate(45deg);
}

.close-line.is-line-2 {
  transform: rotate(-45deg);
}

.nav-open-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.nav-open-link-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  padding: 15px 25px;
  border-radius: 8px;
}

.nav-open-link-wrapper:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.nav-open-link-wrapper:active {
  transform: translateX(5px);
}

.plus {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.nav-open-link-wrapper:hover .plus {
  transform: rotate(45deg);
}

.titlebig {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.full-height-wrapper {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  /* Prevent content jump */
  contain: layout style paint;
}

.full-height-wrapper-2 {
  padding: 10%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Prevent content jump */
  contain: layout style paint;
}

/* Background ticker (logos) */
.ticker-background {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  pointer-events: none;
}

.ticker-flex {
  display: flex;
  animation: ticker-move 20s linear infinite;
  gap: 40px;
  padding-left: 100%;
}

@keyframes ticker-move {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.expressivelogo {
  width: 300px;
  height: auto;
  opacity: 0.08;
}

/* Foreground stack image */
.herostackwrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.herostackwrapper img {
  width: 355px;
  max-width: 90vw;
  height: auto;
  object-fit: contain;
  transform: translateZ(0);
  will-change: transform;
  transition: transform 0.3s ease;
}

.herostackwrapper:hover img {
  transform: scale(1.02);
}

/* Keep existing utility classes */
.max-width-pc {
  max-width: 1200px;
  text-align: center;
}

.titlebig {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.flex-h-space-between {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  flex-wrap: wrap;
  gap: 20px;
}

.detailsmall {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.overflow {
  width: 100%;
  overflow: hidden;
  /* Prevent layout shifts */
  min-height: 100%;
  position: relative;
  z-index: 3; /* Ensure ticker is above background image */
}

.absolute-full {
  position: absolute;
  top: 160px;
  left: 860px;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none; /* Allow interaction with foreground elements */
}

/* Animation performance optimizations */
.herostackwrapper img,
.solidstate-image,
.outline-image,
.card-image-2 {
  will-change: transform;
  transform: translateZ(0);
}

/* The Problem Section */
.theproblem-p1-section {
  position: relative;
  min-height: 100vh;
}

.scroll-trigger {
  position: relative;
}

.sticky-fullheight {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  /* Prevent layout shifts */
  will-change: transform;
  contain: layout style paint;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #001214;
  background-image: url("images/beach.webp");
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.the-problem-grid-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 40px;
}

.brow-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.sidenote {
  margin-bottom: 35px;
}

.rotate {
  transform: rotate(-90deg);
  transform-origin: center;
}

.white {
  color: #fff;
}

.expressivebig {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 40px;
}

.progresselement {
  margin-bottom: 40px;
}

.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.detaillarge {
  font-size: 24px;
  font-weight: 700;
}

.progress-line-wrapper {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: relative;
}

.top-line {
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.max-width {
  max-width: 800px;
  text-align: center;
  margin-bottom: 40px;
}

.bodylarge {
  font-size: 20px;
  line-height: 1.5;
}

.downarrow {
  width: 24px;
  height: 24px;
  opacity: 0.7;
}

/* The Problem Part 2 Section */
.theproblem-pt2-section {
  position: relative;
  min-height: 100vh;
}

.background-colour {
  background-color: #dbe1d2;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #000;
}

.half-half {
  display: flex;
  width: 100%;
  height: 100%;
}

.row-grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px;
}

.bottom-margin-2 {
  margin-bottom: 20px;
}

.titlesmall {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.dark {
  color: #000;
}

.car-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.image-stack {
  width: 100%;
  height: 100%;
}

.car-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.absolute-flex-bottom {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}

/* Progress Section for GSAP Animation */
.progress-section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-top: dashed 2px rgba(255, 255, 255, 0.5);
    border-bottom: dashed 2px rgba(255, 255, 255, 0.5); */
}

.progress-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0 10px;
  position: relative;
}

.progress-list {
  font-size: 30px;
  color: #fff;
  margin: 0;
  padding: 0;
  padding-right: 10px;
  list-style: none;
  flex-grow: 0;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #0ae448;
}

.progress-right {
  flex-grow: 1;
  position: relative;
}

.progress-slide {
  position: absolute;
  width: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
}

.progress-slide img {
  width: 100%;
  max-width: 300px;
}

/* Solid State Section */
.solidstate-section {
  padding: 80px 0;
  position: relative;
}

.dark-bg {
  background-color: #13272c;
}

.section-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.title-tags-wrapper {
  margin-bottom: 60px;
}

.titlehuge {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}

.light {
  color: #fff;
}

.tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.tag {
  padding: 8px 16px;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 30px;
}

.bodytinyhighlight {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.solid-state-content-wrapper {
  margin-top: 60px;
  border: 1px solid white;
  border-radius: 40px;
  padding: 30px;
  color: black;
  background-color: #dbe1d2;
}

.title-sub-side-by-side {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}

.max-width-pc-3 {
  flex: 1;
  /* max-width: 400px; */
}

.max-width-3 {
  flex: 2;
  max-width: 800px;
}

.sub-aligment-offset {
  margin-top: 10px;
}

.image-point-split {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.all-points-wrapper {
  flex: 1;
}

.point-wrapper {
  margin-bottom: 40px;
}

.dot-callout-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.dot {
  width: 12px;
  height: 12px;
}

.calloutlarge {
  font-size: 28px;
  font-weight: 700;
}

.image-area {
  flex: 1;
}

.solidstate-image-stack {
  position: relative;
}

.locator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 2;
}

.solidstate-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain; /* Prevent image stretching */
  object-position: center;
  transform: translateZ(0); /* Hardware acceleration */
}

/* The Difference Section */
.thedifference-section {
  position: relative;
  min-height: 100vh;
}

.flex-v-min-100 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.sticky-middle {
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}

.text-ticker {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

.is-wrap-h {
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.is-right-aligned {
  text-align: right;
}

.is-event-none {
  pointer-events: none;
}

.herostackwrapper-2 {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Bento Box Section */
.bentobox-section {
  background-color: #001214;
  padding: 80px 0;
}

.dark-bg-wrapper {
  background-color: #13272c;
}

.bento-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: auto;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.bentocard-wrapper {
  padding: 40px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dark-card {
  background-color: #333;
}

.energy-card {
  background-color: #dbe1d2;
  color: black;
}

.light-grey-cards {
  background-color: #dbe1d2;
  color: black;
}

.flex-v-space-between {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.gap-vw {
  gap: 20px;
}

.extra-gap-mb {
  margin-bottom: 40px;
}

.image-cardcontent-wrapper-v {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-image-wrapper-floating {
  margin-bottom: 20px;
}

.spillover {
  border-radius: 8px;
  overflow: hidden;
}

.gap-vw-2 {
  gap: 15px;
}

.image-cardcontent-wrapper-h {
  display: flex;
  height: 100%;
}

.max-height {
  height: 100%;
}

.padding {
  padding: 40px;
}

.gap-ovewrite {
  gap: 10px;
}

.card-image-wrapper-edgetoedge {
  flex: 1;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
}

.platform-image-bento {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateZ(0); /* Hardware acceleration */
}

/* Solution Section */
.solution-section {
  padding: 80px 0;
}

.padded-2 {
  padding: 0 40px;
}

.dark-theme-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.solution-content-grid {
  max-width: 1400px;
  margin: 0 auto;
}

.title-wrapper {
  text-align: center;
}

.titlemedium {
  font-size: 55px;
  font-weight: 700;
  line-height: 1.1;
}

.sub-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.detail-wrapper {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offset {
  margin-left: 20px;
}

.solution-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.min-height-battery {
  min-height: 300px;
}

.min-height-platform {
  min-height: 300px;
}

.outline-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  object-fit: contain; /* Prevent image stretching */
  object-position: center;
  transform: translateZ(0); /* Hardware acceleration */
}

/* Market Section */
.market-section {
  background-color: #001214;
  padding: 80px 0;
}

.market-wrapper-2 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.titlemedium-2 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.1;
}

.bodylarge-2 {
  font-size: 20px;
  line-height: 1.5;
}

.cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
  justify-content: center;
}

.card-wrapper-2 {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background-color: #dbe1d2;
  color: black;
  border-radius: 8px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.calloutlarge-2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.card-image-2 {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  margin-bottom: 20px;
  transform: translateZ(0); /* Hardware acceleration */
}

.figures-wrapper {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 20px;
}

.complement-2 {
  font-size: 18px;
  font-weight: 700;
}

.figures-2 {
  font-size: 32px;
  font-weight: 700;
}

.is-dark {
  color: #000;
}

.copy-source {
  margin-bottom: 20px;
}

.max-width-2 {
  max-width: 100%;
}

.bodysmall {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.7;
}

/* Sign Up Section */
.signup-section {
  background-color: #3f6d06;
  padding: 80px 0;
  position: relative;
}

.sign-up-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.element-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.1;
}

.element-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidenote-2 {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

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

.title-tag-wrapper {
  margin-bottom: 40px;
}

.largetag {
  margin-top: 10px;
}

.copy-form-wrapper {
  max-width: 600px;
}

.form-block {
  margin-top: 30px;
}

.email-form {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.formfield {
  flex: 1;
  min-width: 250px;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.formfield:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.formfield::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.sendbutton {
  padding: 15px 30px;
  background-color: #fff;
  color: #000;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  min-width: 120px;
}

.sendbutton:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sendbutton:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.success-message,
.error-message {
  margin-top: 15px;
  padding: 15px;
  border-radius: 4px;
}

.calloutmedium {
  font-size: 18px;
  font-weight: 600;
}

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

.green {
  color: #4caf50;
}

.calloutsmall {
  font-size: 14px;
  font-weight: 600;
}

.error {
  color: #f44336;
}

.flex-h-centre {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.kijona-footer {
  font-size: 10rem;
  text-align: center;
}

/* Climate Section */
.climate-section {
  background-image: url(images/forest.webp);
  padding: 80px 0;
  position: relative;
}

.climatesection-content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.gap-2 {
  gap: 40px;
}

.wrap {
  flex-wrap: wrap;
}

.stack {
  flex-direction: column;
}

.is-glass {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.is-climate-card {
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.wrap-anywhere {
  flex-wrap: wrap;
}

.is-climate-card-figure {
  margin: 20px 0;
}

.complement {
  font-size: 24px;
  font-weight: 700;
}

.symbol {
  font-size: 18px;
}

.card-bottom-content {
  margin-top: 20px;
}

.is-15-pc-tp {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.card-marginoffset {
  margin-bottom: 20px;
}

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("images/forest.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 1;
}

.is-home {
  opacity: 0.05;
}

/* Partner CTA Section */
.partnercta-section {
  padding: 80px 0;
  background-color: #dbe1d2;
  color: #132528;
}

.partnercta-wrapper {
  /* max-width: 1400px;
  margin: 0 auto; */
  padding: 0 40px;
}

.ticker-wrapper {
  margin-bottom: 60px;
}

.light-theme-divider {
  height: 1px;
  background-color: #132528;
  margin: 20px 0;
}

.is-partner-ticker {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0 20px;
}

.partners-content-grid {
  text-align: center;
}

.partner-margin {
  margin-bottom: 30px;
}

.ctas-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.secondary-cta {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
  border: 1px solid #000;
  padding: 20px 20px;
  transition: all 0.3s ease;
  border-radius: 40px;
}

.secondary-cta:hover {
  background-color: #13272c;
  color: #fff !important;
}

.is-transparent {
  opacity: 0.7;
}

.footer {
  color: #bdff69;
  padding: 60px 0 30px;
  background-color: #132528;
}

.scrollwrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-footer-wrapper {
  margin-bottom: 40px;
}

.logo-footer {
  width: 120px;
  height: auto;
}

.adresses-wrapper {
  margin-bottom: 40px;
}

.linedrow {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.line {
  flex-grow: 1;
  height: 1px;
  background-color: #ffffff; /* subtle grey line */
}

.rowcontent-wrapper {
  padding: 0 40px;
}

.footer-linkout {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-linkout:hover {
  opacity: 0.8;
}

.image-5 {
  width: 16px;
  height: 16px;
}

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

.tsp-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.tsp-wrapper:hover {
  opacity: 1;
}

#features {
  position: absolute;
  bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  max-width: 100%;
}

#features span {
  /* background-color: rgba(255, 255, 255, 0.2); */
  /* padding: 10px 15px; */
  /* border-radius: 20px; */
  /* font-weight: 600; */
  text-transform: uppercase;
  font-size: 0.8rem;
  /* letter-spacing: 1px; */
  color: antiquewhite;
}

@media (min-width: 768px) {
  .section-wrapper {
    padding: 40px;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  /* .nav-bar {
    padding: 15px 20px;
  } */
  #features {
    position: relative;
  }
  .padded {
    padding: 0 20px;
  }

  .titlebig {
    font-size: 36px;
  }

  .expressivebig {
    font-size: 48px;
  }

  .titlehuge {
    font-size: 36px;
  }

  .titlesmall {
    font-size: 24px;
  }

  .titlemedium {
    font-size: 32px;
  }

  .image-point-split {
    flex-direction: column;
    gap: 40px;
  }

  .bento-grid-wrapper {
    grid-template-columns: 1fr;
  }

  .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .email-form {
    flex-direction: column;
  }

  .footerbottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

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

  .section-wrapper {
    padding: 40px 0px;
  }

  .padded-2 {
    padding: 0;
  }
  .detaillarge {
    padding: 7px;
  }

  .kijona-footer {
    font-size: 4rem;
    text-align: center;
  }
  .padded-text {
    padding: 20px;
  }

  .car-image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .nav-bar .nav-buttons-wrapper {
    display: none;
  }

  /* about  */
  .market-section {
    background-color: #001214;
    padding: 0;
  }
}

/* Additional responsive improvements */

/* Improve touch targets for mobile */
@media (max-width: 767px) {
  .menu-button,
  .primary-cta,
  .secondary-cta,
  .sendbutton {
    min-height: 44px; /* iOS touch target size */
    min-width: 44px;
  }

  .nav-open-link-wrapper {
    min-height: 44px; /* iOS touch target size */
    padding: 15px 20px;
  }

  .close-nav-wrapper {
    min-width: 44px;
    min-height: 44px;
  }

  .logo-nav {
    font-size: 2rem !important;
  }
  /* Improve readability on mobile */
  .bodylarge,
  .bodylarge-2 {
    line-height: 1.6;
  }

  .bodysmall {
    line-height: 1.5;
  }

  .market-wrapper-2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
  }

  /* Reduce motion for users who prefer it */
  @media (prefers-reduced-motion: reduce) {
    .ticker-flex {
      animation: none;
    }

    .herostackwrapper img,
    .solidstate-image,
    .outline-image,
    .card-image-2 {
      will-change: auto;
      transform: none;
    }

    * {
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
    }
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .tag {
    border-width: 2px;
  }

  .primary-cta,
  .secondary-cta,
  .menu-button {
    border-width: 2px;
  }

  .formfield {
    border-width: 2px;
  }
}

/* Dark mode improvements */
@media (prefers-color-scheme: dark) {
  .formfield {
    color: #fff;
  }

  .formfield::placeholder {
    color: rgba(255, 255, 255, 0.7);
  }
}

/* Print styles */
@media print {
  .main-nav,
  .nav-overlay,
  .partnercta-section,
  .signup-section {
    display: none !important;
  }

  body {
    background: #fff !important;
    color: #000 !important;
  }

  .solidstate-section,
  .market-section,
  .climate-section {
    background: #fff !important;
    color: #000 !important;
    padding: 20px !important;
  }

  .titlebig,
  .titlehuge,
  .expressivebig,
  .titlesmall,
  .titlemedium,
  .bodylarge,
  .calloutlarge {
    color: #000 !important;
  }

  .herostackwrapper,
  .solidstate-image,
  .card-image-2 {
    display: none;
  }

  .bentocard-wrapper,
  .card-wrapper-2 {
    border: 1px solid #000 !important;
    background: #fff !important;
    color: #000 !important;
    page-break-inside: avoid;
  }
}

/* Responsive positioning for hero images */
@media (max-width: 1024px) {
  .absolute-full {
    top: 150px;
    left: 100px;
  }

  .kijona-footer {
    font-size: 6rem;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .absolute-full {
    top: 100px;
    left: 50px;
    right: 0;
  }
}

@media (max-width: 479px) {
  .kijona-footer {
    font-size: 2rem;
    text-align: center;
  }
  .absolute-full {
    top: 80px;
    left: 20px;
    right: 0;
  }
}
