<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
  }
  
  /* HEADER */
.header {
  background-color: #1a1a1a;
  color: white;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d1b2;
  transition: color 0.3s ease;
}

.header__logo:hover {
  color: #00bfa6;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header__link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.header__link::after,
.header__link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00d1b2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header__link:hover::after,
.header__link.active::after {
  opacity: 1;
}

.header__login-btn {
  background-color: #00d1b2;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.header__login-btn:hover {
  background-color: #00bfa6;
}

/* MOBILE MENU TOGGLE */
.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 40px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .header__nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__link {
    display: block;
    padding: 10px 0;
  }

  .header__menu-toggle {
    display: block;
  }
}
  
  /* HERO SECTION */
  .hero {
    position: relative;
    background-color: #003366;
    padding: 120px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .hero__content {
    max-width: 50%;
    color: white;
  }
  
  .hero__title {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
  }
  
  .hero__text {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    color: white;
  }
  
  .hero__image {
    width: 50%;
    display: flex;
    justify-content: flex-end;
  }
  
  .hero__image img {
    max-width: 100%;
    height: auto;
  }

  /* TRUST STATS SECTION */
.trust-stats {
  padding: 80px 40px;
  background-color: #ffffff;
  text-align: center;
}

.trust-stats__container {
  max-width: 1100px;
  margin: 0 auto;
}

.trust-stats__title {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 40px;
}

.trust-stats__grid {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1 1 200px;
  min-width: 200px;
  padding: 30px 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 2.5rem;
  color: #00d1b2;
  margin-bottom: 10px;
}

.stat-card p {
  font-size: 1.1rem;
  color: #333;
}
  
  /* OUR CUSTOMERS SECTION */
  .our-customers {
    background-color: #f9f9f9;
    padding: 60px 40px;
    overflow: hidden;
  }
  
  .our-customers__title {
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
  }
  
  .our-customers__slider {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  
  .our-customers__track {
    display: inline-flex;
    gap: 60px;
    padding: 10px 0;
    animation: scrollLogos 30s linear infinite;
  }
  
  .our-customers__logo {
    max-width: 150px;
    height: auto;
    object-fit: contain;
  }
  
  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* WORLD'S LARGEST PUBLIC API MARKETPLACE */
.api-marketplace {
  background-color: #fff;
  padding: 80px 40px;
  text-align: center;
}

.api-marketplace__container {
  max-width: 1200px;
  margin: 0 auto;
}

.api-marketplace__title {
  font-size: 3rem;
  line-height: 1.2;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.api-marketplace__underline {
  display: inline-block;
  position: relative;
}

.api-marketplace__underline::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100px;
  height: 2px;
  background-color: #00d1b2;
  border-radius: 10px;
  transform: translateX(-50%);
}

.api-marketplace__stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 60px;
  flex-wrap: wrap;
  gap: 30px;
}

.api-marketplace__stat-card {
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.api-marketplace__diamond {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.api-marketplace__blue {
  background: linear-gradient(135deg, #003366, #0055cc);
}

.api-marketplace__green {
  background: linear-gradient(135deg, #00d1b2, #aaffdd);
}

.api-marketplace__purple {
  background: linear-gradient(135deg, #ff99cc, #9933cc);
}

.api-marketplace__content {
  text-align: center;
  color: white;
  z-index: 1;
}

.api-marketplace__content h2 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.api-marketplace__content p {
  font-size: 1rem;
  font-weight: 500;
}

.api-marketplace__cta {
  background-color: #003366;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 40px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.api-marketplace__cta:hover {
  background-color: #0055cc;
}
  
  /* API FEATURES SECTION */
  .api-features {
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
  }
  
  .api-features__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  
  .api-features__card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: calc(48% - 20px);
  }
  
  .api-features__publish {
    text-align: left;
  }
  
  .api-features__consume,
  .api-features__manage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .api-features__image-consume,
  .api-features__image-manage {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .api-features__code-snippet {
    background-color: #f1f1f1;
    border-radius: 5px;
    padding: 15px;
    overflow-x: auto;
  }
  
  .api-features__code-snippet pre {
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
  }
  
  .api-features__background-left {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #003366, transparent);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    z-index: -1;
  }
  
  .api-features__background-right {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, #003366, transparent);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    z-index: -1;
  }

/* PATH TO OPTIMIZING API VALUE SECTION */
.api-path-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
    position: relative;
  }
  
  .api-path-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
  }
  
  .api-path-section h2 span {
    color: #00d1b2;
    font-weight: bold;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .path-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }
  
  .path-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #eef7f9;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .step-content {
    max-width: 300px;
  }
  
  .step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1a1a1a;
  }
  
  .step-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
  }
  
  /* Curved Arrows */
  .curved-arrow {
    width: 100px;
    height: 100px;
    margin: 0 20px;
    transform: rotate(-45deg);
  }
  
  /* Background Shapes */
  .api-path-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to left, #003366, transparent);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
    z-index: -1;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .path-container {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }
  
    .path-step {
      width: calc(50% - 20px);
    }
  
    .curved-arrow {
      display: none;
    }
  }
  
  /* FEATURES SECTION */
