/* Import Page-Specific Styles */
.product-page__hero {
  position: relative;
  background: url("/images/product/wave-pattern.svg") no-repeat center center;
  background-size: cover;
  overflow: hidden;
  font-family: var(--font-family-base);
}
.product-page__hero__content {
  max-width: 650px;
  margin-left: clamp(2rem, 8vw, 6rem);
}
.product-page__hero__banner {
  background: white;
  padding: clamp(2rem, 5vw, 2.5rem);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}
.product-page__hero h1 {
  font-size: clamp(2rem, 5vw, 3rem); /* Responsive heading */
  color: var(--text-dark);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  max-width: 500px;
}
.product-page__hero p {
  font-size: clamp(1rem, 2.5vw, 1.125rem); /* Responsive paragraph */
  color: var(--text-dark);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}
.product-page__hero .button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}
.product-page__hero .button-group .button {
  flex: 1;
  text-align: center;
  min-width: 0;
}
.product-page__features {
  background: var(--primary-purple-dark);
  color: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-page__features .container {
  position: relative;
  z-index: 2;
}
.product-page__features h2 {
  color: var(--bg-white);
  font-size: clamp(1.75rem, 4vw, 2.25rem); /* Responsive heading */
  margin-bottom: clamp(3rem, 6vw, 4rem);
}
.product-page__features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2rem); /* Responsive gap */
  justify-items: center;
}
.product-page__features__card {
  background: white;
  border-radius: 0.3125rem;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(1rem, 3vw, 1.5rem); /* Responsive padding */
  text-align: left;
  position: relative;
  z-index: 2;
  max-width: 300px;
}
.product-page__features__card h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem); /* Responsive card title */
  color: var(--text-dark);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}
.product-page__features__card p {
  font-size: clamp(0.875rem, 2vw, 1rem); /* Responsive card text */
  color: var(--text-dark);
}
.product-page__features__pattern-left {
  position: absolute;
  top: -1.25rem;
  left: -3.125rem;
  width: 25rem;
  height: 80%;
  z-index: 1;
  background-image: url("/images/product/feature-grid-left.svg");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
}
.product-page__features__pattern-right {
  position: absolute;
  bottom: -1.25rem;
  right: -3.125rem;
  width: 25rem;
  height: 80%;
  z-index: 1;
  background-image: url("/images/product/feature-grid-right.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
}
.product-page__how-it-works {
  background: white;
}
.product-page__how-it-works h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem); /* Responsive heading */
  margin-bottom: clamp(3rem, 6vw, 4rem);
  color: var(--text-dark);
  text-align: center;
}
.product-page__how-it-works__steps {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: clamp(800px, 90vw, 1000px);
  margin-left: auto;
  margin-right: auto;
}
.product-page__how-it-works__steps .step {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem); /* Responsive gap */
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  text-align: left;
  max-width: 600px;
  align-items: flex-start;
}
.product-page__how-it-works__steps .step:last-child {
  margin-bottom: 0;
}
.product-page__how-it-works__steps .step--1 {
  margin-left: 0;
}
.product-page__how-it-works__steps .step--2 {
  margin-left: clamp(6rem, 12vw, 9.375rem); /* Responsive margin */
}
.product-page__how-it-works__steps .step--3 {
  margin-left: clamp(12rem, 24vw, 18.75rem); /* Responsive margin */
}
.product-page__how-it-works__steps .step--4 {
  margin-left: auto;
  margin-right: 0;
}
.product-page__how-it-works__steps .step__number {
  font-family: var(--font-family-base);
  width: clamp(3rem, 6vw, 4rem); /* Responsive number circle */
  height: clamp(3rem, 6vw, 4rem);
  background: var(--primary-teal);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 5vw, 3.75rem); /* Responsive number */
  font-weight: 600;
  color: var(--bg-white);
  flex-shrink: 0;
}
.product-page__how-it-works__steps .step__content {
  flex: 1;
  padding-top: 0;
}
.product-page__how-it-works__steps .step__content h3 {
  font-weight: 600;
  font-size: clamp(1.25rem, 3vw, 1.5rem); /* Responsive step title */
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.product-page__how-it-works__steps .step__content p {
  font-size: clamp(0.875rem, 2vw, 1rem); /* Responsive step text */
  color: var(--text-dark);
}
.product-page__how-it-works .button-group {
  text-align: center;
  justify-content: center;
}
.product-page__benefits {
  background: var(--primary-purple-dark);
  color: var(--bg-white);
  text-align: center;
}
.product-page__benefits h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem); /* Responsive heading */
  margin-bottom: clamp(3rem, 6vw, 4rem);
  color: var(--bg-white);
}
.product-page__benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 3rem); /* Responsive gap */
}
.product-page__benefits__grid .benefit {
  text-align: center;
  max-width: 300px;
}
.product-page__benefits__grid .benefit h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem); /* Responsive benefit title */
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  color: var(--bg-white);
}
.product-page__benefits__grid .benefit p {
  font-size: clamp(0.875rem, 2vw, 1rem); /* Responsive benefit text */
  color: var(--bg-white);
  background-color: transparent;
}
.product-page__applications {
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
.product-page__applications h2 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: clamp(3rem, 6vw, 4rem);
  text-align: center;
}
.product-page__applications__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 2.5rem);
  position: relative;
  z-index: 2;
}
.product-page__applications .application-card {
  background: var(--bg-white);
  border-radius: 0.75rem;
  padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 300px;
}
.product-page__applications .application-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.product-page__applications .application-card__icon {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  justify-content: flex-start;
}
.product-page__applications .application-card__icon .cube-icon {
  width: clamp(3rem, 6vw, 4rem);
  height: clamp(3rem, 6vw, 4rem);
  display: block;
}
.product-page__applications .application-card h3 {
  font-size: clamp(1.25rem, 2.8vw, 1.4rem);
  color: var(--text-dark);
  margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
  min-height: clamp(3.5rem, 8vw, 4.5rem);
  display: flex;
  align-items: flex-start;
}
.product-page__applications .application-card p {
  font-size: clamp(0.875rem, 2vw, 1rem);
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.85;
}
.product-page__applications__pattern-left {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  width: 12rem;
  height: 8rem;
  background: var(--primary-teal);
  opacity: 0.1;
  transform: skew(-15deg);
  border-radius: 1rem;
  z-index: 1;
}
.product-page__applications__pattern-right {
  position: absolute;
  bottom: -1rem;
  right: -3rem;
  width: 15rem;
  height: 6rem;
  background: var(--primary-teal);
  opacity: 0.15;
  transform: skew(20deg) rotate(-5deg);
  border-radius: 1rem;
  z-index: 1;
}
.product-page__cta {
  background: white;
  position: relative;
}
.product-page__cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 4rem); /* Responsive gap */
  position: relative;
  z-index: 2;
}
.product-page__cta__content {
  text-align: left;
}
.product-page__cta__content h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem); /* Responsive heading */
  color: var(--text-dark);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}
