:root {
  --bg: #020617;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.095);
  --border: rgba(255, 255, 255, 0.12);
  --text: #fff;
  --muted: #cbd5e1;
  --soft: #94a3b8;
  --cyan: #22d3ee;
  --cyan2: #67e8f9;
  --lime: #a7f3d0;
  --dark: #020617;
  --shadow: 0 28px 90px rgba(34, 211, 238, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(
      circle at 20% 0%,
      rgba(34, 211, 238, 0.12),
      transparent 38%
    ),
    radial-gradient(
      circle at 85% 15%,
      rgba(167, 243, 208, 0.08),
      transparent 30%
    ),
    var(--bg);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  color: var(--muted);
  line-height: 1.75;
}
.container {
  /* width: min(1180px, calc(100% - 40px)); */
  width: 40%;
  margin: 0;
  /* background-color: #006A7A; */
}
.container1 {
  /* width: min(1180px, calc(100% - 40px)); */
  width: 100%;
  margin: 0;
  background-color: #000000;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.86);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--cyan);
  color: var(--dark);
  font-weight: 900;
  box-shadow: 0 0 34px rgba(34, 211, 238, 0.3);
}
.brand strong {
  display: block;
  font-size: 1.08rem;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--soft);
  font-size: 0.76rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}
.nav-links a:hover {
  color: white;
}
.menu-button {
  display: none;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  color: white;
  padding: 8px 12px;
  font-size: 1.2rem;
}
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 0 22px;
  font-weight: 800;
  transition: 0.2s ease;
  border: 0;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.nav-cta {
  background:#000000 !important;
  color:#fff !important;
  font-family: "Roboto";
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  padding: 20px !important;
}
.btn-primary:hover,
.nav-cta:hover {
  /* background: var(--cyan2); */
}
.btn-navbar {
  background:#000000 !important;
  color:#fff !important;
  font-family: "Roboto";
  font-size: 1rem !important;
  font-weight: 400 !important;
  padding: 10px 20px!important;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;

}

.btn-secondary {
  background: transparent !important;
  color: #000000 !important;
  border: 1px solid #000000 !important;
  font-family: "Roboto";
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  padding: 20px !important;
}
.btn-dark {
  /* background: var(--dark); */
  color: white;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 95px;
}
.hero-glow {
  position: absolute;
  left: 50%;
  top: -240px;
  transform: translateX(-50%);
  width: 960px;
  height: 600px;
  border-radius: 999px;
  background: rgba(33, 100, 111, 0.16);
  filter: blur(95px);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
  /* background: rgba(157, 32, 115, 0.16); */
}
.eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(103, 232, 249, 0.32);
  border-radius: 999px;
  /* background: rgba(34, 211, 238, 0.09); */
  background-color: rgb(14, 121, 138);
  color:#fff !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 900;
  font-family: "Roboto";
}

.eyebrow-dark {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 999px;
  /* background: rgba(34, 211, 238, 0.09); */
  background-color: rgb(0, 0, 0);
  color:#fff !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  font-weight: 900;
  font-family: "Roboto";
}
h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.04em;
}
h1 {
  /* line-height: 0.96; */
  font-family: "Playfair Display";
  font-size: 3.0rem !important;
}
h2 {
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 1.04;
  font-family: "Playfair Display";
  font-size: 3.0rem !important;
}
.hero-text {
  max-width: 670px;
  margin: 28px 0 0;
  font-size: 1.12rem;
  font-family: "Roboto";
  font-weight: 300;
  color: #000000;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.trust-row span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--soft);
  font-size: 0.86rem;
}
.hero-card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.085);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.hero-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  color: #006A7A;
  font-size: 0.9rem;
}
.hero-stat {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #006A7A;
}
.hero-stat span {
  color: rgb(158, 229, 239);
  font-family: "Playfair Display";
  font-size: 1.0rem;
}
.hero-stat strong {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 3.0rem;
  line-height: 1;
}
.snapshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.snapshot-grid div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgb(120, 178, 185);
}
.snapshot-grid strong {
  margin: 6px 0 0;
  color: #fff;
  font-size: 0.88rem;
}
.snapshot-grid p {
  margin: 6px 0 0;
  color: #313131;
  font-size: 0.88rem;
}
.solutions-intro {
  padding: 70px 0 30px;

}
.solutions-intro p {
  font-family: "Roboto";
  color: #000000;
}
.narrow {
  max-width: 820px;
  text-align: center;
}
.solution-row {
  padding: 88px 0;
  position: relative;
}
.solution-row:nth-of-type(even) {
  background: rgba(255, 255, 255, 0.025);
}
.solution-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: center;
}
.right-feature .solution-copy {
  order: 2;
}
.right-feature .mini-card-grid {
  order: 1;
}
.section-number {
  display: block;
  margin-bottom: 16px;
  color:rgb(14, 121, 138);
  font-size: 5.5rem;
  line-height: 0.85;
  font-weight: 900;
  letter-spacing: -0.08em;
}
.solution-copy p:not(.eyebrow) {
  font-size: 1.05rem;
  font-family: "Roboto";
  color: #000000;
}
.text-link {
  display: inline-flex;
  margin-top: 14px;
   color:rgb(14, 121, 138);
  font-weight: 900;
}
.text-link:hover {
  color: rgb(0, 0, 0);
}
.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.mini-card {
  min-height: 100%;
  padding: 22px;
  width: 300px;
  border-radius: 24px;
  border: 1px solid var(--border);
  /* background-color:rgb(14, 121, 138) !important; */
  background-color:rgb(14, 121, 138) !important;
  transition: 0.2s ease;
}

