*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0f1b2d;
  background: #f5f8ff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  border-radius: 16px;
  display: block;
}

.nav-bar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 7vw;
  background: rgba(245, 248, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e7ecf7;
}

.logo {
  font-weight: 800;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: 0.2px;
  font-family: 'Montserrat', sans-serif;
  color: #0b5fff;
}

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

.nav-bar nav a {
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
  color: #0f1b2d;
}

.nav-bar nav a:hover {
  background: rgba(11, 95, 255, 0.08);
  color: #0b5fff;
}

.pill {
  background: #0b5fff;
  color: #fff !important;
  box-shadow: 0 10px 30px rgba(11, 95, 255, 0.25);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 80px 7vw 60px;
  align-items: flex-start;
}

.hero__content h1 {
  font-size: clamp(14px, 2.5vw, 22px);
  line-height: 1.1;
  margin: 10px 0 16px;
  color: #0a1630;
}

.hero-title {
  text-wrap: balance;
}

.lead {
  font-size: 18px;
  color: #2c3d5b;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.signature {
  margin-top: 16px;
  font-size: 16px;
  color: #94a8ff;
  font-weight: 600;
}

.metric {
  font-size: 28px;
  font-weight: 700;
  color: #0b5fff;
}

.label {
  display: block;
  color: #425575;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  align-self: flex-start;
}

.view-opps {
  margin-top: 30px;
}

.glass-card {
  width: min(420px, 100%);
  background: linear-gradient(145deg, rgba(11, 95, 255, 0.1), rgba(11, 95, 255, 0.05));
  border: 1px solid rgba(11, 95, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 25px 80px rgba(7, 45, 122, 0.2);
}

.chip {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(11, 95, 255, 0.12);
  color: #0b5fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin: 20px 0;
  align-items: end;
}

.chart span {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #6fb5ff 0%, #0b5fff 90%);
  border-radius: 8px 8px 2px 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin: 0;
}

.btn.primary {
  background: linear-gradient(120deg, #0b5fff, #4d8dff);
  color: #fff;
  box-shadow: 0 16px 40px rgba(11, 95, 255, 0.3);
}

.btn.ghost {
  border: 1px solid #0b5fff;
  color: #0b5fff;
  background: transparent;
}

.btn.small {
  padding: 10px 14px;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-2px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 700;
  color: #0b5fff;
  margin: 0 0 10px;
  font-size: 24px;
}

.section {
  padding: 80px 7vw;
}

.section h2 {
  margin: 8px 0 16px;
  font-size: clamp(26px, 4vw, 38px);
  color: #0a1630;
}

.section p {
  color: #2c3d5b;
}

.two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.bullet-grid {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 18px;
  color: #0f2747;
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.cta-wrap {
  margin-top: 22px;
}

.card {
  background: #fff;
  border: 1px solid #e6eaf3;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(7, 45, 122, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(7, 45, 122, 0.12);
}

.about__visual,
.product__visual {
  position: relative;
}
.product__visual {
  margin-top: 24px;
}

.applied-ai {
  display: flex;
  justify-content: flex-start;
  padding: 60px 7vw;
}

.applied-ai-card {
  max-width: 460px;
  margin-left: 0;
}

.badge,
.glass-chip {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 95, 255, 0.9);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(11, 95, 255, 0.35);
}

.glass-chip {
  background: rgba(11, 95, 255, 0.85);
}

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

.press-card {
  background: #fff;
  border: 1px solid #e6eaf3;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(7, 45, 122, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.press-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(7, 45, 122, 0.1);
}

.press-meta {
  display: inline-block;
  margin-top: 10px;
  color: #5870a0;
  font-weight: 600;
}

.career-card {
  background: #0b5fff;
  color: #e8f0ff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(11, 95, 255, 0.35);
}

.career-card .btn {
  margin-top: 32px;
}

.career-card ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.career-card li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(232, 240, 255, 0.2);
}

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

.career-card .small,
.career-card .signature {
  color: #fff;
}

.small {
  font-size: 14px;
  color: #d8e6ff;
}

.contact {
  background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%);
  border-top: 1px solid #e6eaf3;
}

.contact__form {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  border: 1px solid #e6eaf3;
  box-shadow: 0 12px 32px rgba(7, 45, 122, 0.09);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 16px 0 12px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  color: #0f2747;
  font-size: 14px;
}

.labelfield {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  color: #0f2747;
  font-size: 14px;
}

.labelfield span {
  font-weight: 700;
}

.phone-field {
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone-field select {
  border-radius: 12px;
  padding: 12px 8px;
  border: 1px solid #d9e3f5;
  background: #fff;
  font-size: 14px;
  min-width: 120px;
}

.char-count {
  font-size: 12px;
  color: #6482c9;
  margin-top: 6px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9e3f5;
  background: #f9fbff;
  font-family: inherit;
  font-size: 15px;
  color: #0f1b2d;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: #0b5fff;
  box-shadow: 0 0 0 3px rgba(11, 95, 255, 0.15);
}

.was-validated input:invalid,
.was-validated select:invalid,
.was-validated textarea:invalid {
  border-color: #ff5e5e;
  box-shadow: 0 0 0 3px rgba(255, 94, 94, 0.25);
}

.contact__form form button {
  margin-top: 18px;
  width: 180px;
}

.contact__details {
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(11, 95, 255, 0.06);
  color: #0f1b2d;
  line-height: 1.5;
}

.contact__details a {
  color: #0b5fff;
  font-weight: 700;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.contact-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: #0b5fff;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}
.contact-sign {
  color: #94a8ff;
  margin-top: 12px;
  font-weight: 600;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 7vw 40px;
  color: #486083;
  border-top: 1px solid #e6eaf3;
}

.footer__links {
  display: flex;
  gap: 14px;
}

#jobs[hidden] {
  display: none;
}

.roles-grid {
  margin-top: 24px;
}

@media (max-width: 720px) {
  .nav-bar nav {
    display: none;
  }
  .hero {
    padding-top: 40px;
  }
  .footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .nav-bar {
    padding: 16px 5vw;
  }
  .section {
    padding: 64px 5vw;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 56px 5vw 48px;
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-bar {
    padding: 14px 4vw;
  }
  .section {
    padding: 54px 4vw;
  }
  .card-grid,
  .press-grid,
  .bullet-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  body {
    font-size: 14px;
  }
  .hero__content h1,
  .hero-title {
    font-size: 24px;
    white-space: normal;
  }
  .btn {
    padding: 12px 14px;
  }
  .nav-bar {
    padding: 12px 3vw;
  }
  .section {
    padding: 48px 3vw;
  }
}