.product-page__cta__content p {
  font-size: clamp(0.875rem, 2vw, 1rem); /* Responsive paragraph */
  color: var(--text-dark);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}
.product-page__cta__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-page__cta__pattern {
  width: 100%;
  height: clamp(15rem, 30vw, 18.75rem); /* Responsive pattern height */
  background-image: url("/images/product/grid-wave-pattern.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.product-page__cta .button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}
.product-page__cta .button-group .button {
  flex: 1;
  text-align: center;
  min-width: 0;
}
@media (max-width: 1200px) {
  .product-page__how-it-works__steps {
    max-width: clamp(700px, 85vw, 900px);
  }
  .product-page__how-it-works__steps .step {
    max-width: 500px;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    align-items: flex-start;
  }
  .product-page__how-it-works__steps .step--1 {
    margin-left: 0;
  }
  .product-page__how-it-works__steps .step--2 {
    margin-left: clamp(4rem, 8vw, 6.25rem);
  }
  .product-page__how-it-works__steps .step--3 {
    margin-left: clamp(8rem, 16vw, 12.5rem);
  }
  .product-page__how-it-works__steps .step--4 {
    margin-left: auto;
    margin-right: 0;
  }
}
@media (max-width: 1024px) {
  .product-page__hero__content {
    margin-left: clamp(1rem, 4vw, 2rem);
    margin-right: clamp(1rem, 4vw, 2rem);
  }
  .product-page__features__grid, .product-page__benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-page__applications__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3.5vw, 2rem);
  }
  .product-page__features__pattern-left {
    width: 15.625rem;
    left: -1.875rem;
    top: -0.625rem;
  }
  .product-page__features__pattern-right {
    width: 15.625rem;
    right: -1.875rem;
    bottom: -0.625rem;
  }
  .product-page__how-it-works__steps {
    max-width: clamp(600px, 80vw, 800px);
  }
  .product-page__how-it-works__steps .step {
    max-width: 100%;
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    align-items: flex-start;
  }
  .product-page__how-it-works__steps .step--1 {
    margin-left: 0;
  }
  .product-page__how-it-works__steps .step--2 {
    margin-left: clamp(3rem, 6vw, 5rem);
  }
  .product-page__how-it-works__steps .step--3 {
    margin-left: clamp(6rem, 12vw, 10rem);
  }
  .product-page__how-it-works__steps .step--4 {
    margin-left: auto;
    margin-right: 0;
  }
  .product-page__how-it-works__steps .step__content {
    padding-top: 0;
  }
  .product-page__cta {
    background: white;
    position: relative;
  }
  .product-page__cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/images/product/grid-wave-pattern.svg") no-repeat center right;
    background-size: contain;
    opacity: 0.3;
    z-index: 1;
  }
  .product-page__cta .container {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 2.5rem);
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .product-page__cta__image {
    display: none;
  }
}
@media (max-width: 768px) {
  .product-page__hero {
    text-align: center;
  }
  .product-page__hero__content {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    padding: 0 clamp(1rem, 3vw, 1.25rem);
  }
  .product-page__hero__banner {
    padding: clamp(1.5rem, 4vw, 1.875rem) clamp(1rem, 3vw, 1.25rem);
    margin-left: 0;
    margin-right: 0;
  }
  .product-page__features__grid, .product-page__benefits__grid, .product-page__applications__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .product-page__applications h2 {
    margin-bottom: clamp(2.5rem, 5vw, 3rem);
  }
  .product-page__applications__grid {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
  .product-page__applications .application-card {
    padding: clamp(1.5rem, 3.5vw, 2rem) clamp(1.25rem, 2.8vw, 1.75rem);
  }
  .product-page__applications .application-card__icon .cube-icon {
    width: clamp(2.5rem, 5vw, 3rem);
    height: clamp(2.5rem, 5vw, 3rem);
  }
  .product-page__applications .application-card h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    margin-bottom: clamp(0.875rem, 2vw, 1rem);
  }
  .product-page__applications .application-card p {
    font-size: clamp(0.8125rem, 1.9vw, 0.9375rem);
    line-height: 1.55;
  }
  .product-page__applications__pattern-left, .product-page__applications__pattern-right {
    display: none;
  }
  .product-page__features__pattern-left, .product-page__features__pattern-right {
    display: none;
  }
  .product-page__how-it-works__steps {
    max-width: 100%;
  }
  .product-page__how-it-works__steps .step {
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: clamp(1.5rem, 3vw, 1.875rem);
    align-items: flex-start;
  }
  .product-page__how-it-works__steps .step__number {
    width: clamp(2.5rem, 5vw, 3.125rem);
    height: clamp(2.5rem, 5vw, 3.125rem);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
  }
  .product-page__how-it-works__steps .step__content {
    padding-top: 0;
  }
  .product-page__cta::before {
    background-size: contain;
    background-position: center;
    opacity: 0.1;
  }
  .product-page__cta__pattern {
    height: clamp(10rem, 20vw, 12.5rem);
  }
}
@media (max-width: 480px) {
  .product-page__hero__content {
    padding: 0 clamp(0.75rem, 2vw, 0.9375rem);
  }
  .product-page__hero__banner {
    padding: clamp(1rem, 3vw, 1.25rem) clamp(0.75rem, 2vw, 0.9375rem);
    margin-left: 0;
    margin-right: 0;
  }
  .product-page__applications .application-card {
    padding: clamp(1.25rem, 3vw, 1.5rem) clamp(1rem, 2.5vw, 1.25rem);
  }
  .product-page__applications .application-card__icon {
    margin-bottom: clamp(1.25rem, 2.8vw, 1.5rem);
  }
  .product-page__applications .application-card__icon .cube-icon {
    width: clamp(2.25rem, 4.5vw, 2.75rem);
    height: clamp(2.25rem, 4.5vw, 2.75rem);
  }
  .product-page__applications .application-card h3 {
    font-size: clamp(1rem, 2.3vw, 1.125rem);
  }
  .product-page__applications .application-card p {
    font-size: clamp(0.75rem, 1.8vw, 0.875rem);
  }
  .product-page__how-it-works__steps .step {
    align-items: flex-start;
  }
  .product-page__how-it-works__steps .step__number {
    width: clamp(2rem, 4vw, 2.5rem);
    height: clamp(2rem, 4vw, 2.5rem);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
  }
  .product-page__how-it-works__steps .step__content {
    padding-top: 0;
  }
}