.mini-card hr {
  background-color:rgb(255, 255, 255) !important;
  height: 2px !important;

}

.mini-card:hover {
  transform: translateY(-4px);
  background: var(--panel-strong);
  /* box-shadow: 0 20px 70px rgba(0, 0, 0, 0.2); */
}
.mini-card h3 {
  color: rgb(255, 255, 255);
  font-size: 1.22rem;
}
.mini-card h4 {
  margin-top: 6px;
  color: rgb(158, 229, 239);
  font-size: 0.98rem;
  line-height: 1.35;
}
.mini-card p {
  margin: 12px 0 14px;
  font-size: 0.93rem;
  color: #d3d3d3 !important;
}
.mini-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}
.mini-card li {
  position: relative;
  padding-left: 20px;
  color: #d5d5d5 !important;
  font-size: 0.88rem;
}
.mini-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: rgb(158, 229, 239);
  font-weight: 900;
}
/* .mini-card.featured {
  border-color: rgba(167, 243, 208, 0.5);
  background: linear-gradient(
    135deg,
    rgba(167, 243, 208, 0.12),
    rgba(255, 255, 255, 0.045)
  );
}
.mini-card.flagship {
  border-color: rgba(34, 211, 238, 0.65);
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.16),
    rgba(255, 255, 255, 0.05)
  );
} */
.final-cta {
  /* padding: 96px 0; */
  background-color: #006A7A;
  display: flex !important;
  flex-direction: row !important;
  
}
/* .cta-card {
  padding: 56px;
  border-radius: 34px;
  background: var(--cyan);
  color: var(--dark);
  text-align: center;
  box-shadow: 0 35px 90px rgba(34, 211, 238, 0.22);
} */
.cta-card {
  padding: 200px 100px 200px 100px;
  /* border-radius: 34px; */
  /* background: var(--cyan); */
  color: #fff;
  text-align: center;
  /* box-shadow: 0 35px 90px rgba(34, 211, 238, 0.22); */
  margin: 0;
  width:100%;
}

.cta-card h2,
.cta-card p {
  color: #fff;
}
.cta-card p {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

.cta-card2 {
  padding: 56px;
  /* border-radius: 34px; */
  /* background: var(--cyan); */
  color: #fff;
  text-align: center;
  /* box-shadow: 0 35px 90px rgba(34, 211, 238, 0.22); */
  margin: 0;
}

.cta-card2 h2,
.cta-card2 p {
  color: #fff;
}
.cta-card2 p {
  max-width: 790px;
  margin-left: auto;
  margin-right: auto;
}

.lead-form {
  max-width: 780px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  height: 50px;
  padding: 14px 16px;
  border-radius: 5px;
  border: 0px solid rgba(91, 97, 123, 0.18);
  font: inherit;
  outline: none;
}
.lead-form textarea {
  min-height: 110px;
  grid-column: 1/-1;
  resize: vertical;
}
.lead-form input::placeholder,
.lead-form textarea::placeholder,
.lead-form select:invalid {
 color: #777777 !important;
}
.lead-form button {
  grid-column: 1/-1;
  font-size: 1.1rem !important;
  margin-bottom: 10px;
  background-color: #000000 !important;
}

.form-note {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #cbcbcb !important;
}
.form-note2 {
  margin-top: -400;
  font-size: 0.9rem;
  color: #000000 !important;
}


.site-footer {
  padding: 50px 200px;
  border-top: 1px solid var(--border);
  background-color: #262626;
  /* min-height: 300px; */
}

.site-footer a:hover {
  color: #fff;
}



.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  /* gap: 20px; */
  font-size: 0.92rem;
  color:#fff !important;
  font-weight: 200;
  /* background-color: #22d3ee; */
  width: 100%;
}
.footer-grid h2, h3 {
  color:#b4b4b4;
  font-weight: 200 !important;
  font-size: 1.5rem !important;
  margin-bottom: 30px !important;
}
.footer-grid p {
  color: #868686;
  font-size: 1.0rem !important;
}
.footer-grid ul {
  padding:0px;
}
.footer-grid li {
  list-style: none;
  width: 200px;
  margin-bottom: 5px;
  
}

.footer-grid li a {
  text-decoration: none;
  color: #868686;
  font-size: 1.0rem !important;
}

.footer-brand {
  width: 20%;
  margin-right: 50px;
}

.footer-social a {
  text-decoration: none;
  color: #a2a2a2;
  margin-right: 10px;
  font-size: 1.5rem;
}
.footer-social a:hover {
  text-decoration: none;
  color: #fff;
  margin-right: 10px;
  
}
.footer-bottom {
  /* background-color: #67e8f9; */
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 77px;
  margin-top: 50px;
}
.footer-bottom a {
  text-decoration: none;
  color: #868686;
  margin-right: 20px;
}

.footer-bottom p {
  color: #868686;
  font-size: .9rem !important;
}

.footer-column p {
 margin-bottom: -2px;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 980px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .menu-button {
    display: inline-flex;
  }
  .nav-links.open {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(2, 6, 23, 0.97);
  }
  .hero-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }
  .right-feature .solution-copy,
  .right-feature .mini-card-grid {
    order: initial;
  }
  .section-number {
    font-size: 4rem;
  }
}
@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .hero {
    padding: 78px 0 68px;
  }
  .snapshot-grid,
  .mini-card-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }
  .hero-actions .btn,
  .lead-form .btn {
    width: 100%;
  }
  .solution-row {
    padding: 68px 0;
  }
  .cta-card {
    padding: 36px 20px;
  }
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}