.features {
    padding: 100px 40px;
    background-color: #fff;
  }
  
  .features__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
    color: #1a1a1a;
  }
  
  .features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .features__card {
    background-color: #f9f9f9;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .features__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e0f7fa;
    color: #00d1b2;
    font-size: 24px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: background-color 0.3s ease;
  }
  
  .features__card:hover .feature-icon {
    background: #00d1b2;
    color: white;
  }
  
  .features__card-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #003366;
    font-weight: 600;
  }
  
  .features__card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  
  /* TESTIMONIALS SECTION */
.testimonials {
    padding: 80px 40px;
    background-color: #f9f9f9;
    position: relative;
  }
  
  .testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .testimonials__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  
  .testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-content {
    text-align: left;
    margin-bottom: 20px;
  }
  
  .testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  
  .testimonial-content strong {
    color: #00d1b2;
    font-weight: bold;
  }
  
  .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* PRICING SECTION */
.pricing {
    padding: 80px 40px;
    background-color: #f9f9f9;
    position: relative;
  }
  
  .pricing .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .pricing__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  
  .pricing-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .plan-name {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a1a;
  }
  
  .plan-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
  }
  
  .price {
    font-size: 2.2rem;
    margin: 20px 0;
    color: #00d1b2;
    font-weight: bold;
  }
  
  .features-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  .features-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
  }
  
  .cta-button {
    background-color: #00d1b2;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #00bfa6;
  }
  
  /* Highlight Pro Plan */
  .pro-plan {
    background-color: #e0f7fa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .enterprise-plan {
    background-color: #f1f1f1;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .pricing-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* FAQ SECTION */
.faq {
    padding: 100px 40px;
    background-color: #f9f9f9;
  }
  
  .faq .container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  
  .faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    background-color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
  }
  
  .faq-question:hover {
    background-color: #f1f1f1;
  }
  
  .faq-answer {
    padding: 0 px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    border-top: 1px solid #eee;
  }
  
  .faq-answer.open {
    max-height: 200px;
    padding: 20px;
  }
  
  /* NEWSLETTER SECTION */
.newsletter {
    padding: 100px 40px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .newsletter__container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .newsletter__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
  }
  
  .newsletter__subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .newsletter__form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .newsletter__input {
    padding: 12px 16px;
    width: 300px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .newsletter__input:focus {
    border-color: #00d1b2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 209, 178, 0.2);
  }
  
  .newsletter__button {
    padding: 12px 24px;
    background-color: #00d1b2;
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .newsletter__button:hover {
    background-color: #00bfa6;
  }
  
   /* Modern Footer Styles */
.footer {
  background: #0f1117;
  color: #c5c7cb;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-brand {
  text-align: center;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #00f7a5;
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 1rem;
  color: #9ea3b2;
  margin-bottom: 20px;
}

.footer-socials a {
  color: #c5c7cb;
  margin: 0 10px;
  font-size: 1.4rem;
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: #00f7a5;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
}

.footer-grid h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin: 10px 0;
}

.footer-grid a {
  color: #c5c7cb;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-grid a:hover {
  color: #00f7a5;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1f222b;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #878b94;
}

.footer-bottom a {
  color: #00f7a5;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-brand {
    text-align: left;
    flex: 1;
  }

  .footer-grid {
    text-align: left;
    flex: 2;
  }
}
</pre></body></html>