/* Home Page Hero Styles */
.hero {
  padding: 0 10vw;
  background: transparent;
  text-align: left;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 15vh;
  padding-bottom: 35vh;
  background-image: url("/chain-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.hero-main h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  opacity: 0.85;
}

.hero-description {
  padding: 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-dark);
  opacity: 0.75;
  max-width: clamp(40rem, 80vw, 50rem);
}

.hero-description strong {
  opacity: 0.9;
}

.chain-graphic {
  display: none; /* Hide the original image since we're using it as background */
}

.accounting-text {
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  letter-spacing: 0.2em;
  color: var(--primary-purple-dark);
}

.placeholder-page {
  text-align: center;
  max-width: clamp(40rem, 80vw, 56.25rem);
  margin: 3rem 0 0 4vw;
  padding: 2rem 3vw;
  background: var(--bg-white);
}

/* Hero Responsive Styles */
@media (max-width: 700px) {
  .hero {
    padding: 10vh 5vw;
    min-height: 80vh;
    text-align: center;
  }
  .hero-main h1 {
    text-align: center;
  }
  .hero-description {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 8vh 3vw;
  }
}
/* Home Page Components */
.home-page__hero {
  background: white;
  display: flex;
  align-items: center;
  padding: 0 !important;
  overflow: visible; /* Allow pattern to extend beyond section */
  position: relative;
  z-index: 1; /* Lower z-index for hero section */
}
.home-page__hero .container {
  display: grid;
  grid-template-columns: 3fr 2fr; /* 60% content, 40% graphic */
  gap: clamp(3rem, 8vw, 5rem); /* Responsive gap */
  align-items: center;
}
.home-page__hero__content h1 {
  font-size: clamp(2rem, 5vw, 3rem); /* Responsive font size */
  color: var(--text-dark);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  max-width: clamp(500px, 90%, 650px); /* Responsive max-width to use more space */
}
.home-page__hero__content p {
  font-size: clamp(1rem, 2.5vw, 1.125rem); /* Responsive paragraph text */
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  max-width: clamp(450px, 85%, 600px); /* Responsive max-width to use more space */
}
.home-page__hero__graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: visible; /* Allow pattern to extend beyond */
}
.home-page__hero__pattern {
  width: 100%;
  height: clamp(27rem, 54vw, 33.75rem); /* Original responsive height */
  background-image: url("/images/home/page__hero_pattern.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 115%;
  position: relative;
  z-index: 1; /* Lower z-index so next section appears on top */
  margin-bottom: clamp(-11rem, -24vw, -8.75rem); /* Negative margin to extend bottom 35% below section */
}
.home-page__hero .button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  width: 80%; /* Use 75% of the content space */
}
.home-page__hero .button-group .button {
  flex: 1;
  text-align: center;
  min-width: 0;
}
.home-page__pillars {
  background: var(--primary-purple-dark);
  color: var(--bg-white);
  text-align: center;
  position: relative;
  z-index: 2; /* Higher z-index to appear above hero pattern */
}
.home-page__pillars h2 {
  font-family: var(--font-family-base);
  font-size: clamp(1.75rem, 4vw, 2.25rem); /* Responsive heading */
  line-height: 1.2;
  margin-bottom: clamp(3rem, 6vw, 4rem);
  color: var(--bg-white);
}
.home-page__pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 3rem); /* Responsive gap */
  max-width: 900px; /* Reduce overall width of the grid */
  margin: 0 auto; /* Center the grid */
}
.home-page__pillars .pillar {
  text-align: center;
}
.home-page__pillars .pillar__icon {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  justify-content: center;
}
.home-page__pillars .pillar__icon__placeholder {
  width: clamp(3rem, 6vw, 4rem); /* Responsive icon size */
  height: clamp(3rem, 6vw, 4rem);
  background-image: url("/images/home/pillar__icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.home-page__pillars .pillar h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem); /* Responsive subheading */
  color: var(--bg-white);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  background: transparent;
}
.home-page__pillars .pillar p {
  font-size: clamp(0.875rem, 2vw, 1rem); /* Responsive body text */
  color: var(--bg-white);
  background: transparent;
}
.home-page__serve {
  background: var(--bg-grey);
  text-align: center;
}
.home-page__serve h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem); /* Responsive heading */
  margin-bottom: clamp(3rem, 6vw, 4rem);
  color: var(--text-dark);
}
.home-page__serve__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2rem); /* Responsive gap */
  margin: 0 auto; /* Center the grid */
  margin-bottom: clamp(2rem, 5vw, 3rem);
  max-width: 900px; /* Reduce overall width of the grid */
}
.home-page__serve .serve-card {
  background: white;
  border-radius: 0.75rem;
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem); /* Responsive padding */
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: clamp(12rem, 25vw, 15rem); /* Responsive min-height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-page__serve .serve-card__content {
  position: relative;
  z-index: 2;
}
.home-page__serve .serve-card__content h3 {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem); /* Responsive card title */
  color: var(--text-dark);
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}
.home-page__serve .serve-card__content p {
  font-size: clamp(0.875rem, 2vw, 1rem); /* Responsive card text */
  color: var(--text-dark);
}
.home-page__serve .serve-card__pattern {
  position: absolute;
  top: 0;
  right: clamp(0.5rem, 0.1vw, 0.1rem);
  width: clamp(4rem, 8vw, 6.25rem); /* Responsive pattern size */
  height: clamp(3rem, 6vw, 4.375rem);
  background-image: url("/images/home/card__pattern.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}
.home-page__serve .button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.home-page__serve .button-group .button {
  flex: 0 0 auto;
  text-align: center;
}
.home-page__flagship {
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.home-page__flagship .container {
  max-width: var(--container-width-wide);
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page__flagship__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* Prevent interference with content */
}
.home-page__flagship__pattern__graphic {
  width: 100%;
  height: 100%;
  background-image: url("/images/home/flagship_pattern_graphic.svg");
  background-repeat: no-repeat;
  background-position: calc(50% - 600px) center;
  background-size: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.home-page__flagship__content {
  background: transparent;
  max-width: 600px;
  margin: 0;
  text-align: left;
  position: relative;
  z-index: 2; /* Ensure content stays on top */
}
.home-page__flagship__content h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem); /* Responsive heading */
  color: var(--text-dark);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  background: transparent;
}
.home-page__flagship__content p {
  font-size: clamp(1rem, 2.5vw, 1.125rem); /* Responsive paragraph */
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
  max-width: 500px;
  background: transparent;
}
.home-page__flagship .button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2; /* Ensure buttons stay on top */
}
.home-page__flagship .button-group .button {
  flex: 0 0 auto;
}
.home-page__why-unyt {
  background: var(--primary-teal);
  color: var(--text-dark);
}
.home-page__why-unyt h2 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  color: var(--text-dark);
  margin-bottom: clamp(3rem, 6vw, 4rem);
  text-align: center;
}
.home-page__why-unyt__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 2.5rem);
  max-width: clamp(50rem, 80vw, 65rem);
  margin: 0 auto;
}
.home-page__why-unyt .why-unyt-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.home-page__why-unyt .why-unyt-item__icon {
  flex-shrink: 0;
  margin-top: 0.2rem;
}
.home-page__why-unyt .why-unyt-item__icon .purple-square {
  width: clamp(1rem, 2vw, 1.25rem);
  height: clamp(1rem, 2vw, 1.25rem);
  background: var(--primary-purple-dark);
  border-radius: 2px;
}
.home-page__why-unyt .why-unyt-item__content {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.6;
  color: var(--text-dark);
}
.home-page__why-unyt .why-unyt-item__content strong {
  font-weight: 600;
  color: var(--text-dark);
}
@media (max-width: 1024px) {
  .home-page__hero {
    position: relative;
  }
  .home-page__hero .container {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .home-page__hero__graphic {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none; /* Prevent interference with content */
  }
  .home-page__hero__pattern {
    opacity: 0.2; /* Slightly higher opacity for tablet */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(27rem, 54vw, 33.75rem); /* Same original height */
    background-position: right top;
    background-size: 115%;
    margin-bottom: clamp(-11rem, -24vw, -8.75rem); /* Negative margin to extend bottom 35% below section */
  }
  .home-page__hero__content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    text-align: center;
  }
  .home-page__hero .button-group {
    justify-content: center; /* Center buttons on tablet */
    width: 100%; /* Full width for centering */
  }
  .home-page__hero .button-group .button {
    flex: 0 1 auto; /* Allow buttons to size naturally */
    min-width: 140px; /* Minimum width for readability */
  }
  .home-page__pillars__grid, .home-page__serve__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-page__flagship .container {
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2; /* Ensure content stays on top */
  }
  .home-page__flagship__content {
    margin: 0;
    max-width: 100%;
    text-align: center;
    position: relative;
    z-index: 2; /* Ensure content stays on top */
  }
  .home-page__flagship__pattern {
    z-index: 1; /* Keep pattern in background */
  }
  .home-page__flagship__pattern__graphic {
    background-position: center;
    background-size: contain; /* Maintain consistent size */
    opacity: 0.2; /* Reduce opacity for better content readability */
  }
  .home-page__why-unyt__grid {
    max-width: clamp(45rem, 90vw, 55rem);
  }
  .home-page__why-unyt .why-unyt-item {
    gap: clamp(0.875rem, 2vw, 1.25rem);
  }
  .home-page__why-unyt .why-unyt-item__content {
    font-size: clamp(0.9375rem, 2.1vw, 1.0625rem);
  }
}
@media (max-width: 768px) {
  .home-page__hero {
    position: relative;
  }
  .home-page__hero .container {
    grid-template-columns: 1fr;
    gap: 0;
    position: relative;
    z-index: 2;
  }
  .home-page__hero__graphic {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none; /* Prevent interference with content */
  }
  .home-page__hero__pattern {
    opacity: 0.1; /* Lower opacity for mobile background effect */
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(27rem, 54vw, 33.75rem); /* Same original height */
    background-position: right top;
    background-size: 115%;
    margin-bottom: clamp(-11rem, -24vw, -8.75rem); /* Negative margin to extend bottom 35% below section */
  }
  .home-page__hero__content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    text-align: center;
  }
  .home-page__hero .button-group {
    justify-content: center; /* Center buttons on mobile */
    width: 100%; /* Full width for centering */
  }
  .home-page__hero .button-group .button {
    flex: 0 1 auto; /* Allow buttons to size naturally */
    min-width: 140px; /* Minimum width for readability */
  }
  .home-page__pillars__grid, .home-page__serve__grid {
    grid-template-columns: 1fr;
  }
  .home-page__flagship__content {
    text-align: center;
    position: relative;
    z-index: 2; /* Ensure content stays on top */
  }
  .home-page__flagship__pattern {
    z-index: 1; /* Keep pattern in background */
  }
  .home-page__flagship__pattern__graphic {
    background-position: center;
    background-size: contain; /* Maintain consistent size */
    opacity: 0.1; /* Further reduce opacity for mobile */
  }
  .home-page__why-unyt h2 {
    margin-bottom: clamp(2.5rem, 5vw, 3rem);
  }
  .home-page__why-unyt__grid {
    gap: clamp(1.5rem, 3.5vw, 2rem);
    max-width: 100%;
  }
  .home-page__why-unyt .why-unyt-item {
    gap: clamp(0.75rem, 1.8vw, 1rem);
  }
  .home-page__why-unyt .why-unyt-item__icon .purple-square {
    width: clamp(0.875rem, 1.8vw, 1rem);
    height: clamp(0.875rem, 1.8vw, 1rem);
  }
  .home-page__why-unyt .why-unyt-item__content {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.55;
  }
  .home-page .serve-card {
    padding: clamp(1rem, 3vw, 1.5rem);
  }
  .home-page .button-group {
    justify-content: center;
  }
  .home-page .button-group .button {
    flex: 1 1 auto;
    min-width: 8.75rem;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .home-page .serve-card {
    padding: clamp(0.75rem, 2vw, 1rem);
  }
  .home-page__why-unyt .why-unyt-item__content {
    font-size: clamp(0.8125rem, 1.9vw, 0.9375rem);
  }
}

