html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: #0c0f14;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e9ecf2;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  z-index: 0;
}


.navbar {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0c0f14;
  padding: 12px 24px;
}

.nav-logo img {
  height: 70px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #e9ecf2;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #17e3b2;
}

.navbar a {
  color: #e9ecf2;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.navbar a:hover {
  color: #17e3b2;
}

.hero-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 80px 20px 0;
}

.hero {
  pointer-events: auto;
  padding: 6rem 6rem;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  max-width: 700px;
  position: relative;
}

.frosted {
  background: rgba(12, 14, 20, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mix-blend-mode: lighten;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hero p {
  font-size: 1rem;
  margin: 0.3rem 0;
  color: #9ba6b2;
}

.hero .subtle {
  font-size: 0.9rem;
  margin-top: 1rem;
  color: #6b7480;
}

.cta-button,
.contact-button {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.75rem 1.6rem;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  background-color: #17e3b2;
  color: #0c0f14;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.cta-button:hover,
.contact-button:hover {
  background-color: #12c7a0;
  box-shadow: 0 0 12px rgba(23, 227, 178, 0.6);
  transform: translateY(-1px);
}

section {
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Add consistent spacing between sections */
section:not(.hero-section):not(#tech) {
  margin-top: 60px;
}

/* Spacer after hero before first section */
.hero-section+section,
.hero-section+.spacer+section {
  margin-top: 30px;
}

.spacer {
  height: 30px;
}

.nav-spacer {
  height: 80px;
}

.card {
  background: rgba(12, 14, 20, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mix-blend-mode: lighten;
  border-radius: 12px;
  padding: 3rem 2rem;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  position: relative;
  z-index: 1;
  min-height: 350px;
  /* Consistent minimum height for all cards */
}

.tech-content,
.pipeline-block {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/* === FIXED SCROLL PINNED SECTION === */
#tech {
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

#tech-pin-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

#tech-pin-wrapper .tech-image {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 400px;
}

#tech-pin-wrapper .tech-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  max-width: 600px;
}

.tech-image {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  max-width: 100%;
}

.tech-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.tech-text h2 {
  text-align: left;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  word-break: normal;
  white-space: normal;
}

.tech-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tech-points .point {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(30px);
}

.point-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #17e3b2, #0ea888);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c0f14;
  flex-shrink: 0;
}

.point span {
  font-size: 1.1rem;
  font-weight: 500;
}

.pipeline-section h2 {
  text-align: center;
}

.pipeline-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #9ba6b2;
  margin-top: 1.2rem;
}

.pipeline-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem auto;
  padding: 1.5rem;
  border-radius: 14px;
}

.light-block {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.enhanced-block {
  background: rgba(23, 227, 178, 0.06);
  border: 1px solid rgba(23, 227, 178, 0.2);
}

.pipeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
  gap: 0.3rem;
}

.pipeline-icon {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem;
  border-radius: 12px;
}

.pipeline-label {
  font-weight: 500;
  font-size: 1rem;
}

.arrow {
  font-size: 1.5rem;
  color: #9ba6b2;
  font-weight: bold;
}

.pipeline-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0;
  gap: 1rem;
}

.pipeline-step {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-weight: 500;
  min-width: 100px;
  text-align: center;
}

.pipeline-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1rem;
}

.benefit-card {
  background: rgba(0, 128, 128, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 128, 128, 0.2);
  backdrop-filter: blur(10px);
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 128, 128, 0.12);
  border: 1px solid rgba(0, 128, 128, 0.3);
}

.benefit-icon {
  font-size: 2rem;
  background: rgba(0, 128, 128, 0.15);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(0, 128, 128, 0.3);
}

.benefit-content h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text-color);
  font-size: 1.1rem;
}

.benefit-value {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00a0a0;
  margin: 0.5rem 0;
}

.benefit-content p {
  margin: 0.5rem 0 0 0;
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
}

