:root {
  --azure: #0f6cbd;
  --azure-dark: #0a4e8c;
  --background: #f6f8fb;
  --text: #0f172a;
  --muted: #4b5563;
  --card: #ffffff;
  --accent: #6dd3ff;
  --shadow: 0 18px 45px rgba(15, 108, 189, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(109, 211, 255, 0.2), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(15, 108, 189, 0.16), transparent 22%),
    var(--background);
  color: var(--text);
  line-height: 1.6;
}

header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(246, 248, 251, 0.82);
  border-bottom: 1px solid rgba(15, 108, 189, 0.1);
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--azure);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: var(--azure);
  background: rgba(15, 108, 189, 0.08);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--azure), var(--azure-dark));
  color: #fff !important;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.cta svg {
  width: 16px;
  height: 16px;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(32px, 4vw + 8px, 52px);
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 108, 189, 0.08);
  color: var(--azure-dark);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 108, 189, 0.08);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.metric {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 108, 189, 0.1);
  border-radius: 14px;
  padding: 14px 16px;
}

.metric strong {
  font-size: 24px;
  color: var(--azure);
}

section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.section-header {
  margin-bottom: 28px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.section-header p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(15, 108, 189, 0.08);
  box-shadow: 0 14px 32px rgba(15, 108, 189, 0.08);
}

.card h3 {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 108, 189, 0.1);
  color: var(--azure-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  margin-right: 6px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  color: var(--muted);
}

.list li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(15, 108, 189, 0.1);
  display: flex;
  gap: 10px;
  align-items: center;
}

.list li:last-child {
  border-bottom: none;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--azure);
  display: inline-block;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.process {
  counter-reset: step;
}

.step {
  counter-increment: step;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #f8fbff);
  border: 1px solid rgba(15, 108, 189, 0.1);
}

.step h4::before {
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 10px;
  background: rgba(15, 108, 189, 0.12);
  color: var(--azure);
  font-weight: 700;
}

.cta-panel {
  background: linear-gradient(135deg, #0f6cbd, #0a4e8c);
  color: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.cta-panel p {
  margin: 0 0 12px;
  opacity: 0.92;
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.person-card {
  background: var(--card);
  border: 1px solid rgba(15, 108, 189, 0.1);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(15, 108, 189, 0.07);
}

.person-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid rgba(15, 108, 189, 0.2);
  margin-bottom: 14px;
}

.person-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.person-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--azure);
  margin-bottom: 10px;
}

.person-bio {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 14px;
  line-height: 1.55;
  font-style: italic;
  text-align: justify;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--azure-dark);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(15, 108, 189, 0.08);
}

.linkedin-link:hover {
  background: rgba(15, 108, 189, 0.16);
}

/* Investor tiles */
.investor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.investor-tile {
  background: var(--card);
  border: 1px dashed rgba(15, 108, 189, 0.2);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.investor-tile .investor-logo-ph {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(15, 108, 189, 0.06);
  border: 1px dashed rgba(15, 108, 189, 0.2);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: rgba(15, 108, 189, 0.4);
  font-weight: 600;
}

.investor-tile .investor-name-ph {
  font-weight: 600;
  color: var(--text);
  font-size: 18px;
  margin-bottom: 4px;
}

.investor-logo-img {
  display: block;
  max-width: 120px;
  max-height: 56px;
  width: auto;
  height: auto;
  margin: 0 auto 12px;
  object-fit: contain;
  border-radius: 6px;
}

/* Contact form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 32px;
}

.contact-intro h3 {
  margin: 0 0 12px;
  font-size: 20px;
  color: var(--text);
}

.contact-intro p {
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.contact-form {
  background: linear-gradient(135deg, #0f6cbd, #0a4e8c);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--azure);
}

.form-group textarea {
  min-height: 110px;
}

.form-submit {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.form-submit:hover {
  background: var(--azure-dark);
}

@media (max-width: 700px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

footer {
  background: #0b1b2d;
  color: #afc7e8;
  padding: 16px 24px;
  text-align: center;
  font-size: 13px;
}

footer p {
  margin: 0;
}

@media (max-width: 700px) {
  nav {
    flex-wrap: wrap;
  }
  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Values section */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: linear-gradient(135deg, #0f6cbd, #0a4e8c);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.value-tile {
  flex: 1 1 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  padding: 28px 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.2s;
  position: relative;
}

.value-initial {
  font-style: normal;
  color: var(--accent);
  font-size: 1.25em;
  line-height: 1;
}

.value-tile:hover {
  background: rgba(255, 255, 255, 0.12);
}

.value-tile + .value-tile::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 480px) {
  .values-grid {
    flex-direction: column;
  }

  .value-tile + .value-tile::before {
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
  }
}