.about-page {
  min-height: 100vh;
}
.about-page__hero {
  background: var(--primary-teal);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
  min-height: clamp(16rem, 32vw, 22rem); /* Slightly increased height for better proportion */
  display: flex;
  align-items: center;
}
.about-page__hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 6vw, 4rem); /* Responsive gap */
  position: relative;
}
.about-page__hero__content {
  flex: 0 0 60%;
  flex-shrink: 0;
  z-index: 2;
  max-width: 60%;
}
.about-page__hero__content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: #000;
  margin-bottom: clamp(1.2rem, 3vw, 1.8rem); /* Responsive margin */
}
.about-page__hero__description {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: #000;
  opacity: 1;
  background-color: transparent;
  line-height: 1.6;
  width: 100%;
}
.about-page__hero__graphic {
  position: absolute;
  right: -15%;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 1;
  overflow: visible;
}
.about-page__hero__pattern {
  width: 140%;
  height: clamp(16rem, 32vw, 24rem); /* Increased height for larger display */
  background-image: url("/images/about/hero-cubes.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.about-page__hero__cubes {
  display: none;
}
@media (max-width: 992px) {
  .about-page__hero__content {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .about-page__hero__graphic {
    right: -20%;
    width: 65%;
  }
}
@media (max-width: 768px) {
  .about-page__hero {
    min-height: clamp(14rem, 28vw, 18rem); /* Slightly increased mobile height */
    text-align: center;
    position: relative;
  }
  .about-page__hero .container {
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
  }
  .about-page__hero__content {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    flex: none;
    position: relative;
    z-index: 3;
    padding: clamp(2rem, 5vw, 3rem);
  }
  .about-page__hero__graphic {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    transform: none;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
  }
  .about-page__hero__pattern {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    opacity: 0.7;
  }
}
.about-page__principles {
  background: #f8fafc;
  position: relative;
  overflow: visible;
}
.about-page__principles::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  width: clamp(35rem, 60vw, 50rem);
  height: 140%;
  background-image: url("/images/about/principle-edge-pattern.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  z-index: 1;
}
.about-page__principles .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .about-page__principles::before {
    top: 15%;
    width: clamp(30rem, 70vw, 35rem);
    height: 130%;
    opacity: 0.1;
    background-size: contain;
  }
}
@media (max-width: 480px) {
  .about-page__principles::before {
    top: 10%;
    width: clamp(25rem, 80vw, 30rem);
    height: 120%;
  }
}
.about-page__principles__header {
  text-align: center;
  margin-bottom: clamp(3.5rem, 7vw, 5rem); /* Responsive margin */
}
.about-page__principles__header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--text-dark);
}
.about-page__principles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3.5rem, 7vw, 5rem) clamp(5rem, 10vw, 8rem); /* Responsive gaps */
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about-page__principles__grid {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }
}
.about-page__principles__item {
  text-align: center;
  position: relative;
}
.about-page__principles__item h3 {
  font-size: clamp(1.3rem, 3.2vw, 1.6rem); /* Responsive font size */
  margin-bottom: clamp(0.8rem, 2.2vw, 1.2rem); /* Responsive margin */
  color: var(--text-dark);
}
.about-page__principles__item p {
  color: var(--text-dark);
  opacity: 0.85;
  line-height: 1.65;
  font-size: clamp(0.9rem, 2.1vw, 1.05rem); /* Responsive font size */
}
.about-page__story {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.about-page__story__content {
  max-width: clamp(42rem, 85vw, 55rem); /* Responsive max-width */
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding: clamp(2.5rem, 6vw, 4rem); /* Add responsive padding around content */
}
.about-page__story__content h2 {
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem); /* Responsive margin */
  color: var(--text-dark);
  text-align: left;
  line-height: 1.25;
}
.about-page__story__text p {
  font-size: clamp(1rem, 2.3vw, 1.15rem); /* Responsive font size */
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: clamp(1.8rem, 3.5vw, 2.2rem); /* Responsive margin */
  text-align: left;
}
.about-page__story__text p:last-child {
  margin-bottom: 0;
}
.about-page__story__pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.about-page__story__pattern .wave-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/images/about/story-background-pattern.svg") no-repeat center;
  background-size: cover;
}
.about-page__cta {
  background: var(--primary-teal);
  color: var(--bg-white);
}
.about-page__cta__content {
  max-width: var(--container-width-narrow); /* Responsive max-width */
  margin: 0 auto;
  text-align: left;
}
.about-page__cta__content h2 {
  font-size: clamp(2rem, 4.2vw, 2.6rem);
  margin-bottom: clamp(1rem, 2.5vw, 1.4rem); /* Responsive margin */
  color: #000;
}
.about-page__cta__content p {
  background-color: transparent;
  font-size: clamp(1rem, 2.3vw, 1.15rem); /* Responsive font size */
  margin-bottom: clamp(2rem, 4.5vw, 2.8rem); /* Responsive margin */
  color: #000;
}
@media (max-width: 768px) {
  .about-page__cta__content {
    text-align: center;
  }
}
.about-page__cta .button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}
.about-page__cta .button-group .button {
  flex: 1;
  text-align: center;
  min-width: 0;
}
.about-page__team {
  background: white;
}
.about-page__team__header {
  text-align: center;
  margin-bottom: clamp(3.5rem, 7vw, 5rem); /* Responsive margin */
}
.about-page__team__header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--text-dark);
}
.about-page__team__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(2rem, 5vw, 3rem); /* Responsive gap */
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .about-page__team__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .about-page__team__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 4vw, 2rem);
  }
}
@media (max-width: 480px) {
  .about-page__team__grid {
    grid-template-columns: 1fr;
  }
}
.about-page__team__member {
  text-align: center;
}
.about-page__team__member a {
  text-decoration: none;
}
.about-page__team__member h3 {
  margin-top: clamp(1rem, 2.5vw, 1.4rem); /* Responsive margin */
  font-size: clamp(1.1rem, 2.6vw, 1.25rem); /* Responsive font size */
  color: var(--text-dark);
}
.about-page__team__photo {
  width: clamp(8rem, 20vw, 10rem); /* Responsive photo size */
  height: clamp(8rem, 20vw, 10rem);
  overflow: hidden;
  margin: 0 auto;
  background: #e2e8f0;
}
.about-page__team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 480px) {
  .about-page__team__photo {
    width: clamp(7rem, 30vw, 8.5rem);
    height: clamp(7rem, 30vw, 8.5rem);
  }
}