.focus-tag {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #17e3b2, #0ea888);
  color: #0c0f14;
  box-shadow: 0 0 10px rgba(23, 227, 178, 0.3);
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.team-member {
  flex: 0 1 auto;
  min-width: 280px;
  max-width: 320px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #e9ecf2;
}

.team-member p {
  margin: 0.3rem 0;
  color: #b2bcc9;
  font-size: 0.95rem;
}

.team-avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  max-width: 700px;
  margin: 2rem auto 0;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #e9ecf2;
  font-family: inherit;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-button {
  grid-column: span 2;
  justify-self: start;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .navbar {
    left: 20px;
    right: 20px;
    padding: 10px 20px;
  }

  .nav-logo img {
    height: 55px;
  }

  section {
    padding: 0 15px;
  }

  section:not(.hero-section):not(#tech) {
    margin-top: 50px;
  }

  .hero-section+section,
  .hero-section+.spacer+section {
    margin-top: 30px;
  }

  #tech {
    margin-top: 50px;
    margin-bottom: 50px;
    padding-top: 40px;
  }

  .card {
    padding: 2rem 1.5rem;
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .navbar {
    left: 10px;
    right: 10px;
    top: 10px;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 8px 14px;
  }

  .nav-logo img {
    height: 45px;
  }

  .nav-links {
    gap: 0.8rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }

  .hero-section {
    height: auto;
    min-height: 60vh;
    padding: 70px 12px 30px;
  }

  .hero {
    padding: 2.5rem 1.5rem;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero p {
    font-size: 0.95rem;
  }

  section {
    padding: 0 12px;
  }

  section:not(.hero-section):not(#tech) {
    margin-top: 40px;
  }

  .hero-section+section,
  .hero-section+.spacer+section {
    margin-top: 25px;
  }

  #tech {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-top: 30px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .card {
    padding: 1.5rem 1rem;
    min-height: auto;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  .tech-section,
  #tech-pin-wrapper {
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 1.5rem;
  }

  #tech-pin-wrapper .tech-image,
  #tech-pin-wrapper .tech-text {
    flex: none;
    width: 100%;
  }

  #tech-pin-wrapper .tech-image {
    min-height: auto;
    max-height: 250px;
  }

  .tech-img {
    max-height: 220px;
    width: auto;
  }

  #tech-pin-wrapper .tech-text {
    max-width: 100%;
  }

  .tech-text h2 {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .tech-points {
    gap: 1rem;
  }

  .tech-points .point {
    justify-content: center;
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .team-member {
    max-width: 100%;
    min-width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 1.5rem;
  }

  .team-avatar {
    width: 100px;
    height: 100px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-button {
    justify-self: stretch;
    grid-column: span 1;
  }

  .pipeline-row {
    gap: 0.5rem;
  }

  .pipeline-step {
    padding: 0.6rem 0.8rem;
    min-width: 70px;
    font-size: 0.85rem;
  }

  .arrow {
    font-size: 1rem;
  }

  .point-icon {
    width: 40px;
    height: 40px;
  }

  .point span {
    font-size: 0.95rem;
  }

  .pipeline-benefits,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.5rem;
  }

  .benefit-card {
    padding: 1rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .benefit-value {
    font-size: 1.5rem;
  }

  /* Pipeline comparison mobile */
  .comparison-images {
    gap: 1rem;
  }

  .pipeline-box {
    padding: 1rem;
  }

  .pipeline-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .spacer {
    height: 15px;
  }
}

@media (max-width: 480px) {
  .navbar {
    left: 8px;
    right: 8px;
    top: 8px;
    padding: 5px 10px;
  }

  .nav-logo img {
    height: 40px;
  }

  .nav-links {
    gap: 0.6rem;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .hero-section {
    padding: 60px 8px 20px;
    min-height: 50vh;
  }

  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  section {
    padding: 0 8px;
  }

  section:not(.hero-section):not(#tech) {
    margin-top: 30px;
  }

  .hero-section+section,
  .hero-section+.spacer+section {
    margin-top: 20px;
  }

  #tech {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 20px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .card {
    padding: 1.2rem 0.8rem;
    min-height: 200px;
  }

  .tech-text h2 {
    font-size: 1.5rem;
  }

  .pipeline-step {
    padding: 0.6rem 0.8rem;
    min-width: 70px;
    font-size: 0.8rem;
  }

  .team-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .point-icon {
    width: 40px;
    height: 40px;
  }
}

/* Comparison Images Styles */
.comparison-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.pipeline-box {
  width: 100%;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  backdrop-filter: blur(10px);
}

.pipeline-box.frosted {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pipeline-box.teal {
  background: rgba(0, 128, 128, 0.12);
  border: 1px solid rgba(0, 128, 128, 0.3);
}

.pipeline-box h3 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-size: 1.4rem;
  font-weight: 500;
}

.focus-tag {
  display: inline-block;
  background: rgba(0, 128, 128, 0.2);
  color: #00a0a0;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(0, 128, 128, 0.3);
}

.pipeline-comparison-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}

.pipeline-box:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .pipeline-box {
    padding: 1.5rem;
  }

  .pipeline-comparison-img {
    max-width: 100%;
  }
}

/* Benefits Grid Styles */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1rem;
}

.benefit-card {
  background: rgba(0, 128, 128, 0.08);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 128, 128, 0.2);
  backdrop-filter: blur(10px);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  background: rgba(0, 128, 128, 0.12);
  border: 1px solid rgba(0, 128, 128, 0.3);
}

.benefit-icon {
  font-size: 2rem;
  background: rgba(0, 128, 128, 0.15);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(0, 128, 128, 0.3);
  flex-shrink: 0;
}

.benefit-content {
  flex: 1;
}

.benefit-content h4 {
  margin: 0 0 0.5rem 0;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
}

.benefit-value {
  font-size: 1.8rem;
  font-weight: 600;
  color: #00a0a0;
  margin: 0.5rem 0;
  line-height: 1;
}

.benefit-content p {
  margin: 0.5rem 0 0 0;
  color: var(--text-color);
  opacity: 0.8;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    padding: 0.5rem;
  }

  .benefit-card {
    padding: 1rem;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(0, 128, 0, 0.1);
  border: 1px solid rgba(0, 128, 0, 0.2);
  color: #00a000;
}

.form-status.error {
  display: block;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.2);
  color: #ff0000;
}

/* --- Logo Ticker --- */
.logo-ticker-section {
  width: 100%;
  overflow: hidden;
  padding: 60px 0;
}

.logo-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: tickerMove 40s linear infinite;
  gap: clamp(2rem, 6vw, 6rem);
}

.logo-slide {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.ticker-logo {
  height: clamp(32px, 6vw, 60px);
  width: auto;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
}

.ticker-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@keyframes tickerMove {
  0% {
    transform: translateX(0);
  }

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