/* Import Component Styles */
/* Navigation & Header Styles */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.25rem) clamp(1.25rem, 3vw, 1.25rem);
  height: clamp(4.375rem, 8vw, 5.625rem);
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  transition: all 0.3s ease;
}

.logo-tagline {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  position: absolute;
  left: clamp(1.25rem, 3vw, 1.25rem);
  top: 50%;
  transform: translateY(-50%);
}

.logo {
  height: clamp(2.5rem, 5vw, 3.027rem);
  width: auto;
}

.tagline {
  font-size: clamp(1rem, 2.2vw, 1.1rem);
  color: var(--text-dark);
}

.main-nav {
  display: flex;
  gap: clamp(1.5rem, 4vw, 2.1875rem);
  align-items: center;
  position: absolute;
  right: clamp(1.25rem, 3vw, 1.25rem);
  top: 50%;
  transform: translateY(-50%);
}

.main-nav a {
  color: #000000;
  text-decoration: none;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-family: var(--font-family-base);
  line-height: 1.25em;
  transition: color 0.2s;
  position: relative;
  padding-bottom: clamp(0.125rem, 0.5vw, 0.1875rem);
}

.main-nav a:hover {
  color: var(--primary-teal);
}

/* Active state for navigation links */
.main-nav a.active {
  color: #000000;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: clamp(-0.25rem, -0.5vw, -0.3125rem);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(1.875rem, 4vw, 2.3125rem);
  height: clamp(0.125rem, 0.25vw, 0.125rem);
  background: #02b4b3;
}

/* Special styling for GitHub icon */
.main-nav .github-icon {
  width: clamp(1.75rem, 4vw, 2rem);
  height: clamp(1.688rem, 4vw, 1.9375rem);
}

/* Container to center header within max-width */
.site-header-container {
  width: 100%;
  background: #ffffff;
  border-bottom: 0.03125rem solid #d2d2d5;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header-container.scrolled {
  box-shadow: 0 0.125rem 1.25rem rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(0.625rem);
  background: rgba(255, 255, 255, 0.95);
}

/* Navigation Responsive Design */
@media (max-width: 1200px) {
  .site-header {
    padding: clamp(0.9375rem, 2vw, 1rem) clamp(1.25rem, 3vw, 1.25rem);
  }
  .logo-tagline {
    left: clamp(1.25rem, 3vw, 1.25rem);
  }
  .main-nav {
    right: clamp(1.25rem, 3vw, 1.25rem);
    gap: clamp(1.25rem, 3vw, 1.5625rem);
  }
}
@media (max-width: 900px) {
  .site-header {
    padding: clamp(0.9375rem, 2vw, 1rem) clamp(1rem, 3vw, 1.25rem);
    height: auto;
    min-height: clamp(4.375rem, 8vw, 4.375rem);
    flex-direction: row;
    justify-content: space-between;
    position: relative;
  }
  .logo-tagline {
    position: static;
    transform: none;
    left: auto;
    top: auto;
  }
  .main-nav {
    position: static;
    transform: none;
    right: auto;
    top: auto;
    gap: clamp(1rem, 3vw, 1.25rem);
  }
  .main-nav a {
    font-size: clamp(0.875rem, 2vw, 1rem);
  }
  .main-nav a.active::after {
    bottom: clamp(-0.25rem, -0.5vw, -0.25rem);
    width: clamp(1.5rem, 3vw, 1.875rem);
  }
}
@media (max-width: 700px) {
  .site-header {
    flex-direction: column;
    align-items: center;
    gap: clamp(0.75rem, 2vw, 1rem);
    padding: clamp(0.9375rem, 2vw, 1rem) clamp(1rem, 3vw, 1.25rem);
  }
  .main-nav {
    width: 100%;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 0.9375rem);
  }
  .main-nav a {
    font-size: clamp(0.75rem, 2vw, 0.875rem);
  }
  .main-nav a.active::after {
    bottom: clamp(-0.1875rem, -0.4vw, -0.1875rem);
    width: clamp(1.25rem, 3vw, 1.5625rem);
  }
  .logo {
    width: clamp(5rem, 15vw, 6.25rem);
    height: auto;
  }
}
@media (max-width: 480px) {
  .logo {
    width: clamp(4rem, 12vw, 5rem);
    height: auto;
  }
}
/* Site Footer */
.site-footer {
  background: #2b2b38;
  color: var(--bg-white);
  padding: clamp(3rem, 8vw, 3.75rem) 0 clamp(2rem, 5vw, 2.5rem);
  margin-top: auto;
}
.site-footer__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.25rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: clamp(3rem, 8vw, 5rem);
  align-items: start;
}
.site-footer__column h3 {
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  color: var(--bg-white);
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  margin-top: 0;
}
.site-footer__column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__column ul li {
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
}
.site-footer__column ul li:last-child {
  margin-bottom: 0;
}
.site-footer__column ul li a {
  color: var(--bg-white);
  text-decoration: none;
  font-size: clamp(0.875rem, 2vw, 1rem);
  transition: color 0.2s ease;
}
.site-footer__column ul li a:hover {
  color: var(--primary-teal);
}
.site-footer__powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer__powered-by .powered-by-holochain {
  height: clamp(3rem, 6vw, 4rem);
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.site-footer__powered-by .powered-by-holochain:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .site-footer {
    padding: clamp(2rem, 6vw, 2.5rem) 0 clamp(1.5rem, 4vw, 1.875rem);
  }
  .site-footer__container {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 2.5rem);
    text-align: center;
  }
  .site-footer__powered-by {
    margin-top: clamp(1rem, 3vw, 1.5rem);
  }
  .site-footer__powered-by .powered-by-holochain {
    height: clamp(2.5rem, 5vw, 3rem);
  }
  .site-footer__column h3 {
    font-size: clamp(0.875rem, 2vw, 1rem);
    margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  }
  .site-footer__column ul li {
    margin-bottom: clamp(0.5rem, 1.5vw, 0.75rem);
  }
  .site-footer__column ul li a {
    font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  }
}
@media (max-width: 480px) {
  .site-footer {
    padding: clamp(1.5rem, 5vw, 1.875rem) 0 clamp(1.25rem, 3vw, 1.5625rem);
  }
  .site-footer__container {
    gap: clamp(1.5rem, 5vw, 1.875rem);
    padding: 0 clamp(0.75rem, 2vw, 0.9375rem);
  }
}

/* Reusable UI Components */
/* Scroll to top button styles */
.scroll-to-top-btn {
  position: fixed;
  bottom: clamp(1.5rem, 4vw, 1.875rem);
  right: clamp(1.5rem, 4vw, 1.875rem);
  width: clamp(2.5rem, 6vw, 3.125rem);
  height: clamp(2.5rem, 6vw, 3.125rem);
  background: var(--primary-teal);
  border: none;
  border-radius: 50%;
  color: var(--bg-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 1.25rem rgba(8, 79, 162, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.25rem) scale(0.8);
}

.scroll-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-to-top-btn:hover {
  background: var(--primary-purple-dark);
  transform: translateY(-0.125rem) scale(1.05);
  box-shadow: 0 0.375rem 1.5625rem rgba(8, 79, 162, 0.4);
}

.scroll-to-top-btn:active {
  transform: translateY(0) scale(0.95);
}

.scroll-to-top-btn svg {
  transition: transform 0.2s ease;
}

.scroll-to-top-btn:hover svg {
  transform: translateY(-1px);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .scroll-to-top-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
  .scroll-to-top-btn svg {
    width: 18px;
    height: 18px;
  }
}
/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .scroll-to-top-btn {
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .scroll-to-top-btn:hover {
    transform: none;
  }
}
.nav-link--disabled {
  cursor: not-allowed;
}

/* Global Reset */
* {
  box-sizing: border-box;
}

/* CSS Variables - Global Design Tokens */
:root {
  /* Container Widths */
  --container-width: 1200px;
  --container-width-wide: 1800px;
  --container-width-narrow: 800px;
  /* Section Padding */
  --section-padding-xsm: 0 0 0 0;
  --section-padding: clamp(2rem, 6vw, 3rem) 0 clamp(4rem, 12vw, 6rem) 0;
  --section-padding-sm: clamp(1rem, 2vw, 1.5rem) 0 clamp(2rem, 4vw, 3rem) 0;
  --section-padding-lg: clamp(5rem, 10vw, 8rem) 0 clamp(10rem, 20vw, 16rem) 0;
  --section-padding-xlg: clamp(6rem, 12vw, 10rem) 0 clamp(12rem, 24vw, 20rem) 0;
  /* Global Color System */
  --primary-purple-dark: #340082;
  --primary-purple: #084fa2;
  --primary-teal: #02b4b3;
  --primary-light: #b2d680;
  --text-dark: #000000;
  --bg-white: #fff;
  --bg-grey: #d2d2d552;
  /* Typography */
  --font-family-base: "Quicksand", Arial, sans-serif;
  --font-family-headings: "Quicksand Medium Bold", "Quicksand", Arial, sans-serif;
}

/* Global Typography */
p,
a,
body {
  font-family: var(--font-family-base);
  background: transparent;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-style: Regular;
}

h1 {
  font-family: var(--font-family-headings);
  font-weight: 600;
  font-style: Medium;
  font-size: 50px;
  line-height: 100%;
  letter-spacing: 0%;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-base);
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0%;
  font-style: SemiBold;
  color: var(--primary-purple-dark);
}

/* Unified Container System */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.container--wide {
  max-width: var(--container-width-wide);
}

.container--narrow {
  max-width: var(--container-width-narrow);
}

/* Unified Button System */
.button {
  display: inline-block;
  padding: clamp(0.5rem, 1.5vw, 0.625rem) clamp(1.5rem, 4vw, 1.75rem);
  border-radius: 1.5rem;
  font-family: var(--font-family-base);
  font-weight: 500;
  font-size: clamp(0.875rem, 2vw, 1rem);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  flex: 1;
  min-width: 0;
}
.button--primary {
  background: var(--primary-purple-dark);
  color: var(--bg-white);
  border-color: var(--primary-purple-dark);
}
.button--primary:hover {
  background: var(--primary-purple-dark);
  border-color: var(--primary-purple-dark);
}
.button--secondary {
  background: white;
  color: var(--primary-purple-dark);
  border-color: var(--primary-purple-dark);
}
.button--secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}
.button--accent {
  background: var(--primary-teal);
  color: var(--bg-white);
  border-color: var(--primary-teal);
}
.button--accent:hover {
  background: var(--primary-teal);
  border-color: var(--primary-teal);
}
.button--outline-light {
  background: transparent;
  color: var(--bg-white);
  border-color: var(--bg-white);
}
.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Button Groups */
.button-group {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1rem);
  flex-wrap: wrap;
}
.button-group .button {
  flex: 0 0 auto;
}
.button-group--center {
  justify-content: center;
}
.button-group--left {
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .button-group {
    justify-content: center;
    gap: clamp(0.625rem, 2vw, 0.75rem);
  }
  .button-group .button {
    flex: 1 1 auto;
    min-width: clamp(7rem, 30vw, 8.75rem);
    font-size: clamp(0.875rem, 3vw, 1rem);
  }
}

/* Common Layout Patterns - Updated to use CSS variables */
.section {
  padding: var(--section-padding);
}
.section--sm {
  padding: var(--section-padding-sm);
}
.section--lg {
  padding: var(--section-padding-lg);
}

/* Common Grid Patterns */
.grid {
  display: grid;
  gap: clamp(1rem, 4vw, 2rem);
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--auto-fit {
  grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
}
@media (max-width: 1024px) {
  .grid--2, .grid--3 {
    grid-template-columns: 1fr;
  }
}

/* Responsive utilities */
@media (min-width: 769px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}

/* Page Transition System */
#page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 0, 130, 0.05) 0%, rgba(255, 255, 255, 0.95) 20%, rgba(255, 255, 255, 0.95) 80%, rgba(2, 180, 179, 0.05) 100%);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, visibility;
}

#page-transition-overlay.active {
  opacity: 1;
  visibility: visible;
}

#page-transition-overlay::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 4px solid rgba(52, 0, 130, 0.2);
  border-radius: 50%;
  border-top-color: var(--primary-purple-dark);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* Page Content Transitions */
#page-content {
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

#page-content.transitioning {
  opacity: 0;
  transform: translateY(20px);
}

/* Loading Animation System - Intersection Observer Based */
/* Only hide elements for animation when JavaScript is available */
.js-loaded .animate-on-load {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.animate-on-load.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays for children elements */
.js-loaded .animate-children > *:nth-child(1) {
  transition-delay: 0.1s;
}

.js-loaded .animate-children > *:nth-child(2) {
  transition-delay: 0.2s;
}

.js-loaded .animate-children > *:nth-child(3) {
  transition-delay: 0.3s;
}

.js-loaded .animate-children > *:nth-child(4) {
  transition-delay: 0.4s;
}

.js-loaded .animate-children > *:nth-child(5) {
  transition-delay: 0.5s;
}

.js-loaded .animate-children > *:nth-child(6) {
  transition-delay: 0.6s;
}

.js-loaded .animate-children > *:nth-child(7) {
  transition-delay: 0.7s;
}

.js-loaded .animate-children > *:nth-child(8) {
  transition-delay: 0.8s;
}

/* Specialized animation variants */
.js-loaded .animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-loaded .animate-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.js-loaded .animate-slide-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.js-loaded .animate-slide-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Performance optimizations */
.js-loaded .animate-on-load,
.js-loaded .animate-fade-up,
.js-loaded .animate-scale,
.js-loaded .animate-slide-left,
.js-loaded .animate-slide-right {
  will-change: opacity, transform;
}

.animate-on-load.visible,
.animate-fade-up.visible,
.animate-scale.visible,
.animate-slide-left.visible,
.animate-slide-right.visible {
  will-change: auto;
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
  #page-transition-overlay {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  #page-content {
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .js-loaded .animate-on-load,
  .js-loaded .animate-fade-up,
  .js-loaded .animate-scale,
  .js-loaded .animate-slide-left,
  .js-loaded .animate-slide-right {
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition-delay: 0s !important;
  }
  #page-transition-overlay::before {
    animation: none;
  }
}
/* Typography Utilities */
.text-center {
  text-align: center;
}

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

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

/*# sourceMappingURL=site.css.map */
